刪除默認標題欄
回答
它非常簡單,只是去掉標題欄,android的地址:主題屬性到AndroidManifest.xml
<application android:theme="@android:style/Theme.NoTitleBar">
'應用程序android:icon =「@ drawable/icon」android:screenOrientation =「portrait」android:theme =「@ style/MyTheme」android:theme =「@ android:style/Theme。 NoTitleBar「>」拋出和錯誤。我假設,因爲我無法訪問主題兩次?有沒有解決方法? MyTheme.NoTitleBar不起作用 – Brianjs 2012-03-05 04:19:30
你的設備中是否安裝了該主題? – Android 2012-03-05 04:20:46
我的主題或主題? Mytheme鏈接到新的背景圖片 – Brianjs 2012-03-05 04:22:14
<style name="MyTheme" parent="@android:style/Theme.NoTitleBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@drawable/xyz</item>
</style>
走進清單文件
點擊底部的「應用程序」標籤(如圖所示)
En之三@android:style/Theme.NoTitleBar
(如圖所示)
試試這個:
requestWindowFeature(Window.FEATURE_NO_TITLE);
android:theme="@android:style/Theme.NoTitleBar"
內的AndroidManifest.xml我添加的代碼=)
爲了做到這一點,我宣佈一個風格繼承一切從我的大將風範。這種風格禁用默認的Android titleBar。
<style name="generalnotitle" parent="general">
<item name="android:windowNoTitle">true</item>
</style>
創建一個新的風格和你的不同視圖這種風格或默認樣式添加以下代碼以禁用標題欄的所有窗口!
還有幾個主題可用沒有標題欄。對於例如Theme.AppCompat.Light.NoActionBar
適用不標題欄中的各自主題
對於Android Studio中2.2.2,2016
替換app/src/main/res/values/styles.xml
父Theme.AppCompat.Light.DarkActionBar
上Theme.AppCompat.NoActionBar
實施例:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
發生此問題當您使用默認的內置工具欄和您自己的自定義工具欄時。有兩種方法。
1)導航至價值/ style.xml < ---基地應用主題樣式TO->和改變你的父主題等:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
的另一種方法是主題屬性添加到您的活動的清單文件:
機器人:主題=「@風格/ Theme.AppCompat.Light.NoActionBar」
- 1. 如何刪除rebol上的默認標題欄?
- 2. SSRS默認標題欄
- 3. 刪除默認標題與Restangular
- 4. Rails,Gritter - 刪除默認標題
- 5. 刪除標題欄(Android)
- 6. 刪除標題欄Phonegap
- 7. 無法刪除標題欄?
- 8. 刪除JInternalFrame標題欄
- 9. Bigcartel - 刪除邊欄標題
- 10. 的Android刪除標題欄
- 11. 無法刪除標題欄
- 12. 請刪除標題欄
- 13. Android PreferenceScreen標題欄刪除
- 14. Python Tkinter刪除標題欄
- 15. jqGrid標題欄默認關閉
- 16. 刪除默認值
- 17. 刪除列默認
- 18. Prestashop默認引導主題被刪除
- 19. WebSphere Portal 6.1默認主題已刪除
- 20. 刪除默認的JFrame圖標
- 21. 什麼是標題欄的默認高度和默認的標題欄在android中的TextSize?
- 22. 更改由Navigationview提供的默認標題欄的標題
- 23. 如何從WCF REST傳出響應中刪除默認標題?
- 24. 如何刪除管理員的默認wordpress標題?
- 25. R:splom() - >如何刪除默認的x-lab標題?
- 26. 從'露天'套餐中刪除默認標題風玫瑰
- 27. php默認標題
- 28. file_get_contents默認標題
- 29. 如何更改默認的標籤欄項目圖標標題?
- 30. 刪除欄標CSS
你想要什麼怎麼辦?只要將其刪除並且沒有標題欄或將其替換爲您自己的自定義標題欄?你是否至少嘗試了谷歌搜索,因爲我只是搜索了你的頭銜,這給了我一堆好的結果.. – 2012-03-05 03:15:55
這可能是http://stackoverflow.com/questions/2446373/android-title-bar-removal和潛在的重複http://stackoverflow.com/questions/2445999/what-do-i-have-to- add-to-a-layout-to-hide-the-titlebar/2446087 – 2012-03-05 03:17:39
謝謝,由於某種原因我沒有馬上找到任何東西。我想我寧願使用自定義標題欄,而不是刪除它。 – Brianjs 2012-03-05 03:22:06