欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程资源 > 编程问答 >内容正文

编程问答

自定义 checkbox 新玩法 ?

发布时间:2025/6/17 编程问答 49 豆豆
生活随笔 收集整理的这篇文章主要介绍了 自定义 checkbox 新玩法 ? 小编觉得挺不错的,现在分享给大家,帮大家做个参考.
自定义 checkbox 新玩法 ?

自定义 checkbox 新玩法 ?

第一步:selector

编写 drawable/selector_checkbox_voice.xml

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

第二步:style

VoiceCheckboxTheme

<!--自定义的checkbox--> <style name="VoiceCheckboxTheme" parent="@android:style/Widget.CompoundButton.CheckBox"><item name="android:button">@drawable/selector_checkbox_voice</item> </style>

第三步:布局文件里

<CheckBoxandroid:id="@+id/cb_voice"style="@style/VoiceCheckboxTheme" //这里使用android:layout_width="@dimen/dp21"android:layout_height="@dimen/dp28"android:gravity="center"android:layout_marginLeft="@dimen/dp30"/>

第四步:效果

看左边第二个

//点击前

//点击后

你可以监听状态:

//语音是否关闭mCb_Voice.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {if (isChecked){//执行关闭语音MGToast.showToast("执行关闭语音");}else {//执行开启语音MGToast.showToast("执行开启语音");}}}); posted on 2017-05-08 10:55 赵大海 阅读(...) 评论(...) 编辑 收藏

转载于:https://www.cnblogs.com/zhaodahai/p/6823990.html

总结

以上是生活随笔为你收集整理的自定义 checkbox 新玩法 ?的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。