※ 상태바나 타이틀바의 설정은 /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 적용하기.
'ANDROID의 속삭임' 카테고리의 다른 글
[android][googlePlayService]google GCM Push Message. (0) | 2013.09.11 |
---|---|
[android][기초][스타일/테마] style및 theme 적용하기. (0) | 2013.05.27 |
[android][OBJECT][Handler]Handler 사용하기. (0) | 2013.05.16 |
[android][OBJECT][AsyncTask]AsyncTask에 대한 정리 (0) | 2013.05.16 |
[android][기초][layout]정렬 지정 (0) | 2013.05.14 |