`

Intent的常见用法

阅读更多

Intent应该算是Android中特有的东西。你可以在Intent中指定程序要执行的动作(比如:view,edit,dial),以及程序执行到 该动作时所需要的资料。都指定好后,只要调用startActivity(),Android系统会自动寻找最符合你指定要求的应用程序,并执行该程序。

下面列出几种Intent的用法
显示网页:


  1. Uri uri = Uri.parse( "<a href=" http: //www.google.com" target="_blank" rel="external">http://www.google.com</a>");   
  2. Intent it  = new  Intent(Intent.ACTION_VIEW,uri);  
  3. startActivity(it);  



显示地图:


  1. Uri uri = Uri.parse( "geo:38.899533,-77.036476" );  
  2. Intent it = new  Intent(Intent.Action_VIEW,uri);  
  3. startActivity(it);   



路径规划:


  1. Uri uri = Uri.parse( "<a href=" http: //maps.google.com/maps?f=d" target="_blank" rel="external">http://maps.google.com/maps?f=d</a>&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");   
  2.   
  3. Intent it = new  Intent(Intent.ACTION_VIEW,URI);  
  4.   
  5. startActivity(it);  



拨打电话:
调用拨号程序


  1. Uri uri = Uri.parse( "tel:xxxxxx" );  
  2.   
  3. Intent it = new  Intent(Intent.ACTION_DIAL, uri);    
  4.   
  5. startActivity(it);   




  1. Uri uri = Uri.parse( "tel.xxxxxx" );  
  2.   
  3. Intent it =new  Intent(Intent.ACTION_CALL,uri);  
  4.   
  5. 要使用这个必须在配置文件中加入<uses-permission id="android.permission.CALL_PHONE"  />  




发送SMS/MMS
调用发送短信的程序


  1. Intent it =  new  Intent(Intent.ACTION_VIEW);     
  2.   
  3. it.putExtra("sms_body" "The SMS text" );     
  4.   
  5. it.setType("vnd.android-dir/mms-sms" );     
  6.   
  7. startActivity(it);  




发送短信


  1. Uri uri = Uri.parse( "smsto:0800000123" );     
  2.   
  3. Intent it = new  Intent(Intent.ACTION_SENDTO, uri);     
  4.   
  5. it.putExtra("sms_body" "The SMS text" );     
  6.   
  7. startActivity(it);  



发送彩信


  1. Uri uri = Uri.parse( "content://media/external/images/media/23" );     
  2.   
  3. Intent it = new  Intent(Intent.ACTION_SEND);     
  4.   
  5. it.putExtra("sms_body" "some text" );     
  6.   
  7. it.putExtra(Intent.EXTRA_STREAM, uri);     
  8.   
  9. it.setType("image/png" );     
  10.   
  11. startActivity(it);   




发送Email


  1. Uri uri = Uri.parse( "mailto:xxx@abc.com" );  
  2.   
  3. Intent it = new  Intent(Intent.ACTION_SENDTO, uri);  
  4.   
  5. startActivity(it);  


  1. Intent it =  new  Intent(Intent.ACTION_SEND);     
  2.   
  3. it.putExtra(Intent.EXTRA_EMAIL, "me@abc.com" );     
  4.   
  5. it.putExtra(Intent.EXTRA_TEXT, "The email body text" );     
  6.   
  7. it.setType("text/plain" );     
  8.   
  9. startActivity(Intent.createChooser(it, "Choose Email Client" ));  



  1. Intent it= new  Intent(Intent.ACTION_SEND);       
  2.   
  3. String[] tos={"me@abc.com" };       
  4.   
  5. String[] ccs={"you@abc.com" };       
  6.   
  7. it.putExtra(Intent.EXTRA_EMAIL, tos);       
  8.   
  9. it.putExtra(Intent.EXTRA_CC, ccs);       
  10.   
  11. it.putExtra(Intent.EXTRA_TEXT, "The email body text" );       
  12.   
  13. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text" );       
  14.   
  15. it.setType("message/rfc822" );       
  16.   
  17. startActivity(Intent.createChooser(it, "Choose Email Client" ));   




添加附件


  1. Intent it =  new  Intent(Intent.ACTION_SEND);     
  2.   
  3. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text" );     
  4.   
  5. it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3" );     
  6.   
  7. sendIntent.setType("audio/mp3" );     
  8.   
  9. startActivity(Intent.createChooser(it, "Choose Email Client" ));  



播放多媒体


  1. Intent it =  new  Intent(Intent.ACTION_VIEW);  
  2.   
  3. Uri uri = Uri.parse("file:///sdcard/song.mp3" );  
  4.   
  5. it.setDataAndType(uri, "audio/mp3" );  
  6.   
  7. startActivity(it);  


  1. Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI,  "1" );     
  2.   
  3. Intent it = new  Intent(Intent.ACTION_VIEW, uri);     
  4.   
  5. startActivity(it);  




Uninstall 程序


  1. Uri uri = Uri.fromParts( "package" , strPackageName,  null );     
  2.   
  3. Intent it = new  Intent(Intent.ACTION_Delete, uri);     
  4.   
  5. startActivity(it);  




uninstall apk


  1. Uri uninstallUri = Uri.fromParts( "package" "xxx" null );  
  2. returnIt = new  Intent(Intent.ACTION_Delete, uninstallUri);  




install apk


  1. Uri installUri = Uri.fromParts( "package" "xxx" null );  
  2. returnIt = new  Intent(Intent.ACTION_PACKAGE_ADDED, installUri);  




play audio


  1. Uri playUri = Uri.parse( "file:///sdcard/download/everything.mp3" );  
  2. returnIt = new  Intent(Intent.ACTION_VIEW, playUri);  



发送附件


  1. Intent it =  new  Intent(Intent.ACTION_SEND);    
  2.   
  3. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text" );    
  4.   
  5. it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/eoe.mp3" );    
  6.   
  7. sendIntent.setType("audio/mp3" );    
  8.   
  9. startActivity(Intent.createChooser(it, "Choose Email Client" ));  




Market相关:


  1. //搜索应用   
  2.   
  3. Uri uri = Uri.parse("market://search?q=pname:pkg_name" );    
  4.   
  5. Intent it = new  Intent(Intent.ACTION_VIEW, uri);    
  6.   
  7. startActivity(it);    
  8.   
  9. //where pkg_name is the full package path for an application     
  10.   
  11.   
  12.   
  13. //显示指定应用的详细页面(这个好像不支持了,找不到app_id)   
  14.   
  15. Uri uri = Uri.parse("market://details?id=app_id" );    
  16.   
  17. Intent it = new  Intent(Intent.ACTION_VIEW, uri);    
  18.   
  19. startActivity(it);    
  20.   
  21. //where app_id is the application ID, find the ID     
  22.   
  23. //by clicking on your application on Market home     
  24.   
  25. //page, and notice the ID from the address bar  
分享到:
评论
3 楼 dengrui0917 2010-08-19  
辛苦国楼主
2 楼 kevin2562 2010-03-09  
总结的很全啊~~~辛苦楼主
1 楼 bashenmail 2009-09-09  
相当好!!!

相关推荐

    Intent的多种用法

    在Intent中**传递数据**是非常常见的需求。你可以通过putExtra()方法添加键值对,然后在接收端使用getExtra()系列方法取出数据。例如: ```java // 发送端 Intent intent = new Intent(); intent.putExtra("key", ...

    robotium intent 各种用法

    以下是从“robotium intent 各种用法”这一主题中提取并详细解释的21种常见的`Intent`使用场景: ### 1. 从Google搜索内容 通过调用`Intent.ACTION_WEB_SEARCH`,可以启动系统默认的搜索引擎,搜索指定的关键词。...

    Android Intent Filter用法

    常见的类别有CATEGORY_DEFAULT(默认类别,大多数Intent都会包含)、CATEGORYBrowsable(表示可以作为用户浏览的内容)、CATEGORY_LAUNCHER(使应用出现在启动器中)。在&lt;intent-filter&gt;中添加...

    Android中Intent习惯用法

    在Android开发中,Intent是一个至关重要的组件,它用于在组件之间传递...以上介绍的只是一部分常见用法,实际上,Intent还能用于启动地图应用、浏览网页、安装应用等多种场景,开发者可以根据需要进行深入研究和应用。

    Android Intent用法大全

    本篇文章将详细介绍Intent的各种常见用法,包括但不限于:启动浏览器、显示地图、拨打电话、发送短信/邮件等功能。 #### 基本概念 `Intent`是一种对象,它表示了一个应用程序组件的意图(Intent)或者说是请求。它...

    Android Intent的几种用法全面总结

    以下是Android Intent的几种常见用法的详细解释: 1. 显示网页: 当你想在设备上打开一个网页时,可以通过ACTION_VIEW Intent与系统浏览器交互。例如: ```java Uri uri = Uri.parse("http://www.google.com"); ...

    intent的各种用法

    ### Intent的各种用法详解 在Android开发中,`Intent`是一种非常重要的机制,它用于启动一个活动(Activity)或者向另一个组件发送一个消息。通过Intent,开发者可以灵活地调用系统或其他应用的功能,如发送电子...

    intent的几种常用用法.pdf

    以下是对Intent几种常见用法的详细说明: 1. **显示网页** 使用`ACTION_VIEW`和`Uri`来打开浏览器并显示指定的网页。例如: ```java Uri uri = Uri.parse("http://www.google.com"); Intent it = new Intent...

    intent的常用方法

    本文将详细介绍`Intent`的一些常见用法及其相关知识点。 #### 一、从BroadcastReceiver启动一个新的Activity 在某些场景下,可能需要从BroadcastReceiver启动一个新的Activity。为了正确地进行这一操作,需要注意...

    Android应用源码之Intent1_Intent.zip

    Intent1_Intent.zip中的源码应该包含了关于Intent的实例和使用方法,让我们一起深入探讨Intent在Android应用中的作用、类型、创建与传递、以及常见用法。 1. **Intent的作用** Intent的主要功能是启动一个活动...

    android中intent使用示例

    本示例将深入探讨Intent的基本用法和常见应用场景。 首先,Intent分为显式Intent和隐式Intent两种类型。显式Intent通过指定组件的全名(包括包名和类名)来直接启动目标组件,而隐式Intent则是通过设置Action、Data...

    Android程序间Intent跳转分析

    3. **选择本机图片操作**: 使用ACTION_PICK或ACTION_GET_CONTENT Intent,开发者可以让用户从设备图库中选择图片,这在需要上传图片或设置头像的应用场景中非常常见。 4. **利用第三方应用打开文件**: 当你想要使用...

    android_intent和intent_action大全

    **常见Intent的用法示例**: 1. **从Google搜索内容**: ```java Intent intent = new Intent(); intent.setAction(Intent.ACTION_WEB_SEARCH); intent.putExtra(SearchManager.QUERY, "searchString"); start...

    Android代码-Intent切换.zip

    在Android开发中,Intent是一种非常重要的组件,它用于在应用程序的不同组件之间传递消息,实现活动...通过"Android代码-Intent切换.zip"中的示例,你可以更深入地了解Intent的各种用法,并将其应用到自己的项目中。

    Service的常见用法分析源码

    在这个主题中,我们将深入探讨Service的常见用法,包括其生命周期、绑定方式以及Service与Activity之间的通信方式。 首先,Service的生命周期主要涉及以下几个关键方法: 1. `onCreate()`: 当Service首次被创建时...

    android常用Intent

    以下是对给定文件中提及的常见Intent用法的详细解析: ### 1. 播放音频文件 #### 示例代码: ```java Intent it = new Intent(Intent.ACTION_VIEW); Uri uri = Uri.parse("file:///sdcard/song.mp3"); it....

    Android中Intent使用、数据回写(显)

    在Android开发中,Intent是一个非常重要的组件,它用于在应用程序的不同组件之间传递消息,实现活动(Activity)、服务(Service)、广播接收...理解Intent的工作原理和各种用法,有助于构建更高效、更动态的应用程序。

    Android中Intent和ProgressBar的结合使用

    总的来说,Intent和ProgressBar的结合使用是Android开发中常见的场景,尤其在处理耗时操作时,可以提供良好的用户反馈,提升用户体验。通过理解Intent的原理以及ProgressBar的用法,开发者可以更好地控制应用程序的...

Global site tag (gtag.js) - Google Analytics