我正在谈论多项选择测试。
我有一些图像作为单选和多项选择的答案。
<radio button or checkbox here> <image here>
programatically
我需要将图像添加到可绘制文件夹中的单选按钮或复选框的右侧
如何实现这一目标?
我正在谈论多项选择测试。
我有一些图像作为单选和多项选择的答案。
<radio button or checkbox here> <image here>
programatically
我需要将图像添加到可绘制文件夹中的单选按钮或复选框的右侧
如何实现这一目标?
在你的 xml 文件中试试这个..
<RadioButton
android:drawableRight="@drawable/icon"
android:id="@+id/radioButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></RadioButton>
编辑
对不起..
可能你正在寻找这个..
RadioButton rb = (RadioButton) findViewById(R.id.radioButton1);
Drawable d = getResources().getDrawable(R.drawable.icon);
rb.setCompoundDrawables(null, null, d, null);