我想为ICS-Devices中的Dialog使用自定义颜色。默认值为蓝色(参见图片),如何将其设置为适合我的应用配色方案的颜色,例如红色?
答案 0 :(得分:0)
试试这个:
alert.setTitle(Html.fromHtml("<font color='#FF0000'>User Agent</font>"));
答案 1 :(得分:-1)
你可以试试这个:
AlertDialog alert = builder.create();
alert.show();
alert.getListView().setBackgroundColor(Color.RED); //This is for Color
alert.setCancelable(true);