【发布时间】:2014-03-19 16:19:37
【问题描述】:
我在 setOnCheckedChangeListener 和 OnCheckedChangeListener 下有红线。错误消息告诉我:此行的多个标记 - OnCheckedChangedListener 无法解析为类型 - RadioGroup 类型中的方法 setOnCheckedChangedListener(RadioGroup.OnCheckedChangeListener) 不适用于参数(新的 OnCheckedChangeListener(){})
package com.lifematters;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.View;
import android.widget.Button;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;
public class Test1 extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test1);
//define Navigation Image Buttons
final Button nextBtn = (Button) findViewById(R.id.btnNext);
RadioGroup radioGroup = (RadioGroup) findViewById(R.id.radioAnswers1);
radioGroup.setOnCheckedChangeListener(new OnCheckedChangeListener()
{
public void onCheckedChanged (RadioGroup group, int checkedId){
final RadioButton radioButton1 = (RadioButton) findViewById(R.id.radioA1);
final RadioButton radioButton2 = (RadioButton) findViewById(R.id.radioA2);
final RadioButton radioButton3 = (RadioButton) findViewById(R.id.radioA3);
final RadioButton radioButton4 = (RadioButton) findViewById(R.id.radioA4);
if (radioButton1.isChecked()) {
DisplayToast("No, not at all");
} else if (radioButton2.isChecked()) {
DisplayToast("On some days");
}else if (radioButton3.isChecked()) {
DisplayToast("On more than half the days");
}else {
DisplayToast("Nearly everyday");
}
}
});
}
}
【问题讨论】:
-
按 ctrl+shift+o 在你的 Eclipse 中导入类..
标签: java android radio-button radio-group