Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android中設置RadioButton詳解

Android中設置RadioButton詳解

編輯:關於Android編程

問題???
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
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved