android全屏去掉title欄的多種實現方法

飄零雪花發表於2016-03-22

1.實現應用中的所有activity都全屏 
在manifest中直接加入 
複製程式碼程式碼如下:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 

2.實現單個activity全屏 
複製程式碼程式碼如下:

requestWindowFeature(Window.FEATURE_NO_TITLE); 
getWindow().setFlags(WindowManager.LayoutParams.TYPE_STATUS_BAR, WindowManager.LayoutParams.TYPE_STATUS_BAR); 

3.實現單個activity去掉title欄 
複製程式碼程式碼如下:

requestWindowFeature(Window.FEATURE_NO_TITLE); 

1、改變標題內容:public void setTitle (CharSequence title) 
2、隱藏標題:requestWindowFeature(Window.FEATURE_NO_TITLE); 
3、隱藏標題和最上面的電池電量及訊號欄(全屏): 
複製程式碼程式碼如下:

public void setFullscreen() { 
requestWindowFeature(Window.FEATURE_NO_TITLE); 
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
WindowManager.LayoutParams.FLAG_FULLSCREEN); 
} 

4、自定義標題內容 
複製程式碼程式碼如下:

<activity android:name=".activity.MainActivity" android:screenOrientation="portrait" android:label="@string/titlebar_text" 
</actibity> 2) 

MainActivity檔案中: 
複製程式碼程式碼如下:

requestWindowFeature(Window.FEATURE_NO_TITLE); 
//設定視窗無標題欄 
setContentView(R.layout.main); 
//動態設定標題的值,getTitle()的值是該activity的宣告中android:label的值 
((TextView) findViewById(R.id.titlebar_text)).setText(getTitle()); 

其中,getTitle()取得的值就是上述 android:label="@string/titlebar_text" 的值 
5、自定義標題佈局 
複製程式碼程式碼如下:

protected void onCreate(Bundle savedInstanceState) { 
super.onCreate(savedInstanceState); 
//預先設定允許改變的視窗狀態,需在 setContentView 之前呼叫,否則設定標題時拋執行時錯誤。 
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); 
setContentView(R.layout.custom_title); 
//標題區域可設定為 layout ,如此可以有豐富的展現方式 
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, 
R.layout.custom_title_1); 
} 

res\layout\custom_title_1.xml 包含一個TextView 用於顯示標題。Android可以把標題做為一個layout來展示,具有很好的擴充套件性。 
複製程式碼程式碼如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/screen" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical"> 
<TextView android:id="@+id/left_text" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_alignParentLeft="true" 
android:text="@string/custom_title_left" /> 
</RelativeLayout> 

相關文章