常用Intent

常用Intent

常用动作和类型的匹配

ACTION_MAIN      CATEGORY_HOME                      Launch the home screen.

常用动作和URL的匹配

ACTION_CALL        tel:phone_number                打开电话应用程序并拨打指定的电话号码

ACTION_DIAL     content://contacts/people/1     Display the phone dialer with the person filled in.
ACTION_DIAL        tel:phone_number                打开电话应用程序并拨打指定的电话号码(但不打出)
ACTION_DIAL        voicemail:                        打开电话应用程序并拨下语音信箱的指定的电话号码(但不打出)

ACTION_EDIT     content://contacts/people/1        编辑联系人

ACTION_VIEW     content://contacts/people/        显示对用户可见的联系人列表。@1
ACTION_VIEW     content://contacts/people/1        查看某个联系人信息
ACTION_VIEW        geo:latitude,longitude            打开地图应用程序并显示指定的纬度和经度
ACTION_VIEW        geo:0,0?q=stree+address            打开地图应用程序并显示指定的地址
ACTION_VIEW        http://web_address                打开浏览器应用程序并显示指定的URL
ACTION_VIEW        https://web_address                打开浏览器应用程序并显示指定的URL
ACTION_VIEW     tel:123                            Display the phone dialer with the given number filled in.@2
                                
Intent.ACTION_WEB_SEARCH    plain_text            打开浏览器应用程序并显示指定的并使用google搜索引擎

注1:在列表中可选中联系人可查看具体信息
注2:Note how the VIEW action does what what is considered the most reasonable thing for a particular URI.    

你可能感兴趣的:(Android基础,action,电话,浏览器,搜索引擎,google,url)