我正在制作数学游戏并且无法在按钮点击方法上显示正确/错误的答案。 基本上我在我的方程式方法中创建了一个if / else语句,并且在其中,语句被假设做类似于用户输入匹配正确答案,将textviews文本更改为“correct”,否则为“wrong”。这可以在用户单击按钮时发生。
这是我的代码,由于某种原因没有做任何事情:
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
Log.d(TAG, "onCreate");
setContentView(R.layout.gamelayout);
int diff = getIntent().getIntExtra(KEY_DIFFICULTY, DIFFICULTY_EASY);
edittext = (EditText) findViewById(R.id.USERentry);
questionLabel = (TextView) findViewById(R.id.question_label);
answerLabel = (TextView) findViewById(R.id.rightwrong_label);
button1 = (Button) findViewById(R.id.keypad_1);
button1.setOnClickListener(new OnClickListener(){
public void onClick(View v) {
// Perform action on clicks
//String buttonText = (String) button.getText();
edittext.setText(edittext.getText() + "1");
//edittext.setText() = edittext.getText() + "1";
}
});
button2 = (Button) findViewById(R.id.keypad_2);
button2.setOnClickListener(new OnClickListener(){
public void onClick(View v) {
edittext.setText(edittext.getText() + "2");
}
});
...some more buttons...
buttonhash = (Button) findViewById(R.id.keypad_hash);
buttonhash.setOnClickListener(new OnClickListener(){
public void onClick(View v) {
answerLabel.getText();
answerLabel.setBackgroundColor(R.color.background_answer);
}
});
getGame(diff);
}
public void Easy12(){
Random rand = new Random();
final int a = (int) rand.nextInt(20)+1;
final int b = (int) rand.nextInt(20)+1;
String aString = Integer.toString(a);
String bString = Integer.toString(b);
String display = aString + " + " + bString + " =";
questionLabel.setText(display);
final int c = a + b;
if(edittext.getText().toString().equals(String.valueOf(c))){
answerLabel.setText(R.string.answer_correct);
answerLabel.setTextColor(R.color.correct_color);
}
else
{
answerLabel.setText(R.string.answer_wrong);
answerLabel.setTextColor(R.color.wrong_color);
//answerLabel.setBackgroundColor(R.color.background_answer);
}
}
没关系,我开始工作了。
基本上我必须在onCreate()中通过说buttonhash.setOnClickListener(this)来设置onClickListener;
此外,我必须为类Game实现OnClickListener。
最后,这导致了一个onClick(View v)方法,我可以编写每个按钮的代码。 :)快乐的日子。