最初,我使用Android 7.0,并且使用BroadcastReceiver
和服务没有任何问题。但是随着对Android 8.0的更改。我需要切换到JobIntentService
,以便我的应用程序可以在启动时运行。
我尝试迁移代码以匹配JobIntentService
,但是启动时没有任何反应。
我不确定原因是因为我的服务类别还是我的BroadcastReceiver
类别。
AndroidManifest.xml
<service android:name=".backgroundService"
android:permission="android.permission.BIND_JOB_SERVICE"/>
backgroundService.java
public class backgroundService extends JobIntentService {
public static final int JOB_ID = 0x01;
public static void enqueueWork(Context context, Intent work) {
enqueueWork(context, backgroundService.class, JOB_ID, work);
}
@Override
protected void onHandleWork(@NonNull Intent intent) {
Toast.makeText(this, "Application and Service Started", Toast.LENGTH_LONG).show();
Intent dialogIntent = new Intent(this, Home.class);
dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(dialogIntent);
}
}
startOnBoot.java
public class startOnBoot extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction() != null && intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
Log.i("In" , "getAction() - Boot");
backgroundService.enqueueWork(context, intent);
}
else
Log.i("No" , "Boot");
}
}
因此,我实际上是在启动时启动Home.class
。
答案 0 :(得分:0)
我尝试过,它可以正常运行。您可以检查以下三个提示。
1。检查您是否已声明RECEIVE_BOOT_COMPLETED
权限。
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
2。检查是否已通过BOOT_COMPLETED
动作声明接收方。
<receiver android:name=".startOnBoot">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
3。在您的服务中删除Toast.makeText(this, "Application and Service Started", Toast.LENGTH_LONG).show();
或在主线程中对其进行烘烤。否则会给您错误java.lang.RuntimeException: Can't toast on a thread that has not called Looper.prepare()
。