我有一个警告对话框,其中包含RadioGroup
中包含两个单选按钮的自定义视图。现在,当我通过对自定义视图进行充气时,在此OnCheckChangedListener
上设置RadioGroup
时,它不会被触发。此外,不显示错误日志。
在此之前我已经关注过这篇文章:Link
以下是我的警报对话框代码。
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>
我在问这里之前已经搜过了这个问题。在某些帖子中,答案是在设置监听器之前清除所有单选按钮的检查。我已经radioGroup.clearCheck();
尝试了这个,但没有工作。
那我在这里错过了什么?感谢您的帮助。
答案 0 :(得分:0)
在初始化侦听器之前设置视图。
试试这个:
readMetaData()['hotfixAndPatchVersion']
希望这有帮助。