2
A
回答
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)
相關問題
- 1. 刪除標題欄(Android)
- 2. Android PreferenceScreen標題欄刪除
- 3. 無法刪除android中的標題欄
- 4. 刪除Android應用上的標題欄
- 5. Eclipse中的Android刪除標題欄
- 6. Android 3.2從操作欄刪除標題
- 7. Android對話框:刪除標題欄
- 8. Android的標題欄去除
- 9. 移除Android的標題欄
- 10. 刪除默認標題欄
- 11. 刪除標題欄Phonegap
- 12. 無法刪除標題欄?
- 13. 刪除JInternalFrame標題欄
- 14. Bigcartel - 刪除邊欄標題
- 15. 無法刪除標題欄
- 16. 請刪除標題欄
- 17. Python Tkinter刪除標題欄
- 18. 如何刪除MVVMCross中的標題欄
- 19. 刪除Windows窗體中的標題欄
- 20. 安卓:刪除標題欄的錯誤
- 21. 刪除標題欄周圍的邊框
- 22. 刪除Gnome中的標題欄
- 23. 如何刪除jframe中的標題欄?
- 24. 如何刪除標題欄的的Android 4.2.2
- 25. 刪除android應用程序的標題欄
- 26. 刪除活動中的標題欄也會刪除圖像
- 27. Android Studio刪除欄
- 28. 刪除欄標CSS
- 29. 刪除標籤欄
- 30. 刪除Outlook AddIn邊欄標題
檢查此http://stackoverflow.com/a/22269798/1761003 – Gattsu 2014-09-25 12:07:36
兩者都是相同..標題欄和actionbar – 2014-09-25 12:08:13
告訴我你想要做什麼 – 2014-09-25 12:12:17