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

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

  1. Intent intent =new Intent();
  2. intent.setAction("android.intent.action.CALL_BUTTON");
  3. startActivity(intent);和Uri uri = Uri.parse("tel:xxxxxx");
  4. Intent intent = new Intent(Intent.ACTION_DIAL, uri);
  5. startActivity(intent);

两者都行

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

  1. Intent intent= new Intent("android.intent.action.DIAL");
  2. intent.setClassName("com.android.contacts","com.android.contacts.DialtactsActivity");

到通话记录界面:

  1. Intent intent=new Intent();
  2. intent.setAction(Intent.ACTION_CALL_BUTTON);
  3. startActivity(intent);

到联系人界面:

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_VIEW);
  3. intent.setData(Contacts.People.CONTENT_URI);
  4. startActivity(intent);

同理,到应用:

  1. Intent intent= new Intent("com.android.contacts.action.LIST_STREQUENT");
  2. intent.setClassName("com.android.contacts","com.android.contacts.DialtactsActivity");

调用联系人界面:

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_PICK);
  3. intent.setData(Contacts.People.CONTENT_URI);
  4. startActivity(intent);

插入联系人

  1. Intent intent=new Intent(Intent.ACTION_EDIT,
  2. Uri.parse("content://com.android.contacts/contacts/"+"1"));
  3. startActivity(intent);

到联系人列表界面

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

到短信界面:

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

到应用:

  1. Intent intent = new Intent("android.intent.action.CONVERSATION");
  2. startActivity(intent);

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

1.从google搜索内容

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

2.浏览网页

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

3.显示地图

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

4.路径规划

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

5.拨打电话

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

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

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

6.调用发短信的程序

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

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

  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.发送短信

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

8.发送彩信

  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

  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"));
  1. Intent it = new Intent(Intent.ACTION_SEND);
  2. it.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
  3. it.putExtra(Intent.EXTRA_STREAM, "file:///sdcard/mysong.mp3");
  4. sendIntent.setType("audio/mp3");
  5. startActivity(Intent.createChooser(it, "Choose Email Client"));

10.播放多媒体

  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

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

12.install apk

  1. Uri installUri = Uri.fromParts("package", "xxx", null);
  2. returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);

13. 打开照相机

<1>

  1. Intent i = new Intent(Intent.ACTION_CAMERA_BUTTON, null);
  2. this.sendBroadcast(i);

<2>

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

14.从gallery选取图片

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

15. 打开录音机

  1. Intent mi = new Intent(Media.RECORD_SOUND_ACTION);
  2. startActivity(mi);

16.显示应用详细列表

  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

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

17寻找应用

  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

18打开联系人列表

<1>

  1. Intent i = new Intent();
  2. i.setAction(Intent.ACTION_GET_CONTENT);
  3. i.setType("vnd.android.cursor.item/phone");
  4. startActivityForResult(i, REQUEST_TEXT);

<2>

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

19 打开另一程序

  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, null, null, null, null);
  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, null, null);

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 选择一个图片

  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设备的照相机,并设置拍照后存放位置

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

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

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

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

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

android 调用系统界面的更多相关文章

  1. Android调用系统相机、自己定义相机、处理大图片

    Android调用系统相机和自己定义相机实例 本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,而且因为涉及到要把拍到的照片显示出来,该样例也会涉及到Android载入大图片时候的处 ...

  2. Android调用系统相机、自定义相机、处理大图片

    Android调用系统相机和自定义相机实例 本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显示出来,该例子也会涉及到Android加载大图片时候的处理 ...

  3. Android调用系统相册和拍照的Demo

    最近我在群里看到有好几个人在交流说现在网上的一些Android调用系统相册和拍照的demo都有bug,有问题,没有一个完整的.确实是,我记得一个月前,我一同学也遇到了这样的问题,在低版本的系统中没问题 ...

  4. Android 调用系统分享文字、图片、文件,可直达微信、朋友圈、QQ、QQ空间、微博

    原文:Android 调用系统分享文字.图片.文件,可直达微信.朋友圈.QQ.QQ空间.微博 兼容SDK 18以上的系统,直接调用系统分享功能,分享文本.图片.文件到第三方APP,如:微信.QQ.微博 ...

  5. Android调用系统的打电话和发短信界面(1.将消息内容带过去2.实现群发)

    package com.example.myapi.sms; import android.app.Activity; import android.content.Intent; import an ...

  6. android调用系统相机并获取图片

    如果不是特别的要求,通过拍照的方式取得图片的话,我们一般调用系统的拍照来完成这项工作,而没必要再自己去实现一个拍照功能.调用系统相机很简单,只需要一个intent就可以跳转到相几界面,然后再通过onA ...

  7. Android调用系统照相机

    ndroid调用系统相机实现拍照功能 在实现拍照的功能时遇到了很多问题,搜索了很多资料,尝试了很多办法,终于解决了,下面简要的描述下在开发过程中遇到的问题. 虽然之前看过android开发的书,但是没 ...

  8. Android 调用系统照相机拍照和录像

    本文实现android系统照相机的调用来拍照 项目的布局相当简单,只有一个Button: <RelativeLayout xmlns:android="http://schemas.a ...

  9. (转)Android调用系统自带的文件管理器进行文件选择并获得路径

    Android区别于iOS的沙盒模式,可以通过文件浏览器浏览本地的存储器.Android API也提供了相应的接口. 基本思路,先通过Android API调用系统自带的文件浏览器选取文件获得URI, ...

随机推荐

  1. hdu 3768(spfa+暴力)

    Shopping Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total S ...

  2. C#给IIS添加禁止IP限制

    /// <summary> /// 给IIS添加禁止IP限制 /// 仅针对iis 7及以上版本 /// 首先需要引入Microsoft.Web.Administration.dll // ...

  3. docker rancher 安装

    1.rancher 中文文档 https://rancher.com/docs/rancher/v1.6/zh/ 2.从阿里云拉取镜像 docker pull registry.cn-hangzhou ...

  4. STL模板整理 priority_queue

    priority_queue 优先队列是队列的一种,不过它可以按照自定义的一种方式(数据的优先级)来对队列中的数据进行动态的排序,每次的push和pop操作,队列都会动态的调整,以达到我们预期的方式来 ...

  5. Codeforces 810 A.Straight «A»

    A. Straight «A»   time limit per test 1 second memory limit per test 256 megabytes input standard in ...

  6. HDU 2050 折线分割平面(转)

    折线分割平面 http://acm.hdu.edu.cn/showproblem.php?pid=2050 Problem Description 我们看到过很多直线分割平面的题目,今天的这个题目稍微 ...

  7. ubuntu 16.04.1 LTS python 3.5.2安装

    python 3.5.2安装-----------------------apt-get -y install build-essential checkinstallapt-get install ...

  8. Python __call__内置函数的作用和用法

    开学了进入了实验室,需要协助大师兄做事,主要是OpenStack中的代码解析,但是涉及很多python高级用法,一时间有点麻烦,在做项目的同时慢慢更新博客.这次先写一下__call__的用法,因为经常 ...

  9. 【分治】计算概论(A) / 函数递归练习(1)多边形游戏

    #include<cstdio> #include<algorithm> using namespace std; ],c[],s[]; int work(int L,int ...

  10. 【高斯消元】【异或方程组】【bitset】bzoj1923 [Sdoi2010]外星千足虫

    Xor方程组解的个数判定: ——莫涛<高斯消元解Xor方程组> 使用方程个数判定:消去第i个未知数时,都会记录距第i个方程最近的第i位系数不为0の方程是谁,这个的max就是使用方程个数. ...