Android 自定义CheckBoxPreference的CheckBox复选框

在使用Android的Preference,有时为了让我们的界面更加美观,我们会自定义自己的Preference。今天就主要说一下怎样自定义CheckBoxPreference的CheckBox按钮。

系统默认CheckBoxPreference的CheckBox样式


自定义后的CheckBox样式


其实,关键的一步就是指定CheckBoxPreference的android:widgetLayout属性,详细步骤就不说了,下面直接上代码,很简单的。

1./res/xml/my_preference.xml

[html]  view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >  
  3.   
  4.     <CheckBoxPreference  
  5.         android:key="cbp"  
  6.         android:summaryOff="Off"  
  7.         android:summaryOn="On"  
  8.         android:title="CheckBoxPreference"  
  9.         android:widgetLayout="@layout/my_checkbox" />  
  10.   
  11. </PreferenceScreen>  
2./res/layout/my_checkbox.xml

[html]  view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <CheckBox xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:id="@+android:id/checkbox"  
  4.     android:layout_width="wrap_content"  
  5.     android:layout_height="wrap_content"  
  6.     android:button="@drawable/checkbox_checked_style"  
  7.     android:clickable="false"  
  8.     android:focusable="false" />  
3./res/drawable/checkbox_checked_style.xml

[html]  view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">  
  3.   
  4.     <item android:drawable="@drawable/icon_checkbox_unchecked" android:state_checked="false"/>  
  5.     <item android:drawable="@drawable/icon_checkbox_checked" android:state_checked="true"/>  
  6.   
  7. </selector>  
4.MainActivity.java注意要继承PreferenceActivity

[java]  view plain copy
  1. public class MainActivity extends PreferenceActivity {  
  2.   
  3.     @Override  
  4.     public void onCreate(Bundle savedInstanceState) {  
  5.         super.onCreate(savedInstanceState);  
  6.         addPreferencesFromResource(R.xml.my_preference);  
  7.     }  
  8.   
  9.     @Override  
  10.     public boolean onCreateOptionsMenu(Menu menu) {  
  11.         getMenuInflater().inflate(R.menu.activity_main, menu);  
  12.         return true;  
  13.     }  
  14.       
  15. }  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值