当应用程序从后台删除时,如何停止 JobService Scheduled?

Posted

技术标签:

【中文标题】当应用程序从后台删除时,如何停止 JobService Scheduled?【英文标题】:How to stop JobService Scheduled to when app is removed from background? 【发布时间】:2018-06-20 09:33:07 【问题描述】:

目前我正在使用一个应用程序,我的应用程序有一个功能,用户可以点击导航按钮,我的应用程序将启动谷歌地图。到现在为止都很好,我已经做到了。但我被卡住的事实是我希望我的应用程序执行一些任务。为了实现这一点,我使用了 JobService 并安排它在每 5 秒后运行一次,即使应用程序处于后台也是如此。

当用户按下后退按钮然后在 onDestroy 方法中我取消了调度程序。但是,当应用程序通过滑动或按下十字图标从后台移除时,JobService 会继续运行,因为当它从后台移除时,操作系统可以调用或不调用 onDestroy 方法。从后台删除应用程序后,如何停止计划的作业?

androidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="javarank.com.serviceinbackground">

    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <service android:name=".MyJobService" android:exported="true" android:permission="android.permission.BIND_JOB_SERVICE" />

    </application>

</manifest>

MyJobService 类

public class MyJobService extends JobService 

    @Override
    public boolean onStartJob(final JobParameters jobParameters) 
        Toast.makeText(getApplicationContext(), "Doing job", Toast.LENGTH_SHORT).show();
        jobFinished(jobParameters, true);
        return false;
    

    @Override
    public boolean onStopJob(JobParameters jobParameters) 
        return false;
    

这是我的 MainActivity

public class MainActivity extends AppCompatActivity 

    private static final  int JOB_ID = 1;

    private JobInfo jobInfo;
    private JobScheduler scheduler;

    private Button navigateButton;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        ComponentName componentName = new ComponentName(this, MyJobService.class);
        JobInfo.Builder builder = new JobInfo.Builder(JOB_ID, componentName);
        builder.setPeriodic(5000);
        builder.setRequiredNetworkType(JobInfo.NETWORK_TYPE_ANY);
        // if true this job exists even after a system reboot...
        builder.setPersisted(false);


        jobInfo = builder.build();

        scheduler = (JobScheduler) getSystemService(JOB_SCHEDULER_SERVICE);
        scheduler.schedule(jobInfo);

        navigateButton = (Button) findViewById(R.id.navigate_button);

        navigateButton.setOnClickListener(new View.OnClickListener() 
            @Override
            public void onClick(View view) 
                StringBuffer url = new StringBuffer("https://www.google.com/maps/dir/?api=1");
                url.append("&origin=23.755736,90.374627");
                url.append("&destination=23.754047,90.371682");
                url.append("&travelmode=driving");
                Uri gmmIntentUri = Uri.parse(url.toString());
                Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
                mapIntent.setPackage("com.google.android.apps.maps");
                startActivity(mapIntent);
            
        );

    

    @Override
    protected void onDestroy() 
        Toast.makeText(getApplicationContext(), "Destroy called.", Toast.LENGTH_SHORT).show();
        scheduler.cancel(JOB_ID);
        super.onDestroy();
    


【问题讨论】:

嗨 Anik,有什么解决方案吗? 【参考方案1】:

我认为您需要重写以下 onStop() 方法并放置 stopService() 命令来停止 JobService。

@Override
protected void onStop() 
    // A service can be "started" and/or "bound". In this case, it's "started" by this Activity
    // and "bound" to the JobScheduler (also called "Scheduled" by the JobScheduler). This call
    // to stopService() won't prevent scheduled jobs to be processed. However, failing
    // to call stopService() would keep it alive indefinitely.
    stopService(new Intent(this, MyJobService.class));
    super.onStop();

【讨论】:

【参考方案2】:

你可以像这样创建一个新的服务

MyService.java

public class MyService extends Service 
public MyService() 


@Override
public IBinder onBind(Intent intent) 
    return null;
    
@Override
public void onTaskRemoved(Intent rootIntent) 
    super.onTaskRemoved(rootIntent);
    //stop you jobservice from here
    stopSelf();

 

并从 MainActivity.java 启动它

startService(new Intent(MainActivity.this,MyService.class));

【讨论】:

尝试了您的解决方案,但没有成功。你能解释一下这个方法什么时候被调用以及它是如何工作的吗? 当您从后台删除应用程序时,会调用此方法。 这不适用于 Android 8.0+,因为后台服务只能在应用程序处于前台时工作。【参考方案3】:

Android> 7 自动节省电池电量。您必须开启应用程序的省电停止功能。

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) 
            Intent intent = new Intent();
            String packageName = getPackageName();
            PowerManager pm = (PowerManager) getSystemService(POWER_SERVICE);
            if (!pm.isIgnoringBatteryOptimizations(packageName)) 
                intent.setAction(Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS);
                intent.setData(Uri.parse("package:" + packageName));
                startActivity(intent);
            
        

将此添加到 AndroidManifest.xml

<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>

【讨论】:

【参考方案4】:

我遇到了这个问题,但我发现在安排作业服务后,它不能被取消(从视图)。 所以我转而通过调用 onStopJob(params) 在作业服务中停止它 并且成功了。

【讨论】:

以上是关于当应用程序从后台删除时,如何停止 JobService Scheduled?的主要内容,如果未能解决你的问题,请参考以下文章

从最近删除应用程序时后台服务停止

停止本地通知

当应用程序从堆栈中被杀死时,后台服务停止

当应用程序从后台返回到前台时,CMDeviceMotion 停止更新

当用户按下主页按钮时停止 Android 服务

当应用程序在后台时如何停止位置服务?