首页 > 其他 > 详细

13-开关按钮Switch

时间:2021-05-23 14:46:55      阅读:15      评论:0      收藏:0      [点我收藏+]

SwitchActivity.java

技术分享图片

activity_switch.xml

技术分享图片

 

drawable-->switch_selector.xml(图片仿ios)

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="true" android:drawable="@drawable/switch_on"/>
    <item android:drawable="@drawable/switch_off"/>
</selector>

 

drawable-->switch_thumb.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval" android:layout_height="wrap_content" android:layout_width="wrap_content">

    <size
        android:width="40dp"
        android:height="40dp"/>
    <solid
        android:color="@color/white"/>
</shape>

技术分享图片

13-开关按钮Switch

原文:https://www.cnblogs.com/fdxjava/p/14800599.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!