如何停止JobService计划到从后台删除应用程序时?

时间:2018-01-11 05:50:06

标签: java android google-maps jobservice

目前我正在使用某个应用程序,我的应用程序具有以下功能:用户可以单击“导航”按钮,我的应用程序将启动Google地图。直到现在它很好,我已经做到了。但我被卡住的事实是我希望我的应用程序执行一些任务。为了实现这一点,我已经使用了JobService,并计划在每5秒后运行它,即使应用程序处于后台也是如此。

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

enter image description here

enter image description here

的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();
    }

}

4 个答案:

答案 0 :(得分:0)

您可以创建一个新服务,例如

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));

答案 1 :(得分:0)

我认为您需要覆盖以下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 :(得分:0)

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"/>

答案 3 :(得分:0)

我遇到了这个问题,但是我发现预定工作服务后,无法取消它(从视图中)。 因此,我通过调用 onStopJob(params)在求职服务中将其停止 而且有效。

相关问题