我在主屏幕上有一个“继续”和一个“新游戏”按钮。单击“新游戏”按钮时,将运行以下代码:
Case:R.id.new_button:
Intent = new Intent(this, Difficulty.class);
startActivity(openDifficulty);
break;
然后打开“难度”活动屏幕,其中包含“简单”和“困难”按钮。例如,当单击“简单”或“困难”按钮时,将运行:
case R.id.easy_button:
Intent openEasy = new Intent(this, EasyGameScreen.class);
startActivity(openEasy);
break;
case R.id.hard_button:
Intent openHard = new Intent(this, HardGameScreen.class);
startActivity(openHard);
break;
然后将用户带到相应的级别
我怎样才能让“继续”按钮从原来的相同点恢复上一场比赛?
谢谢你的帮助