# 배경
앱 개발 시 상단바를 없애고, 상태바를 투명하게 만드는 방법에 대해 알아봄 |
① 상태바 (statusBar)
② 상단바 (actionBar)
# 방법
▶ styles.xml 수정
// app > res > values > styles.xml
<resources>
<!-- No action Bar -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Transparent statusbar -->
<item name="android:windowTranslucentNavigation">true</item>
<item name="android:windowTranslucentStatus">true</item>
</style>
</resources>
# 결과
'LANGUAGE > Kotlin' 카테고리의 다른 글
[Kotlin] Rx, Observer Pattern (0) | 2020.06.29 |
---|---|
[Kotlin] Lottie btn (0) | 2020.06.26 |
[Kotlin] button action > listener, onClick (0) | 2020.06.26 |
[Kotlin] round Button (gradient) (0) | 2020.06.26 |
[Kotlin] LinearLayout / RelativeLayout / ConstraintLayout (0) | 2020.06.25 |