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_string
constants. To assign one of these actions to
this attribute, prepend "{@code android.intent.action.}" to the
string
that follows {@code ACTION_}.
For example, for {@code ACTION_MAIN}, use "{@code android.intent.action.MAIN}"
and for {@code ACTION_WEB_SEARCH}, use "{@code android.intent.action.WEB_SEARCH}".
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>