开关Switch系列:Switch修改滑块(thumb)和滑道(track)的颜色
Posted zhangjin1120
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了开关Switch系列:Switch修改滑块(thumb)和滑道(track)的颜色相关的知识,希望对你有一定的参考价值。
- 看设计稿:
- 这尼玛咋弄呀?
- 先显示文字,参考上一篇:开关switch系列:android Switch显示文字
- 修改滑块(thumb)的颜色,在
drawable
文件夹下新建switch_custom_thumb.xml
文件,颜色和宽高都是设计图给的,如下:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#06BF5F" />
<size
android:width="27dp"
android:height="27dp" />
</shape>
- 修改滑道(track)的颜色,在
drawable
文件夹下新建switch_custom_track.xml
文件,仔细观察设计稿,会发现滑块的高度大于滑道,所以使用到layer-list
来实现类似padding的效果,代码如下:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:top="1dp"
android:bottom="1dp">
<shape
android:shape="rectangle">
<solid android:color="#00000000"/>
<size android:height="25dp"/>
<stroke
android:width="3dp"
android:color="#06BF5F" />
<corners android:radius="15dp" />
</shape>
</item>
</layer-list>
- 在
Switch
里面引用,如下:
<Switch
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:showText="true"
android:switchMinWidth="47dp"
android:switchTextAppearance="@style/SwitchTextAppearance"
android:textOff="中"
android:textOn="EN"
android:thumb="@drawable/switch_custom_thumb"
android:track="@drawable/switch_custom_track" />
和设计稿的效果,还是差一点,主要是宽度比较长,貌似系统好像又比例。下一篇继续研究破解之道。
搞定~
以上是关于开关Switch系列:Switch修改滑块(thumb)和滑道(track)的颜色的主要内容,如果未能解决你的问题,请参考以下文章
element表格中使用switch开关实现修改switch开关的状态(整体控制,只有一个为true,其余都是false)