2011년 5월 18일 수요일

Title과 Indicator를 없애고 Full Screen으로 표시

Title과 Indicator를 없애고 Full Screen으로 표시

Full Screen 설정

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

Flag를 Clear 할 경우

getWindow().clearFlags()


Title Bar 없애기

[모든 activity 일괄 적용시]

AndroidManifest.xml의 application 속성에
android:theme="@android:style/Theme.NoTitleBar" 추가~
android:theme="@android:style/Theme.NoTitleBar">

[일부 activity만 적용시]
onCreate()에서 setContentView() 호출 이전에 아래코드 삽입!
requestWindowFeature(Window.FEATURE_NO_TITLE);

댓글 없음: