真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android中Binder機(jī)制的介紹和使用

本篇內(nèi)容介紹了“Android中Binder機(jī)制的介紹和使用”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

松溪ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來(lái)市場(chǎng)廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!

binder用于android進(jìn)程間的通訊。客戶端程序和系統(tǒng)服務(wù),客戶端進(jìn)程之間,都是通過binder進(jìn)行進(jìn)程間通訊的。

1.客戶端程序和系統(tǒng)服務(wù)

客戶端和系統(tǒng)服務(wù)通訊的入口:cotext.getSystemService(String name)

android.app.ContextImpl:

 
  1.  

    @Override      

  2.  

    public Object getSystemService(String name) {      

  3.  

    return SystemServiceRegistry.getSystemService(this, name);      

  4.  

    }      

android.app.SystemServiceRegistry:

靜態(tài)代碼塊注冊(cè)系統(tǒng)服務(wù):

 
  1.  

    static {      

  2.  

    registerService(Context.ACCESSIBILITY_SERVICE, AccessibilityManager.class,      

  3.  

    new CachedServiceFetcher() {      

  4.  

    @Override      

  5.  

    public AccessibilityManager createService(ContextImpl ctx) {      

  6.  

    return AccessibilityManager.getInstance(ctx);      

  7.  

    }});      

  8.  

     

  9.  

    registerService(Context.CAPTIONING_SERVICE, CaptioningManager.class,      

  10.  

    new CachedServiceFetcher() {      

  11.  

    @Override      

  12.  

    public CaptioningManager createService(ContextImpl ctx) {      

  13.  

    return new CaptioningManager(ctx);      

  14.  

    }});      

  15.  

     

  16.  

    registerService(Context.ACCOUNT_SERVICE, AccountManager.class,      

  17.  

    new CachedServiceFetcher() {      

  18.  

    @Override      

  19.  

    public AccountManager createService(ContextImpl ctx) {      

  20.  

    IBinder b = ServiceManager.getService(Context.ACCOUNT_SERVICE);      

  21.  

    IAccountManager service = IAccountManager.Stub.asInterface(b);      

  22.  

    return new AccountManager(ctx, service);      

  23.  

    }});      

  24.  

    ....      

ServiceManager、ServiceManagerNative:

serviceManager是管理系統(tǒng)服務(wù)的一個(gè)工具類。

 
  1.  

    sServiceManager = ServiceManagerNative      

  2.  

    .asInterface(Binder.allowBlocking(BinderInternal.getContextObject()));      

getService方法:利用ServiceManagerProxy類通過進(jìn)程間通訊的方式,獲取其他服務(wù)在binder驅(qū)動(dòng)中的binder對(duì)象mRemote。

xxx.Stub.asInterface(binder):

利用getService獲取到的binder對(duì)象實(shí)例化相應(yīng)服務(wù)的Proxy對(duì)象,返回給客戶端,供客戶端使用。

返回系統(tǒng)服務(wù):

 
  1.  

    /**      

  2.  

    * Gets a system service from a given context.      

  3.  

    */      

  4.  

    public static Object getSystemService(ContextImpl ctx, String name) {      

  5.  

    ServiceFetcher fetcher = SYSTEM_SERVICE_FETCHERS.get(name);      

  6.  

    return fetcher != null ? fetcher.getService(ctx) : null;      

  7.  

    }      

2.客戶端之間

B應(yīng)用進(jìn)程調(diào)用A應(yīng)用進(jìn)程

B bindservice 向AmS請(qǐng)求啟動(dòng)B應(yīng)用的service。啟動(dòng)service成功后會(huì)像AmS返回一個(gè)(binder驅(qū)動(dòng)中的mRemote)binder,AmS會(huì)以該binder為參數(shù)調(diào)用ActivityThread類中的ApplicatonThread對(duì)象。接著會(huì)在ApplicationThread中回調(diào)conn接口。最后,B進(jìn)程可以利用該binder調(diào)用A應(yīng)用提供的功能。

“Android中Binder機(jī)制的介紹和使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


當(dāng)前標(biāo)題:Android中Binder機(jī)制的介紹和使用
分享URL:http://weahome.cn/article/pdhedo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部