In my own case, I'm looking for the intent parameters that could start the e-mail client on the inbox page...
Do you know where could I find a list of intent parameters and have a description of the resulted action ?
I find these 2 URLs :
Intents List: Invoking Google Applications on Android Devices
Open intents - List of Intents
If you know other intent parameters, it could be great to share them in this post !
As my opinion, a convenient way to present them is to show an example for each one like this :
[hr]
Intent 1 : Start the e-mail client to send a new message with value initialization
Using java Syntax Highlighting
- final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
- emailIntent .setType( "plain/text" );
- emailIntent .putExtra( android.content.Intent.EXTRA_EMAIL, new String[]{ "mail1@example.com", "mail2@example.com" } );
- emailIntent .putExtra( android.content.Intent.EXTRA_SUBJECT, "Mail subject" );
- emailIntent .putExtra( android.content.Intent.EXTRA_TEXT, "The message in the e-mail body" );
- startActivity( Intent.createChooser(emailIntent, "Title" ) );
Parsed in 0.032 seconds, using GeSHi 1.0.8.4
[hr]


