您好,登錄后才能下訂單哦!
RadioButton 是 Android 中的單選按鈕控件,通常用于用戶需要在多個選項中選擇一個的情況。使用 RadioButton 控件很簡單,以下是一些基本的用法:
<RadioGroup
android:id="@+id/radio_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<RadioButton
android:id="@+id/radio_button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 1"/>
<RadioButton
android:id="@+id/radio_button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 2"/>
</RadioGroup>
RadioGroup radioGroup = findViewById(R.id.radio_group);
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
RadioButton radioButton = findViewById(checkedId);
String selectedOption = radioButton.getText().toString();
// 處理選中的選項
}
});
以上代碼中,我們首先通過 findViewById 方法找到 RadioGroup 控件,然后設置一個 OnCheckedChangeListener 監聽器,當用戶點擊 RadioButton 時,會觸發 onCheckedChanged 方法,我們可以在這個方法中處理選中的選項。
如果希望在打開頁面時就有一個選項被選中,可以在 XML 文件中為 RadioButton 添加 android:checked=“true” 屬性。
<RadioButton
android:id="@+id/radio_button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 1"
android:checked="true"/>
這樣在打開頁面時,Option 1 將會被默認選中。
以上是 RadioButton 控件的基本用法,你可以根據自己的需求進行進一步的定制和使用。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。