美文网首页
Android 自定义checkbox图片过大问题

Android 自定义checkbox图片过大问题

作者: PeterHe888 | 来源:发表于2017-04-12 16:39 被阅读557次

首先我们新建一个drawable,属性是selector,设置俩张图片,用以checked时切换图片。

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

然后定义一个style,CheckBox_style

<style name="wrist_light_screen_checkbox"parent="@android:style/Widget.CompoundButton.CheckBox">

<itemname="android:button">@nullitem><itemname="android:background">@drawable/checkbox_selectoritem>

</style>

注意parent所指定的style,以及item 的button,background的属性设定。

最后,在布局文件里使用CheckBox即可

<CheckBox android:id="@+id/cb_switch"

android:layout_width="45dp"

android:layout_height="45dp"

style="@style/wrist_light_screen_checkbox"/>

这样,CheckBox里的图片大小便得到了修改。

相关文章

网友评论

      本文标题:Android 自定义checkbox图片过大问题

      本文链接:https://www.haomeiwen.com/subject/levmattx.html