본문 바로가기

ANDROID의 속삭임

[android][AndroidManifest][설정]화면에서 상태바와 타이틀바 없애기.


※ 상태바나 타이틀바의 설정은 /AndroidManifest.xml 에서 가능하다. 

<application

        android:allowBackup="true"

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name"

      android:theme="@style/AppTheme" > <!-- android:theme를 변경하여 상태바와 타이틀바를 제어함 -->


1.  상태바/타이틀바 모두 없애기

<application 

android:allowbackup="true" 

android:icon="@drawable/ic_launcher" 

android:label="@string/app_name" 

android:theme="@android:style/Theme.NoTitleBar.Fullscreen">


2. 타이틀바 없애기

<application 

android:allowbackup="true" 

android:icon="@drawable/ic_launcher" 

android:label="@string/app_name" 

android:theme="@android:style/Theme.NoTitleBar">





1. java code에서 적용하기 

//타이틀바 없애기

requestwindowFeature(Window.FEATURE_NO_TITLE);

//타이틀바를 남기고 상태바 없애기

getWindow().setFlags(WindowManager.LayoutParams.Flag_FullSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);





2013/05/27 - [ANDROID의 속삭임] - [android][기초][스타일/테마] style및 theme 적용하기.