Show about dialog

Action: 
org.openintents.action.SHOW_ABOUT_DIALOG
Intent Extra: 
Application label
Intent Extra: 
Artists
Intent Extra: 
Authors
Intent Extra: 
Comments
Intent Extra: 
Copyright
Intent Extra: 
Documenters
Intent Extra: 
Email
Intent Extra: 
Icon resource
Intent Extra: 
Icon uri
Intent Extra: 
License
Intent Extra: 
Package name
Intent Extra: 
Translators
Intent Extra: 
Version name
Intent Extra: 
Website url

Show an about dialog to display information about your application.

By default the information is retrieved from the Manifest of your application (both from the manifest tag as from metadata tags). Metadata keys are specified in (as constants) in org.openintents.metadata.AboutMetaData. Optionally send along extras with information to display (overriding the metadata). Intent extra keys are specified (as constants) in org.openintents.intents.AboutIntents.

From your "about" menu option you start an activity with this specific intent action:

Intent intent = new Intent("org.openintents.action.SHOW_ABOUT_DIALOG");
startActivityForResult(intent, 0);

The activity needs to be launched "forResult" with requestCode>=0 so that the package name is passed properly. Optionally, one can set the intent extra org.openintents.extra.PACKAGE_NAME.

Original use is with OI About: See OI About for usage information for this intent.
An OI TestAboutApp demonstrating this is also available.

Applications providing Show about dialog

Titlesort icon Provides intent actions Provides intent URIs Uses action Uses URI Description
OI About Show about dialog

An about dialog that is shared between apps.