Change Dialog Theme for every Dialog(为每个对话框更改对话框主题)
问题描述
我正在使用 Theme.Holo.Light.DarkActionBar,但我不太喜欢 Light Dialogs/AlertDialogs.
Im using Theme.Holo.Light.DarkActionBar but I dont really like the Light Dialogs/AlertDialogs.
我想把每个 Dialog 都改成暗的 Holo Dialog.
I want to change every Dialog to the dark Holo Dialog.
<style name="CustomDialogTheme" parent="@android:style/Theme.Holo.Dialog">
<item name="@android:background">#9933CC</item>
<item name="@android:textColor">#02FA07</item>
</style>
<style name="Holo.Light.DarkActionBar" parent="@android:style/Theme.Holo.Light.DarkActionBar">
<item name="android:dialogTheme">@style/CustomDialogTheme</item>
<item name="android:alertDialogStyle">@style/CustomDialogTheme</item>
</style>
这就是我尝试过的,但它对任何对话框都没有影响.
Thats what I tried but it has no effect on any Dialogs.
推荐答案
好的 nvm 我愚蠢的是它的 android:alertDialogTheme
而不是 android:alertDialogStyle
.但这会弄乱 Preference Dialogs,所以我只是继续使用 Light Dialogs.
Ok nvm Im stupid its android:alertDialogTheme
instead of android:alertDialogStyle
. But this messes up the Preference Dialogs, so I just keep using the Light Dialogs.
这篇关于为每个对话框更改对话框主题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为每个对话框更改对话框主题
基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01