
Action Bar 숨기기
1. style.xml에서 제거
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
2. Kotlin파일에서 제거
val actionBar: ActionBar? = supportActionBar
if (actionBar != null) {
actionBar.hide()
}
'Programming > Android' 카테고리의 다른 글
[Android] 유저 알림(Toast, Vibration, Beep) (0) | 2022.11.26 |
---|---|
[Android] Permission (0) | 2022.11.26 |
[Android] Fragment (0) | 2022.11.23 |
[Android] Intent (0) | 2022.11.18 |
[Android] Broadcast Receiver (0) | 2022.11.17 |