我想为 ICS-Devices 中的对话框使用自定义颜色。默认的是蓝色(见图),我如何将它设置为适合我的应用配色方案的颜色,例如红色?
问问题
482 次
2 回答
0
尝试这个:
alert.setTitle(Html.fromHtml("<font color='#FF0000'>User Agent</font>"));
于 2013-07-30T16:46:22.380 回答
-1
你可以试试这个:
AlertDialog alert = builder.create();
alert.show();
alert.getListView().setBackgroundColor(Color.RED); //This is for Color
alert.setCancelable(true);
于 2012-10-02T12:11:43.257 回答