問題???
Android中如何設置RadioButton在文字的右邊,圖標在左邊???
解決方法 :
第一步:
android:button="@null"這條語句將原來系統的RadioButton圖標給隱藏起來。
第二步:
android:drawableRight="@android:drawable/btn_radio"這條語句
在原來圖標的右邊添加一個系統自帶的btn_radio圖標,我想RadioButton就是在btn_radio圖標上進行封裝而已。
<?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:orientation="vertical" >
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:button="@null"
android:checked="true"
android:drawableRight="@android:drawable/btn_radio"
android:paddingLeft="10dp"
android:text="RadioButton" />
<RadioButton
android:id="@+id/button2"
android:layout_width="319dp"
android:layout_height="wrap_content"
android:button="@null"
android:drawableRight="@android:drawable/btn_radio"
android:paddingLeft="10dp"
android:text="RadioButton" />
</RadioGroup>
</LinearLayout>
附參考網站: http://www.02521.com /cod/10496.html