我已經將我的活動主題設置爲android:theme =「@android:style/Theme.Dialog」 但我也想刪除活動的標題欄。所以如何使用 android:theme =「@ android:style/Theme.Black.NoTitleBar.Fullscreen」 以及對話框主題。關於刪除活動標題欄在Android中
回答
嘗試創建一個擴展Theme.Dialog
自定義樣式:
<resources>
<style name="DialogNoTitle" parent="android:Theme.Dialog">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
這是正確和最大的答案! !我希望OP會接受這個答案。爲我節省了很多時間。謝謝! – kharles 2011-06-08 02:51:48
感謝您的評論。很高興我能幫上忙。 – 2011-06-08 06:37:56
我相信你可以在活動的onCreate()指定此:
requestWindowFeature(Window.FEATURE_NO_TITLE);
是的,但你需要在清單中的活動標籤中不做任何主題,否則在應用程序啓動時你仍然會有一個標題flash – 2010-11-13 20:40:26
對於AppCompat
,以下解決方案爲我工作:
在您的styles.xml
中添加沒有操作欄的新主題風格,並設置parent="Theme.AppCompat.NoActionBar"
。
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowBackground">@color/colorPrimary</item>
</style>
現在實現了相同的主題風格,閃屏活動androidManifest.xml
<activity
android:name=".ActivityName"
android:theme="@style/SplashTheme"> // apply splash them here
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
下面是結果:
- 1. 刪除活動中的標題欄也會刪除圖像
- 2. 刪除標題欄(Android)
- 3. 的Android刪除標題欄
- 4. Android PreferenceScreen標題欄刪除
- 5. 無法刪除android中的標題欄
- 6. Eclipse中的Android刪除標題欄
- 7. 如何禁用/刪除android活動標籤和標籤欄?
- 8. 從活動中刪除標題
- 9. Android 3.2從操作欄刪除標題
- 10. 刪除Android應用上的標題欄
- 11. Android對話框:刪除標題欄
- 12. Android:帶標題欄的全屏活動
- 13. 如何刪除一個框架的活動標題欄?
- 14. Android:如何在Dialog活動的標題欄中設置圖標?
- 15. 隱藏在標籤組中的特定活動標題欄android
- 16. 如何刪除標題欄在JFrame中
- 17. 在xml中刪除標題欄
- 18. swift導航欄標題刪除動畫
- 19. 如何在Android Studio活動預覽中刪除狀態欄
- 20. 刪除默認標題欄
- 21. 刪除標題欄Phonegap
- 22. 無法刪除標題欄?
- 23. 刪除JInternalFrame標題欄
- 24. Bigcartel - 刪除邊欄標題
- 25. 無法刪除標題欄
- 26. 請刪除標題欄
- 27. Python Tkinter刪除標題欄
- 28. 在Android 3.0中從操作欄中刪除標題
- 29. 使用活動在Android中將標題欄居中使用
- 30. Android標籤欄活動
'Theme.Dialog'創建一個浮動小窗口透明在那裏你可以看到潛在的活動。你確定標題欄不屬於基本活動 – 2010-11-13 09:08:09