91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android中Binder機制的介紹和使用

發布時間:2021-06-26 14:52:20 來源:億速云 閱讀:178 作者:chen 欄目:互聯網科技

本篇內容介紹了“Android中Binder機制的介紹和使用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

binder用于android進程間的通訊。客戶端程序和系統服務,客戶端進程之間,都是通過binder進行進程間通訊的。

1.客戶端程序和系統服務

客戶端和系統服務通訊的入口: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:

靜態代碼塊注冊系統服務:

 
  1.  

    static {      

  2.  

    registerService(Context.ACCESSIBILITY_SERVICE, AccessibilityManager.class,      

  3.  

    new CachedServiceFetcher<AccessibilityManager>() {      

  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<CaptioningManager>() {      

  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<AccountManager>() {      

  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是管理系統服務的一個工具類。

 
  1.  

    sServiceManager = ServiceManagerNative      

  2.  

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

getService方法:利用ServiceManagerProxy類通過進程間通訊的方式,獲取其他服務在binder驅動中的binder對象mRemote。

xxx.Stub.asInterface(binder):

利用getService獲取到的binder對象實例化相應服務的Proxy對象,返回給客戶端,供客戶端使用。

返回系統服務:

 
  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應用進程調用A應用進程

B bindservice 向AmS請求啟動B應用的service。啟動service成功后會像AmS返回一個(binder驅動中的mRemote)binder,AmS會以該binder為參數調用ActivityThread類中的ApplicatonThread對象。接著會在ApplicationThread中回調conn接口。最后,B進程可以利用該binder調用A應用提供的功能。

“Android中Binder機制的介紹和使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

得荣县| 久治县| 永登县| 安阳市| 乃东县| 城口县| 汉沽区| 安仁县| 和平区| 罗江县| 共和县| 义乌市| 安龙县| 新绛县| 宁化县| 水城县| 台湾省| 大厂| 游戏| 鄂尔多斯市| 丰城市| 蓬莱市| 秭归县| 东至县| 依安县| 伊通| 贵港市| 星子县| 县级市| 金乡县| 金门县| 西藏| 吉首市| 本溪| 宾阳县| 乾安县| 织金县| 巴林左旗| 紫金县| 崇明县| 保康县|