본문 바로가기

프로그래밍/Android55

[Android] TabLayout 각 탭의 이벤트 막기 TabLayout 사용 시, 각 탭의 클릭 이벤트를 막아야 할 때가 있다 아래의 코드는 모든 탭을 막는 코드이며, 필요에 따라 조건문을 처리해주면 된다 TabLayoutMediator(tabLayout, viewPager) { tab, position -> tab.view.isClickable = false }.attach() 끝. 2021. 8. 22.
[Android] 업로드 키를 분실했거나 도난당했나요? https://support.google.com/googleplay/android-developer/answer/9842756?hl=ko&visit_id=637651608393102378-2301502517&rd=1#reset Play 앱 서명 사용하기 - Play Console 고객센터 도움이 되었나요? 어떻게 하면 개선할 수 있을까요? 예아니요 support.google.com Play console 고객센터에서 업로드 키를 분실했거나 도난당했을 때 재설정을 요청할 수 있는 방법을 안내해준다 1. 새 키를 만들고 https://support.google.com/googleplay/android-developer/answer/9842756#create Play 앱 서명 사용하기 - Play Consol.. 2021. 8. 22.
[Android] 이상한 안드로이드 권한 거부 java.lang.SecurityException: Permission Denial: null asks to run as user 179 but is calling from user 0; this requires android.permission.INTERACT_ACROSS_USERS_FULL or android.permission.INTERACT_ACROSS_USERS 에러가 발생하는 이유를 정확히 파악하진 못했지만 구글링 결과, userId를 사용하는 Activity나 Fragment에서 EditText나 관련된 라이브러리를 사용하면 발생하는 것으로 확인된다(Why?!) 정확한 이유를 몰라서 일단은 userId를 다른 이름으로 변경해서 실행했더니 잘된다 찜찜하지만 일단 끄읕. 2021. 6. 3.
Android Gradle Sync Error **Gradle Sync Error 발생시 다양한 해결 방법** ## Android Studio 3.3.2 * File > Re-Import Gradle Project > 사이다 > 속이 시원함 2019. 4. 16.
ViewModel Overview 번역 ViewModel OverviewThe ViewModel class is designed to store and manage UI-related data in a lifecycle conscious way. :) ViewModel 클래스는 라이프사이클이 알고 있는 방법 안에서 UI 관련 데이터의 저장과 관리를 위해 디자인되었습니다. The ViewModelclass allows data to survive configuration changes such as screen rotations.:) ViewModel 클래스는 화면 회전과 같은 구성 변경에도 데이터를 유지할 수 있습니다.The Android framework manages the lifecycles of UI controllers, such a.. 2018. 12. 17.