반응형
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
다음과 같은 오류가 발생할땐 아래와 같이 해결한다 (Kotlin 기준)
import 변경
import android.app.AlertDialog
아마 다음과 같이 잘못 되어있었을 것이다
import android.support.v7.app.AlertDialog
그럼에도 안된다면 다음과 같이 AlertDialog를 사용할 수 있도록 변경해보자
AlertDialog.Builder(this@MainActivity)
반응형