implemented

Enter Habitat

Action: 
org.adaptroid.habitats.ACTION_ENTER_HABITAT
Intent Extra: 
Habitat ID

Sticky broadcast intent sent by Habitats whenever the current habitat on an android device changes.

Flashlight

Action: 
com.teslacoilsw.intent.FLASHLIGHT
Input: 
Optional extra: "on" (boolean) "timeout" (int) "off" (boolean) "toggle" (boolean) "strobe" (int [rate])

Supported in TeslaLED >= 2.0.1 (http://teslacoilsw.com/teslaled)

Used to control the state of the LED Flash for flashlighting purposes.

Example usage:

Intent intent = new Intent("com.teslacoilsw.intent.FLASHLIGHT");
intent.putExtra("toggle", true);
mContext.startService(intent);

Or to start it for 5 minutes:

Intent intent = new Intent("com.teslacoilsw.intent.FLASHLIGHT");
intent.putExtra("on", true);
intent.putExtra("timeout", 5);
mContext.startService(intent);

Or for when you're programming java at a rave:

User Info Chooser

Action: 
net.ivantis.userinfo.chooser
Intent Extra: 
User Info Setting ID
Intent Extra: 
User Info Types
Output: 
net.ivantis.userinfo.settingId android.intent.extra.TEXT

allows the user to choose information (username, password, email address..) to be filled into another application

Audio Volume Update Notification Broadcast

Action: 
org.openintents.audio.action_volume_update
Input: 
Broadcast action: org.openintents.audio.action_volume_update Required Extra: org.openintents.audio.extra_stream_type Type of the stream upon which the volume is being changed, e.g. STREAM_MEDIA, STREAM_RING, etc. Required Extra: org.openintents.audio.extra_volume_index The volume level to which the stream is being set
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.

This broadcast intent is used by an application to notify any receivers that an audio volume change is being performed.

Bluetooth Watch (Display text)

Action: 
com.smartmadsoft.openwatch.action

Intents handled by OpenWatch. Any of these intents is capable displaying up to two lines of text.

Bluetooth Watch (Button press)

Action: 
com.smartmadsoft.openwatch.command

Intents that are broadcasted on button press by OpenWatch (MBW-100, MBW-150, MBW-200).

Remote View

Action: 
org.openintents.remote.intent.action.VIEW
Intent Extra: 
Remote Host

Simulates an android.intent.action.VIEW intent on a remote machine.

Plot Data

Action: 
com.googlecode.chartdroid.intent.action.PLOT
Input: 
* int[] com.googlecode.chartdroid.intent.extra.DATA (required)<br/> * String[] com.googlecode.chartdroid.intent.extra.LABELS<br/> * int[] com.googlecode.chartdroid.intent.extra.COLORS (optional)<br/> * String com.googlecode.chartdroid.intent.extra.TITLE
Output: 
Chart representation of input data

ChartDroid currently produces a pie chart representation of input data.

Volume Control

Action: 
com.roozen.intent.VOLUME_CONTROL
Input: 
Integer: Key="TYPE", Value=Volume Stream (accepted values=AudioManager.STREAM_SYSTEM, AudioManager.STREAM_MUSIC, AudioManager.STREAM_RING, AudioManager.STREAM_VOICE_CALL, AudioManager.STREAM_ALARM, AudioManager.STREAM_NOTIFICATION)
Output: 
Currently None

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.

Show GPS Status

Action: 
com.eclipsim.gpsstatus.VIEW

Shows the status of the GPS receiver, including the signal strength and location of visible satellites.

Syndicate content