Android開發中,Binder是一種跨程序通訊方式,而使用AIDL可以實現Binder的工作。
如何使用它是了解它的第一步,本文章主要記錄使用Binder的一些步驟。(程式碼思路參考《Android開發藝術探索》任玉剛 著)
1.建立兩個activity兩個activity(OneActivity、TwoActivity),將OneActivity假設為服務端,TwoActivity假設為客戶端,分別執行在不同程序中
在AndroidManifest.xml中,為TwoActivity設定程序,這樣兩個activity就分別執行在不同的程序中了
<activity android:name=".TwoActivity" android:process=":test"/>
2. 建立AIDL檔案在AIDL檔案中宣告客戶端想要呼叫服務端的方法
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等檔案並不能呼叫到IInfManager介面,需要在app的build.gradle檔案中的android{}中新增
sourceSets{ main{ java.srcDirs = ['src/main/java', 'src/main/aidl'] }}
然後點選sync now按鈕,activity檔案就可以呼叫到IInfManager介面了,可以在app\\build\\generated\\source\\aidl\\debug檔案下找到自動生成的IInfManager.java檔案。
3.建立ServiceService中建立Binder物件,在onBind方法中返回這個物件,Binder物件中具體實現了IInfManager介面中的方法。Service需要在AndroidManifest.xml中註冊。
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; } };}
4.服務端OneActivityOneActivity中設定按鈕跳轉至TwoActivity,這裡為了簡單,使用startService可以為InfManageService中name變數初始化"zhangsan"的值。也可以與客戶端TwoActivity中一樣,繫結service,建立連線,來設定name的值(具體參考下一步客戶端的用法)。
@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); } });}
5.客戶端TwoActivity首先繫結InfManageService服務,建立連線,連線成功後通過返回的IBinder物件可以獲得IInfManager介面,可以通過這個介面去使用服務端的方法。
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介面中顯示了服務端的name變數內容"zhangsan"
- 零基礎安卓開發起步(三)
- Android程序管理:Framework層概念
- 僅 2 位 Java 開發,使用小程式上線一款 App
- 使用VSCode 打包你的第一個flutter應用(安卓篇)
- 阿里面了9次,位元組撈了offer?Android開發狗25次大廠面試辛酸淚
- 方舟編譯器是將java程式碼像C++靜態編譯,那麼為什麼安卓當時一開始為啥不用C++?
- 專科渣校,嘔心瀝血在家3個月“拿下”330頁PDF,終於拿下阿里OFFer
- 神一樣的操作,真的牛逼了!Android Jetpack Compose 最全上手指南
- Android開發者必知的記憶體、效能優化細節
- Android面試官:你究竟有多大的勇氣,在簡歷上寫了“精通”?