Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> android service 組件

android service 組件

編輯:Android開發實例

Service概念及用途:

Android中的服務,它與Activity不同,它是不能與用戶交互的,不能自己啟動的,運行在後台的程序,如果我們退出應用時,Service進程並沒有結束,它仍然在後台運行,那 我們什麼時候會用到Service呢?比如我們播放音樂的時候,有可能想邊聽音樂邊干些其他事情,當我們退出播放音樂的應用,如果不用Service,我 們就聽不到歌了,所以這時候就得用到Service了,又比如當我們一個應用的數據是通過網絡獲取的,不同時間(一段時間)的數據是不同的這時候我們可以 用Service在後台定時更新,而不用每打開應用的時候在去獲取。

Service生命周期 :

Android Service的生命周期並不像Activity那麼復雜,它只繼承了onCreate(),onStart(),onDestroy()三個方法,當我們第一次啟動Service時,先後調用了onCreate(),onStart()這兩個方法,當停止Service時,則執行onDestroy()方法,這裡需要注意的是,如果Service已經啟動了,當我們再次啟動Service時,不會在執行onCreate()方法,而是直接執行onStart()方法,具體的可以看下面的實例。

ServiceActivity通信:

Service後端的數據最終還是要呈現在前端Activity之上的,因為啟動Service時,系統會重新開啟一個新的進程,這就涉及到不同進程間通信的問題了(AIDL)這一節我不作過多描述,當我們想獲取啟動的Service實例時,我們可以用到bindService和onBindService方法,它們分別執行了Service中IBinder()和onUnbind()方法。

Service的類型

 

Service有兩種類型:

1. 本地服務(Local Service):用於應用程序內部

2. 遠程服務(Remote Sercie):用於android系統內部的應用程序之間

前者用於實現應用程序自己的一些耗時任務,比如查詢升級信息,並不占用應用程序比如Activity所屬線程,而是單開線程後台執行,這樣用戶體驗比較好。

後者可被其他應用程序復用,比如天氣預報服務,其他應用程序不需要再寫這樣的服務,調用已有的即可。

 

實例一

演示如何創建、啟動、停止及綁定一個service

程序文件

/Chapter07_Service_Example/src/com/amaker/ch07/app/MainActivity.java

 

package com.amaker.ch07.app;

import com.amaker.ch07.app.R;

import android.app.Activity;
import android.app.Service;
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 android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

/**
* 測試Service
*/

public class MainActivity extends Activity {
// 聲明Button
private Button startBtn,stopBtn,bindBtn,unbindBtn;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 設置當前布局視圖
setContentView(R.layout.main);
// 實例化Button
startBtn = (Button)findViewById(R.id.startButton01);
stopBtn = (Button)findViewById(R.id.stopButton02);
bindBtn = (Button)findViewById(R.id.bindButton03);
unbindBtn = (Button)findViewById(R.id.unbindButton04);

// 添加監聽器
startBtn.setOnClickListener(startListener);
stopBtn.setOnClickListener(stopListener);
bindBtn.setOnClickListener(bindListener);
unbindBtn.setOnClickListener(unBindListener);

}
// 啟動Service監聽器
private OnClickListener startListener = new OnClickListener() {
@Override
public void onClick(View v) {
// 創建Intent
Intent intent = new Intent();
// 設置Action屬性
intent.setAction("com.amaker.ch07.app.action.MY_SERVICE");
// 啟動該Service
startService(intent);
}
};

// 停止Service監聽器
private OnClickListener stopListener = new OnClickListener() {
@Override
public void onClick(View v) {
// 創建Intent
Intent intent = new Intent();
// 設置Action屬性
intent.setAction("com.amaker.ch07.app.action.MY_SERVICE");
// 啟動該Service
stopService(intent);
}
};

// 連接對象
private ServiceConnection conn = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
Log.i("SERVICE", "連接成功!");
Toast.makeText(MainActivity.this, "連接成功!", Toast.LENGTH_LONG).show();
}
@Override
public void onServiceDisconnected(ComponentName name) {
Log.i("SERVICE", "斷開連接!");
Toast.makeText(MainActivity.this, "斷開連接!", Toast.LENGTH_LONG).show();
}
};

// 綁定Service監聽器
private OnClickListener bindListener = new OnClickListener() {
@Override
public void onClick(View v) {
// 創建Intent
Intent intent = new Intent();
// 設置Action屬性
intent.setAction("com.amaker.ch07.app.action.MY_SERVICE");

// 綁定Service
bindService(intent, conn, Service.BIND_AUTO_CREATE);
}
};


// 解除綁定Service監聽器
private OnClickListener unBindListener = new OnClickListener() {
@Override
public void onClick(View v) {
// 創建Intent
Intent intent = new Intent();
// 設置Action屬性
intent.setAction("com.amaker.ch07.app.action.MY_SERVICE");
// 解除綁定Service
unbindService(conn);
}
};

}

 

 /Chapter07_Service_Example/src/com/amaker/ch07/app/MyService.java

 
package com.amaker.ch07.app;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
import android.widget.Toast;

/**
* 測試Service
*/
public class MyService extends Service{

// 可以返回null,通常返回一個有aidl定義的接口
public IBinder onBind(Intent intent) {
Log.i("SERVICE", "onBind..............");
Toast.makeText(MyService.this, "onBind..............", Toast.LENGTH_LONG).show();
return null;
}
// Service創建時調用
public void onCreate() {
Log.i("SERVICE", "onCreate..............");
Toast.makeText(MyService.this, "onCreate..............", Toast.LENGTH_LONG).show();
}
// 當客戶端調用startService()方法啟動Service時,該方法被調用
public void onStart(Intent intent, int startId) {
Log.i("SERVICE", "onStart..............");
Toast.makeText(MyService.this, "onStart..............", Toast.LENGTH_LONG).show();
}
// 當Service不再使用時調用
public void onDestroy() {
Log.i("SERVICE", "onDestroy..............");
Toast.makeText(MyService.this, "onDestroy..............", Toast.LENGTH_LONG).show();
}
}

 

布局文件

/Chapter07_Service_Example/res/layout/main.xml

 
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<Button
android:text="啟動Service"
android:id="@+id/startButton01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></Button>

<Button
android:text="停止Service"
android:id="@+id/stopButton02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></Button>

<Button
android:text="綁定Service"
android:id="@+id/bindButton03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></Button>

<Button
android:text="解除綁定"
android:id="@+id/unbindButton04"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></Button>


</LinearLayout>

 

 

清單文件

/Chapter07_Service_Example/AndroidManifest.xml

 
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.amaker.ch07.app"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">

<activity android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<service android:name="MyService">
<intent-filter>
<action android:name="com.amaker.ch07.app.action.MY_SERVICE"/>
</intent-filter>
</service>

</application>
<uses-sdk android:minSdkVersion="3" />

</manifest>

 

實例二、遠程service調用

實現方式RPC(remote procedures call)遠程進程調用      (android interface definition)接口定義語言

 

/Chapter07_Service_Remote/src/com/amaker/ch07/app/MainActivity.java

 
package com.amaker.ch07.app;

import com.amaker.ch07.app.IPerson;
import com.amaker.ch07.app.R;

import android.app.Activity;
import android.app.Service;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
/**
*
* RPC 測試
*/
public class MainActivity extends Activity {
// 聲明IPerson接口
private IPerson iPerson;
// 聲明 Button
private Button btn;
// 實例化ServiceConnection
private ServiceConnection conn = new ServiceConnection() {
@Override
synchronized public void onServiceConnected(ComponentName name, IBinder service) {
// 獲得IPerson接口
iPerson = IPerson.Stub.asInterface(service);
if (iPerson != null)
try {
// RPC 方法調用
iPerson.setName("hz.guo");
iPerson.setAge(30);
String msg = iPerson.display();
// 顯示方法調用返回值
Toast.makeText(MainActivity.this, msg, Toast.LENGTH_LONG)
.show();
} catch (RemoteException e) {
e.printStackTrace();
}
}

@Override
public void onServiceDisconnected(ComponentName name) {

}
};

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 設置當前視圖布局
setContentView(R.layout.main);
// 實例化Button
btn = (Button) findViewById(R.id.Button01);
//為Button添加單擊事件監聽器
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// 實例化Intent
Intent intent = new Intent();
// 設置Intent Action 屬性
intent
.setAction("com.amaker.ch09.app.action.MY_REMOTE_SERVICE");
// 綁定服務
bindService(intent, conn, Service.BIND_AUTO_CREATE);
}
});
}
}

 

/Chapter07_Service_Remote/src/com/amaker/ch07/app/MyRemoteService.java

 
package com.amaker.ch07.app;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;

import com.amaker.ch07.app.IPerson.Stub;

/**
* 使用Service將接口暴露給客戶端
*/
public class MyRemoteService extends Service{
// 聲明IPerson接口
private Stub iPerson = new IPersonImpl();
@Override
public IBinder onBind(Intent intent) {
return iPerson;
}
}

 

/Chapter07_Service_Remote/src/com/amaker/ch07/app/IPersonImpl.java

 
package com.amaker.ch07.app;

import com.amaker.ch07.app.IPerson;

import android.os.RemoteException;
/**
*
* IPerson接口實現類
*/
public class IPersonImpl extends IPerson.Stub{
// 聲明兩個變量
private int age;
private String name;
@Override
// 顯示name和age
public String display() throws RemoteException {
return "name:"+name+";age="+age;
}
@Override
// 設置age
public void setAge(int age) throws RemoteException {
this.age = age;
}
@Override
// 設置name
public void setName(String name) throws RemoteException {
this.name = name;
}
}

 

/Chapter07_Service_Remote/src/com/amaker/ch07/app/IPerson.aidl

package com.amaker.ch07.app;

interface IPerson {
void setAge(int age);
void setName(String name);
String display();
}

布局文件

/Chapter07_Service_Remote/res/layout/main.xml

 
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<Button
android:text="測試遠程Service"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></Button>

</LinearLayout>

 

清單文件

/Chapter07_Service_Remote/AndroidManifest.xml

 
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.amaker.ch07.app"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<service android:name="MyRemoteService">
<intent-filter>
<action android:name="com.amaker.ch07.app.action.MY_REMOTE_SERVICE"/>
</intent-filter>
</service>

</application>
<uses-sdk android:minSdkVersion="3" />

</manifest>

 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved