상세 컨텐츠

본문 제목

[Android] 안드로이드 타이틀바, 액션바 제거 ( 앱 전체 )

Android

by gimgongta 2021. 1. 2. 15:04

본문

반응형

최종수정 : 2021.01.02

themes.xml 파일의 <resources> 태그 안에 다음의 코드 추가

<style name="테마명" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="windowNoTitle">true</item>
    <item name="windowActionBar">false</item>
    <item name="android:windowFullscreen">true</item>
</style>

 

AndroidManifest.xml 파일의 android:theme를 수정

android:theme="@style/테마명"
반응형

관련글 더보기

댓글 영역