建立 IntentService
要建立一個 IntentService,請建立一個擴充套件 IntentService
的類,並在其中包含一個覆蓋 onHandleIntent
的方法:
package com.example.myapp;
public class MyIntentService extends IntentService {
@Override
protected void onHandleIntent (Intent workIntent) {
//Do something in the background, based on the contents of workIntent.
}
}