On Wed, Aug 18, 2010 at 6:07 PM, dillipk <[email protected]> wrote:
> How do I get the 'Intent'  of a 3rd party application in order to
> start the activity?
>
> public void startActivity (Intent intent)


Intent intent = new Intent(SOME_ACTION);

If the application knows to manage SOME_ACTION it will be triggered by
the Android framework automatically.

For starting googlemaps for example:

Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("geo:0,0?q=my+street+address"));

-- 
If you want freedom, compile the source.

Sebastián Treu
http://labombiya.com.ar

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to