안드로이드에서 전체화면을 사용하기 위해서는 상태바(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' 카테고리의 다른 글
안드로이드 단말의 전화번호 받아오는 법 (0) | 2010.02.04 |
---|---|
Please fix project properties. (0) | 2010.01.18 |
SQLite Database Browser (0) | 2010.01.14 |
thread (0) | 2010.01.13 |
AlertDialog (0) | 2010.01.13 |