改造Switch为IOS风格
2021/9/5 6:09:21
本文主要是介绍改造Switch为IOS风格,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
改造Switch的样式为IOS效果
布局
<androidx.appcompat.widget.SwitchCompat android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@null" android:checked="false" android:thumb="@drawable/switch_button_thumb" app:track="@drawable/switch_button_track" />
thumb 和 track 需要自定义。
thumb
switch_button_thumb.xml
<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item android:bottom="2dp" android:left="2dp" android:right="2dp" android:top="2dp"> <shape android:shape="oval"> <solid android:color="#ffffff" /> <size android:width="18dp" android:height="18dp" /> </shape> </item> </layer-list>
使用layer-list,这样在item里面可以设置上下左右的间隙,如果不设置这个间距,就达不到效果。
track
switch_button_track.xml
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="true"> <shape> <corners android:radius="12dp" /> <solid android:color="#E61045" /> <size android:width="36dp" android:height="20dp" /> </shape> </item> <item android:state_checked="false"> <shape> <corners android:radius="12dp" /> <solid android:color="#eeeeee" /> <size android:width="36dp" android:height="20dp" /> </shape> </item> </selector>
设置选中和非选中两个状态的样式。
这篇关于改造Switch为IOS风格的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南
- 2025-01-03图像文字理解,OCR、大模型还是多模态模型?PalliGema2在QLoRA技术上的微调与应用
- 2025-01-03混合搜索:用LanceDB实现语义和关键词结合的搜索技术(应用于实际项目)
- 2025-01-03停止思考数据管道,开始构建数据平台:介绍Analytics Engineering Framework
- 2025-01-03如果 Azure-Samples/aks-store-demo 使用了 Score 会怎样?
- 2025-01-03Apache Flink概述:实时数据处理的利器