欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android AlertDialog自定義樣式實(shí)現(xiàn)代碼

 更新時(shí)間:2016年12月01日 14:45:21   作者:吳冬冬  
這篇文章主要介紹了Android AlertDialog自定義樣式實(shí)現(xiàn)代碼的相關(guān)資料,這里提供了實(shí)例代碼,一個(gè)簡(jiǎn)單示例,需要的朋友可以參考下

Android AlertDialog自定義樣式

像列表這種選擇項(xiàng)的彈出式對(duì)話框,要改變樣式一般都采取重寫layout方式

今天才了解到 其實(shí)可以自定義樣式,與大家分享下,其實(shí)很簡(jiǎn)單

AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(this, R.style.AlertDialogCustom)); 



然后自定義自己的樣式就可以了



<?xml version="1.0" encoding="utf-8"?> 
<resources> 
  <style name="AlertDialogCustom" parent="@android:style/AlertDialog"> 
    <item name="android:textColor">#00FF00</item> 
    <item name="android:typeface">monospace</item> 
    <item name="android:textSize">10sp</item> 
  </style> 
</resources> 



感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

相關(guān)文章

最新評(píng)論