Intent七大属性都是一些常用的东西,就是没有总结过,那么今天就来简单总结一下。
Intent七大属性是指Intent的ComponentName、Action、Category、Data、Type、Extra以及Flag,七个属性,总体上可以分为3类:
第一类:启动,有ComponentName(显式),Action(隐式),Category(隐式)。
第二类:传值,有Data(隐式),Type(隐式),Extra(隐式、显式)。
第三类:启动模式,有Flag。
下面我们逐一来说。
Component本身有组件的意思,我们通过设置Component可以启动其他的Activity或者其他应用中的Activity,来看一个简单的实例:
启动同一个App中另外一个Activity:
1
2
3
|
intent =
new
Intent();
intent.setComponent(
new
ComponentName(
this
, SecondActivity.
class
));
startActivity(intent);
|
1
2
|
intent =
new
Intent(
this
,SecondActivity.
class
);
startActivity(intent);
|
1
2
3
|
intent =
new
Intent();
intent.setClass(
this
, SecondActivity.
class
);
startActivity(intent);
|
因为在实际开发中,Action大多时候都是和Category一起使用的,所以这里我们将这两个放在一起来讲解。Intent中的Action我们在使用广播的时候用的比较多,在Activity中,我们可以通过设置Action来隐式的启动一个Activity,比如我们有一个ThirdActivity,我们在清单文件中做如下配置:
1
2
3
4
5
6
7
8
|
<intent-filter>
<category android:name=
"android.intent.category.DEFAULT"
>
</action></category></intent-filter>
</activity>
|
1
2
3
|
intent =
new
Intent();
intent.setAction(
"com.qf.ThirdActivity"
);
startActivity(intent);
|
1
2
|
intent =
new
Intent(
"com.qf.ThirdActivity"
);
startActivity(intent);
|
当我们有多个Activity配置了相同的action的时候,那么系统会弹出来一个选择框,让我们自己选择要启动那个Activity。
action我们只能添加一个,但是category却可以添加多个(至少有一个,没有就要设置为DEFAULT),如下:
1
2
3
4
5
6
7
8
|
<intent-filter>
<category android:name=
"android.intent.category.DEFAULT"
>
<category android:name=
"mycategory"
>
</action></category></category></intent-filter>
</activity>
|
1
2
3
|
intent =
new
Intent(
"com.qf.ThirdActivity"
);
intent.addCategory(
"mycategory"
);
startActivity(intent);
|
通过设置data,我们可以执行打电话,发短信,开发网页等等操作。究竟做哪种操作,要看我们的数据格式:
1
2
3
4
5
6
7
8
|
// 打开网页
intent =
new
Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(
"http://www.baidu.com"
));
startActivity(intent);
// 打电话
intent =
new
Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(
"tel:18565554482"
));
startActivity(intent);
|
1
2
3
4
5
6
7
8
9
|
<intent-filter>
<category android:name=
"android.intent.category.DEFAULT"
>
<data android:scheme=
"http"
>
</data></category></action></intent-filter>
</activity>
|
在data节点中我们设置我们这个Activity可以打开的协议,我们这里设置为http协议,那么以后要打开一个http请求的时候,系统都会让我们选择是否用这个Activity打开。当然,我们也可以自己定义一个协议(自己定义的协议,由于别人不知道,所以只能由我们自己的程序打开)。比如下面这样:
1
2
3
4
5
6
7
8
9
|
<intent-filter>
<category android:name=
"android.intent.category.DEFAULT"
>
<data android:scheme=
"myhttp"
>
</data></category></action></intent-filter>
</activity>
|
1
2
3
|
intent =
new
Intent();
intent.setData(Uri.parse(
"myhttp://www.baidu.com"
));
startActivity(intent);
|
其实,说到这里,大家应该明白了为什么我们说data是隐式传值,比如我们打开一个网页,http协议后面跟的就是网页地址,我们不用再单独指定要打开哪个网页。
type的存在,主要是为了对data的类型做进一步的说明,但是一般情况下,只有data属性为null的时候,type属性才有效,如果data属性不为null,系统会自动根据data中的协议来分析data的数据类型,而不会去管type,我们先来看看下面一段源码:
1
2
3
4
5
6
|
/**
* Set the data
this
intent is operating on. This method automatically
* clears any type that was previously set by {
@link
#setType} or
* {
@link
#setTypeAndNormalize}.
*
*
|
Note: scheme matching in the Android framework is * case-sensitive, unlike the formal RFC. As a result, * you should always write your Uri with a lower case scheme, * or use{@link Uri#normalizeScheme} or * {@link #setDataAndNormalize} * to ensure that the scheme is converted to lower case. * * @param data The Uri of the data this intent is now targeting. * * @return Returns the same Intent object, for chaining multiple calls * into a single statement. * * @see #getData * @see #setDataAndNormalize * @see android.net.Uri#normalizeScheme() */ public Intent setData(Uri data) { mData = data; mType = null; return this; } /** * Set an explicit MIME data type. * *
This is used to create intents that only specify a type and not data, * for example to indicate the type of data to return. * *
This method automatically clears any data that was * previously set (for example by{@link #setData}). * *
Note: MIME type matching in the Android framework is * case-sensitive, unlike formal RFC MIME types. As a result, * you should always write your MIME types with lower case letters, * or use {@link #normalizeMimeType} or {@link #setTypeAndNormalize} * to ensure that it is converted to lower case. * * @param type The MIME type of the data being handled by this intent. * * @return Returns the same Intent object, for chaining multiple calls * into a single statement. * * @see #getType * @see #setTypeAndNormalize * @see #setDataAndType * @see #normalizeMimeType */ public Intent setType(String type) { mData = null; mType = type; return this; }
1
|
setDataAndType(Uri data, String type)
|
这个方法来完成。下面我们来看看通过给Intent设置type来打开一个音乐播放器。代码如下:
1
2
3
4
5
|
intent =
new
Intent();
intent.setAction(Intent.ACTION_VIEW);
Uri data = Uri.parse(
"file:///storage/emulated/0/xiami/audios/被动.mp3"
);
intent.setDataAndType(data,
"audio/mp3"
);
startActivity(intent);
|
Extra就比较好理解了,我们经常使用它来在Activity之间传递数据,Extra可以传递基本类型,String类型以及实现了Serializable或者Parcelable接口的类,具体用法不多说。
通过设置Flag,我们可以设定一个Activity的启动模式,这个和launchMode基本上是一样的,所以我也不再细说,关于launchMode的使用参见launchMode使用详解