Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- InAppPurchase
- Alamofire
- CalendarView
- imagepicker
- javascript
- SWIFT
- 스터디
- ayncAfter
- UIPickerView
- HTML
- RecyclerView
- SplashFragment
- IOS
- CSS
- retrofit2
- dispatchQueue
- progressbar
- DispatchTouchEvent
- Kotlin
- viewpager2
- 실행지연
- web
- aab
- MemoList
- 개발
- Dropdown
- RxJava
- Android
- ViewModel
- MotionEvent
Archives
- Today
- Total
멜팅비의 개발 공부
[Android] 안드로이드 android.view.WindowManager$BadTokenException: Unable to add window 에러 해결방법 본문
개발 공부/[Android 개발]
[Android] 안드로이드 android.view.WindowManager$BadTokenException: Unable to add window 에러 해결방법
멜팅비 2021. 3. 2. 20:31반응형
ViewModel에서 Dialog를 생성할 때 android.view.WindowManager$BadTokenException: Unable to add window 에러가 발생했다.
발생원인은 Dialog 생성 시 파라미터로 넘긴 context를 applicationContext로 넘겨서 발생한 에러였다.
ViewModel에서 해결 할 때는 메서드 호출 시 view를 넘겨서 view.context를 사용했다.
// data에 view import
<data>
<import type="android.view.View />
</data>
...
android:onClick="@{(v)->viewModel.someFunction(v)}"
일반적으로 해결하고자 할 때는 applicationContext 대신 activity(this)를 넘기면 된다.
반응형
'개발 공부 > [Android 개발]' 카테고리의 다른 글
[Android-Kotlin] 코틀린 Collection 함수 (0) | 2021.04.03 |
---|---|
[Android/Kotlin] 안드로이드 BottomSheetDialogFragment 구현하기 (2) | 2021.03.08 |
[Android-Kotlin] SplashFragment에서 화면이동하기 (0) | 2021.03.02 |
[Android-Kotlin] 안드로이드 Array를 ArrayList로 변환/ ArrayList를 Array로 변환 (0) | 2021.03.02 |
[Android-Kotlin] MotionEvent 강제 효과 주기(드래그, 스크롤) (0) | 2021.02.23 |
Comments