13-开关按钮Switch

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>

posted @ 2021-05-23 10:32  小白咚  阅读(88)  评论(0编辑  收藏  举报