2 Android中的服務,它與Activity不同,它是不能與用戶交互的,不能自己啟動的,運行在后臺的程序,如果我們退出應用時,Service進程并沒有結束,它仍然在后臺運行,那 我們什么時候會用到Service呢?比如我們播放音樂的時候,有可能想邊聽音樂邊干些其他事情,當我們退出播放音樂的應用,如果不用Service,我 們就聽不到歌了,所以這時候就得用到Service了,又比如當我們一個應用的數據是通過網絡獲取的,不同時間(一段時間)的數據是不同的這時候我們可以 用Service在后臺定時更新,而不用每打開應用的時候在去獲取。 : Android Service的生命周期并不像Activity那么復雜,它只繼承了onCreate(),onStart(),onDestroy()三個方法,當我們第一次啟動Service時,先后調用了onCreate(),onStart()這兩個方法,當停止Service時,則執(zhí)行onDestroy()方法,這里需要注意的是,如果Service已經啟動了,當我們再次啟動Service時,不會在執(zhí)行onCreate()方法,而是直接執(zhí)行onStart()方法,具體的可以看下面的實例。 Service后端的數據最終還是要呈現在前端Activity之上的,因為啟動Service時,系統(tǒng)會重新開啟一個新的進程,這就涉及到不同進程間通信的問題了(AIDL)這一節(jié)我不作過多描述,當我們想獲取啟動的Service實例時,我們可以用到bindService和onBindService方法,它們分別執(zhí)行了Service中IBinder()和onUnbind()方法。 下面,我們以一個簡單的例子,來講解下service組件的基本的服務 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="開始服務" /> <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="停止服務" /> <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="綁定服務" /> <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 |