page.title=<category> parent.title=The AndroidManifest.xml File parent.link=manifest-intro.html @jd:body
<category android:name="string" />
<intent-filter>
Note: In order to receive implicit intents, you must include the {@link android.content.Intent#CATEGORY_DEFAULT} category in the intent filter. The methods {@link android.app.Activity#startActivity startActivity()} and {@link android.app.Activity#startActivityForResult startActivityForResult()} treat all intents as if they declared the {@link android.content.Intent#CATEGORY_DEFAULT} category. If you do not declare it in your intent filter, no implicit intents will resolve to your activity.
Custom categories should use the package name as a prefix, to ensure that they are unique.
<action>
<data>