2 Android中的服務(wù),它與Activity不同,它是不能與用戶交互的,不能自己?jiǎn)?dòng)的,運(yùn)行在后臺(tái)的程序,如果我們退出應(yīng)用時(shí),Service進(jìn)程并沒有結(jié)束,它仍然在后臺(tái)運(yùn)行,那 我們什么時(shí)候會(huì)用到Service呢?比如我們播放音樂的時(shí)候,有可能想邊聽音樂邊干些其他事情,當(dāng)我們退出播放音樂的應(yīng)用,如果不用Service,我 們就聽不到歌了,所以這時(shí)候就得用到Service了,又比如當(dāng)我們一個(gè)應(yīng)用的數(shù)據(jù)是通過(guò)網(wǎng)絡(luò)獲取的,不同時(shí)間(一段時(shí)間)的數(shù)據(jù)是不同的這時(shí)候我們可以 用Service在后臺(tái)定時(shí)更新,而不用每打開應(yīng)用的時(shí)候在去獲取。 : Android Service的生命周期并不像Activity那么復(fù)雜,它只繼承了onCreate(),onStart(),onDestroy()三個(gè)方法,當(dāng)我們第一次啟動(dòng)Service時(shí),先后調(diào)用了onCreate(),onStart()這兩個(gè)方法,當(dāng)停止Service時(shí),則執(zhí)行onDestroy()方法,這里需要注意的是,如果Service已經(jīng)啟動(dòng)了,當(dāng)我們?cè)俅螁?dòng)Service時(shí),不會(huì)在執(zhí)行onCreate()方法,而是直接執(zhí)行onStart()方法,具體的可以看下面的實(shí)例。 Service后端的數(shù)據(jù)最終還是要呈現(xiàn)在前端Activity之上的,因?yàn)閱?dòng)Service時(shí),系統(tǒng)會(huì)重新開啟一個(gè)新的進(jìn)程,這就涉及到不同進(jìn)程間通信的問題了(AIDL)這一節(jié)我不作過(guò)多描述,當(dāng)我們想獲取啟動(dòng)的Service實(shí)例時(shí),我們可以用到bindService和onBindService方法,它們分別執(zhí)行了Service中IBinder()和onUnbind()方法。 下面,我們以一個(gè)簡(jiǎn)單的例子,來(lái)講解下service組件的基本的服務(wù) Main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" > <Button android:id="@+id/btn_startservice" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:text="開始服務(wù)" /> <Button android:id="@+id/btn_stopservice" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignLeft="@+id/btn_startservice" android:layout_below="@+id/btn_startservice" android:layout_marginTop="55dp" android:text="停止服務(wù)" /> <Button android:id="@+id/btn_bind" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignLeft="@+id/btn_stopservice" android:layout_below="@+id/btn_stopservice" android:layout_marginTop="48dp" android:text="綁定服務(wù)" /> <Button android:id="@+id/btn_unbind" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/btn_bind" android:layout_marginTop="45dp" android:text="解除綁定" /> </RelativeLayout> </div |