在移动重启时启动活动

时间:2013-05-11 16:36:12

标签: android restart

我想设计一款应用。哪个将从移动重启开始。 我可以通过使用“android.intent.action.BOOT_COMPLETED”意图开始我的活动 但“SAMSUNG NOTE”具有重启移动设备的功能,无需关闭然后再打开 在这里我遇到问题我的应用程序没有启动“重启”

1 个答案:

答案 0 :(得分:1)

问题现在通过删除已注释的代码解决了。

    Intent startMainActivity = new Intent(context,MyActivity.class);      
    startMainActivity.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    context.startActivity(startMainActivity);
   /* Intent startMain = new Intent(Intent.ACTION_MAIN);
    startMain.addCategory(Intent.CATEGORY_HOME);
    startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    context.startActivity(startMain);*/

我的应用程序启动后,我使用注释代码启动主屏幕