xml>
在manifest檔中,在需要的Activity元素中加入屬性:
全屏
<activity android:name=".TextButtonActivity" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
無標題列
<activity android:name=".TextButtonActivity" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
Android Code>
全屏
getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN ,
WindowManager.LayoutParams. FLAG_FULLSCREEN);
無標題列
requestWindowFeature(Window.FEATURE_NO_TITLE);
沒有留言:
張貼留言