안드로이드(android) Title Bar 지우기

Android

Posted by kwon on 2019-10-01

Title Bar 지우기

style.xml

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

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item> // <<-- 이 부분 추가
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>

</resources>