您好,登錄后才能下訂單哦!
一、功能
應(yīng)用之間共享數(shù)據(jù)
常見使用場(chǎng)景:通訊錄?短信等
二、使用步驟
1.提供數(shù)據(jù)App -?定義ContentProvider
繼承ContentProvider?復(fù)寫相關(guān)初始化和查詢方法,同時(shí)在Manifest中聲明
<provider?
android:name=“xxx”
android:authorities=“testProvider”?//訪問路徑名稱
android:enabled=”true“
android:exported=“true”/>
2.獲取數(shù)據(jù)app?使用ContentResolver獲取數(shù)據(jù)
Uri uri = Uri.parse(“content://xxx”);
ContentResolver contentResolver = getContentResolver();
Curor cursor = contentResolver.query(uri,null,”query_where”,null,null);
三、原理
匿名共享內(nèi)存(ASM)?- binder機(jī)制
假設(shè)A應(yīng)用訪問B應(yīng)用數(shù)據(jù)
1.A發(fā)送消息給AMS,想要訪問B中的CP。
2.AMS檢查發(fā)現(xiàn),B中的CP沒啟動(dòng)過,為此新開一個(gè)進(jìn)程,啟動(dòng)B,然后獲取到B啟動(dòng)的CP,把CP的代理對(duì)象返回給A。
3.A拿到CP的代理對(duì)象,也就是IContentProvider,就調(diào)用它的增刪改查4個(gè)方法了,接下來就是使用ASM來傳輸數(shù)據(jù)或者修改數(shù)據(jù)了
參考:https://www.jianshu.com/p/c2ac0a54cdaa
四、擴(kuò)展
Binder機(jī)制
https://www.jianshu.com/p/47731149c93c
AIDI使用
https://www.jianshu.com/p/29999c1a93cd
https://www.jianshu.com/p/23612b2cce30
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。