下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
【移動(dòng)應(yīng)用開發(fā)技術(shù)】AndroidFrameworkActivityManagerService
ActivityManagerServiceActivityManagerService(簡(jiǎn)稱:AMS)管理著應(yīng)用程序中創(chuàng)建的所有組件(Activity、Service等),每個(gè)組件的信息與組件對(duì)應(yīng)的進(jìn)程信息都在管理范圍內(nèi),包括內(nèi)存釋放潛規(guī)則。為了實(shí)現(xiàn)組件的管理,每個(gè)組件的狀態(tài)變化都需要通知AMS,組件間的跨進(jìn)程通信(IPC)也由AMS來搭建。所以AMS相當(dāng)重要,在源碼中隨處可見。先看下AMS靜態(tài)類結(jié)構(gòu)圖:舉例:?jiǎn)?dòng)Activity時(shí)類圖對(duì)象的交互1.啟動(dòng)activity,看以下源碼:Instrumentation.ActivityResult
ar
=
mInstrumentation.execStartActivity(
this,
mMainThread.getApplicationThread(),
mToken,
this,
intent,
requestCode);InstrumenttaionexecStartActivity源碼如下:int
result
=
ActivityManagerNative.getDefault()
.startActivity(whoThread,
intent,
intent.resolveTypeIfNeeded(who.getContentResolver()),
null,
0,
token,
target
!=
null
?
target.mEmbeddedID
:
null,
requestCode,
false,
false,
null,
null,
false);代碼中ActivityManagerNative.getDefault()得到是什么?看如下源碼:
static
public
IActivityManager
getDefault()
{
return
gDefault.get();
}
private
static
final
Singleton<IActivityManager>
gDefault
=
new
Singleton<IActivityManager>()
{
protected
IActivityManager
create()
{
IBinder
b
=
ServiceManager.getService("activity");
if
(false)
{
Log.v("ActivityManager",
"default
service
binder
=
"
+
b);
}
IActivityManager
am
=
asInterface(b);
if
(false)
{
Log.v("ActivityManager",
"default
service
=
"
+
am);
}
return
am;
}
};
static
public
IActivityManager
asInterface(IBinder
obj)
{
if
(obj
==
null)
{
return
null;
}
IActivityManager
in
=
(IActivityManager)obj.queryLocalInterface(descriptor);
if
(in
!=
null)
{
return
in;
}
return
new
ActivityManagerProxy(obj);
}代碼中Singleton可看成是單例的一個(gè)模板,getDefault()返回的是gDefault.get()是返回Singleton.create的結(jié)果,在create方法中通過ServiceManager.getService("activity")所得到的對(duì)象既是AMS對(duì)象,從類圖中可以看出AMS也是一個(gè)IBinder對(duì)象,得到AMS對(duì)象之后調(diào)用了asInterface方法為其使用遠(yuǎn)程代理即:ActivityManagerProxy。那么得出結(jié)論是ActivityManagerNative.getDefault()得到是ActivityManagerProxy對(duì)象,緊接著調(diào)用ActivityManagerProxy.startActivity??匆幌略创a:
public
int
startActivity(IApplicationThread
caller,
Intent
intent,
String
resolvedType,
Uri[]
grantedUriPermissions,
int
grantedMode,
IBinder
resultTo,
String
resultWho,
int
requestCode,
boolean
onlyIfNeeded,
boolean
debug,
String
profileFile,
ParcelFileDescriptor
profileFd,
boolean
autoStopProfiler)
throws
RemoteException
{
Parcel
data
=
Parcel.obtain();
Parcel
reply
=
Parcel.obtain();
data.writeInterfaceToken(IActivityManager.descriptor);
data.writeStrongBinder(caller
!=
null
?
caller.asBinder()
:
null);
intent.writeToParcel(data,
0);
data.writeString(resolvedType);
data.writeTypedArray(grantedUriPermissions,
0);
data.writeInt(grantedMode);
...
mRemote.transact(START_ACTIVITY_TRANSACTION,
data,
reply,
0);
reply.readException();
int
result
=
reply.readInt();
reply.recycle();
data.recycle();
return
result;
}可以看出ActivityManagerProxy負(fù)責(zé)將形參打包到parcel并調(diào)用mRemote.transact發(fā)送START_ACTIVITY_TRANSACTION指令,屆時(shí)的mRemote對(duì)象既是AMS對(duì)象。AMS對(duì)象繼承ActivityManagerNative,ActivityManagerNative實(shí)現(xiàn)了onTransact,負(fù)責(zé)接受mRemote.transact發(fā)送的parcel包。并根據(jù)code即:START_ACTIVITY_TRANSACTION,調(diào)用AMS的實(shí)現(xiàn)startActivity方法。屆時(shí),通過ActivityManagerPro
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 《轉(zhuǎn)轂試驗(yàn)臺(tái)培訓(xùn)》課件
- 第五單元學(xué)情評(píng)估(含答案)2024-2025學(xué)年統(tǒng)編版七年級(jí)語文下冊(cè)
- 自身敏感性皮炎的臨床護(hù)理
- 交通事故責(zé)任劃分講解課件-交規(guī)解讀
- 妊高癥的健康宣教
- 心理發(fā)育障礙的臨床護(hù)理
- 2021年功能飲料東鵬飲料分析報(bào)告
- 短暫性棘層松解性皮病的臨床護(hù)理
- 《Flash CC整站動(dòng)畫項(xiàng)目實(shí)戰(zhàn)》課件-第5篇 四季沐歌
- 孕期食欲亢進(jìn)的健康宣教
- 弱視斜視知識(shí)講座
- 湖南省雅禮中學(xué)2023-2024學(xué)年高一上學(xué)期12月月考?xì)v史試卷
- 2023-2024學(xué)年北京市東城區(qū)高一語文上學(xué)期期末統(tǒng)檢試卷附答案解析
- 2023醫(yī)院內(nèi)部審計(jì)工作計(jì)劃范文
- 華為招聘與人員配置
- 如何預(yù)防老年癡呆知識(shí)講座
- 微觀經(jīng)濟(jì)學(xué)原理曼昆英文第七章
- 四川省南充市2023-2024學(xué)年八年級(jí)上學(xué)期期末英語試卷
- 電動(dòng)車共享服務(wù)創(chuàng)業(yè)計(jì)劃書
- 鄭州大學(xué)學(xué)生專業(yè)實(shí)習(xí)鑒定表
- 苗木采購?fù)稑?biāo)方案(技術(shù)方案)(技術(shù)方案)
評(píng)論
0/150
提交評(píng)論