我正在使用使用Android 5.0.2的三星Galaxy Grand Prime。我想做的很简单,我希望我的应用程序在手机重启时启动。我知道要激活广播公司,我必须在安装后先手动运行应用程序。我这样做,它仍然无法正常工作。这是我的广播代码:
public class onStartupReceiver extends BroadcastReceiver {
public onStartupReceiver() {
}
@Override
public void onReceive(Context context, Intent intent) {
Log.e("PLEASE", "System boot notification received.");
if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
Log.e("PLEASE", "System boot notification received.");
Intent i = new Intent(context,TestGPSBackgroundActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
}
这是我明确的相关代码:
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:name="android.support.multidex.MultiDexApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:installLocation="internalOnly">
<activity
android:name=".TestGPSBackgroundActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name="com.example.jorge.gpsevixel.onStartupReceiver"
android:enabled="true"
android:exported="true"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED" >>
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
<action android:name="android.intent.action.REBOOT"/>
<action android:name="com.htc.intent.action.QUICKBOOT_POWERON"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
</application>
我一直在进行大量研究,建议删除行android:permission =&#34; android.permission.RECEIVE_BOOT_COMPLETED&#34;从接收器等,但没有运气。
我已经阅读了App doesn't auto-start an app when booting the device in Android之类的内容以及许多类似的问题/答案,但没有人帮助过我。希望任何人都可以帮助我,我会变得绝望。