无法在具有自定义视图的警报对话框中触发 RadioGroup 的检查更改事件

Can't trigger OnCheck Changed Evet of RadioGroup in Alert dialog with custom view

我有一个警告对话框,它的自定义视图在 RadioGroup 中包含两个单选按钮。现在,当我通过膨胀自定义视图在此 RadioGroup 上设置 OnCheckChangedListener 时,它不会被触发。也没有显示错误日志。

我已经关注了这个 post,然后才在这里提问:

以下是我的警报对话框代码。

AlertDialog.Builder alt_bld = new AlertDialog.Builder(this, R.style.AlertDialogStyle);
    alt_bld.setTitle("Select Date");
    alt_bld.setView(R.layout.alert_dialog_radiogroup);

    //here I'm setting listener. 
    try{
        final View view = View.inflate(addAlarm.this, R.layout.alert_dialog_radiogroup, null);
        radioGroup = (RadioGroup)view.findViewById(R.id.radio);
        radioGroup.clearCheck();
        radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup radioGroup, @IdRes int i) {
                //My code to handle checked radio button. 
            }
        });
    } catch (Exception e){
        e.printStackTrace();
    }

    //setting +ve and -ve buttons here.
    ...

    AlertDialog alert = alt_bld.create();
    alert.show();

这是我的警报对话框自定义视图。

alert_dialog_radiogroup.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="100sp" >

<RadioGroup
    android:layout_width="match_parent"
    android:id="@+id/radio"
    android:layout_marginTop="10sp"
    android:layout_marginStart="25sp"
    android:layout_marginBottom="15sp"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <RadioButton
        android:id="@+id/track_everyday"
        android:textColor="@color/colorPrimaryText"
        android:layout_width="wrap_content"
        android:buttonTint="@color/colorAccent"
        android:layout_height="wrap_content"
        android:text="@string/everyday" />

    <RadioButton
        android:id="@+id/custom_track"
        android:layout_marginTop="8sp"
        android:textColor="@color/colorPrimaryText"
        android:layout_width="wrap_content"
        android:buttonTint="@color/colorAccent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/rd"
        android:text="@string/custom" />

</RadioGroup>

我在这里问之前搜索过这个问题。在某些 post 中,答案是在设置侦听器之前清除所有单选按钮的检查。我已经通过 radioGroup.clearCheck(); 尝试过,但没有用。

那么我在这里缺少什么?感谢您的帮助。

您正在设置视图,然后再初始化其上的侦听器。

试试这个:

AlertDialog.Builder alt_bld = new AlertDialog.Builder(this, R.style.AlertDialogStyle);
alt_bld.setTitle("Select Date");


try{
    final View view = View.inflate(addAlarm.this, R.layout.alert_dialog_radiogroup, null);
    radioGroup = (RadioGroup)view.findViewById(R.id.radio);
    radioGroup.clearCheck();
    radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
        @Override
        public void onCheckedChanged(RadioGroup radioGroup, @IdRes int i) {
            //My code to handle checked radio button. 
        }

    });
    alt_bld.setView(view);
} catch (Exception e){
    e.printStackTrace();    
}

//setting +ve and -ve buttons here.
...

AlertDialog alert = alt_bld.create();
alert.show();

希望对您有所帮助。