Search code examples
androidgoogle-mapsgoogle-latitude

Launching an intent to load Google Latitude from another application


Can anyone provide me with how to launch Google Latutide (just to the main screen of it) via an intent from another application in android?


Solution

  • Thanks, I managed to do it like this...

    Intent intent = new Intent();
    intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.LatitudeActivity");
    startActivity(intent);