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

  下面列出几种Intent的用法

  显示网页:

  Uri uri = Uri.parse("http://www.google.com");

  Intent it = new Intent(Intent.ACTION_VIEW,uri);

  startActivity(it);

  显示地图:

  Uri uri = Uri.parse("geo:38.899533,-77.036476");

  Intent it = new Intent(Intent.Action_VIEW,uri);

  startActivity(it);

  路径规划:

  Uri uri = Uri.parse("http://maps.google.com/maps?f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");

  Intent it = new Intent(Intent.ACTION_VIEW,URI);

  startActivity(it);

  拨打电话:

  调用拨号程序

  Uri uri = Uri.parse("tel:xxxxxx");

  Intent it = new Intent(Intent.ACTION_DIAL, uri);

  startActivity(it);

  Uri uri = Uri.parse("tel.xxxxxx");

  Intent it =new Intent(Intent.ACTION_CALL,uri);

  要使用这个必须在配置文件中加入<uses-permission id="android.permission.CALL_PHONE" />

  发送SMS/MMS

  调用发送短信的程序

  Intent it = new Intent(Intent.ACTION_VIEW);

  it.putExtra("sms_body", "The SMS text");

  it.setType("vnd.android-dir/mms-sms");

  startActivity(it);

  发送短信

  Uri uri = Uri.parse("smsto:0800000123");

  Intent it = new Intent(Intent.ACTION_SENDTO, uri);

  it.putExtra("sms_body", "The SMS text");

  startActivity(it);

  发送彩信

  Uri uri = Uri.parse("content://media/external/images/media/23");

  Intent it = new Intent(Intent.ACTION_SEND);

  it.putExtra("sms_body", "some text");

  it.putExtra(Intent.EXTRA_STREAM, uri);

  it.setType("image/png");

  startActivity(it);

  发送Email

  Uri uri = Uri.parse("mailto:xxx@abc.com");

  Intent it = new Intent(Intent.ACTION_SENDTO, uri);

  startActivity(it);

  Intent it = new Intent(Intent.ACTION_SEND);

  it.putExtra(Intent.EXTRA_EMAIL, "me@abc.com");

  it.putExtra(Intent.EXTRA_TEXT, "The email body text");

  it.setType("text/plain");

  startActivity(Intent.createChooser(it, "Choose Email Client"));

  Intent it=new Intent(Intent.ACTION_SEND);

  String[] tos={"me@abc.com"};

  String[] ccs={"you@abc.com"};

  it.putExtra(Intent.EXTRA_EMAIL, tos);

  it.putExtra(Intent.EXTRA_CC, ccs);

  it.putExtra(Intent.EXTRA_TEXT, "The email body text");

  it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");

  it.setType("message/rfc822");

  startActivity(Intent.createChooser(it, "Choose Email Client"));

  添加附件

  Intent it = new Intent(Intent.ACTION_SEND);

  it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");

  it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");

  sendIntent.setType("audio/mp3");

  startActivity(Intent.createChooser(it, "Choose Email Client"));

  播放多媒体

  Intent it = new Intent(Intent.ACTION_VIEW);

  Uri uri = Uri.parse("file:///sdcard/song.mp3");

  it.setDataAndType(uri, "audio/mp3");

  startActivity(it);

  Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");

  Intent it = new Intent(Intent.ACTION_VIEW, uri);

  startActivity(it);

  Uninstall 程序

  Uri uri = Uri.fromParts("package", strPackageName, null);

  Intent it = new Intent(Intent.ACTION_DELETE, uri);

  startActivity(it);

Android Intent的几种用法总结【转】的更多相关文章

  1. Android Intent的几种用法全面总结

    Android Intent的几种用法全面总结 Intent, 用法 Intent应该算是Android中特有的东西.你可以在Intent中指定程序要执行的动作(比如:view,edit,dial), ...

  2. Android Toast 总结(五种用法)

    Toast大家都很熟,不多说.直接上图上代码. 具体代码如下: main.xml: <?xml version="1.0" encoding="utf-8" ...

  3. Android Intent的几种使用方法全面总结

    Intent应该算是Android中特有的东西.你能够在Intent中指定程序要运行的动作(比方:view,edit,dial),以及程序运行到该动作时所须要的资料.都指定好后,仅仅要调用startA ...

  4. Android Intent和IntentFilter详解与使用及实现系统“分享”接口

    Intent Android中提供了Intent机制来协助应用间的交互与通讯,Intent负责对应用中一次操作的动作.动作涉及数据.附加数据进行描述,Android则根据此Intent的描述,负责找到 ...

  5. Android Intent用法总结

    Android中提供了Intent机制来协助应用间的交互与通讯,Intent负责对应用中一次操作的动作.动作涉及数据.附加数据进行描述,Android则根据此Intent的描述,负责找到对应的组件,将 ...

  6. Android Intent 用法全面总结

    [代码全屏查看]-Android Intent 用法全面总结 // [1].[代码] 调用拨号程序 跳至 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] / ...

  7. Android Activity 的四种启动模式 lunchMode 和 Intent.setFlags();singleTask的两种启动方式。

    原文:Android Activity 的四种启动模式 lunchMode 和 Intent.setFlags();singleTask的两种启动方式. Android Activity 的四种启动模 ...

  8. Android Intent机制与常见的用法

    Activity Android于.Activity所有的程序都是必不可少,程都执行在Activity之中.Activity具有自己的生命周期(见http://www.cnblogs.com/feis ...

  9. Android Intent调用 Uri的使用几种格式

    打开百度 Uri uri = Uri.parse("http://www.baidu.com"); Intent intent =new Intent(Intent.ACTION_ ...

随机推荐

  1. 正则语言(转的 大额_skylar )

    备注:正则表达式真的很头疼,收集起来,用起来很方便的. 常用的元字符 . 匹配除换行符以外的任意字符 \w 匹配字母或数字或下划线或汉字 \s 匹配任意的空白符 \d 匹配数字 \b 匹配单词的开始或 ...

  2. Oracle EBS-SQL (WIP-5):检查非标任务本身选上了MRP净值.sql

    SELECT WE.WIP_ENTITY_NAME,            MSI.SEGMENT1,            MSI.DESCRIPTION,            WDJ.CLASS ...

  3. SpringMVC中使用zTree

    1  前端页面 <%@ page language="java" import="java.util.*" pageEncoding="UTF- ...

  4. aix knowlgdgecenter

    http://www-01.ibm.com/support/knowledgecenter/ssw_aix_53/com.ibm.aix.install/doc/insgdrf/HT_insgdrf_ ...

  5. Android应用中使用百度地图API定位自己的位置(二)

    官方文档:http://developer.baidu.com/map/sdkandev-6.htm#.E7.AE.80.E4.BB.8B3 百度地图SDK为开发人员们提供了例如以下类型的地图覆盖物: ...

  6. android-vlc for rtsp build OK

    近期研究 rtsp http stream 流获取方式 vlc over live555  是个很不错的选择,当然了 andorid framework av也是支持rtsp http的,相同不错的选 ...

  7. poj 1064 Cable master ,二分 精度!!!

    给出n根绳子,求把它们分割成K条等长的绳子的最大长度是多少? 二分 用 for(int i=0; i<100; ++i) 取代   while(r-l>eps) 循环100次精度能达到1e ...

  8. Nagios利用NSClient++监控Windows主机

    在Nagios的libexec下有check_nt这个插件,它就是用来检查windows机器的服务的.其功能类似于check_nrpe.不过还需要搭配另外一个软件NSClient++,它则类似于NRP ...

  9. 业务需求那些事,使用WCF如何实现业务需求!

    最近遇到一个新项目,需要与硬件结合,进行读取信息并保存在数据库中.业务要求也在昨天发布一个问题,当然感谢许多园内的朋友出谋划策,截图有真相! 关于这个问题,我做了如下假设.目前处于测试状态,代码比较简 ...

  10. table+js实现网站左侧列表下拉隐藏

    <script language="javascript">                    function showHide(obj){            ...