2

我在我的應用程序,這是使用滑動式標籤與動作條的Android刪除標題欄

例如有一個活動: -

this tutorial

所以我的問題是添加行爲扎到我的活動,並刪除titlbar

similar question

+0

檢查此http://stackoverflow.com/a/22269798/1761003 – Gattsu 2014-09-25 12:07:36

+0

兩者都是相同..標題欄和actionbar – 2014-09-25 12:08:13

+0

告訴我你想要做什麼 – 2014-09-25 12:12:17

回答

1

添加到您的活動調用setContentVie前瓦特();

this.requestWindowFeature(Window.FEATURE_ACTION_BAR | Window.FEATURE_NO_TITLE); 
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
      WindowManager.LayoutParams.FLAG_FULLSCREEN); 

如果這麼想的工作試試這個

//use this to disable the icon from ActionBar 
    getActionBar().setDisplayShowHomeEnabled(false); 

    //use this to disable the application name from ActionBar 
    getActionBar().setDisplayShowTitleEnabled(false); 
+0

這是行不通的你能告訴我任何其他方式做 – 2014-09-25 12:30:20

1

我不能確定,究竟你班級爲標題欄但你可以通過把下面的做到這一點的XML你的Android Manifest爲特定的活動刪除標題欄。

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

我不認爲這會工作作爲在清單文件中設置主題不會影響片段 – danidee 2014-09-25 12:27:15

0

使用此代碼在活動的onCreate()方法中添加內容之前:

getWindow().requestFeature(Window.FEATURE_NO_TITLE)