Android:Standard Activity Actions
Activity Action: Start as a main entry point, does not expect to receive data.
Input: nothing
Output: nothing
Constant Value: "android.intent.action.MAIN"
Activity Action: Display the data to the user. This is the most common action performed on data -- it is the generic action you can use on a piece of data to get the most reasonable thing to occur. For example, when used on a contacts entry it will view the entry; when used on a mailto: URI it will bring up a compose window filled with the information supplied by the URI; when used with a tel: URI it will invoke the dialer.
Input:
getData()
is URI from which to retrieve data.Output: nothing.
Constant Value: "android.intent.action.VIEW"
Activity Action: Provide explicit editable access to the given data.
Input:
getData()
is URI of data to be edited.Output: nothing.
Constant Value: "android.intent.action.EDIT"
Activity Action: Pick an item from the data, returning what was selected.
Input:
getData()
is URI containing a directory of data (vnd.android.cursor.dir/*) from which to pick an item.Output: The URI of the item that was picked.
Constant Value: "android.intent.action.PICK"
You must Sign up as a member of Effecthub to view the content.
A PHP Error was encountered
Severity: Notice
Message: Undefined index: HTTP_ACCEPT_LANGUAGE
Filename: helpers/time_helper.php
Line Number: 22
Latest Posts
- Android: CookieManager removeAllCookie() Crash
- XlistView: A listview which can pull to refresh and load more (1)
- Millions of Android Phones Could Be Affected by the Heartbleed Bug. Check to See if Yours Is One of Them
- TOP 10 ANDROID GAMES FOR MARCH 2014
- Android:Button with different textcolor and background in different states
1722 views 0 comments
You must Sign up as a member of Effecthub to join the conversation.