亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中的多進程通信怎么利用繼承Binder類實現

發布時間:2020-11-30 17:46:40 來源:億速云 閱讀:185 作者:Leah 欄目:移動開發

Android中的多進程通信怎么利用繼承Binder類實現?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

服務端代碼,BinderService.java:

首先繼承Binder 類,實現onTransact()供客戶端調用,同樣通過onBind()返回Binder實例:

private static final java.lang.String DESCRIPTOR = "org.ninetripods.mq.multiprocess_sever.IAidlCallBack";
private static final int KEY_FLAG = 0x110;

private class MyBinder extends Binder {
    /**
     * @param code 唯一標識,客戶端傳遞標識執行服務端代碼
     * @param data 客戶端傳遞過來的參數
     * @param reply 服務器返回回去的值
     * @param flags 是否有返回值 0:有 1:沒有
     * @return
     * @throws RemoteException 異常
     */
    @Override
    protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException {
      switch (code) {
        case KEY_FLAG:
          //標識服務器名稱
          data.enforceInterface(DESCRIPTOR);
          Apple apple = new Apple("紅星蘋果", 15f, getString(R.string.response_binder_info));
          reply.writeNoException();
          reply.writeInt(1);
          apple.writeToParcel(reply, android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
          return true;
      }

      return super.onTransact(code, data, reply, flags);
    }
  }

  @Override
  public IBinder onBind(Intent intent) {
    return new MyBinder();
  }

在AndroidManifest.xml中聲明一下:

 <service
  android:name=".BinderService"
  android:enabled="true"
  android:exported="true">
  <intent-filter>
    <action android:name="android.mq.binder.service" />
    <category android:name="android.intent.category.DEFAULT" />
  </intent-filter>
</service>

客戶端代碼:BinderActivity.java:

首先編寫ServiceConnection 類來獲得Binder實例,來發送和接收數據:

private ServiceConnection binderConnection = new ServiceConnection() {
    @Override
    public void onServiceConnected(ComponentName name, IBinder service) {
      isBound = true;
      mService = service;
      if (mService != null) {
        //聲明兩個Parcel類型數據(_data和_reply) 一個用于傳輸數據 一個用于接收數據
        android.os.Parcel _data = android.os.Parcel.obtain();
        android.os.Parcel _reply = android.os.Parcel.obtain();
        Apple apple;
        try {
          //與服務器端的enforceInterface(DESCRIPTOR)對應
          _data.writeInterfaceToken(DESCRIPTOR);
          //調用服務端的transact()傳輸數據
          mService.transact(KEY_FLAG, _data, _reply, 0);
          _reply.readException();
          if (0 != _reply.readInt()) {
            //接收服務端響應數據
            apple = Apple.CREATOR.createFromParcel(_reply);
          } else {
            apple = null;
          }
          showMessage(apple != null ? ("\n" + apple.getNoticeInfo() + "\n名稱:"
              + apple.getName() + "\n價格:" + apple.getPrice() + " 元") : "未獲得服務器信息", R.color.red_f);
        } catch (Exception e) {
          e.printStackTrace();
        } finally {
          _data.recycle();
          _reply.recycle();
        }
      }
    }

    @Override
    public void onServiceDisconnected(ComponentName name) {
      isBound = false;
      mService = null;
    }
  };

然后就是綁定服務了:

 Intent intent = new Intent();
 intent.setAction("android.mq.binder.service");
 intent.setPackage("org.ninetripods.mq.multiprocess_sever");
 bindService(intent, binderConnection, BIND_AUTO_CREATE);

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

炎陵县| 池州市| 奉新县| 德钦县| 蓝田县| 广昌县| 秀山| 遂平县| 阿拉善右旗| 福清市| 文山县| 定襄县| 合肥市| 宁乡县| 弥勒县| 吉隆县| 昭通市| 改则县| 普兰县| 新邵县| 贵溪市| 盘锦市| 通化市| 阜康市| 荣昌县| 肥西县| 铁岭县| 当雄县| 依安县| 镇雄县| 大石桥市| 新营市| 平邑县| 滦南县| 惠州市| 五大连池市| 伊川县| 宜兰县| 岱山县| 织金县| 正宁县|