본문 바로가기
Android/Kotlin

You need to use a Theme.AppCompat theme (or descendant) with this activity. 수정

by 등촌동 꼬북이 2022. 8. 8.

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로 변경해주면 잘 동작한다.

'Android > Kotlin' 카테고리의 다른 글

권한 요청 및 수락  (0) 2022.08.09
let 뜻  (0) 2022.08.09
Override한 메소드에서 overrides nothing 에러가 날 때  (0) 2022.07.31
companion object에 있는 상수 값 접근 안될 때  (0) 2022.07.27
suspend fun  (0) 2022.07.25

댓글