2012-04-07 86 views
4

我想爲ICS設備中的對話框使用自定義顏色。默認的顏色是藍色(請參閱圖片),我如何將它設置爲適合我的應用顏色方案的顏色,例如紅色?Android ICS對話框標題顏色

Example dialog

回答

-1

你可以試試這個:

AlertDialog alert = builder.create(); 
alert.show(); 
alert.getListView().setBackgroundColor(Color.RED); //This is for Color 
alert.setCancelable(true); 
+0

這將背景顏色。 OP想要改變標題顏色。 – 2013-07-30 16:48:05

0

試試這個:

alert.setTitle(Html.fromHtml("<font color='#FF0000'>User Agent</font>")); 
相關問題