Android開發aidl使用中linkToDeath和unlinkToDeath的使用,aidllinktodeath

來源:互聯網
上載者:User

Android開發aidl使用中linkToDeath和unlinkToDeath的使用,aidllinktodeath
1.Binder死亡代理    這一節首先將介紹Binder類中比較重要的兩個方法linkToDeath和unlinkToDeath。我們知道Binder是運行在服務進程,若服務端進程因為某種原因“死亡”,那麼Binder對象也將隨之而去,因為Binder對象是寄宿在服務端進程中的,這個時候我們的遠程調用將會失敗,用戶端進程的功能也將受到影響。Binder類提供linkToDeath方法在用戶端可以設定死亡代理,當服務端的Binder對象“死亡”,用戶端可以受到死亡通知,這個時候我們可以重新恢複連結。

在用戶端代碼如下。

public class MainActivity extends Activity {        private IAidlCall mIAidlCall;        private IBinder.DeathRecipient mDeathRecipient = new IBinder.DeathRecipient() {            @Override          public void binderDied() {              // TODO Auto-generated method stub              if (mIAidlCall == null)                  return;              mIAidlCall.asBinder().unlinkToDeath(mDeathRecipient, 0);              mIAidlCall = null;              // TODO:重新綁定遠程服務
       bindService(new Intent("demo.action.aidl.IAidlCall").
          setPackage("com.example.severdemo"), conn, BIND_AUTO_CREATE);  

} }; private ServiceConnection conn = new ServiceConnection() { @Override public void onServiceDisconnected(ComponentName name) { } @Override public void onServiceConnected(ComponentName name, IBinder service) { mIAidlCall = IAidlCall.Stub.asInterface(service); try { service.linkToDeath(mDeathRecipient, 0); Toast.makeText(getApplicationContext(), mIAidlCall.getName(), Toast.LENGTH_LONG).show(); } catch (RemoteException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // "demo.action.aidl.IAidlCall" 是遠程服務的action bindService(new Intent("demo.action.aidl.IAidlCall")
      .setPackage("com.example.severdemo"), conn, BIND_AUTO_CREATE);  
      }  }  

 

 

引用:http://blog.csdn.net/chan1116/article/details/49930539

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.