效果展示
踩坑
1. 无效的宽高?
通常情况下switch的轨道 (track)
的宽度固定为拇指 (thumb)
宽度的2倍,高度相同,因此想要做成如下的效果,只能在Drawable上动手脚。
解决方案:给轨道 (track) 或拇指 (thumb) 的背景 设置透明的带高度的 strock ,想要拇指更小些就给拇指设,反之亦然。
实现代码
1. 轨道track
<!-- track_on.xml -->
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FF00B2FF" />
<!-- 此处透明stroke压缩轨道高度 -->
<stroke
android:width="3dp"
android:color="#00000000" />
<corners android:radius="15dp" />
</shape>
<!-- track_off.xml -->
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FFCFDBEF" />
<!-- 此处透明stroke压缩轨道高度 -->
<stroke
android:width="3dp"
android:color="#00000000" />
<corners android:radius="15dp" />
</shape>
<!-- selector_track.xml -->
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 调用两个xml文件分别作为开关状态下的样式 -->
<item android:drawable="@drawable/track_on" android:state_checked="true" />
<item android:drawable="@drawable/track_off" android:state_checked="false" />
</selector>
2. 拇指thumb
<!-- shape_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="#FFCFDBEF" />
<stroke android:width="0.5dp"
android:color="#FF898E9D" />
<size
android:width="32dp"
android:height="32dp" />
</shape>
<!-- selector_thumb.xml -->
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/shape_thumb" android:state_checked="true" />
<item android:drawable="@drawable/shape_thumb" android:state_checked="false" />
</selector>
3. 使用switch
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#242D46">
<Switch
android:id="@+id/switch1"
android:layout_width="wrap_content"
android:layout_height="32dp"
android:layout_marginLeft="50dp"
android:layout_marginTop="50dp"
android:checked="false"
android:textOff=""
android:textOn=""
android:thumb="@drawable/selector_switch_thumb"
android:track="@drawable/selector_switch_track" />
<Switch
android:id="@+id/switch2"
android:layout_width="wrap_content"
android:layout_height="32dp"
android:layout_marginLeft="50dp"
android:layout_marginTop="10dp"
android:checked="true"
android:textOff=""
android:textOn=""
android:thumb="@drawable/selector_switch_thumb"
android:track="@drawable/selector_switch_track" />
</LinearLayout>
原文地址:https://blog.csdn.net/Not_Mars/article/details/126042908
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_46492.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。