Android CheckBox修改选中颜色并去除选中时的水波纹效果

前言

都知道Android原生的控件颜色比较辣眼睛,所以实际开发中都会有改动,而选中框是在实际开发中常用的,比如同意这个协议就勾选上。

先写一个控件

android:text="同意服务协议"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

运行效果

在这里插入图片描述

这就是原生的控件,请问这个颜色好看吗?
所以要改,在res文件夹下的values中的styles.xml文件中增加如下代码:

	
    

然后在布局文件中应用这个样式:

	android:text="同意服务协议"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:theme="@style/MyCheckBox"/>

运行效果:
在这里插入图片描述

这种修改方式是不同于通过background的来切换的,我保留了这个控件选中和取消选中的动画效果,只修改了选中前后的颜色,这种方式是比较好的,android:theme="@style/MyCheckBox",MyCheckBox是刚才我定义的样式名称。
去除选中时的水波纹效果其实一行代码就搞定了,就是把背景值为透明即可,@android:color/transparent

修改布局文件:

	android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:color/transparent"
        android:text="同意服务协议"
        android:theme="@style/MyCheckBox" />

这时你再运行起来就可以了。

你可能感兴趣的:(自定义控件样式)