1.从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);

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.uninstall 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);

13. 打开照相机  
<1>Intent i = new Intent(Intent.ACTION_CAMERA_BUTTON, null);  
this.sendBroadcast(i);  
<2>long dateTaken = System.currentTimeMillis();  
String name = createName(dateTaken) + ".jpg";  
fileName = folder + name;  
ContentValues values = new ContentValues();  
values.put(Images.Media.TITLE, fileName);  
values.put("_data", fileName);  
values.put(Images.Media.PICASA_ID, fileName);  
values.put(Images.Media.DISPLAY_NAME, fileName);  
values.put(Images.Media.DESCRIPTION, fileName);  
values.put(Images.ImageColumns.BUCKET_DISPLAY_NAME, fileName);  
Uri photoUri = getContentResolver().insert(  
MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);

Intent inttPhoto = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);  
inttPhoto.putExtra(MediaStore.EXTRA_OUTPUT, photoUri);  
startActivityForResult(inttPhoto, 10);

14.从gallery选取图片  
Intent i = new Intent();  
i.setType("image/*");  
i.setAction(Intent.ACTION_GET_CONTENT);  
startActivityForResult(i, 11);

15. 打开录音机  
Intent mi = new Intent(Media.RECORD_SOUND_ACTION);  
startActivity(mi);

16.显示应用详细列表  
Uri uri = Uri.parse("market://details?id=app_id");  
Intent it = new Intent(Intent.ACTION_VIEW, uri);  
startActivity(it);  
//where app_id is the application ID, find the ID  
//by clicking on your application on Market home  
//page, and notice the ID from the address bar

刚才找app id未果,结果发现用package name也可以  
Uri uri = Uri.parse("market://details?id=<packagename>");  
这个简单多了

17.寻找应用  
Uri uri = Uri.parse("market://search?q=pname:pkg_name");  
Intent it = new Intent(Intent.ACTION_VIEW, uri);  
startActivity(it);  
//where pkg_name is the full package path for an application

18.打开联系人列表  
<1>  
Intent i = new Intent();  
i.setAction(Intent.ACTION_GET_CONTENT);  
i.setType("vnd.android.cursor.item/phone");  
startActivityForResult(i, REQUEST_TEXT);

<2>  
Uri uri = Uri.parse("content://contacts/people");  
Intent it = new Intent(Intent.ACTION_PICK, uri);  
startActivityForResult(it, REQUEST_TEXT);

19.打开另一程序  
Intent i = new Intent();  
ComponentName cn = new ComponentName("com.yellowbook.android2",  
"com.yellowbook.android2.AndroidSearch");  
i.setComponent(cn);  
i.setAction("android.intent.action.MAIN");  
startActivityForResult(i, RESULT_OK);

//调用浏览器

Uri uri = Uri.parse(""); 
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:10086"); 
Intent it = new Intent(Intent.ACTION_DIAL, uri);  
startActivity(it);

Uri uri = Uri.parse("tel.10086"); 
Intent it =new Intent(Intent.ACTION_CALL,uri); 
需要添加 <uses-permission id="android.permission.CALL_PHONE" /> 这个权限到androidmanifest.xml

//发送短信或彩信

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:10086");  
Intent it = new Intent(Intent.ACTION_SENDTO, uri);  
it.putExtra("sms_body", "cwj");  
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);

//发送邮件  
Uri uri = Uri.parse("mailto:android123@163.com"); 
Intent it = new Intent(Intent.ACTION_SENDTO, uri); 
startActivity(it);

Intent it = new Intent(Intent.ACTION_SEND);  
it.putExtra(Intent.EXTRA_EMAIL, android123@163.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_VIEW); 
Uri uri = Uri.parse(" file:///sdcard/cwj.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);

//卸载APK

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

//卸载apk 2 
Uri uninstallUri = Uri.fromParts("package", "xxx", null); 
returnIt = new Intent(Intent.ACTION_DELETE, uninstallUri);

//安装APK 
Uri installUri = Uri.fromParts("package", "xxx", null); 
returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);

//播放音乐

Uri playUri = Uri.parse(" /sdcard/download/sth.mp3"); 
returnIt = new Intent(Intent.ACTION_VIEW, playUri);

//发送附近

Intent it = new Intent(Intent.ACTION_SEND);  
it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");  
it.putExtra(Intent.EXTRA_STREAM, " file:///sdcard/cwj.mp3");  
sendIntent.setType("audio/mp3");  
startActivity(Intent.createChooser(it, "Choose Email Client"));

//market上某个应用信,pkg_name就是应用的packageName

Uri uri = Uri.parse("market://search?q=pname:pkg_name");  
Intent it = new Intent(Intent.ACTION_VIEW, uri);  
startActivity(it);

//market上某个应用信息,app_id可以通过www网站看下

Uri uri = Uri.parse("market://details?id=app_id");  
Intent it = new Intent(Intent.ACTION_VIEW, uri);  
startActivity(it);

//调用搜索

Intent intent = new Intent(); 
intent.setAction(Intent.ACTION_WEB_SEARCH); 
intent.putExtra(SearchManager.QUERY,"android123") 
startActivity(intent);

转载于:https://www.cnblogs.com/vegetate/p/9997331.html

Android Intent调用大全、系统自带Intent调用大全相关推荐

  1. Qt for androidx 调用手机系统自带文件选择器, 打开指定路径下的文件夹

    文章目录 前言 代码实现 Qt 调用代码 前言 前面写过一篇Qt for Androidx 调用手机系统自带图库选择图片,打开系统文件选择器,选择相应文件 这个打开是跳转到默认的系统的文件夹了,不利于 ...

  2. Android开发:实现系统自带截屏功能 需要获取System权限

    在一个service界面上,点击一个button按钮,可以截屏 贴上代码: mButton.setOnClickListener(new OnClickListener(){          pub ...

  3. Python 能说话吗?调用Windows系统自带语音合成

    Python 语言能说话吗? 本文介绍Python如何调用系统自带的语音合成, 及生成语音wav文件的技巧. 目录 安装pythonnet库 调用系统语音合成 自定义语音音色 将语音合成到wav文件 ...

  4. android sony录音app,系统自带录音可弃 这款APP能让手机录立体声

    原标题:系统自带录音可弃 这款APP能让手机录立体声 手机已经成为了很多朋友日常使用的录音工具,不过录音的效果却往往只能说是差强人意.一来,手机麦克风的收音性能有限:而来,系统自带的录音APP往往也造 ...

  5. java 反射 systemproperties,Android添加自己的系统属性(反射调用SystemProperties)

    我们可以通过调用SystemProperties.java类设置和获取系统的属性,但是这个类目前是hide的.也就是我们在开发的时候想直接调用时不可以的.除非你是在系统层上面的开发. 这里通过Andr ...

  6. Android重写菜单增加系统自带返回键

    条件:当前项目导入了ActionBarSherlock这个jar包,这个jar包的作用为了程序的兼容性,考虑低版本的问题. 学习ActionBarSherlock参考博客链接:http://blog. ...

  7. php调用window系统自带的命令,比如计算器

    1.在cmd命令行输入calc.exe 2. 转载于:https://www.cnblogs.com/xiaobiaomei/p/7654730.html

  8. android 图库显示,【Android】 保存图片到系统图库, 并立即显示在图库中

    搬运原链接:http://stormzhang.github.io/android/2014/07/24/android-save-image-to-gallery [正文] 最近有些用户反映保存图片 ...

  9. 【Android】16.3 带Intent过滤器的Services

    分类:C#.Android.VS2015: 创建日期:2016-03-01 一.简介 这一节演示带Intent过滤器的Services的基本用法. 1.配置Intent Filter 不论是本地解决方 ...

  10. android安装自动打开网页,Android调用系统自带浏览器打开网页的实现方法

    Android调用系统自带浏览器打开网页的实现方法 在Android中可以调用自带的浏览器,或者指定一个浏览器来打开一个链接.只需要传入一个uri,可以是链接地址. 启动android默认浏览器 在A ...

最新文章

  1. 深度学习--TensorFlow(项目)识别自己的手写数字(基于CNN卷积神经网络)
  2. 如何用python生成表格_用 Python 生成 HTML 表格
  3. 你是如何保护用户的密码的?
  4. SQLite 入门教程(一)基本控制台(终端)命令
  5. 记ubuntu16.04的一个网络问题
  6. 改变HTML中超链接的显示样式
  7. 天线的起源与发展历史
  8. 转:A/B测试:实现方法
  9. python检验阿姆斯特朗数_python 之九九乘法表,润年,奇偶数,阿姆斯特朗数判断分享...
  10. Java基础_0206:方法的定义与使用
  11. Golang Web入门(2):如何实现一个RESTful风格的路由
  12. Bzoj 3932: [CQOI2015]任务查询系统(主席树)
  13. 小型机oracle命令,IBM 小型机基本知识及AIX操作系统基本命令.doc
  14. linux下抓取网页快照
  15. 积分matlab实现
  16. 新手入门:Javascript的使用技巧大全(二)
  17. pe不认服务器硬盘,WINPE认不出硬盘或移动硬盘怎么办?
  18. 未认证小程序关联已认证公众号,复用公众号资质快速进行认证
  19. win7正在配置请勿关闭计算机,win7系统开机屏幕显示“正在配置Windows Update,请勿关机”的解决方法...
  20. 解决marathon上docker实例一直waitting的问题

热门文章

  1. 【NLP】语义角色标注(Semantic Role Labelling)
  2. 谷歌高频面试题-较小的三数之和
  3. 阿里云专家带你揭秘云计算数据底座——对象存储
  4. 办公利器:IBM Lotus Symphony轻松之旅
  5. os.listdir()
  6. Docker教程:docker machine的配置和命令
  7. 海量数据挖掘MMDS week1: MapReduce
  8. matplotlib,seaborn等画图工具
  9. 联想昭阳k29轴拆机步骤图_【tableau入门教程23】雷达图
  10. kindle刷机ttl_求助大神!现在KPW2只能在TTL下进入uboot