2012-11-28 13 views
0

我正在谈多选题测试。如何显示单选按钮右边的图像和复选框

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

<radio button or checkbox here> <image here> 

我需要的imgages从绘制文件夹

添加单选按钮或复选框programatically权如何达致这?

回答

2

试试这个在您的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); 
+0

嘿,我需要添加它progrmatically ... – Goofy

+0

它也会申请复选框吗? – Goofy

+0

是的..它会.. –