我正在扩展一个我在stackoverflow中问过几次的问题 - 这里
如答案所示 - 在这里 我得到了我需要的输出
我得到一个输出:
我正在尝试做的事情::
保留所有其他功能,我想显示一个image
代替Button
文本
我怎么能做到这一点!
如答案所示 - 在这里 我得到了我需要的输出
我得到一个输出:
保留所有其他功能,我想显示一个image
代替Button
文本
我怎么能做到这一点!
您不能设置文本 AND 设置 android:button="@drawable/some_drawable"
而不是 android:button="@android:color/transparent"
,如:
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/yourbuttonbackground"
android:button="@drawable/some_drawable"
android:checked="true"
/>
您只有 3 种方法可以在 RadioButton 中设置可绘制对象: