Android中RadioGroup中单选按钮的问题

时间:2014-03-16 06:43:42

标签: android android-radiogroup android-radiobutton

我的Activity有一个带有两个单选按钮的RadioGroup和Save按钮,它在String变量“type”中保存一个值。第一个单选按钮将类型初始化为“禁食”,第二个按钮将“类型”初始化为“非禁食”。如果我选择第二个选项,则表示未初始化类型。要使第二个按钮工作,我必须选择第一个按钮,然后单击保存,然后如果我再次选择第二个选项,它将工作。这是代码。

diabetes_options.xml

<RadioGroup
    android:id="@+id/do_radioGroup1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/do_editText1"
    android:visibility="visible" >

    <RadioButton
        android:id="@+id/do_fasting"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Fasting" />

    <RadioButton
        android:id="@+id/do_nonfasting"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Non Fasting" />
</RadioGroup>

DiabetesOptions.java(保存按钮的onClick方法内)

public class DiabetesOptions extends Activity {

int typeFlag=0;

@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    rGroup=(RadioGroup)findViewById(R.id.do_radioGroup1);
}
//This is the method invoked if we click Sabe button
public void onSave(View view) {

    rGroup.setOnCheckedChangeListener(new OnCheckedChangeListener() {

        @Override
        public void onCheckedChanged(RadioGroup group, int checkedId) {
            // TODO Auto-generated method stub
            switch(checkedId){
            case R.id.do_fasting:
                type="Fasting";
                typeFlag=1;
                break;
            case R.id.do_nonfasting:
                type="Non Fasting";
                typeFlag=1;
                break;
            }
        }
    });

    SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");
    SimpleDateFormat timeFormat = new SimpleDateFormat("HH:mm");
    date = dateFormat.format(new Date());
    time = timeFormat.format(new Date());
    try {
        if(flag==1) {
        DiabetesDatabase entry = new DiabetesDatabase(this);
         if(typeFlag==1){
            entry.createEntry(date,time,type,level);
            Toast th = Toast.makeText(DiabetesOptions.this, "Entry Saved", Toast.LENGTH_SHORT);
            th.show();
         }
         else if(typeFlag==0){
            AlertDialog.Builder alertDialog=new AlertDialog.Builder(DiabetesOptions.this);
            alertDialog.setTitle("Alert!!!");
            alertDialog.setMessage("Select FASTING or NON FASTING option");
            alertDialog.setNeutralButton(android.R.string.ok, new DialogInterface.OnClickListener() {
                   public void onClick(DialogInterface dialog, int id) {
                       dialog.dismiss();                        
                   }
               });
            alertDialog.show();
         }
        }

}

1 个答案:

答案 0 :(得分:0)

您遇到此行为,因为OnCheckedChangedListener仅在您第一次单击“保存”按钮后才会注册。但那时候你不能再做任何OnCheckedChanged事件了,因为在你点击按钮之前就已经发生过了。

每次单击“保存”按钮时,也会设置一个新的OnCheckedChangedListener。我不认为这就是你想要的。

RadioGroup方法中初始化onCreate时设置OnCheckedChangeListener。这应该够了吧。如果有效,请告诉我。