`

Intent系统路径

阅读更多
.从google搜索内容
Intent intent = new Intent();
intent.setAction(Intent.ACTION_WEB_SEARCH);
intent.putExtra(SearchManager.QUERY,"searchString")
startActivity(intent);

2.浏览网页
Uri uri = Uri.parse("http://www.google.com");
Intent it  = new Intent(Intent.ACTION_VIEW,uri);
startActivity(it);

3.显示地图
Uri uri = Uri.parse("geo:38.899533,-77.036476");
Intent it = new Intent(Intent.Action_VIEW,uri);
startActivity(it);

4.路径规划
Uri uri = Uri.parse("http://maps.google.com/maps?f=dsaddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");
Intent it = new Intent(Intent.ACTION_VIEW,URI);
startActivity(it);

5.拨打电话界面
Uri uri = Uri.parse("tel:xxxxxx");
Intent it = new Intent(Intent.ACTION_DIAL, uri);
startActivity(it);

直接拨打电话:Intent.ACTION_CALL

6.调用发短信的程序
Intent it = new Intent(Intent.ACTION_VIEW);  
it.putExtra("sms_body", "The SMS text");  
it.setType("vnd.android-dir/mms-sms");  
startActivity(it);

7.发送短信
Uri uri = Uri.parse("smsto:0800000123");  
Intent it = new Intent(Intent.ACTION_SENDTO, uri);  
it.putExtra("sms_body", "The SMS text");  
startActivity(it);

String body="this is sms demo";
Intent mmsintent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("smsto", number, null));
mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body);
mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, true);
mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, true);
startActivity(mmsintent);

8.发送彩信
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);

StringBuilder sb = new StringBuilder();
sb.append("file://");
sb.append(fd.getAbsoluteFile());
Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mmsto", number, null));
// Below extra datas are all optional.
intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_SUBJECT, subject);
intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body);
intent.putExtra(Messaging.KEY_ACTION_SENDTO_CONTENT_URI, sb.toString());
intent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, composeMode);
intent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, exitOnSent);
startActivity(intent);


9.发送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"));

10.播放多媒体
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);

11.卸载 apk
Uri uri = Uri.fromParts("package", strPackageName, null);  
Intent it = new Intent(Intent.ACTION_DELETE, uri);  
startActivity(it);

12.install apk
Uri installUri = Uri.fromParts("package", "xxx", null);
returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);
分享到:
评论

相关推荐

    Android7.0 Intent打开文件管理器 获取文件真实路径

    Android7.0 Intent打开文件管理器 获取文件真实路径。虽然网上很多demo,但是没有一个能够兼容所有Android机的,去网上学习了然后自己亲测过手机分别有Android7.0/6.0/4.3个版本。

    系统intent的使用例子

    在Android操作系统中,Intent是一种强大的组件间通信机制,它用于启动其他应用程序组件或传递数据。在本篇文章中,我们将深入探讨如何使用系统Intent来执行各种常见的任务,如进行Google搜索、打开浏览器、拨打电话...

    android整合--intent

    本篇文章将深入探讨Intent的基本概念、类型、创建方式及其在Android系统中的应用。 一、Intent基本概念 Intent可以视为一个意图消息,它包含了执行某项操作的信息。通过Intent,开发者可以告诉Android系统他们想要...

    intent的常用方法

    3. **路径规划**:使用`ACTION_VIEW`启动地图应用进行路径规划。 ```java Uri uri = Uri.parse("http://maps.google.com/maps?f=ds&addr=startLat%20startLng&daddr=endLat%20endLng&hl=en"); Intent it = new ...

    Android应用源码之Intent_Intent.zip

    当发送一个隐式Intent时,系统会根据Intent的属性(Action、Data、Category)来寻找最适合的组件进行处理,这个过程称为Intent Resolution。 7. **Intent Flags** Intent的Flags可以控制启动行为,比如`FLAG_...

    intent属性

    Intent是Android系统中的一种核心机制,它用于在应用程序的不同组件之间传递消息,是实现组件间通信的主要手段。Intent不仅能够启动活动(Activity)、服务(Service),还能广播(Broadcast)消息,甚至可以用来...

    Intent学习

    Intent是Android系统中的一个核心概念,它是应用程序之间通信的重要桥梁,用于在不同的组件之间传递消息和数据。Intent不仅可以启动活动(Activity)、服务(Service),还可以启动广播接收器(BroadcastReceiver)...

    Intent使用示例(一)

    Intent是Android系统中的一种核心组件,它用于在应用程序的不同组件之间传递消息,是实现组件间通信的主要手段。本文将深入探讨Intent的使用示例,包括`startActivityForResult`的运用,以及Bundle与Intent保存对象...

    intent的深入分析

    2. Data:Intent的数据URI,可以是文件路径、网络URL等,用于指定操作的数据源。 3. Type:数据的MIME类型,配合Data一起使用,用于更精确地定义数据类型。 4. Extras:额外的键值对数据,存储在Bundle中,可以传递...

    Android中intent的使用

    - DATA:定义Intent处理的数据,可以是Uri对象,表示文件路径、网络URL等。 - MIME Type:定义数据的MIME类型,用于匹配能处理该类型数据的组件。 - CATEGORY:定义Intent的类别,如CATEGORY_DEFAULT、CATEGORY_APP_...

    Andriod Intent使用代码举例

    - `Intent.setData(Uri data)`:设置Intent的数据URI,可以是文件路径、网络URL或其他数据源。 - `Intent.addCategory(String category)`:添加Intent的类别,如CATEGORY_DEFAULT、CATEGORYBrowsable等。 3. **...

    intent使用源码

    Data则是Intent要处理的数据,通常是一个URI,可以是文件路径、网络URL或其他资源的标识符。 在Android源码中,Intent类位于`android.content`包下。当我们创建一个新的Intent时,可以通过指定Action和Data来初始化...

    android用Intent调用常用的系统组件

    本文主要探讨如何使用Intent调用常见的系统组件,涵盖了搜索、浏览网页、地图导航、拨打电话、发送短信及彩信等功能。 1. **从Google搜索内容** 使用`ACTION_WEB_SEARCH`动作来启动Google搜索引擎,输入查询字符串...

    Android Intent用法大全

    通过传递特定格式的`Uri`(例如`geo:纬度,经度`),可以让系统自动识别并打开地图应用。 ##### 3. 导航路径规划 ```java Uri uri = Uri.parse(...

    Android源码——Intent切换.zip

    - `setData(Uri data)`:设置Intent的数据Uri,用于处理特定类型的数据,如文件路径、URL等。 - `setType(String type)`:设置数据的MIME类型,用于匹配能够处理这种类型数据的组件。 - `putExtra(String name, ...

    android用于打开各种文件的intent

    值得注意的是,还可以通过系统内部的etc目录来指定文件路径,如“Intent it = getHtmlFileIntent("/system/etc/tutorial.html");”。 ### 图片文件 对于图像文件,可以使用以下代码:“Intent it = ...

    Intent传递

    系统会根据Intent中的信息匹配IntentFilter,找到最适合的组件来处理Intent。 总结,Intent在Android开发中起着至关重要的作用,它是组件间通信的桥梁,无论是同一应用内还是跨应用,都能通过Intent实现数据和控制...

    Android Intent的几种用法全面总结

    Android中的Intent是应用程序之间通信的重要桥梁,用于启动其他Activity、Service或者BroadcastReceiver,甚至可以触发系统级别的操作。本文将全面总结Intent的几种主要用法。 1. 显示网页: 使用`ACTION_VIEW`与...

Global site tag (gtag.js) - Google Analytics