是否可以在Android中制作单选按钮,其中有按钮而不是常规按钮的图像表示?我希望它看起来像那样:
中间的青色代表所选按钮。
我该怎么做?
答案 0 :(得分:29)
RadioButton
类有一个buttonDrawable
成员,派生自CompoundButton
。
您可以通过多种方式更改此drawable。
来自java:
myRadioButton.setButtonDrawable(resourceId or Drawable);
来自xml:
<RadioButton
android:button="@drawable/yourdrawable"
...
/>
如果您只想让检查/未检查状态看起来不同,那么