小米8手機(jī)顯示android.intent.action.USER-PRESENT是什么意思,?
小米8手機(jī)顯示android.intent.action.USER-PRESENT意思----android用戶意圖的行動
android.intent.action.MAIN決定應(yīng)用程序最先啟動的,,如果有多個activity都具有此權(quán)限,,那么就應(yīng)該用<intent-filter>來定義哪個activity在什么情況下啟動,。
在進(jìn)行頁面跳轉(zhuǎn)的時候,,就會觸發(fā)intent.action(如果沒有指定具體的action,,默認(rèn)是DEFAULT),。
action是intent中的其中一個屬性:Action屬性的值為一個字符串,,它代表了系統(tǒng)中已經(jīng)定義了一系列常用的動作,。通過setAction()方法或在清單文件AndroidManifest.xml中設(shè)置,。默認(rèn)為:DEFAULT。
一些常見的action的值:
ACTION_MAIN:Android Application的入口,,每個Android應(yīng)用必須且只能包含一個此類型的Action聲明,。
ACTION_VIEW:系統(tǒng)根據(jù)不同的Data類型,,通過已注冊的對應(yīng)Application顯示數(shù)據(jù),。 ACTION_EDIT:系統(tǒng)根據(jù)不同的Data類型,,通過已注冊的對應(yīng)Application編輯示數(shù)據(jù),。 ACTION_DIAL:打開系統(tǒng)默認(rèn)的撥號程序,,如果Data中設(shè)置了電話號碼,,則自動在撥號程序中輸入此號碼。
ACTION_CALL:直接呼叫Data中所帶的號碼,。