第二次更改启动器类

时间:2013-02-22 13:11:09

标签: android android-intent

我有一个Android应用程序,它使用登录页面启动,并在成功登录后继续进行另一项活动。首次登录后,应用程序会在SD卡上存储一些数据。在第二次运行时,我执行检查,我想交换活动启动器。登录页面不再出现,我没有收到任何错误,但第二个活动也没有显示。 (我只有白屏无所事事)。 任何建议都会很受欢迎,谢谢。

以下是主要活动的一段代码:

if (checkIfDataStored()){
      swapToSecondPage();
}
else{
      //some actions here
}

这是swaptoSecondPage()方法

Intent intent = new Intent(FirstClass.this, SecondClass.class);
startActivity(intent);

0 个答案:

没有答案