答案 0 :(得分:0)
我猜您已在code
(Method
回调方法life-cycle
or
方法)之外添加了own
部分以上这就是你收到错误的原因:
cannot resolve symbol 'equals'
。
<强> SOLUTION:强>
将code
部分移到method
内。这是一个例子:
@Override
protected void onCreate(Bundle savedInstance) {
super.onCreate(savedInstance);
..........
.................
int QuizSelection = 20;
Intent gotosetone = getIntent();
Intent gotosetone2 = getIntent();
String randomintent1 = gotosetone.getStringExtra(AlarmClock.EXTRA_MESSAGE);
String randomintent2 = gotosetone2.getStringExtra(AlarmClock.EXTRA_MESSAGE);
if (randomintent1.equals("Quiz One")){
QuizSelection = 1;
} else if (randomintent2.equals("Quiz Two")){
QuizSelection = 2;
}
...........
..................
}
希望这会有所帮助〜