首页 > 代码库 > Intent的七大组件
Intent的七大组件
------Intent------
Android中三个核心组件——Activity、Services、BroadCastProvider都是通过Intent传递参数。
- startActivity(Intent)/startActivityForResult(Intent):来启动一个Activity
- startService(Intent)/bindService(Intent):来启动一个Service
- sendBroadcast:发送广播到指定BroadcastReceiver
Intent分类:根据是否使用组件名来查找目标Activity,意图可以分为显示意图和隐式意图
- 显式Intent:通过组件名指定启动的目标组件:startActivity(new Intent(A.this,B.class)); 每次只能启动一个组件。使用场景:在同一个应用中,或者其他应用的主界面
- 隐式Intent:不指定组件名,而是指定Intent的Action,Data,或Category,(action、data、category在AndroidManifest.xml中配置),当我们启动组件时, 会去匹配AndroidManifest.xml相关组件的Intent-filter,逐一匹配出满足属性的组件,当不止一个满足时, 会弹出一个让我们选择启动哪个的对话框。使用场景:在不同的应用中
Intent的七大组件:
1、ComponentName(组件名)
Intent intent = new Intent();
//第一个参数是包名,在Manifest.xml中配置好的包名,第二参数是要跳转的Activity的包名.类名ComponentName componentName1 = new ComponentName("包名",包名.类名");intent.setComponent(componentName1);startActivity(intent);
2、Action(活动)
Action表示想要启动的Activity要完成什么动作,通常将Action、Category属性结合使用。使用动作启动Activity需要两个步骤:
1、在目标Activity清单文件中,添加意图过滤器<intent-filter>
<action>不单独使用,要和Category结合使用。动作可以自定义,类别不能自定义。
<intent-filter> <action android:name="haha" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter>
2、创建意图对象,调用setAction、addCategroy方法
//1创建意图 Intent intent=new Intent(); //2设置动作 intent.setAction("haha"); //3添加类别 intent.addCategory(Intent.CATEGORY_DEFAULT); //intent.addCategory("android.intent.category.DEFAULT"); //4启动 startActivity(intent);
好处:实现了Intent与某个具体的Activity分离,降低了耦合性,由系统决定启动那个Activity。
常量 | 目标组件 | 动作 |
ACTION_MAIN | activity | 任务的主Activity,无输入数据和返回值 |
ACTION_VIEW | activity | 浏览试图,根据不同的Data类型, 显示特定的数据 |
ACTION_DIAL | activity | 系统拨号器,需要拨号数据 |
ACTION_CALL | activity | 打电话,需要拨号数据 |
3、Category(类别)
当Action相同时,靠Category属性来细化和区分。它可以配合Action属性构成了<intent-filter>,常用Category属性常量:
CATEGORY_DEFAULT:(android.intent.category.DEFAULT) Android系统中默认的执行方式,按照普通Activity的执行方式执行。
CATEGORY_HOME: (android.intent.category.HOME) 设置该组件为Home Activity(显示桌面)。
CATEGORY_LAUNCHER: (android.intent.category.LAUNCHER) 设置该组件为在当前应用程序启动器中优先级最高的Activity,通常与程序入口动作ACTION_MAIN配合使用。
4、Data(数据)
Data属性通常用于向Action属性提供重要操作的数据。例如拨打指定电话、发送短信指定电话号码和内容等数据。Data属性的值是一个Uri(统一资源标识符)对象。
Uri的格式如下:scheme://host:port/path (协议-主机-端口-路径)
URL Uniform Resource Locator 统一资源定位符 (网址)
URI Uniform Resource Indentifier 统一资源标识符 (包含网址)
//1创建意图 Intent intent=new Intent(); //2设置动作 intent.setAction("hehe"); //3添加类别 intent.addCategory(Intent.CATEGORY_DEFAULT); //4设置数据 intent.setData(Uri.parse("gdp://www.baidu.com")); //intent.setData(Uri.parse("gdp:www.baidu.com")); //4启动 startActivity(intent);
//AndroidManifest.xml中需要配置action、data、category
<intent-filter> <action android:name="hehe" /> <category android:name="android.intent.category.DEFAULT" /> <data android:scheme="gdp" /> </intent-filter>
系统内置的几个Data属性常量:
tel: 号码数据格式,后跟电话号码。
mailto: 邮件数据格式,后跟邮件收件人地址。
smsto: 短信数据格式,后跟短信接收号码。
file:/// 文件数据格式,后跟文件路径。 要有三个斜线 ///
intent.setDataAndType(Uri.parse("file:///wenjianlujing"), "audio/*");
content:// 内容数据格式,后跟需要读取的内容。
5、Type(类型)
Type属性用于指定Data所指定的Uri对应的MIME类型
主要用于调用系统app,实现查看文件(如文本、图片、视频、音频等),通过指定文件的MIME类型,让系统知道用什么程序打开该文件。
Intent中设置Type的方法:
(1)setType("XXX/xxx");//在调用短信的时候使用
(2)setDataAndType(uri,"XXX/xxx");
//1创建意图 Intent intent=new Intent(); //2设置动作 intent.setAction("gaga"); //3添加类别 //4设置数据类型 intent.setDataAndType(Uri.parse("mdp://www.baidu.com"), "xxx/yyy"); //5启动 startActivity(intent);
AndroidManifest.xml中需要配置:data 和 type 的配置都在data中:
<intent-filter> <action android:name="gaga"/> <category android:name="android.intent.category.DEFAULT"/> <data android:scheme="mdp" android:mimeType="xxx/yyy"/> </intent-filter>
6、Extras(扩展)
发送短信给多人,包含内容:
Intent intent = new Intent();intent.setAction(Intent.ACTION_VIEW);intent.setData(Uri.parse("smsto:10086,110"));intent.putExtra("sms_body", "你好,好久不见");startActivity(intent);
发送邮件:
// 发送邮件actionIntent emailIntent = new Intent(android.content.Intent.ACTION_SEND);// 文本格式emailIntent.setType("text/plain");// 对方邮件地址emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,"2654828081@qq.com");// 标题内容emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "标题内容");// 邮件文本内容emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "邮件内容");// 弹出能够匹配要求的所有邮箱APP,点击选择startActivity(Intent.createChooser(emailIntent, "Choose Email Client"));
7、Flags(标志)
发送邮件
// 发送邮件actionIntent emailIntent = new Intent(android.content.Intent.ACTION_SEND);// 文本格式emailIntent.setType("text/plain");// 对方邮件地址emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,"****@qq.com");// 标题内容emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "标题内容");// 邮件文本内容emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "邮件内容");// 弹出能够匹配要求的所有邮箱APP,点击选择startActivity(Intent.createChooser(emailIntent, "Choose Email Client"));
Intent启动的几种方式:
// 1.第一种
Intent intent = new Intent();
intent.setClass(MainActivity.this, SecondActivity.class);
// 2.第二种
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
// 3.第三种
Intent intent = new Intent();
ComponentName componentName1 = new ComponentName(
"com.example.day06_componentname",
"com.example.day06_componentname.SecondActivity");
intent.setComponent(componentName1);
startActivity(intent);
// 4.第四种
Intent intent = new Intent();
intent.setClassName("com.android.camera", "com.android.camera.Camera");
startActivity(intent);
// 5.第五种
Intent intent2 = new Intent();
ComponentName componentName = new ComponentName(MainActivity.this,
SecondActivity.class);
intent2.setComponent(componentName);
startActivity(intent2);
Intent的七大组件