Android 自定义 CheckBox 文字与图标的方向

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 自定义 CheckBox 文字与图标的方向相关的知识,希望对你有一定的参考价值。

我需要一个文字在前图标在后才CheckBox,而且需要自定义他们之间的间距
代码:
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/hui1"
android:text="文字图片" >
</CheckBox>

参考技术A android:button="@null"
android:drawableRight="@drawable/button_img"
button_img是checkBox的Button图片 图片也可以用系统的

加上这两个就可以实现你的要求了追问

那么怎么去设置文字与图片之间的间距和他们之间的比例呢?

追答

貌似没有这个属性 你可以自定义控件...

本回答被提问者采纳
参考技术B <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="多选" />

<CheckBox
android:id="@+id/checkBox1"
android:layout_marginLeft="50dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
参考技术C android:button="@null"
android:drawableRight

如果有更个性化大需求,请自定义继承checkbox,然后重写onDraw
参考技术D 楼下回答正确

自定义checkbox风格

2. 在values中创建styles.xml:

 

 <?xml version="1.0" encoding="utf-8"?>


<resources>

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

       <item name="android:button">@drawable/checkbox_selector</item>

       <item name="android:paddingLeft">25.0dip</item>

       <item name="android:maxHeight">10.0dip</item>

      </style>

</resources>

 

3. 在你的CheckBox中添加属性:

 

<CheckBox
        android:id="@+id/check"
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:layout_marginLeft="5dp"
        style="@style/MyCheckBox"  
        />

 


搞定!这样就把你的checkbox换成你设置的那两张图片了

以上是关于Android 自定义 CheckBox 文字与图标的方向的主要内容,如果未能解决你的问题,请参考以下文章

android自定义edittext 当有文字时怎么禁止长按全选事件

自定义控件三部曲之绘图篇(十三)——Canvas与图层

Android中自定义checkbox样式

Android CheckBox修改大小边框颜色,以及自定义CheckBox

利用伪元素before实现自定义checkbox样式

自定义 checkbox 新玩法 ?