我正在创建一个测验应用程序。在下面的代码中,我希望在startActivity(intent);
Activity 完成后执行代码。当前状态下的应用程序将显示问题文本和答案按钮。一旦用户做出选择,下一个问题和相应的答案按钮将在启动新活动之前显示片刻。我想要的是应用程序在选择答案后直接进入新活动,一旦新活动完成,就会显示下一个问题。
我的代码:
Intent intent = new Intent(getApplicationContext(), NewActivity.class);
startActivity(intent);
// helper variable to keep track of the current question
questionCounter++;
if(questionCounter < numGameQuestions)
{
// displays the next question
playGame(randQuestionsArr[questionCounter]);
}