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">
'Android(Kotlin)' 카테고리의 다른 글
[Android] Shared Preferences DB없이 간단한 문자열 값 앱 내부에 저장하기 (토글 스위치 등등) (0) | 2022.02.24 |
---|---|
[Kotlin][Android] Navigation View 네비게이션 바 만들기 (0) | 2022.02.24 |
[Android] 첫 화면 설정 (0) | 2022.02.24 |
[Kotlin][Android] 리스트뷰 커스텀 어뎁터 사용하는 법(ListView Custom Adapter ) (0) | 2022.02.23 |
[Kotlin][Android] ListView 사용하는 방법 (0) | 2022.02.23 |