Android/Kotlin
You need to use a Theme.AppCompat theme (or descendant) with this activity. 수정
등촌동 꼬북이
2022. 8. 8. 11:08
You need to use a Theme.AppCompat theme (or descendant) with this activity.
라며.. AlertDialog를 띄울 때 앱이 죽는 현상이 있었다.
val builder = AlertDialog.Builder(applicationContext) // 이러면 에러 발생
val builder = AlertDialog.Builder(this) // 이러면 정상 동작
위 처럼 this로 변경해주면 잘 동작한다.