久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

詳解Android跨進(jìn)程通信之AIDL

瀏覽:6日期:2022-09-19 17:10:44

需求描述

進(jìn)程A調(diào)起第三方進(jìn)程B進(jìn)行第三方登錄 ? 實(shí)現(xiàn)雙向通信

代碼(進(jìn)程A)1.目錄結(jié)構(gòu)

詳解Android跨進(jìn)程通信之AIDL

2.LoginActivity.java

public class LoginActivity extends AppCompatActivity { private ILoginInterface iLogin; @Override protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);initService(); } private void initService() {// 綁定進(jìn)程B中的服務(wù)Intent intent = new Intent();intent.setAction('ACTION_B');intent.setPackage('com.example.processs');bindService(intent, conn, BIND_AUTO_CREATE); } private ServiceConnection conn = new ServiceConnection() {@Overridepublic void onServiceConnected(ComponentName name, IBinder service) { // 獲取到進(jìn)程B中的binder對(duì)象 iLogin = ILoginInterface.Stub.asInterface(service);}@Overridepublic void onServiceDisconnected(ComponentName name) {} }; /** * 去登錄 * * @param view */ public void goLogin(View view) {try { if (iLogin != null) {iLogin.login(); } else {Toast.makeText(this, '未安裝第三方應(yīng)用啊~', Toast.LENGTH_SHORT).show(); }} catch (RemoteException e) { e.printStackTrace();} } @Override protected void onDestroy() {super.onDestroy();if (iLogin != null) { unbindService(conn);} }}

對(duì)應(yīng)界面

詳解Android跨進(jìn)程通信之AIDL

3. ILoginInterface.aidl

// ILoginInterface.aidlpackage com.example.process;// Declare any non-default types here with import statementsinterface ILoginInterface { void login(); void loginCallback(int loginStatus, String loginUser);}4.LoginService.java 用于進(jìn)程B登錄回調(diào)的Service

public class LoginService extends Service { @Nullable @Override public IBinder onBind(Intent intent) {// 該Binder對(duì)象返回給進(jìn)程B來(lái)回調(diào)return new ILoginInterface.Stub() { @Override public void login() throws RemoteException { } @Override public void loginCallback(int loginStatus, String loginUser) throws RemoteException {Log.d('lichaojun123>>>', 'loginCallback: ' + loginStatus + ' : ' + loginUser); }}; }}5.AndroidManifest.xml

<?xml version='1.0' encoding='utf-8'?><manifest xmlns:android='http://schemas.android.com/apk/res/android' xmlns:tools='http://schemas.android.com/tools' package='com.example.processc'> <applicationandroid:allowBackup='true'android:icon='@mipmap/ic_launcher'android:label='@string/app_name'android:roundIcon='@mipmap/ic_launcher_round'android:supportsRtl='true'android:theme='@style/AppTheme'><activity android:name='com.example.process.LoginActivity'> <intent-filter><action android:name='android.intent.action.MAIN' /><category android:name='android.intent.category.LAUNCHER' /> </intent-filter></activity><service android:name='com.example.process.LoginService' android:enabled='true' // 是否可以被系統(tǒng)實(shí)例化 android:exported='true' // 是否可以被其他進(jìn)程隱式調(diào)用 android:process=':remote_a'> <intent-filter><action android:name='ACTION_A'/> </intent-filter></service> </application></manifest>代碼(進(jìn)程B)1.目錄結(jié)構(gòu)

詳解Android跨進(jìn)程通信之AIDL

2.LoginActivity.java

public class LoginActivity extends AppCompatActivity { private EditText etName; private EditText etPwd; private ILoginInterface iLogin; @Override protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);etName = findViewById(R.id.et_name);etPwd = findViewById(R.id.et_pwd);initService(); } private void initService() {// 綁定進(jìn)程A中的服務(wù)Intent intent = new Intent();intent.setAction('ACTION_A');intent.setPackage('com.example.processc');bindService(intent, conn, BIND_AUTO_CREATE); } private ServiceConnection conn = new ServiceConnection() {@Overridepublic void onServiceConnected(ComponentName name, IBinder service) { iLogin = ILoginInterface.Stub.asInterface(service);}@Overridepublic void onServiceDisconnected(ComponentName name) {} }; // 去登錄 public void go_login(View view) {if (etName.getText().toString().trim().equals('lcj')&& etPwd.getText().toString().trim().equals('123')) { try {if (iLogin != null) { // 登錄成功后,通知客戶(hù)端進(jìn)程 iLogin.loginCallback(1, '登錄成功'); finish();} } catch (RemoteException e) {e.printStackTrace(); }} else { Toast.makeText(this, '登錄失敗', Toast.LENGTH_SHORT).show();} } @Override protected void onDestroy() {super.onDestroy();if (iLogin != null) { unbindService(conn);} }}

對(duì)應(yīng)界面

詳解Android跨進(jìn)程通信之AIDL

3. ILoginInterface.aidl (與進(jìn)程A相同)4. LoginService.java 用于進(jìn)程A調(diào)用的Service

public class LoginService extends Service { @Nullable @Override public IBinder onBind(Intent intent) {return new ILoginInterface.Stub() { @Override public void login() throws RemoteException {execLogin(); } @Override public void loginCallback(int loginStatus, String loginUser) throws RemoteException { }}; } private void execLogin() {// 調(diào)起登錄頁(yè)面Intent intent = new Intent(this, LoginActivity.class);intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);startActivity(intent); }}5.AndroidManifest.xml

<applicationandroid:allowBackup='true'android:icon='@mipmap/ic_launcher'android:label='@string/app_name'android:roundIcon='@mipmap/ic_launcher_round'android:supportsRtl='true'android:theme='@style/AppTheme'><activity android:name='.LoginActivity'> <intent-filter><action android:name='android.intent.action.MAIN' /><category android:name='android.intent.category.LAUNCHER' /> </intent-filter></activity><service android:name='.LoginService' android:enabled='true' android:exported='true' android:process=':remote_b'> <intent-filter><action android:name='ACTION_B'/> </intent-filter></service> </application>

以上就是詳解Android跨進(jìn)程通信之AIDL的詳細(xì)內(nèi)容,更多關(guān)于Android跨進(jìn)程通信AIDL的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!

標(biāo)簽: Android
相關(guān)文章:
主站蜘蛛池模板: 东乌| 建始县| 南雄市| 句容市| 宁乡县| 佛山市| 林芝县| 茶陵县| 伊金霍洛旗| 武陟县| 宁武县| 凤山县| 门源| 城固县| 府谷县| 东乡族自治县| 兴化市| 阜城县| 北宁市| 南开区| 黔南| 黄龙县| 罗江县| 平果县| 会理县| 仁怀市| 淳安县| 青冈县| 古交市| 白玉县| 金门县| 嘉定区| 义乌市| 修文县| 松原市| 上林县| 南投县| 汪清县| 清苑县| 米脂县| 德阳市|