Android(Kotlin)
[Android] 에뮬레이터 위의 보라색 바 제거하기 변경하기
mswait
2022. 2. 24. 18:15
app/manifest/AndroidManifest.xml 에서 android:theme="" 의 값을 변경해주면 된다.
before
android:theme="@style/Theme.MyApplication">
after
android:theme="@style/Theme.Design.NoActionBar">
이 외에도 취향에 맞는 테마를 설정해주면 된다.
android:theme="@style/Theme.AppCompat.Light.NoActionBar">