Android 警报对话框主题

发布于 2024-10-21 21:04:01 字数 536 浏览 1 评论 0原文

我尝试了几种不同的方法,但似乎无法让警报对话框正确更改主题。我的活动在清单中设置了自定义主题,所以我不确定这是否会导致冲突。

我使用:

AlertDialogalertDialog = new AlertDialog.Builder(new ContextThemeWrapper(this,R.style.DialogStyle)).create();

我使用以下样式:

  <style name="DialogStyle" parent="android:Theme" >    
    <item name="android:windowBackground">@drawable/background2</item>
    <item name="android:textColor">#014076</item>       
</style>

它仅更改某些文本颜色。所有的标题和消息仍然是默认的白色,背景也没有改变。

请提供任何帮助。

iv tried several diffrent ways but cant seem to get the alertdialog to properly change themes. my activities have there custom theme set in the manifest so im not sure if this is causing the conflict.

im using :

AlertDialog alertDialog = new AlertDialog.Builder(new ContextThemeWrapper(this,R.style.DialogStyle)).create();

and im using the follwing style:

  <style name="DialogStyle" parent="android:Theme" >    
    <item name="android:windowBackground">@drawable/background2</item>
    <item name="android:textColor">#014076</item>       
</style>

it only changes certain text colours. all the titles and messages are all still default white colours and the background doesnt change either.

any help please.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦行七里 2024-10-28 21:04:01

在姜饼 2.3.X 之前,您不能。
它在对话框的构造函数中显式设置主题,但在姜饼中您可以提供它。

Prior to gingerbread, 2.3.X, you can't.
It explicitly sets the theme in the constructor of the dialog, but in gingerbread you can supply it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文