【问题标题】:How to set a text at the left of a RadioButton without using TextView?如何在不使用 TextView 的情况下在 RadioButton 的左侧设置文本?
【发布时间】:2014-11-20 21:32:21
【问题描述】:
有没有将radio button 的文本设置在它的左边?
我检查了xml files中radio buttonelemnt的属性,没有找到这样的属性?
所以,如果这样的属性不可用,如何在 radio button 的左侧写文本,因为我的 radio buttons 是 radioGroup 的孩子,我不想使用 textView elemnt。
【问题讨论】:
标签:
android
radio-button
radio-group
【解决方案1】:
尝试为每个单选按钮添加属性android:button="@null" 和android:drawableRight="@android:drawable/btn_radio"。
【解决方案2】:
在你的 RadioButton 上试试这个:
android:button="@null"
android:drawableRight="@android:drawable/btn_radio"
android:drawablePadding="10dp"