page.title=<action> parent.title=The AndroidManifest.xml File parent.link=manifest-intro.html @jd:body
<action android:name="string" />
<intent-filter>
<intent-filter>
element must contain
one or more {@code <action>} elements. If it doesn't contain any, no
Intent objects will get through the filter. See
Intents and
Intent Filters for details on intent filters and the role of action
specifications within a filter.
For actions you define, it's best to use the package name as a prefix to ensure uniqueness. For example, a {@code TRANSMOGRIFY} action might be specified as follows:
<action android:name="com.example.project.TRANSMOGRIFY" />
<intent-filter>