国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

Android UI教程 - Android RelativeLayout

2018-01-09 14:51 更新

Android UI教程 - Android RadioButton


一個單選按鈕給用戶幾個選擇和用戶只能選擇一個項目。

單選按鈕通常屬于一個組,并且每個組只能有一次選擇一個項目。

要在Android中創(chuàng)建一組單選按鈕,首先創(chuàng)建一個 RadioGroup ,然后使用單選按鈕填充組。

例子

在Android中,您使用 android.widget.RadioGroup 實現(xiàn)一個單選組和無線電按鈕使用 android.widget.RadioButton 。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <RadioGroup
        android:id="@+id/rBtnGrp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <RadioButton
            android:id="@+id/chRBtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="XML" />

        <RadioButton
            android:id="@+id/fishRBtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="HTML" />

        <RadioButton
            android:id="@+id/stkRBtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="CSS" />

    </RadioGroup>

</LinearLayout>
null


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號