Android開(kāi)發(fā)中,Binder是一種跨進(jìn)程通信方式,而使用AIDL可以實(shí)現(xiàn)Binder的工作。
如何使用它是了解它的第一步,本文章主要記錄使用Binder的一些步驟。(代碼思路參考《Android開(kāi)發(fā)藝術(shù)探索》任玉剛 著)
兩個(gè)activity(OneActivity、TwoActivity),將OneActivity假設(shè)為服務(wù)端,TwoActivity假設(shè)為客戶(hù)端,分別運(yùn)行在不同進(jìn)程中
在A(yíng)ndroidManifest.xml中,為T(mén)woActivity設(shè)置進(jìn)程,這樣兩個(gè)activity就分別運(yùn)行在不同的進(jìn)程中了
在A(yíng)IDL文件中聲明客戶(hù)端想要調(diào)用服務(wù)端的方法
interface IInfManager { /** * Demonstrates some basic types that you can use as parameters * and return values in AIDL. */ void setName(String name); String getName();}
AIDL文件聲明完,activity等文件并不能調(diào)用到IInfManager接口,需要在app的build.gradle文件中的android{}中添加
sourceSets{ main{ java.srcDirs = ['src/main/java', 'src/main/aidl'] }}
然后點(diǎn)擊sync now按鈕,activity文件就可以調(diào)用到IInfManager接口了,可以在app\build\generated\source\aidl\debug文件下找到自動(dòng)生成的IInfManager.java文件。
Service中創(chuàng)建Binder對(duì)象,在onBind方法中返回這個(gè)對(duì)象,Binder對(duì)象中具體實(shí)現(xiàn)了IInfManager接口中的方法。Service需要在A(yíng)ndroidManifest.xml中注冊(cè)。
public class InfManageService extends Service{ private String name; @Override public int onStartCommand(Intent intent, int flags, int startId) { name = intent.getStringExtra("name"); return super.onStartCommand(intent, flags, startId); } @Nullable @Override public IBinder onBind(Intent intent) { return binder; } private Binder binder = new IInfManager.Stub() { @Override public void setName(String mName) throws RemoteException { name = mName; } @Override public String getName() throws RemoteException { return name; } };}
OneActivity中設(shè)置按鈕跳轉(zhuǎn)至TwoActivity,這里為了簡(jiǎn)單,使用startService可以為InfManageService中name變量初始化"zhangsan"的值。也可以與客戶(hù)端TwoActivity中一樣,綁定service,建立連接,來(lái)設(shè)置name的值(具體參考下一步客戶(hù)端的用法)。
@Overrideprotected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_one); Intent intent = new Intent(OneActivity.this, InfManageService.class); intent.putExtra("name", "zhangsan"); startService(intent); btn_one_gototwo = (Button) findViewById(R.id.btn_one_gototwo); btn_one_gototwo.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(OneActivity.this, TwoActivity.class); startActivity(intent); } });}
首先綁定InfManageService服務(wù),建立連接,連接成功后通過(guò)返回的IBinder對(duì)象可以獲得IInfManager接口,可以通過(guò)這個(gè)接口去使用服務(wù)端的方法。
private TextView tv_two_name;private Button btn_two_change; private IInfManager iInfManager; private ServiceConnection connection = new ServiceConnection() { @Override public void onServiceConnected(ComponentName name, IBinder service) { iInfManager = IInfManager.Stub.asInterface(service); try { tv_two_name.setText(iInfManager.getName()); Log.i("TwoActivity","first:" + iInfManager.getName()); iInfManager.setName("lisi"); Log.i("TwoActivity","next:" + iInfManager.getName()); }catch (RemoteException e){ } } @Override public void onServiceDisconnected(ComponentName name) { }}; @Overrideprotected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_two); tv_two_name = (TextView) findViewById(R.id.tv_two_name); btn_two_change = (Button) findViewById(R.id.btn_two_change); Intent intent = new Intent(TwoActivity.this, InfManageService.class); bindService(intent, connection, Context.BIND_AUTO_CREATE); btn_two_change.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { try { iInfManager.setName("wangmazi"); tv_two_name.setText(iInfManager.getName()); } catch (RemoteException e) { e.printStackTrace(); } } });} @Overrideprotected void onDestroy() { super.onDestroy(); unbindService(connection);}
上面代碼onServiceConnected方法中,首先在TwoActivity界面中顯示了服務(wù)端的name變量?jī)?nèi)容"zhangsan"
意見(jiàn)反饋
×
Copyright © 1998-2019 甘肅信息港 All rights reserved.