關于android中的意圖功能如下這個問題很多朋友還不知道,今天小六來為大家解答以上的問題,現(xiàn)在讓我們一起來看看吧!
1、1 Intent.ACTION_MAIN String: android.intent.action.MAIN標識Activity為一個程序的開始。
2、比較常用。
3、Input:nothingOutput:nothing例如:1 2 3 4 5 6 也可以直接在程序中實現(xiàn) Intent it = new Intent(原Activity.class,需跳轉Activity.class);2 Intent.Action_CALLStirng: android.***.CALL呼叫指定的電話號碼。
4、Input:電話號碼。
5、數(shù)據(jù)格式為:tel:+phone number Output:NothingIntent intent=new Intent();intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:1320010001");startActivity(intent);3 Intent.Action.DIALString: action.intent.action.DIAL調(diào)用撥號面板Intent intent=new Intent();intent.setAction(Intent.ACTION_DIAL); //android.intent.action.DIALintent.setData(Uri.parse("tel:1320010001");startActivity(intent);Input:電話號碼。
6、數(shù)據(jù)格式為:tel:+phone number Output:Nothing說明:打開Android的撥號UI。
7、如果沒有設置數(shù)據(jù),則打開一個空的UI,如果設置數(shù)據(jù),action.DIAL則通過調(diào)用getData()獲取電話號碼。
8、但設置電話號碼的數(shù)據(jù)格式為 tel:+phone number.4.Intent.Action.ALL_APPSString: andriod.intent.action.ALL_APPS列出所有的應用。
9、Input:Nothing.Output:Nothing.5.Intent.ACTION_ANSWER Stirng:android.intent.action.ANSWER處理呼入的電話。
10、Input:Nothing.Output:Nothing.6 Intent.ACTION_ATTACH_DATA String: android.action.ATTCH_DATA別用于指定一些數(shù)據(jù)應該附屬于一些其他的地方,例如,圖片數(shù)據(jù)應該附屬于聯(lián)系人 Input: DataOutput:nothing7 Intent.ACTION_BUG_REPORTString: android.intent.action.BUG_REPORT顯示Dug報告。
11、Input:nothingoutput:nothing8 Intent.Action_CALL_BUTTONString: android.***.CALL_BUTTON.相當于用戶按下“撥號”鍵。
12、經(jīng)測試顯示的是“通話記錄”Input:nothingOutput:nothingIntent intent = new Intent(Intent.ACTION_CALL_BUTTON);startActivity(intent);9 Intent.ACTION_CHOOSER String: android.intent.action.CHOOSER 顯示一個activity選擇器,允許用戶在進程之前選擇他們想要的,與之對應的是Intent.ACTION_GET_CONTENT.10. Intent.ACTION_GET_CONTENTString: android.intent.action.GET_CONTENT允許用戶選擇特殊種類的數(shù)據(jù),并返回(特殊種類的數(shù)據(jù):照一張相片或錄一段音) Input: TypeOutput:URI這個以前用到過,看事例。
13、選擇一個圖片:代碼 int requestCode = 1001;Intent intent = new Intent(Intent.ACTION_GET_CONTENT); // "android.intent.action.GET_CONTENT"intent.setType("ige/*"); // 查看類型,如果是其他類型,比如視頻則替換成 video/*,或 */*Intent wrapperIntent = Intent.createChooser(intent, null);startActivityForResult(wrapperIntent, requestCode);。
本文分享完畢,希望對大家有所幫助。
標簽:
免責聲明:本文由用戶上傳,如有侵權請聯(lián)系刪除!