[안드로이드] 앱 상단바 없애기

프로젝트의 values 디렉토리 내부의 styles.xml에 아래 구문을 추가한다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<!-- 상단바 없애기 -->
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>

</resources>
Author

MoonDoni

Posted on

2020-03-06

Updated on

2020-03-08

Licensed under

댓글