Android switch控件的使用,及简单样式改变

最近因为项目需要,要求5.0要有开关的效果,5.0以下开关就是图片的改变。


做法:

1、新建21文件夹:

2、在layout和layout-v21文件夹内分别新建一个文件:switch_item.xml

3、21文件夹内的xml填充内容,使用默认的风格:

<Switch xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:checked="false"
    android:clickable="false" />


4、layout文件夹内的xml填充内容,不要4.0的蓝灰风格,所以将thumb,track均设置为null;使用两张图片转换效果,只需要设置background即可:

<Switch xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:checked="false"
    android:clickable="false"
    android:background="@drawable/main_custorm_add_ctv_selector"
    android:thumb="@null"
    android:track="@null">

Switch>
 
  
 
  
 
  
 
  


3、21文件夹内的xml填充内容,使用默认的风格:

你可能感兴趣的:(Android switch控件的使用,及简单样式改变)