수색…


비고

onStartJob() 과 같이 코드를 많이 실행하거나 JobService 내에서 많은 작업을 수행하지 JobService 주의하십시오. 이 코드는 기본 / UI 스레드에서 실행되므로 차단 된 UI로 이어지고 더 이상 응답하지 않는 응용 프로그램 또는 응용 프로그램의 충돌을 일으킬 수 있습니다!

따라서 Thread 또는 AsyncTask 사용하여 작업을 오프로드해야합니다.

기본 사용법

새로운 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;
    }
}

AndroidManifest.xml에 새 JobService를 추가하십시오.

다음 단계는 필수 사항입니다 . 그렇지 않으면 작업을 실행할 수 없습니다.

AndroidManifest.xml의 <application> </application> 사이에 새로운 <service> 요소로 MyJobService 클래스를 선언하십시오.

<?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 초 간격으로 실행됩니다.

onButtonClick_stopJob() 내에서 실행중인 모든 작업을 취소하는 대신 jobScheduler.cancel() 을 호출하여 작업 ID를 기반으로 특정 작업을 취소 할 수도 있습니다.



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow