我使用的是 Android 3.2,我创建了我的 android 应用程序,当我的平板电脑启动完成时,它将自动启动。
一切正常,除了当应用程序自动开始运行时活动运行两次(启动完成后)。
当我手动启动应用程序时,不会出现此问题。
公共类 BootStartUpApp 扩展 BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent startUpApps = new Intent(context, StartMainActivity.class);
startUpApps.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(startUpApps);
}
}
在清单文件中,我添加了以下代码:
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<receiver android:name="com.logica.eHealthBox.tab.activity.BootStartUpApp" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>