更改对话框按钮面板的背景
我正在尝试自定义 DatePickerDialog 以使背景全白。 如果我这样做
datePickerDialog.setInverseBackgroundForced(true);
背景是白色的,但按钮后面的面板仍然是灰色的。
如何指定该面板的颜色?
I'm trying to customise the DatePickerDialog so that the background is all white.
If I do
datePickerDialog.setInverseBackgroundForced(true);
the background is white but the panel behind the buttons remains gray.
How do I specify a colour for this panel?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 DatePickerDialog 扩展了 Dialog,因此您可以设置所需的布局和主题,覆盖现有主题。因此,您可以检查自定义对话框:http://developer.android。 com/guide/topics/ui/dialogs.html#CustomDialog
Since DatePickerDialog extends Dialog, you can set the layout and theming that you want, overriding the existing theme. So, you could check about custom dialogs: http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog