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. Delphi常见图象格式转换技术

    TJPEGScale = (jsFullSize, jsHalf, jsQuarter, jsEighth);//图片大小(全部,1/2,1/4,1/8)TBitmap.pixelFormat:=pf ...

  2. Boost正则表达式库regex常用search和match示例 - 编程语言 - 开发者第2241727个问答

    Boost正则表达式库regex常用search和match示例 - 编程语言 - 开发者第2241727个问答 Boost正则表达式库regex常用search和match示例 发表回复   Boo ...

  3. RNTools

    在使用RNTools的自定义功能加载bundle的时候, 记得要把 http:// 加上,否则加载bundle会找不到网络地址.

  4. 解密yii中CModule::_components和CModule::_componentConfig

    array CModule::_components 所有组件对象(CComponent的子类)将作为键值存在该数组中, 键名是定义该组件时使用的键名.例如: protected function r ...

  5. KVC在定义Model类中的妙用

    @我们应用程序使用MVC架构的话,对于处理数据类,我们会单独的定义Model类,在里面为要展示的属性进行初始化赋值,一般採用的方法是通过定义相应的属性,挨个赋值.如今我要介绍的就是通过KVC,key- ...

  6. [ACM] hdu 2191 珍惜如今,感恩生活 (多重背包)

    Problem Description 急!灾区的食物依旧短缺! 为了拯救灾区同胞的生命,心系灾区同胞的你准备自己採购一些粮食支援灾区,如今如果你一共同拥有资金n元,而市场有m种大米,每种大米都是袋装 ...

  7. cocos2d-x for wp8 设置横竖屏

    在主project文件(xxx.cpp , xxx为你的项目名)中, 函数名为void xxx::SetWindow(CoreWindow^ window) 相关代码片例如以下: <pre na ...

  8. [Python]ConfigParser解析配置文件

    近期发现非常多接口配置都硬编码在souce file中了,于是就看了下python怎么解析配置文件,重构下这一块. 这个应该是早就要作的... 配置文件: [mysqld] user = mysql ...

  9. CodeSmith exclude global 文件和文件夹问题 与 输入中文显示乱码问题

    1.打开C:/Documents and Settings/你的用户名/Application Data/CodeSmith/v4.1/CodeSmithGui.config文件. 2.在<te ...

  10. nutch2.3命令参数解析

    nutch中可执行的命令列表 [root@ewanalysis ~]# nutch Usage: nutch COMMAND where COMMAND is one of: inject injec ...