Android中Switch修改样式

1.xml中设置Switch控件

    android:id="@+id/individuationSwitch"

    android:layout_width="40dp"

    android:layout_height="20dp"

    android:checked="false"

    android:thumb="@drawable/thumb"

    android:track="@drawable/track"

/>

2.底部滑动条颜色设置(track)

2.1:  track   选择器

   

   

2.2:  blue_track   打开状态

   

   

   

   

   


        android:endColor="@color/color_6495ED"

        android:startColor="@color/color_6495ED" />

2.3: gray_track  关闭状态

    android:shape="rectangle" >

   

   

   

   

   


        android:endColor="@color/color_888888"

        android:startColor="@color/color_888888" />


3.滑动按钮颜色设置(thumb)

3.1:thumb   选择器

   

   

3.2:blue_thumb   打开状态

    android:shape="rectangle" >

   

   

   

   

   


        android:endColor="@color/white"

        android:startColor="@color/white" />

   

        android:color="@color/color_6495ED"/>

3.3: gray_thumb  关闭状态

    android:shape="rectangle" >

   

   

   

   

   


        android:endColor="@color/white"

        android:startColor="@color/white" />

   

        android:color="@color/color_666666"/>

你可能感兴趣的:(Android中Switch修改样式)