English | Site Directory

Android - An Open Handset Alliance Project

Reference of Available Intents

This document describes the default applications and settings that Google provides in their standard Android implementation.

Intents handled by Google Android applications

Android ships with Activities that handle the following Intent URI/Action pairs.

Scheme Action
android.intent.action.value
Description
http://web_address
https://web_address
VIEW Open a browser window to the URL specified.
"" (empty string)
http://web_address
https://web_address
WEB_SEARCH Opens the file at the location on the device in the browser.
tel: phone_number CALL

Calls the entered phone number. Valid telephone numbers as defined in the IETF RFC 3966 are accepted. Valid examples include the following:

  • tel:2125551212
  • tel: (212) 555 1212

The dialer is good at normalizing some kinds of schemes: for example telephone numbers, so the schema described isn't strictly required in the Uri(URI string) factory. However, if you have not tried a schema or are unsure whether it can be handled, use the Uri.fromParts(scheme, ssp, fragment) factory instead.

Note:   This requires your application to request the following permission in your manifest: <uses-permission id="android.permission.CALL_PHONE" />

tel:phone_number
voicemail:

DIAL

Dials (but does not actually initiate the call) the number given (or the stored voicemail on the phone). Telephone number normalization described for CALL applies to DIAL as well.

geo:latitude,longitude
geo:0,0?q=my+street+address
VIEW Opens the Maps application to the address described. The Geo URI scheme (not fully supported) is currently under development.

Build m5-rc15f - 23 Apr 2008 12:29