Day Code Snippet – adding NAVi

A small code snippet which makes Integration across the android apps easy.

Try calling a Implicit Intent with the below intent info, you can see yourself that your app is now integrated with the Navigation.

Uri IntentUri = Uri.parse(“google.navigation:q=” + latitude + “,” + longitude);
Intent mapIntent = new Intent(Intent.ACTION_VIEW, IntentUri);
startActivity(mapIntent);

Happy coding 🙂

 

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s