Android系统用于Activity的标准Intent

时间:2021-10-22 03:50:29
1 根据联系人ID显示联系人信息
  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_VIEW);   //显示联系人信息
  3. intent.setData(Uri.parse("content://contacts/people/492"));
  4. startActivity(intent);

2 根据联系人ID显示拨号面板

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_DIAL);  //显示拨号面板
  3. intent.setData(Uri.parse("content://contacts/people/492"));
  4. startActivity(intent);

3 显示拨号面板, 并在拨号面板上将号码显示出来

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_VIEW);
  3. intent.setData(Uri.parse("tel://15216448315"));
  4. startActivity(intent);

4 显示拨号面板, 并在拨号面板上将号码显示出来

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_DIAL);   //显示拨号面板, 并在拨号面板上将号码显示出来
  3. intent.setData(Uri.parse("tel://15216448315"));
  4. startActivity(intent);

5 根据联系人的ID编辑联系人

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_EDIT);   //编辑联系人
  3. intent.setData(Uri.parse("content://contacts/people/492"));
  4. startActivity(intent);

6 显示通讯录联系人和其他账号联系人的列表

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_VIEW);
  3. intent.setData(Uri.parse("content://contacts/people/"));
  4. startActivity(intent);

7 启动HomeScreen

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_MAIN);     //启动HomeScreen
  3. intent.addCategory(Intent.CATEGORY_HOME);
  4. startActivity(intent);

8 选择某个联系人的号码,返回一个代表这个号码的uri,如:content://contacts/phones/982

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

9  打开多个应用选取各种类型的数据,以uri返回。返回的uri可使用ContentResolver.openInputStream(Uri)打开
    该功能可用在邮件中附件的选取
    举例如下:
    选取一张图片, 返回的uri为 content://media/external/images/media/47
    选取一首歌, 返回的uri为 content://media/external/audio/media/51

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_GET_CONTENT);
  3. intent.setType("*/*");
  4. intent.addCategory(Intent.CATEGORY_OPENABLE);
  5. startActivityForResult(intent, 2);

10 自定义一个chooser,不使用系统的chooser
     该chooser可以有自己的标题(Title)
     并且不必让用户指定偏好

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_CHOOSER);
  3. intent.putExtra(Intent.EXTRA_TITLE, "my chooser");
  4. intent.putExtra(Intent.EXTRA_INTENT,
  5. new Intent(Intent.ACTION_GET_CONTENT)
  6. .setType("*/*")
  7. .addCategory(Intent.CATEGORY_OPENABLE)
  8. );
  9. startActivityForResult(intent, 2);

11 选取activity,返回的activity可在返回的intent.getComponent()中得到

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_PICK_ACTIVITY);
  3. intent.putExtra( Intent.EXTRA_INTENT,
  4. new Intent(Intent.ACTION_GET_CONTENT)
  5. .setType("*/*")
  6. .addCategory(Intent.CATEGORY_OPENABLE)
  7. );
  8. startActivityForResult(intent, 3);

12 启动搜索,在以下示例代码中,"ANDROID"为要搜索的字符串
     当执行这段代码后, 会在系统的Chooser中显示可以用于搜索的程序列表

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_SEARCH);     //启动搜索
  3. intent.putExtra(SearchManager.QUERY, "ANDROID");
  4. startActivity(intent);

13 启动WEB搜索,在以下示例代码中,"ANDROID"为要搜索的字符串
     当执行这段代码后, 会在系统的Chooser中显示可以用于搜索的程序列表,一般情况下系统中安装的浏览器都会显示出来

  1. Intent intent = new Intent();
  2. intent.setAction(Intent.ACTION_WEB_SEARCH);     //启动搜索
  3. intent.putExtra(SearchManager.QUERY, "ANDROID");
  4. startActivity(intent);