安卓官方最新的API里(链接http://developer.android.com/reference/packages.html)为何只能找到Intent类,却找不到android.intent.*包?可在AndroidManifest.xml里面总是有:
这样的过滤语句。
这里面的intent从何而来,而Intent类是在android.content下的,这之间到底有何关联及区别?
注意:intent包i是小写,Intent类I是大写!
Intent
类 是属于 android.Content
包 下的
import android.content.Intent;
而manifest
中的intent
:
比如:
<category android:name="android.intent.category.LAUNCHER" />
只是一个常量而已:
@SdkConstant(SdkConstantType.INTENT_CATEGORY)
public static final String CATEGORY_LAUNCHER = "android.intent.category.LAUNCHER";