반응형
맨 처음 프로젝트를 만들어 Android 애뮬레이터를 통해 앱을 실행시키면 아래와 같은 타이틀 바가 생기게 됩니다.
디자인할떄 상당히 거슬리는 녀석인데 아주 간단히 없앨 수 있다.
src/main/res/values/style.xml을 열어서 DarkActionBar를 NoActionBar로 바꾸어주면된다.
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
반응형
'프로그래밍 > Android' 카테고리의 다른 글
[Android] EditView에서 IP Address 입력 정규화 처리 (0) | 2020.09.17 |
---|---|
[Android] RecyclerView 사용하기 (0) | 2020.09.17 |
[Android] Wifi로 Android Device 연결하여 개발하기 (0) | 2020.09.16 |
[Android] Ndef 읽기 쓰기 (0) | 2020.09.15 |
[Android] 경기지역화폐 지도 만들기 - 4 (0) | 2020.09.02 |