我有一个带有3个radioButtons的radioGroup。选择单选按钮后,它会将您带到另一个活动并访问该第二个活动中的特定片段。我没有编译或运行时错误。问题:你可以选择radioButton但没有任何反应。我是android工作室和java的新手。我将不胜感激任何帮助。大多数问题都是使用按钮来访问新活动而不是单选按钮。
package com.example.joseph.ex51_twoactivities;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.RadioButton;
public class MainActivity extends Activity implements View.OnClickListener {
//EditText etMessage;
RadioButton profOne;
RadioButton profTwo;
RadioButton profThree;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//etMessage = (EditText)findViewById(R.id.etMessage);
profOne = (RadioButton)findViewById(R.id.rdProf1);
profTwo = (RadioButton)findViewById(R.id.rdProf2);
profThree = (RadioButton)findViewById(R.id.rdProf3);
if(profOne.isChecked()) {
profOne.setOnClickListener(this);
}
if(profTwo.isChecked()) {
profTwo.setOnClickListener(this);
}
if(profThree.isChecked()) {
profThree.setOnClickListener(this);
}
}
答案 0 :(得分:0)
我想通了,我不应该在onCreate方法下有一个条件语句。