如何改变对话框的颜色
当我在不同的设备中安装应用程序时,对话框的颜色会更改设备到设备 我如何设置对话框的颜色
问候, 刈谷酱
When i installed my application in different devices Color of dialog box changes Devices to device
How can i set the color of Dialog box
Regards,
Kariyachan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以在 anddev.org 上找到一些线索。基本思想是扩展默认主题并在您的活动中使用它。特别是,您需要扩展 Theme.Dialog 样式。
You have some clues on anddev.org. The basic idea is to extend the default theme and use it in your activity. In particular, you will need to extend the Theme.Dialog style.
你能说出你用来测试的设备的名称吗?...可能它们可能包含自定义的 Android 版本,因此对话框颜色会发生变化。您可以保持原样,因为您的构建将使用设备可用的默认样式,否则请尝试设置样式以避免这种行为。
Can u name the devices that u r using to test?...Probably they might contain a customized Android build so the dialog color changes. You can leave it as it is since your build would use the default style available for a device else try setting styles that will avoid this behavior.
通过设置对话框主题将活动用作对话框。然后,您可以使用自己的背景和颜色来扩展自己的布局。
Use activity as a dialog by setting dialog theme to it. Then you can inflate your own layout with your own background and colors.
使用
AlertDialog
更改 DialogBox 的颜色并执行更多操作。你必须做什么:
代码:
Change color of DialogBox and do lot more with
AlertDialog
.What you have to do:
Code: