IntentService 詳解(從使用到源碼擼一遍)

為什么會(huì)有IntentService撑蚌?

我們知道挠说,Service作為四大組件之一吵冒,也會(huì)是運(yùn)行在主線程的纯命,所以我們?nèi)绻泻臅r(shí)的操作,應(yīng)該新開一個(gè)線程痹栖。
為此android專門提供了一個(gè)類亿汞,就是IntentService,它的里邊包含了一個(gè)handler用于處理后臺(tái)線程揪阿。
使用IntentService疗我,首先繼承它,然后實(shí)現(xiàn)onHandleIntent()方法南捂。

舉個(gè)例子吴裤,模擬上傳和下載文件的demo:
我的IntentService:

package example.ylh.com.service_demo;

import android.app.IntentService;
import android.content.Intent;
import android.util.Log;

/**
 * Created by yangLiHai on 2017/8/30.
 */

public class TestIntentService extends IntentService {

    private String TAG = TestIntentService.class.getSimpleName();
    public static final String ACTION_UPLOAD_FILE = "action_upload_file";
    public static final String ACTION_DOWNLOAD_FILE = "action_download_file";

    /**
     * Creates an IntentService.  Invoked by your subclass's constructor.
     *
     *  Used to name the worker thread, important only for debugging.
     */
    public TestIntentService() {
        super("test intent service");
        Log.e(TAG,"construction");
    }

    @Override
    public void onCreate() {
        Log.e(TAG,"oncreate");
        super.onCreate();
    }

    @Override
    public void onDestroy() {
        Log.e(TAG,"ondestroy");
        super.onDestroy();
    }

    @Override
    protected void onHandleIntent(Intent intent) {

        String action = intent.getAction();
        if (action.equals(ACTION_DOWNLOAD_FILE)){
            downloadFile();
        }else if (action.equals(ACTION_UPLOAD_FILE)){
            uploadFile();
        }
        try {
            Thread.sleep(300);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    private void uploadFile(){

        Log.e(TAG,"handleintent upload:"+Thread.currentThread().getId()+"");
    }
    private void downloadFile(){

        Log.e(TAG,"handleintent download:"+Thread.currentThread().getId()+"");
    }
}

activity代碼:

package example.ylh.com.service_demo;

import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.util.Log;
import android.view.View;

import example.ylh.com.R;

/**
 * Created by yanglihai on 2017/8/17.
 */

public class ServiceTestActivity extends Activity {

    public static final String TAG = ServiceTestActivity.class.getSimpleName();

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

        findViewById(R.id.btn4).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                startUploadService();
            }
        });
        findViewById(R.id.btn5).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                startDownloadService();
            }
        });
    }

    public void startDownloadService(){
        Intent i = new Intent(ServiceTestActivity.this, TestIntentService.class);
        i.setAction(TestIntentService.ACTION_DOWNLOAD_FILE);
        startService(i);
    }
    public void startUploadService(){
        Intent i = new Intent(ServiceTestActivity.this, TestIntentService.class);
        i.setAction(TestIntentService.ACTION_UPLOAD_FILE);
        startService(i);
    }


}

通過Intent來傳遞數(shù)據(jù),分發(fā)不同的任務(wù)溺健。多次調(diào)用會(huì)被內(nèi)部的handler放到隊(duì)列中麦牺,任意時(shí)間只有一個(gè)intent正在被處理,隊(duì)列中沒有需要處理的任務(wù)的時(shí)候鞭缭,就會(huì)銷毀自己剖膳。
多次點(diǎn)擊兩個(gè)按鈕的打印結(jié)果如下:

可以清楚地看到,上傳和下載任務(wù)都是在子線程中執(zhí)行的岭辣,當(dāng)所有的任務(wù)執(zhí)行完之后就會(huì)destroy吱晒。所以使用IntentService我們不用考慮Service的生命周期,也不用自己創(chuàng)建子線程開啟任務(wù)沦童,一切都幫我們做好了仑濒,用起來還是很方便的。

IntentService源碼解析

IntentService繼承自Service偷遗,他是一個(gè)特殊的service墩瞳,它的內(nèi)部封裝了HandlerThread和Handler。
這是它的onCreate方法:


    @Override
    public void onCreate() {
        // TODO: It would be nice to have an option to hold a partial wakelock
        // during processing, and to have a static startService(Context, Intent)
        // method that would launch the service & hand off a wakelock.

        super.onCreate();
        HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
        thread.start();

        mServiceLooper = thread.getLooper();
        mServiceHandler = new ServiceHandler(mServiceLooper);
    }

第一次啟動(dòng)的時(shí)候鹦肿,onCreate方法會(huì)被調(diào)用矗烛,創(chuàng)建了一個(gè)HandlerThread,然后使用它的looper來構(gòu)造mServiceHandler(一個(gè)handler對象)箩溃。這樣mServiceHandler就可以在子線程處理任務(wù)了瞭吃。執(zhí)行完oncreat之后,就會(huì)執(zhí)行onStartCommand方法涣旨,多次啟動(dòng)IntentService就會(huì)多次調(diào)用onStartCommand方法歪架,
這是onStartCommand方法的具體代碼:

@Override
public int onStartCommand(@Nullable Intent intent, int flags, int startId) {
    onStart(intent, startId);
    return mRedelivery ? START_REDELIVER_INTENT : START_NOT_STICKY;
}

可以看見里邊調(diào)用了onStart方法,我們再來看看onStart方法:

@Override
   public void onStart(@Nullable Intent intent, int startId) {
       Message msg = mServiceHandler.obtainMessage();
       msg.arg1 = startId;
       msg.obj = intent;
       mServiceHandler.sendMessage(msg);
   }

在onStart方法中霹陡,每次都會(huì)用mServiceHandler發(fā)送一個(gè)消息和蚪,然后我們在看看mServiceHandler的代碼:

private final class ServiceHandler extends Handler {
      public ServiceHandler(Looper looper) {
          super(looper);
      }

      @Override
      public void handleMessage(Message msg) {
          onHandleIntent((Intent)msg.obj);
          stopSelf(msg.arg1);
      }
  }

可以清楚地看到止状,每次收到intent之后,都會(huì)把intent交給onHandleIntent方法去處理攒霹,也就是我們需要重寫的方法怯疤,通過intent我們可以解析出來外界傳進(jìn)來的數(shù)據(jù),做相應(yīng)的處理催束。onHandleIntent執(zhí)行完之后集峦,又執(zhí)行了stopSelf(int startid)方法去關(guān)閉自身。但是他不是立刻去關(guān)閉抠刺,而是等待所有的intent被處理完之后才終止服務(wù)塔淤。一般來說,stopSelf(int startId)在關(guān)閉之前都會(huì)判斷最近啟動(dòng)服務(wù)的次數(shù)和startId是否相等速妖,如果相等就立刻停止服務(wù)高蜂,如果不相等,則不停止罕容。

IntentService多數(shù)情況下都非常簡單實(shí)用备恤,你只需要生成后臺(tái)任務(wù)操作,而不用關(guān)系啟動(dòng)時(shí)機(jī)杀赢,如果給IntentService發(fā)送多個(gè)Intent烘跺,這些Intent會(huì)按順序執(zhí)行,每次執(zhí)行一個(gè)脂崔。如果有并發(fā)需求,并不適合用IntentService梧喷,還是自己寫Service吧砌左。

IntentService到這里已經(jīng)說完了,看完我的例子在看看源碼铺敌,相信你已經(jīng)能完全理解了汇歹。
如果那里說的不夠準(zhǔn)確請給我留言,謝謝偿凭。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末产弹,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子弯囊,更是在濱河造成了極大的恐慌痰哨,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件匾嘱,死亡現(xiàn)場離奇詭異斤斧,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)霎烙,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進(jìn)店門撬讽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蕊连,“玉大人,你說我怎么就攤上這事游昼「什裕” “怎么了?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵烘豌,是天一觀的道長载庭。 經(jīng)常有香客問我,道長扇谣,這世上最難降的妖魔是什么昧捷? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮罐寨,結(jié)果婚禮上靡挥,老公的妹妹穿的比我還像新娘。我一直安慰自己鸯绿,他們只是感情好跋破,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著瓶蝴,像睡著了一般毒返。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上舷手,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天拧簸,我揣著相機(jī)與錄音,去河邊找鬼男窟。 笑死盆赤,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的歉眷。 我是一名探鬼主播牺六,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼汗捡!你這毒婦竟也來了淑际?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤扇住,失蹤者是張志新(化名)和其女友劉穎春缕,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體台囱,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡淡溯,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了簿训。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片咱娶。...
    茶點(diǎn)故事閱讀 38,117評論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡米间,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出膘侮,到底是詐尸還是另有隱情屈糊,我是刑警寧澤,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布琼了,位于F島的核電站逻锐,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏雕薪。R本人自食惡果不足惜昧诱,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望所袁。 院中可真熱鬧盏档,春花似錦、人聲如沸燥爷。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽前翎。三九已至稚配,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間港华,已是汗流浹背道川。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留立宜,地道東北人愤惰。 一個(gè)月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像赘理,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子扇单,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,877評論 2 345

推薦閱讀更多精彩內(nèi)容