Android 警报对话框主题
我尝试了几种不同的方法,但似乎无法让警报对话框正确更改主题。我的活动在清单中设置了自定义主题,所以我不确定这是否会导致冲突。
我使用:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在姜饼 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.