Action:
org.openintents.ssh.BIND_SSH_AGENT_SERVICE
Action (WebIntents):
Output:
IBinder for an instance of the AndroidAuthAgent AIDL interface. This interface allows the intent-invoking app to use the intent-serving app as an SSH-Agent.
Description:
This intent is used to bind to a service which exposes the AndroidAuthAgent AIDL interface, allowing one app to use another as it's SSH agent.
Last update:
Sun, 03/03/2013 - 10:12
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.ssh.BIND_SSH_AGENT_SERVICE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.ssh.BIND_SSH_AGENT_SERVICE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.action.PICK_DIRECTORY
Action (WebIntents):
Output:
File URI of the selected directory.
Description:
Pick a directory (folder) through a file manager.
Last update:
Mon, 10/29/2012 - 21:49
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.action.PICK_DIRECTORY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.action.PICK_DIRECTORY");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.EDIT
Action (WebIntents):
Output:
The URI for the saved image
Description:
Any application can use the Photoshop.com Mobile 1.1 editor for editing images on Android phones.
Last update:
Mon, 08/27/2012 - 15:15
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.EDIT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.xconns.peerdevicenet.SEND_MSG
Action (WebIntents):
Description:
PeerDeviceNet provides two sets of intents for remote messaging among peer devices:
1. Intents for group communication:
com.xconns.peerdevicenet.JOIN_GROUP
com.xconns.peerdevicenet.LEAVE_GROUP
com.xconns.peerdevicenet.SEND_MSG
com.xconns.peerdevicenet.RECV_MSG
com.xconns.peerdevicenet.PEER_JOIN
com.xconns.peerdevicenet.PEER_LEAVE
com.xconns.peerdevicenet.SELF_JOIN
com.xconns.peerdevicenet.SELF_LEAVE
2. Intents for setup device connections
com.xconns.peerdevicenet.CONNECT
com.xconns.peerdevicenet.DISCONNECT
com.xconns.peerdevicenet.ACCEPT_CONNECTION
Last update:
Fri, 08/17/2012 - 05:41
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.xconns.peerdevicenet.SEND_MSG" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.xconns.peerdevicenet.SEND_MSG");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.xconns.peerdevicenet.START_REMOTE_ACTIVITY
Action (WebIntents):
Description:
PeerDeviceNet exposes a group of intents for sending intents to remote devices:
com.xconns.peerdevicenet.START_REMOTE_ACTIVITY
com.xconns.peerdevicenet.START_REMOTE_ACTIVITY_FOR_RESULT
com.xconns.peerdevicenet.START_REMOTE_SERVICE
com.xconns.peerdevicenet.SEND_REMOTE_BROADCAST
for more details, please refer to
http://www.peerdevicenet.net/rmt_intent.html
Last update:
Fri, 08/17/2012 - 05:36
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.xconns.peerdevicenet.START_REMOTE_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.xconns.peerdevicenet.START_REMOTE_ACTIVITY");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.SEND
Action (WebIntents):
http://webintents.org/share
Description:
Deliver some data to someone else.
Last update:
Thu, 08/02/2012 - 22:03
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.SEND");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.acadoid.pdfview.action.RENDER_PAGES
Action (WebIntents):
Output:
number of pages (and PDF file Uri for convenience)
Description:
Input:
- Uri of PDF file via Intent.putDataAndType() (should point to a file located on the SD card)
- page set via Intent.putExtra("PAGE_SET", int[]) (pages are numbered 1 to number of pages, an empty page set results in all pages being rendered)
- resolution via Intent.putExtra("RESOLUTION", float) (resolution to be understood in dpi, meaningful values range from 50 to 300 dpi)
Last update:
Wed, 08/01/2012 - 10:45
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.acadoid.pdfview.action.RENDER_PAGES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.acadoid.pdfview.action.RENDER_PAGES");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.acadoid.pdfview.action.COUNT_PAGES
Action (WebIntents):
Output:
number of pages (and PDF file Uri for convenience)
Description:
counts the number of pages in a given PDF file
Input:
- Uri of PDF file via Intent.putDataAndType() (should point to a file located on the SD card)
Output:
- number of pages via Intent.getExtras().getInt("PAGES") (the number is zero if a problem occurred)
- Uri of PDF file via Intent.putDataAndType() (Uri of PDF file, mirrored for convenience)
Last update:
Wed, 08/01/2012 - 10:43
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.acadoid.pdfview.action.COUNT_PAGES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.acadoid.pdfview.action.COUNT_PAGES");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.VIEW
Action (WebIntents):
Description:
Open a file browser and display the file (or folder contents) of the File URI passed in. Also known as "Jump To..."
Last update:
Sun, 07/01/2012 - 18:08
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.VIEW");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.PICK
Action (WebIntents):
Output:
File URI of the selected folder.
Description:
Pick a folder through a file manager.
Last update:
Sun, 07/01/2012 - 17:41
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.PICK");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.DISCOVER
Action (WebIntents):
Description:
The discover intent is designed to let the invoking Android components query services from the registered Web intents
The "Discover" protocol is intended to be a lightweight registry list.
Last update:
Tue, 05/01/2012 - 06:12
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.DISCOVER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.DISCOVER");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.content.Intent.ACTION_VIEW
Action (WebIntents):
Output:
An X server would be launched allowing other applications to use X11 protocol.
Description:
This intention is used to allow X11 applications to be able to launch an X server as a prerrequisite for other applications.
Last update:
Wed, 03/21/2012 - 14:22
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.content.Intent.ACTION_VIEW " />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.content.Intent.ACTION_VIEW ");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.googlecode.gtalksms.action.CONNECT
Action (WebIntents):
Description:
Starts the GTalkSMS service if its not already running and tries to establish a new connection.
More information about GTalkSMS can be found at http://code.google.com/p/gtalksms/
Last update:
Tue, 10/11/2011 - 21:21
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.googlecode.gtalksms.action.CONNECT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.googlecode.gtalksms.action.CONNECT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.action.PICK_COLOR
Action (WebIntents):
Output:
The color chosen by the user.
Description:
Pick a color using a color picker dialog.
Last update:
Fri, 09/09/2011 - 03:10
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.action.PICK_COLOR" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.action.PICK_COLOR");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.opentable.action.RESERVE
Action (WebIntents):
Description:
Reserve a table at a known location of opentable.com, partysize and refId are optional query parameters of the url.
Last update:
Fri, 09/09/2011 - 03:08
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.opentable.action.RESERVE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.opentable.action.RESERVE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.MAIN
Action (WebIntents):
Description:
Launch the matrix view of the IP Cam Viewer application.
Last update:
Fri, 09/09/2011 - 03:08
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.MAIN");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.MAIN
Action (WebIntents):
Description:
Launch the gallery view of the IP Cam Viewer application.
Last update:
Fri, 09/09/2011 - 03:08
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.MAIN");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.steema.teechart.android.CHART
Action (WebIntents):
Output:
Charts are created and returned to your Activity as Android Bitmap (PNG, JPEG) images.
Description:
TeeChart CHART Intent enables your application creating charts without having to link the complete TeeChart API Java library.
Last update:
Fri, 09/09/2011 - 03:08
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.steema.teechart.android.CHART" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.steema.teechart.android.CHART");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
la.droid.qr.scan
Action (WebIntents):
Output:
Contents of QR code as String, under extra "la.droid.qr.result"
Description:
Scan a QR code with QR Droid.
Last update:
Fri, 09/09/2011 - 03:07
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="la.droid.qr.scan" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("la.droid.qr.scan");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.teslacoilsw.intent.FLASHLIGHT
Action (WebIntents):
Description:
Used to control the state of the LED Flash for flashlighting purposes.
Last update:
Fri, 09/09/2011 - 03:04
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.teslacoilsw.intent.FLASHLIGHT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.teslacoilsw.intent.FLASHLIGHT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
de.ub0r.android.callmeter.SAVE_SIPCALL
Action (WebIntents):
Description:
Send this broadcast to notify Call Meter 3G, that the call log entry (uri) is a SIP call done with the provider (provider).
Last update:
Fri, 05/20/2011 - 10:00
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="de.ub0r.android.callmeter.SAVE_SIPCALL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("de.ub0r.android.callmeter.SAVE_SIPCALL");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
de.ub0r.android.callmeter.SAVE_WEBSMS
Action (WebIntents):
Description:
Send the URI of a sent text message as broadcast to notify Call Meter 3G that the message was sent with the given WebSMS Connector.
Last update:
Fri, 05/20/2011 - 09:55
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="de.ub0r.android.callmeter.SAVE_WEBSMS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("de.ub0r.android.callmeter.SAVE_WEBSMS");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
PICK_BLUETOOTH_DEVICE
Action (WebIntents):
Output:
ADDR ( String ) - the MAC address
FRIENDLYNAME ( String ) - the Name of the Device
Description:
Let the user pick a Bluetooth Device. Returns MAC Address and Name.
Last update:
Sun, 04/24/2011 - 10:08
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="PICK_BLUETOOTH_DEVICE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("PICK_BLUETOOTH_DEVICE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
net.lp.collectionista.action.EDIT_ITEM
Action (WebIntents):
Description:
Edit an item specifically. An item from a collection.
Last update:
Sun, 04/03/2011 - 16:33
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="net.lp.collectionista.action.EDIT_ITEM" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("net.lp.collectionista.action.EDIT_ITEM");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
net.lp.collectionista.action.EDIT_COLLECTION
Action (WebIntents):
Description:
Edit a collection specifically. A collection of items.
Last update:
Sun, 04/03/2011 - 16:32
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="net.lp.collectionista.action.EDIT_COLLECTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("net.lp.collectionista.action.EDIT_COLLECTION");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
net.lp.collectionista.action.EDIT_NAME
Action (WebIntents):
Description:
Edit the name of a collection or an item.
Last update:
Sun, 04/03/2011 - 16:32
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="net.lp.collectionista.action.EDIT_NAME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("net.lp.collectionista.action.EDIT_NAME");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.mgeek.android.musicbox.PLAYBACK_VIEWER
Action (WebIntents):
Description:
Shows a player, this is not really a protocol, maybe the author of the app can tell us more.
Last update:
Wed, 03/09/2011 - 11:23
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.mgeek.android.musicbox.PLAYBACK_VIEWER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.mgeek.android.musicbox.PLAYBACK_VIEWER");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.perseum.bigRedButtonPressed
Action (WebIntents):
Description:
Notifies that the application "BigRedButton" has been pressed. This intent can be used by the End User for any purpose.
Last update:
Mon, 01/17/2011 - 00:40
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.perseum.bigRedButtonPressed" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.perseum.bigRedButtonPressed");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.audio.action_volume_update
Action (WebIntents):
Output:
No output, the intent should be broadcast as an Ordered broadcast so that any receiver may have the option of cancelling the broadcast and aborting the volume change.
Description:
This broadcast intent is used by an application to notify any receivers that an audio volume change is being performed.
Last update:
Sat, 01/08/2011 - 07:06
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.audio.action_volume_update" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.audio.action_volume_update");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.PICK
Action (WebIntents):
Output:
The id of the selected event and the date of that event.
Description:
Pick an event using a calendar based interface. Also returns the event's date.
Last update:
Tue, 11/16/2010 - 11:51
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.PICK");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.PICK
Action (WebIntents):
Output:
Either the id of the selected event or the date selected.
Description:
Pick a date or event using a calendar based interface.
Last update:
Tue, 11/16/2010 - 11:48
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.PICK");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.borntotinker.intent.action.MEASURE
Action (WebIntents):
Output:
The result of the measurement collection will be returned. Units and data types will vary depending on the physical information being measured.
Description:
An open ended intent to collect information from the android phone's surroundings.
Last update:
Sat, 09/04/2010 - 17:15
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.borntotinker.intent.action.MEASURE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.borntotinker.intent.action.MEASURE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.androidprinting.intent.action.PRINT
Action (WebIntents):
Description:
Any application can use HP iPrint Photo for Android for printing images on nearby printers from Android phones.
Last update:
Tue, 08/10/2010 - 18:31
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.androidprinting.intent.action.PRINT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.androidprinting.intent.action.PRINT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.adaptroid.habitats.ACTION_ENTER_HABITAT
Action (WebIntents):
Description:
Sticky broadcast intent sent by Habitats whenever the current habitat on an android device changes.
Last update:
Tue, 08/10/2010 - 08:03
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.adaptroid.habitats.ACTION_ENTER_HABITAT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.adaptroid.habitats.ACTION_ENTER_HABITAT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.category.COLOR
Action (WebIntents):
Output:
A color chosen by the user.
Description:
Use as a <category> in combination with the Intent Action "android.intent.action.PICK" in order to launch a color picker.
Last update:
Sun, 05/30/2010 - 13:15
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.category.COLOR" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.category.COLOR");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
net.ivantis.userinfo.chooser
Action (WebIntents):
Output:
net.ivantis.userinfo.settingId
android.intent.extra.TEXT
Description:
allows the user to choose information (username, password, email address..) to be filled into another application
Last update:
Thu, 04/15/2010 - 04:16
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="net.ivantis.userinfo.chooser" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("net.ivantis.userinfo.chooser");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.roozen.intent.VOLUME_CONTROL
Action (WebIntents):
Description:
Use this intent to pop up a dialog box in your activity to allow the user to manually change one of the six volume streams as listed under input.
Last update:
Sat, 01/16/2010 - 12:27
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.roozen.intent.VOLUME_CONTROL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.roozen.intent.VOLUME_CONTROL");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.action.PAYTO
Action (WebIntents):
Description:
Intent to pay some one a specified amount of money.
Last update:
Sat, 01/16/2010 - 12:26
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.action.PAYTO" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.action.PAYTO");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.eclipsim.gpsstatus.VIEW
Action (WebIntents):
Description:
Shows the status of the GPS receiver, including the signal strength and location of visible satellites.
Last update:
Sat, 01/16/2010 - 12:25
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.eclipsim.gpsstatus.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.eclipsim.gpsstatus.VIEW");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.googlecode.chartdroid.intent.action.PLOT
Action (WebIntents):
Output:
Chart representation of input data
Description:
ChartDroid currently produces a pie chart representation of input data.
Last update:
Sat, 01/16/2010 - 12:25
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.googlecode.chartdroid.intent.action.PLOT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.googlecode.chartdroid.intent.action.PLOT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.smartmadsoft.openwatch.action
Action (WebIntents):
Description:
Intents handled by OpenWatch. Any of these intents is capable displaying up to two lines of text.
Last update:
Sat, 01/16/2010 - 12:23
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.smartmadsoft.openwatch.action" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.smartmadsoft.openwatch.action");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.smartmadsoft.openwatch.command
Action (WebIntents):
Description:
Intents that are broadcasted on button press by OpenWatch (MBW-100, MBW-150, MBW-200).
Last update:
Sat, 01/16/2010 - 12:22
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.smartmadsoft.openwatch.command" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.smartmadsoft.openwatch.command");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.remote.intent.action.VIEW
Action (WebIntents):
Description:
Simulates an android.intent.action.VIEW intent on a remote machine.
Last update:
Thu, 12/03/2009 - 23:02
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.remote.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.remote.intent.action.VIEW");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.funkyandroid.action.NEW_TRANSACTION
Action (WebIntents):
Description:
This intent reports a financial transaction to be recorded in an expenses or banking application.
Last update:
Thu, 11/12/2009 - 13:47
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.funkyandroid.action.NEW_TRANSACTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.funkyandroid.action.NEW_TRANSACTION");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.rcreations.send2printer.print
Action (WebIntents):
Output:
content is rendered, queued, and then send to a network printer configured by the user.
Description:
The "Send 2 Printer" application hooks into existing applications to enable printing,
Last update:
Thu, 11/12/2009 - 13:46
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.rcreations.send2printer.print" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.rcreations.send2printer.print");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.action.TRANSLATE
Action (WebIntents):
Output:
The translated text.
Description:
Translate a text
Use some translation engine to translate a text and return the result.
Last update:
Wed, 11/04/2009 - 02:22
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.action.TRANSLATE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.action.TRANSLATE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.PICK_ACTIVITY
Action (WebIntents):
Output:
Class name of the activity that was selected.
Description:
Pick an activity given an intent, returning the class selected.
Last update:
Thu, 07/02/2009 - 16:38
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.PICK_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.PICK_ACTIVITY");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.roozen.intent.RINGMODE_CONTROL
Action (WebIntents):
Description:
Brings user to activity to quickly change the phone's ringmode.
Last update:
Fri, 04/10/2009 - 17:27
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.roozen.intent.RINGMODE_CONTROL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.roozen.intent.RINGMODE_CONTROL");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.roozen.intent.VIBRATION_CONTROL
Action (WebIntents):
Description:
Brings user to activity to quickly change the phone's vibration settings.
Last update:
Fri, 04/10/2009 - 17:26
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.roozen.intent.VIBRATION_CONTROL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.roozen.intent.VIBRATION_CONTROL");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.roozen.intent.SOUND_CONTROL
Action (WebIntents):
Description:
Brings user to a sound control screen where user can modify a number of different sound settings.
Last update:
Fri, 04/10/2009 - 17:24
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.roozen.intent.SOUND_CONTROL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.roozen.intent.SOUND_CONTROL");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.action.PICK_FILE
Action (WebIntents):
Output:
File URI of the selected file.
Description:
Pick a file through a file manager.
Last update:
Wed, 03/18/2009 - 01:52
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.action.PICK_FILE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.action.PICK_FILE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.action.CALCULATOR
Action (WebIntents):
Output:
Intent extras:
"X" double value
"Y" optional secondary double value
"Z" optional tertiary double value
Description:
Launches a calculator, returns the final value calculated by the user. See RpnCalc for an example of an app that responds to this intent.
Last update:
Fri, 03/13/2009 - 20:35
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.action.CALCULATOR" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.action.CALCULATOR");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.action.SHOW_ABOUT_DIALOG
Action (WebIntents):
Description:
Show an about dialog to display information about your application.
Last update:
Mon, 01/12/2009 - 22:15
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.action.SHOW_ABOUT_DIALOG" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.action.SHOW_ABOUT_DIALOG");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.twidroid.SendTweet
Action (WebIntents):
Description:
Send a Twitter/Identi.ca Message thru Twidroid .
Last update:
Fri, 12/26/2008 - 10:16
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.twidroid.SendTweet" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.twidroid.SendTweet");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.CALL
Action (WebIntents):
Description:
Perform a call to someone specified by the data.
Last update:
Wed, 12/17/2008 - 12:18
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.CALL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.CALL");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.WEB_SEARCH
Action (WebIntents):
Last update:
Wed, 12/17/2008 - 12:07
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.WEB_SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.WEB_SEARCH");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.intents.CHECK_VERSION
Action (WebIntents):
Description:
Preliminary protocol until Market improves update facitilities!
Last update:
Wed, 12/17/2008 - 11:56
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.intents.CHECK_VERSION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.intents.CHECK_VERSION");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.google.zxing.client.android.SCAN
Action (WebIntents):
Last update:
Fri, 12/12/2008 - 16:59
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.google.zxing.client.android.SCAN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.google.zxing.client.android.SCAN");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.google.zxing.client.android.ENCODE
Action (WebIntents):
Description:
Encode to barcode and display on screen.
Last update:
Fri, 12/12/2008 - 16:58
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.google.zxing.client.android.ENCODE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.google.zxing.client.android.ENCODE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.google.zxing.client.android.SEARCH_BOOK_CONTENTS
Action (WebIntents):
Description:
Use Google Book Search to search the contents of the book provided.
Last update:
Fri, 12/12/2008 - 16:58
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.google.zxing.client.android.SEARCH_BOOK_CONTENTS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.google.zxing.client.android.SEARCH_BOOK_CONTENTS");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.google.zxing.client.android.SHARE
Action (WebIntents):
Description:
Display an item as QR code to scan with a phone.
Last update:
Fri, 12/12/2008 - 16:57
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.google.zxing.client.android.SHARE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.google.zxing.client.android.SHARE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.media.action.IMAGE_CAPTURE
Action (WebIntents):
Description:
An application implementing this intent protocol allows the user to capture an image.
Last update:
Sat, 11/01/2008 - 17:07
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.media.action.IMAGE_CAPTURE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.media.action.IMAGE_CAPTURE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.SENDTO
Action (WebIntents):
Description:
Send a message to someone specified by the data.
Last update:
Fri, 10/17/2008 - 19:34
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.SENDTO" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.SENDTO");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.provider.MediaStore.RECORD_SOUND
Action (WebIntents):
Output:
An uri to the recorded sound stored in the Media Library if the recording was successful.
Description:
Start SoundRecorder application to record sound.
Last update:
Sat, 10/11/2008 - 22:07
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.provider.MediaStore.RECORD_SOUND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.provider.MediaStore.RECORD_SOUND");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.google.android.photostream.FLICKR_PHOTO
Action (WebIntents):
Last update:
Fri, 10/10/2008 - 14:28
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.google.android.photostream.FLICKR_PHOTO" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.google.android.photostream.FLICKR_PHOTO");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.google.android.photostream.FLICKR_STREAM
Action (WebIntents):
Last update:
Fri, 10/10/2008 - 14:25
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.google.android.photostream.FLICKR_STREAM" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.google.android.photostream.FLICKR_STREAM");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.theb.ssh.action.CONNECT_HOST
Action (WebIntents):
Last update:
Fri, 10/10/2008 - 14:01
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.theb.ssh.action.CONNECT_HOST" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.theb.ssh.action.CONNECT_HOST");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.intents.UNRESOLVED_INTENT
Action (WebIntents):
Description:
Delegates the user to a selection of possible applications that can resolve the given intent.
Last update:
Fri, 09/26/2008 - 21:57
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.intents.UNRESOLVED_INTENT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.intents.UNRESOLVED_INTENT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.ALL_APPS
Action (WebIntents):
Description:
List all available applications.
Last update:
Fri, 09/26/2008 - 11:14
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.ALL_APPS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.ALL_APPS");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.RINGTONE_PICKER
Action (WebIntents):
Last update:
Thu, 09/25/2008 - 17:33
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.RINGTONE_PICKER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.RINGTONE_PICKER");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
org.openintents.action.TAG
Action (WebIntents):
Description:
Add a tag to the given data.
Last update:
Thu, 09/25/2008 - 15:29
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="org.openintents.action.TAG" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("org.openintents.action.TAG");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.android.notepad.action.EDIT_TITLE
Action (WebIntents):
Description:
Edit the title of a content.
Last update:
Thu, 09/25/2008 - 15:26
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.android.notepad.action.EDIT_TITLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.android.notepad.action.EDIT_TITLE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.DIAL
Action (WebIntents):
Description:
Dial a number as specified by the data.
Last update:
Thu, 09/25/2008 - 15:26
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.DIAL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.DIAL");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.DELETE
Action (WebIntents):
Description:
Delete the given data from its container.
Last update:
Thu, 09/25/2008 - 15:24
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.DELETE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.DELETE");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.EDIT
Action (WebIntents):
Description:
Provide explicit editable access to the given data.
Last update:
Thu, 09/25/2008 - 15:23
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.EDIT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.SET_WALLPAPER
Action (WebIntents):
Description:
Show settings for choosing wallpaper
Last update:
Thu, 09/25/2008 - 12:33
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.SET_WALLPAPER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.SET_WALLPAPER");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.CREATE_SHORTCUT
Action (WebIntents):
Output:
An Intent representing the shortcut.
Description:
Creates a shortcut on the main screen.
Last update:
Thu, 09/25/2008 - 12:19
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.CREATE_SHORTCUT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.SEARCH
Action (WebIntents):
Last update:
Thu, 09/25/2008 - 11:11
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.SEARCH");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.GET_CONTENT
Action (WebIntents):
Output:
The URI of the item that was picked.
Description:
Allow the user to select a particular kind of data and return it.
Last update:
Thu, 09/25/2008 - 11:04
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.GET_CONTENT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.VIEW
Action (WebIntents):
Description:
Display the data to the user.
Last update:
Wed, 09/24/2008 - 18:12
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.VIEW");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.MAIN
Action (WebIntents):
Description:
Start as a main entry point, does not expect to receive data.
Last update:
Wed, 09/24/2008 - 18:09
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.MAIN");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.INSERT
Action (WebIntents):
Output:
URI of the new data that was created.
Description:
Insert an empty item into the given container.
Last update:
Wed, 09/24/2008 - 17:30
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.INSERT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.INSERT");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
android.intent.action.PICK
Action (WebIntents):
Output:
The URI of the item that was picked.
Description:
Pick an item from the data, returning what was selected.
Last update:
Wed, 09/24/2008 - 17:18
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("android.intent.action.PICK");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");
Action:
com.google.android.radar.SHOW_RADAR
Action (WebIntents):
Description:
Display a radar like view centered around the current position and mark the given location
Last update:
Tue, 09/23/2008 - 16:25
Sample Implementation:
for your Manifest <intent-filter>
<action android:name="com.google.android.radar.SHOW_RADAR" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> to generate the Intent: i = new Intent("com.google.android.radar.SHOW_RADAR");
i.putExtra("TODO", extraValue);
to retrieve data from this Intent: Long extra = getIntent().getLongExtra("TODO");