안드로이드/Android 전체화면 사용하기 (Status bar, Title bar 숨기기)
안드로이드에서 전체화면을 사용하기 위해서는 상태바(Status Bar)와 타이틀바(Title Bar)를 숨겨야 합니다. 숨기는 방법은 여러가지가 존재하는데 그 중 몇가지 방법을 정리하도록 하겠습니다.
1. 미리 정의된 Theme 사용하기
1.
<
activity
android:name
=
".MyActivity"
2.
android:theme
=
"@android:style/Theme.NoTitleBar.Fullscreen"
>
1.
<
activity
android:name
=
".MyActivity"
2.
android:theme
=
"@android:style/Theme.NoTitleBar"
>
2. 내가 정의한 Theme 에서 설정하기
1.
<
item
name
=
"windowNoTitle"
>true</
item
>
1.
<
item
name
=
"windowFullscreen"
>true</
item
>
3. Java Code에서 설정하기
1.
requestWindowFeature(Window.FEATURE_NO_TITLE);
1.
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
2.
WindowManager.LayoutParams.FLAG_FULLSCREEN);
출처 : http://www.androidpub.com/4710
'Android > AndroidManifest' 카테고리의 다른 글
안드로이드/Android AndroidManifest.xml android:theme 중복 사용 하기 (2) | 2012.06.28 |
---|---|
안드로이드/Android 최근 사용한 앱(홈키 롱클릭) 에서 제외 하기~! (12) | 2012.05.13 |
안드로이드/Android screenOrientation (가로/세로 모드설정) 하기 (2) | 2012.04.18 |