page.title=<action> @jd:body
syntax:
<action android:name="string" />
contained in:
<intent-filter>

description:
Adds an action to an intent filter. An <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.
attributes:
{@code android:name}
The name of the action. Some standard actions are defined in the {@link android.content.Intent#ACTION_CHOOSER Intent} class as {@code ACTION_string} constants. To assign one of these actions to this attribute, prepend "{@code android.intent.action.}" to the {@code 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" />
introduced in:
API Level 1
see also:
<intent-filter>