Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is probably really stupid of me but how do I start google navigation WITHOUT setting a location as a lot of issues seem to come from... When I try to do this it actually starts to run Google Navigation but then just keeps restarting the Activity... Essentially I was it to run just like when you click on Navigation like you would from a home screen... So with the list of destinations etc... I presume this is a different activity maybe? I've no idea, the intent I'm using is below,

Intent i = new Intent(Intent.ACTION_VIEW);
    i.setClassName("com.google.android.apps.maps", "com.google.android.maps.driveabout.app.NavigationActivity");
    getContext().startActivity(i);
share|improve this question
I've been looking for over a day now and still can't find it... This is ridiculous! – gunboatmedia Jan 5 '12 at 15:57
This is ridiculous... What on earth is that intent to start Navigation from the menu?!?! It's not a standard MAIN intent as it's part of the maps activity.... God knows. – gunboatmedia Jan 10 '12 at 13:42

1 Answer

up vote 4 down vote accepted

Finally found what Activity it is that needs starting!!!

  Intent i = new Intent();  
i.setClassName("com.google.android.apps.maps","com.google.android.maps.driveabout.app.DestinationActivity");
    startActivity(i);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.