91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

android alertdialog如何實現單選功能

小樊
86
2024-10-15 10:10:00
欄目: 編程語言

在Android中,要實現AlertDialog的單選功能,你可以使用AlertDialog.Builder結合RadioGroup來實現。下面是一個簡單的示例代碼:

  1. 首先,在布局文件中創建一個RadioGroup,并為每個單選按鈕設置一個唯一的ID。例如:
<RadioGroup
    android:id="@+id/radio_group"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <RadioButton
        android:id="@+id/radio_button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="選項1"/>

    <RadioButton
        android:id="@+id/radio_button2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="選項2"/>

    <RadioButton
        android:id="@+id/radio_button3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="選項3"/>

</RadioGroup>
  1. 然后,在你的Activity或Fragment中,使用AlertDialog.Builder創建一個AlertDialog,并將RadioGroup作為自定義視圖添加到AlertDialog中:
AlertDialog.Builder builder = new AlertDialog.Builder(this);
LayoutInflater inflater = this.getLayoutInflater();
View dialogView = inflater.inflate(R.layout.dialog_radio_group, null);
builder.setView(dialogView);
  1. 為AlertDialog設置標題、確認按鈕和取消按鈕:
builder.setTitle("請選擇一個選項");
builder.setPositiveButton("確定", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        RadioGroup radioGroup = dialogView.findViewById(R.id.radio_group);
        int selectedId = radioGroup.getCheckedRadioButtonId();
        switch (selectedId) {
            case R.id.radio_button1:
                // 選項1被選中時的操作
                break;
            case R.id.radio_button2:
                // 選項2被選中時的操作
                break;
            case R.id.radio_button3:
                // 選項3被選中時的操作
                break;
        }
    }
});
builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        dialog.dismiss();
    }
});
  1. 最后,顯示AlertDialog:
builder.show();

現在,當用戶點擊確定按鈕時,將彈出AlertDialog并顯示單選按鈕。用戶只能選擇一個選項,當用戶點擊取消按鈕時,將關閉AlertDialog。

0
静乐县| 安龙县| 江孜县| 凌海市| 五原县| 家居| 定安县| 房产| 剑阁县| 嘉定区| 双城市| 湘西| 鹤山市| 忻州市| 垫江县| 沙田区| 土默特右旗| 连州市| 孝义市| 进贤县| 丘北县| 麻栗坡县| 苏尼特左旗| 万安县| 景洪市| 大渡口区| 阿勒泰市| 台东市| 左贡县| 宜城市| 勐海县| 醴陵市| 濮阳市| 荣成市| 大港区| 临武县| 兴和县| 三穗县| 萍乡市| 甘洛县| 溧水县|