方法一:调用默认的短信程序
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setType("vnd.android-dir/mms-sms");
intent.setData(Uri.parse("content://mms-sms/conversations/"));//此为号码,本行应该可以不用
startActivity(intent);

方法二:调用系统自带的短信程序
Intent intent = new Intent();
intent.setClassName("com.android.mms","com.android.mms.ui.ConversationList");
startActivity(intent);

//这是点击桌面图标启动相应应用程序的方式,前提是必须知道当前系统的MMS包名及入口类路径。
    private void showMMSViewByPackagePath() {
        Intent intent = new Intent();
        intent.setClassName("com.android.mms",
                "com.android.mms.ui.ConversationList");
        intent.setAction(Intent.ACTION_MAIN);
        intent.addCategory(Intent.CATEGORY_DEFAULT);
        startActivity(intent);
    }
    //这是Intent-Filter过滤方式,是通用的方式。
    private void showMMSViewByIntentFilter() {
        Intent intent = new Intent();
        intent.setAction(Intent.ACTION_MAIN);
        intent.addCategory(Intent.CATEGORY_DEFAULT);
        intent.setType("vnd.android-dir/mms-sms");
        // 或改成亦可
        // intent.setType("vnd.android.cursor.dir/mms");
        startActivity(intent);
    }

现在开发中的功能需要直接跳转到拨号、联系人、短信界面等等,查找了很多资料,自己整理了一下。

首先,我们先看拨号界面,代码如下:

[java] view plaincopy
  1. Intent intent =new Intent();
  2. intent.setAction("android.intent.action.CALL_BUTTON");
  3. startActivity(intent);

[java] view plaincopy
  1. Uri uri = Uri.parse("tel:xxxxxx");
  2. Intent intent = new Intent(Intent.ACTION_DIAL, uri);
  3. startActivity(intent);

两者都行

但是如果是跳转到应用,使用一下代码:

[java] view plaincopy
  1. Intent intent= new Intent("android.intent.action.DIAL");
  2. intent.setClassName("com.android.contacts","com.android.contacts.DialtactsActivity");

到通话记录界面:

[java] view plaincopy
  1. Intent intent=new Intent();
  2. intent.setAction(Intent.ACTION_CALL_BUTTON);
  3. startActivity(intent);

到联系人界面:

[java] view plaincopy
  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_VIEW);
  3. intent.setData(Contacts.People.CONTENT_URI);
  4. startActivity(intent);

同理,到应用:

[java] view plaincopy
  1. Intent intent= new Intent("com.android.contacts.action.LIST_STREQUENT");
  2. intent.setClassName("com.android.contacts","com.android.contacts.DialtactsActivity");

调用联系人界面:

[java] view plaincopy
  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_PICK);
  3. intent.setData(Contacts.People.CONTENT_URI);
  4. startActivity(intent);

插入联系人

[java] view plaincopy
  1. Intent intent=new Intent(Intent.ACTION_EDIT,Uri.parse("content://com.android.contacts/contacts/"+"1"));
  2. startActivity(intent);

到联系人列表界面

[java] view plaincopy
  1. Intent intent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
  2. intent.setType("vnd.android.cursor.item/person");
  3. intent.setType("vnd.android.cursor.item/contact");
  4. intent.setType("vnd.android.cursor.item/raw_contact");
  5. intent.putExtra(android.provider.ContactsContract.Intents.Insert.NAME, name);
  6. intent.putExtra(android.provider.ContactsContract.Intents.Insert.COMPANY,company);
  7. intent.putExtra(android.provider.ContactsContract.Intents.Insert.PHONE, tel);
  8. intent.putExtra(android.provider.ContactsContract.Intents.Insert.PHONE_TYPE, 3);

到短信界面:

[java] view plaincopy
  1. Intent intent = new Intent(Intent.ACTION_VIEW);
  2. intent.setType("vnd.android-dir/mms-sms");
  3. //              intent.setData(Uri.parse("content://mms-sms/conversations/"));//此为号码
  4. startActivity(intent);

到应用:

[java] view plaincopy
  1. Intent intent = new Intent("android.intent.action.CONVERSATION");
  2. startActivity(intent);

以下是在网上找到的其他方法:

1.从google搜索内容

[java] view plaincopy
  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_WEB_SEARCH);
  3. intent.putExtra(SearchManager.QUERY,"searchString")
  4. startActivity(intent);

2.浏览网页

[java] view plaincopy
  1. Uri uri = Uri.parse("http://www.google.com");
  2. Intent it   = new Intent(Intent.ACTION_VIEW,uri);
  3. startActivity(it);

3.显示地图

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

4.路径规划

[java] view plaincopy
  1. Uri uri = Uri.parse("http://maps.google.com/maps?f=dsaddr=startLat%20startLng&daddr=endLat%20endLng&hl=en");
  2. Intent it = new Intent(Intent.ACTION_VIEW,URI);
  3. startActivity(it);

5.拨打电话

[java] view plaincopy
  1. Uri uri = Uri.parse("tel:xxxxxx");
  2. Intent it = new Intent(Intent.ACTION_DIAL, uri);
  3. startActivity(it);

[java] view plaincopy
  1. uri = Uri.parse("tel:"+number);
  2. intent = new Intent(Intent.ACTION_CALL,uri);
  3. startActivity(intent);

其中不同自己试验一下就知道了。

6.调用发短信的程序

[java] view plaincopy
  1. Intent it = new Intent(Intent.ACTION_VIEW);
  2. it.putExtra("sms_body", "The SMS text");
  3. it.setType("vnd.android-dir/mms-sms");
  4. startActivity(it);

[java] view plaincopy
  1. uri = Uri.parse("smsto:"+要发送短信的对方的number);
  2. intent = new Intent(Intent.ACTION_SENDTO,uri);
  3. startActivity(intent);

[java] view plaincopy
  1. mIntent = new Intent(Intent.ACTION_VIEW);
  2. mIntent.putExtra("address", c.getString(c.getColumnIndex(column)));
  3. mIntent.setType("vnd.android-dir/mms-sms");
  4. startActivity(mIntent);

7.发送短信

[java] view plaincopy
  1. Uri uri = Uri.parse("smsto:0800000123");
  2. Intent it = new Intent(Intent.ACTION_SENDTO, uri);
  3. it.putExtra("sms_body", "The SMS text");
  4. startActivity(it);
  5. String body="this is sms demo";
  6. Intent mmsintent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("smsto", number, null));
  7. mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body);
  8. mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, true);
  9. mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, true);
  10. startActivity(mmsintent);<span style="font-family:Simsun;white-space: normal; background-color: rgb(255, 255, 255);"> </span>

8.发送彩信

[java] view plaincopy
  1. Uri uri = Uri.parse("content://media/external/images/media/23");
  2. Intent it = new Intent(Intent.ACTION_SEND);
  3. it.putExtra("sms_body", "some text");
  4. it.putExtra(Intent.EXTRA_STREAM, uri);
  5. it.setType("image/png");
  6. startActivity(it);
  7. StringBuilder sb = new StringBuilder();
  8. sb.append("file://");
  9. sb.append(fd.getAbsoluteFile());
  10. Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mmsto", number, null));
  11. // Below extra datas are all optional.
  12. intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_SUBJECT, subject);
  13. intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body);
  14. intent.putExtra(Messaging.KEY_ACTION_SENDTO_CONTENT_URI, sb.toString());
  15. intent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, composeMode);
  16. intent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, exitOnSent);
  17. startActivity(intent);

9.发送Email

[java] view plaincopy
  1. Uri uri = Uri.parse("mailto:xxx@abc.com");
  2. Intent it = new Intent(Intent.ACTION_SENDTO, uri);
  3. startActivity(it);
  4. Intent it = new Intent(Intent.ACTION_SEND);
  5. it.putExtra(Intent.EXTRA_EMAIL, "me@abc.com");
  6. it.putExtra(Intent.EXTRA_TEXT, "The email body text");
  7. it.setType("text/plain");
  8. startActivity(Intent.createChooser(it, "Choose Email Client"));
  9. Intent it=new Intent(Intent.ACTION_SEND);
  10. String[] tos={"me@abc.com"};
  11. String[] ccs={"you@abc.com"};
  12. it.putExtra(Intent.EXTRA_EMAIL, tos);
  13. it.putExtra(Intent.EXTRA_CC, ccs);
  14. it.putExtra(Intent.EXTRA_TEXT, "The email body text");
  15. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
  16. it.setType("message/rfc822");
  17. startActivity(Intent.createChooser(it, "Choose Email Client"));
  18. Intent it = new Intent(Intent.ACTION_SEND);
  19. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
  20. it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");
  21. sendIntent.setType("audio/mp3");
  22. startActivity(Intent.createChooser(it, "Choose Email Client"));

10.播放多媒体

[java] view plaincopy
  1. Intent it = new Intent(Intent.ACTION_VIEW);
  2. Uri uri = Uri.parse("file:///sdcard/song.mp3");
  3. it.setDataAndType(uri, "audio/mp3");
  4. startActivity(it);
  5. Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1");
  6. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  7. startActivity(it);

11.uninstall apk

[java] view plaincopy
  1. Uri uri = Uri.fromParts("package", strPackageName, null);
  2. Intent it = new Intent(Intent.ACTION_DELETE, uri);
  3. startActivity(it);

12.install apk

[java] view plaincopy
  1. Uri installUri = Uri.fromParts("package", "xxx", null);
  2. returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);

13. 打开照相机

[java] view plaincopy
  1. <1>Intent i = new Intent(Intent.ACTION_CAMERA_BUTTON, null);
  2. this.sendBroadcast(i);
  3. <2>long dateTaken = System.currentTimeMillis();
  4. String name = createName(dateTaken) + ".jpg";
  5. fileName = folder + name;
  6. ContentValues values = new ContentValues();
  7. values.put(Images.Media.TITLE, fileName);
  8. values.put("_data", fileName);
  9. values.put(Images.Media.PICASA_ID, fileName);
  10. values.put(Images.Media.DISPLAY_NAME, fileName);
  11. values.put(Images.Media.DESCRIPTION, fileName);
  12. values.put(Images.ImageColumns.BUCKET_DISPLAY_NAME, fileName);
  13. Uri photoUri = getContentResolver().insert(
  14. MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
  15. Intent inttPhoto = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
  16. inttPhoto.putExtra(MediaStore.EXTRA_OUTPUT, photoUri);
  17. startActivityForResult(inttPhoto, 10);

14.从gallery选取图片

[java] view plaincopy
  1. Intent i = new Intent();
  2. i.setType("image/*");
  3. i.setAction(Intent.ACTION_GET_CONTENT);
  4. startActivityForResult(i, 11);

15. 打开录音机

[java] view plaincopy
  1. Intent mi = new Intent(Media.RECORD_SOUND_ACTION);
  2. startActivity(mi);

16.显示应用详细列表

[java] view plaincopy
  1. Uri uri = Uri.parse("market://details?id=app_id");
  2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  3. startActivity(it);
  4. //where app_id is the application ID, find the ID
  5. //by clicking on your application on Market home
  6. //page, and notice the ID from the address bar<span style="font-family:Simsun;white-space: normal; rgb(255, 255, 255);">    </span>

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

17寻找应用

[java] view plaincopy
  1. Uri uri = Uri.parse("market://search?q=pname:pkg_name");
  2. Intent it = new Intent(Intent.ACTION_VIEW, uri);
  3. startActivity(it);
  4. //where pkg_name is the full package path for an application<span style="font-family:Simsun;white-space: normal; rgb(255, 255, 255);">     </span>

18打开联系人列表

[java] view plaincopy
  1. <1>
  2. Intent i = new Intent();
  3. i.setAction(Intent.ACTION_GET_CONTENT);
  4. i.setType("vnd.android.cursor.item/phone");
  5. startActivityForResult(i, REQUEST_TEXT);
[java] view plaincopy
  1. <2>
  2. Uri uri = Uri.parse("content://contacts/people");
  3. Intent it = new Intent(Intent.ACTION_PICK, uri);
  4. startActivityForResult(it, REQUEST_TEXT);

19 打开另一程序

[java] view plaincopy
  1. Intent i = new Intent();
  2. ComponentName cn = new ComponentName("com.yellowbook.android2",
  3. "com.yellowbook.android2.AndroidSearch");
  4. i.setComponent(cn);
  5. i.setAction("android.intent.action.MAIN");
  6. startActivityForResult(i, RESULT_OK);

20 添加到短信收件箱

  1. ContentValues cv = new ContentValues();
  2. cv.put("type", "1");
  3. cv.put("address","短信地址");
  4. cv.put("body", "短信内容");
  5. getContentResolver().insert(Uri.parse("content://sms/inbox"), cv);

21 从sim卡或者联系人中查询

  1. Cursor cursor;
  2. Uri uri;
  3. if (type == 1) {
  4. Intent intent = new Intent();
  5. intent.setData(Uri.parse("content://icc/adn"));
  6. uri = intent.getData();
  7. else
  8. uri = People.CONTENT_URI;
  9. cursor = activity.getContentResolver().query(uri, nullnullnullnull);
  10. while (cursor.moveToNext()) {
  11. int peopleId = cursor.getColumnIndex(People._ID);
  12. int nameId = cursor.getColumnIndex(People.NAME);
  13. int phoneId = cursor.getColumnIndex(People.NUMBER);}

查看某个联系人,当然这里是ACTION_VIEW,如果为选择并返回action改为ACTION_PICK,当然处理intent时返回需要用到 startActivityforResult

Uri personUri = ContentUris.withAppendedId(People.CONTENT_URI, ID);//最后的ID参数为联系人Provider中的数据库BaseID,即哪一行

Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setData(personUri); startActivity(intent);

22 删除

  1. uri = ContentUris.withAppendedId(People.CONTENT_URI, 联系人id);
  2. int count = activity.getContentResolver().delete(uri, nullnull);

23 添加到联系人:

  1. ContentValues cv = new ContentValues();
  2. ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
  3. ContentProviderOperation.Builder builder = ContentProviderOperation.newInsert(RawContacts.CONTENT_URI);
  4. builder.withValues(cv);
  5. operationList.add(builder.build());
  6. builder = ContentProviderOperation.newInsert(Data.CONTENT_URI);
  7. builder.withValueBackReference(StructuredName.RAW_CONTACT_ID, 0);
  8. builder.withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
  9. builder.withValue(StructuredName.DISPLAY_NAME, "自定义联系人名");
  10. operationList.add(builder.build());
  11. builder = ContentProviderOperation.newInsert(Data.CONTENT_URI);
  12. builder.withValueBackReference(Phone.RAW_CONTACT_ID, 0);
  13. builder.withValue(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
  14. builder.withValue(Phone.NUMBER, "联系人的phonenumber");
  15. builder.withValue(Data.IS_PRIMARY, 1);
  16. operationList.add(builder.build());
  17. try {
  18. getContentResolver().applyBatch(ContactsContract.AUTHORITY, operationList);
  19. catch (RemoteException e) {
  20. e.printStackTrace();
  21. catch (OperationApplicationException e) {
  22. e.printStackTrace();
  23. }

23 选择一个图片

[java] view plaincopy
  1. Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
  2. intent.addCategory(Intent.CATEGORY_OPENABLE);
  3. intent.setType("image/*");
  4. startActivityForResult(intent, 0);

24 调用Android设备的照相机,并设置拍照后存放位置

[java] view plaincopy
  1. Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
  2. intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment .getExternalStorageDirectory().getAbsolutePath()+"/cwj", android123 + ".jpg"))); //存放位置为sdcard卡上cwj文件夹,文件名为android123.jpg格式
  3. startActivityForResult(intent, 0);

25 在market上搜索指定package name,比如搜索com.android123.cwj的写法如下

[java] view plaincopy
  1. Uri uri = Uri.parse("market://search?q=pname:com.android123.cwj");
  2. Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent);

26 获取文件信息,并使用相对应软件打开

[java] view plaincopy
  1. private void openFile(File f)
  2. {
  3. Intent intent = new Intent();
  4. intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  5. intent.setAction(android.content.Intent.ACTION_VIEW);
  6. String type = getMIMEType(f);
  7. intent.setDataAndType(Uri.fromFile(f), type);
  8. startActivity(intent);
  9. }
  10. private String getMIMEType(File f){
  11. String end = f
  12. .getName()
  13. .substring(f.getName().lastIndexOf(".") + 1,
  14. f.getName().length()).toLowerCase();
  15. String type = "";
  16. if (end.equals("mp3") || end.equals("aac") || end.equals("aac")
  17. || end.equals("amr") || end.equals("mpeg")
  18. || end.equals("mp4"))
  19. {
  20. type = "audio";
  21. } else if (end.equals("jpg") || end.equals("gif")
  22. || end.equals("png") || end.equals("jpeg"))
  23. {
  24. type = "image";
  25. } else
  26. {
  27. type = "*";
  28. }
  29. type += "/*";
  30. return type;
  31. }

http://blog.csdn.net/lilu_leo/article/details/6938729

转载于:https://www.cnblogs.com/softidea/p/4802952.html

Intent常用使用汇总相关推荐

  1. Docker常用命令汇总

    Docker常用命令汇总 帮助命令 docker version docker info docker --help 镜像命令 docker images 列出本地主机上的镜像,各个选项说明如下: R ...

  2. linux常用命令汇总

    linux常用命令汇总,以便需要时快速查询 中文释义 相应命令 备注 在文件中查找 grep error catalina.out 在catalina.out文件中查找error信息 重启nginx ...

  3. C#(Net)软件开发常用工具汇总,提高你的开发效率

    C#(Net)软件开发常用工具汇总,提高你的开发效率 写代码也要读书,爱全栈,更爱生活.每日更新原创IT编程技术及日常实用技术文章. 我们的目标是:玩得转服务器Web开发,搞得懂移动端,电脑客户端更是 ...

  4. PHP常用正则表达式汇总 [复制链接]

    PHP常用正则表达式汇总 [复制链接] 上一主题下一主题   离线我是小猪头 法师 发帖 539 加关注 发消息 只看楼主 倒序阅读 使用道具楼主  发表于: 2011-06-22 更多 - 本帖被 ...

  5. python命令大全下载-Python pip 常用命令汇总

    使用了这么就pip命令,但是一直是简单使用,很多命令都是用了查,查了用,今天把常用的命令汇总一下,方便使用. 命令: pip 由上图可以看到 pip 支持一下命令 Commands: install ...

  6. python常用命令大全-Python pip 常用命令汇总

    使用了这么就pip命令,但是一直是简单使用,很多命令都是用了查,查了用,今天把常用的命令汇总一下,方便使用. 命令: pip 由上图可以看到 pip 支持一下命令 Commands: install ...

  7. vue input file onchange_vue常用指令汇总

    在我们对比vue与react的时候,会发现一个很明显的特点,react的写法很自由,用js来搞定一切,而vue的模版语法提供了一套相对固定的模式来书写页面,vue的优势在于这些特性帮助我们简化了代码, ...

  8. 【干货】仪器仪表常用术语汇总

    武汉天禹智控科技有限公司依托多年来从事气体分析行业的经验和强大的技术实力,经过多年研制开发和应用实践,在传感技术方面,成功的研制出拥有自主知识产权的电化学分析仪系列,红外分析仪系列,紫外气体分析仪系列 ...

  9. 史上最全的Linux常用命令汇总①收藏这一篇就够了!(超全,超详细)

    史上最全的Linux常用命令汇总①(超全面!超详细!)收藏这一篇就够了! Linux命令基础 Shell Linux命令分类 Linux命令行的格式 编辑Linux命令行的辅助操作 获取命令帮助的方法 ...

最新文章

  1. Android Studio 权威教程
  2. smartform连续打印,并自动补充空行
  3. 怎么通过id渲染页面_「快页面」动态配置化页面渲染器原理介绍
  4. SpringCloud-Eureka-服务注册是如何发起的
  5. 结合使用slf4j和Logback教程
  6. 1048 行 MySQL指令(经典)
  7. 2017-2018-1 20155301 实验四 外设驱动程序设计
  8. Revit 2011 二次开发之“取得两条直线的交点”
  9. [转] 由Request Method:OPTIONS初窥CORS
  10. 我的JDBC通用DAO(续)
  11. 分布式架构网络通信——netty
  12. 推荐给大家一个网络工程标书模版(仅供参考)
  13. ps编辑工具:渐隐/合并拷贝
  14. Git-Clone succeeded, but checkout failed
  15. PyTorch 轻松节省显存的小技巧
  16. 串联四足机器人基础知识
  17. NEX让人们对vivo刮目相看,这个互联网巨头出了一份力
  18. dsf5.0二次开发输入框监听,其他类似
  19. iOS完整学习路线图
  20. UG导出CAD图纸的方法

热门文章

  1. 融资13亿后突然死亡!首款产品被苹果点赞,与谷歌竞赛的明星创业公司Anki倒闭...
  2. 鸟叫就能黑掉AI系统,而且你根本察觉不到
  3. MIT机器人闭上眼睛,靠触觉也爬得上凶险的楼梯 | 施工未完成
  4. 实录 | 旷视研究院详解COCO2017人体姿态估计冠军论文(PPT+视频)
  5. 终于承认!马斯克证实特斯拉在造AI芯片,而且是世上最好的AI硬件
  6. iOS_20_微博的骨架结构
  7. 客户网站被黑导致CDN加速后打开域名就提示域名纠错
  8. 【CF 应用开发大赛】智能静音android应用
  9. Spring boot、Redis、ActiveMQ、Nginx、Mycat、Netty、Jvm调优
  10. iOS 搭建XMPP环境时添加依赖库报错及解决