private int info = 1;
public void nextStep(View view)
{
TextView textInfo = (TextView) findViewById(R.id.textInfo);
textInfo.setText(R.string.info1);
info++;
}
单击一个按钮时,nextStep
将调用方法。每次单击按钮时,我都想显示不同的信息,第一次是info1
字符串,下一次是info2
字符串等等strings.xml
。我想做这样的事情:
private int info = 1;
public void nextStep(View view)
{
TextView textInfo = (TextView) findViewById(R.id.textInfo);
textInfo.setText(R.string.info + info);
info++;
}
当然,这是不可能的。我该怎么办?我真的不想写一个大的 if/else 或 switch 语句。谢谢。