我正在嘗試製作4個項目的單選按鈕列表。每個項目都需要有正確的文本,但也需要文本右側的圖像。圖像不是單選按鈕本身,它是描述選項的圖像。 到目前爲止我還沒有運氣,設計師似乎沒有把事情做好。你必須知道如何用XML編碼。 我的XML看起來是這樣的:如何將圖像放在單選按鈕的右側Android
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" android:weightSum="1" android:baselineAligned="true" android:orientation="horizontal">
<RadioGroup android:layout_weight="0.50" android:layout_height="wrap_content" android:id="@+id/radioGroup1" android:layout_width="0dp">
<RadioButton android:layout_height="wrap_content" android:layout_width="wrap_content" android:checked="true" android:text="A" android:id="@+id/radio0"></RadioButton>
<ImageView android:layout_toRightOf="@id/radio0" android:layout_height="wrap_content" android:src="@drawable/A2" android:layout_width="wrap_content" android:id="@+id/imageView1"></ImageView>
<RadioButton android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="B" android:id="@+id/radio1"></RadioButton>
<RadioButton android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="C" android:id="@+id/radio2"></RadioButton>
<RadioButton android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="D" android:id="@+id/radio3"></RadioButton>
</RadioGroup>
</LinearLayout>
我在這裏tryiong把一個圖像到第一個單選按鈕的右側,沒有成功。 如何將圖像放在單選按鈕的右側?