基本用法

建立一個新的 JobService

這是通過擴充套件 JobService 類並實現/覆蓋所需的方法 onStartJob()onStopJob() 來完成的。

public class MyJobService extends JobService
{
    final String TAG = getClass().getSimpleName();
    
    @Override
    public boolean onStartJob(JobParameters jobParameters) {
        Log.i(TAG, "Job started");

        // ... your code here ...
        
        jobFinished(jobParameters, false);  // signal that we're done and don't want to reschedule the job
        return false;                       // finished: no more work to be done
    }

    @Override
    public boolean onStopJob(JobParameters jobParameters) {
        Log.w(TAG, "Job stopped");
        return false;
    }
}

將新的 JobService 新增到 AndroidManifest.xml

以下步驟是強制性的,否則你將無法執行你的工作:

將你的 MyJobService 類宣告為 AndroidManifest.xml 中 <application> </application> 之間的新 <service> 元素。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example">
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        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:permission="android.permission.BIND_JOB_SERVICE" />
    </application>
</manifest>

設定並執行作業

實施新的 JobService 並將其新增到 AndroidManifest.xml 後,你可以繼續執行最後的步驟。

  • onButtonClick_startJob() 準備和經營一份定期工作。除了定期作業,JobInfo.Builder 還允許指定許多其他設定和約束。例如,你可以定義執行作業需要插入充電器網路連線
  • onButtonClick_stopJob() 取消所有正在執行的作業
public class MainActivity extends AppCompatActivity
{
    final String TAG = getClass().getSimpleName();

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

    public void onButtonClick_startJob(View v) {
        // get the jobScheduler instance from current context
        JobScheduler jobScheduler = (JobScheduler) getSystemService(JOB_SCHEDULER_SERVICE);

        // MyJobService provides the implementation for the job
        ComponentName jobService = new ComponentName(getApplicationContext(), MyJobService.class);

        // define that the job will run periodically in intervals of 10 seconds
        JobInfo jobInfo = new JobInfo.Builder(1, jobService).setPeriodic(10 * 1000).build();

        // schedule/start the job
        int result = jobScheduler.schedule(jobInfo);
        if (result == JobScheduler.RESULT_SUCCESS)
            Log.d(TAG, "Successfully scheduled job: " + result);
        else
            Log.e(TAG, "RESULT_FAILURE: " + result);
    }

    public void onButtonClick_stopJob(View v) {
        JobScheduler jobScheduler = (JobScheduler) getSystemService(JOB_SCHEDULER_SERVICE);
        Log.d(TAG, "Stopping all jobs...");
        jobScheduler.cancelAll(); // cancel all potentially running jobs
    }
}

在呼叫 onButtonClick_startJob() 之後,即使應用程式處於暫停狀態(使用者按下主頁按鈕且應用程式不再可見) ,作業也將以大約 10 秒的間隔執行。

你也可以呼叫 jobScheduler.cancel() 取消基於其作業 ID 的特定作業,而不是取消 onButtonClick_stopJob() 內所有正在執行的作業。