如何在单选按钮和复选框右侧显示图像

时间:2012-11-28 12:11:46

标签: android

我正在讨论多项选择测试。

我有一些图像作为单选和多选的答案。

<radio button or checkbox here>  <image here>

我需要在drawable文件夹中添加imobages右侧的radiobuttons或复选框programatically

如何实现这一目标?

1 个答案:

答案 0 :(得分:3)

在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);