在style.xml中添加如下代码:
<style name="Switch">
<item name="android:track">@drawable/switch_track</item>
<item name="android:thumb">@drawable/abc_switch_thumb_material</item>
<item name="android:background">@null</item>
<item name="android:textOn"> </item>
<item name="android:textOff"> </item>
<item name="android:switchMinWidth">50dp</item>
</style>
在drawable/switch_tradck.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true">
<shape>
<solid android:color="#4dd664" />
<corners android:radius="30dp"/>
<size android:width="50dp" android:height="26dp" />
</shape>
</item>
<item android:state_checked="false">
<shape>
<solid android:color="#ffffff" />
<corners android:radius="30dp"/>
<size android:width="50dp" android:height="28dp" />
<stroke android:color="#e4e4e4" android:width="1dp" android:dashGap="0dp" android:dashWidth="0dp"/>
</shape>
</item>
</selector>
这样整个style就基本完成了,用起来也非常简单.
<Switch
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/Switch"/>
Android Switch开关,高仿iOS
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- afinalAfinal是一个android的ioc,orm框架 https://github.com/yangf...
- Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
- 安卓中自带的Switch控件在很多时候总觉得和整体系统风格不符,很多时候,自定义Switch是一种方法。但其实不用...