您好,登錄后才能下訂單哦!
1.如果服務(wù)僅僅用于本地應(yīng)用程序并且不必跨進(jìn)程工作,則開(kāi)發(fā)人員可以實(shí)現(xiàn)自己的Binder類(lèi)來(lái)為客戶(hù)端提供訪(fǎng)問(wèn)服務(wù)公共方法的方式,(注意:這僅僅當(dāng)客戶(hù)端與服務(wù)位于同一個(gè)應(yīng)用程序和進(jìn)程時(shí)才有效,這也是最常見(jiàn)的情況,例如,音樂(lè)播放器需要綁定Activity到自己的服務(wù)來(lái)在后臺(tái)播放音樂(lè))
2.實(shí)現(xiàn)步驟如下:
21.在服務(wù)這種,創(chuàng)建Binder類(lèi)實(shí)例來(lái)完成下列操作之一;
211:包含客戶(hù)端能調(diào)用的公共方法
212:返回當(dāng)前Service實(shí)例,其中包含客戶(hù)端能調(diào)用的 公共方法
213:返回服務(wù)管理的其他類(lèi)實(shí)例,其中包含客戶(hù)端能調(diào)用的公共方法
22.從onBind()回調(diào)方法中返回Binder類(lèi)實(shí)例
3.在客戶(hù)端,從onServiceConnected()回調(diào)方法接受Binder類(lèi)實(shí)例,并且使用提供的方法調(diào)用綁定的服務(wù)
4:在A(yíng)ctivity類(lèi)中的代碼
package com.example.binderservice;
import com.example.binderservice.CurrentTimeService.LocalBinder;
import android.os.Bundle;
import android.os.IBinder;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
public class CurrentTimeActivity extends Activity {
CurrentTimeService cts;
boolean bound;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
protected void onStart() {
super.onStart();
Button btn=(Button)findViewById(R.id.button1);
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent = new Intent(CurrentTimeActivity.this, CurrentTimeService.class);
bindService(intent, sc, BIND_AUTO_CREATE);//綁定服務(wù)
if (bound) {
Toast.makeText(CurrentTimeActivity.this, cts.getCurrentTime(),Toast.LENGTH_LONG).show();
}
}
});
}
protected void onStop() {
super.onStop();
bound=false;
unbindService(sc);
}
private ServiceConnection sc=new ServiceConnection() {
@Override
public void onServiceDisconnected(ComponentName arg0) {
// TODO Auto-generated method stub
bound=false;
}
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
// TODO Auto-generated method stub
LocalBinder binder=(LocalBinder)service;//獲得自定義的localBinder對(duì)象
cts= binder.geTimeService();//獲得CurrentTimeService對(duì)象
bound=true;
}
};
}
5.Service類(lèi)中的代碼
package com.example.binderservice;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.text.format.Time;
public class CurrentTimeService extends Service{
private final IBinder binder = new LocalBinder();
public class LocalBinder extends Binder{
CurrentTimeService geTimeService(){
return CurrentTimeService.this;}
}
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return binder;
}
public String getCurrentTime() {
Time time = new Time();
time.setToNow();
String currentTimeString=time.format("%Y-%m-%d %H:%M:%S");
return currentTimeString;
}
}
7.配置文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.binderservice"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".CurrentTimeActivity"
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=".CurrentTimeService"></service>
</application>
</manifest>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。