Native actions (Native activity) are static string constants (static final String) in the intent class.
These actions can be applied when an implicit intent is created to start an activity or subactivity within an application.
Android apis:http://developer.android.com/reference/android/content/intent.html
Mainly include:
Action_all_apps: List all installed programs;
Action_answer: Handle incoming calls;
Action_bug_report: report bugs;
Action_call: Opens a telephone dialer, uses the intent data URI to provide the number dials the telephone;
Action_call_button: Dial the button, call the dialing program;
Action_delete: Deletes the data specified by the URI in the intent;
Action_dial: Call the calling procedure, use intent number, not directly, and action_call directly dial the phone;
Action_edit: You can program the data provided by the URI in intent;
Action_insert: Inserts data in the cursor specified by the intent URI;
Action_pick: Select an item of the content provider specified by the URI in intent;
Action_search: Search, search terms can be provided in the extra of intent;
Action_search_long_press: Hardware Search key long by operation;
Action_sendto:intent to send a text message to the contact specified by the URI in the
Action_send:intent in the URI specified by the contact, send information (EMAIL, MMS, etc.);
Action_view: View the contents of the URI in intent in a reasonable way;
Action_web_search: Open the browser, you can specify the search content;
See more highlights of this column: http://www.bianceng.cnhttp://www.bianceng.cn/OS/extra/