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

來源:互聯網
上載者:User

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>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.