How to start Sygic Navigation from code

Im not sure this is actually allowed here, but since I usually go to StackOverflow and search for answers (and in many cases find the answers) I thought I would ask a question and then answer it myself =)

So, I have Sygic Navigation om my HTC Hero, and since I need to start that app from code (and then use the API to control it) I did some investigation on how to start it - what intent to use.

So, the question is: what Intent or Activity should I use to start the app?


Asked by: Lenny724 | Posted: 24-01-2022






Answer 1

This is the official answer to this question: http://help.sygic.com/entries/22207668-Developers-Only-Sygic-implementation-to-your-app-Android-SDK-iPhone-SDK-Url-Handler-

Answered by: Lily113 | Posted: 25-02-2022



Answer 2

The answer is:

Intent i = new Intent();
i.setClassName("com.sygic.drive","com.sygic.drive.SygicDriveActivity");
startActivity(i);

=)

Answered by: Ada408 | Posted: 25-02-2022



Similar questions

android menu navigation options

Can you please let me know on various possibilities or best options for handling navigation on android application. Links to sample will be very much helpful, if possible. Its to do the following: Application starts with a splash screen. The splash screen ends to display the following choices: Post a Quote List my Quotes List all Quotes Search for Quotes


java - Help for basic Android view for a Next/Prev navigation like E-mail setup

http://www.lboro.ac.uk/it/google/android-images/image002.jpg http://www.lboro.ac.uk/it/google/android-images/image002.jpg I am after the XML view code, just like the E-mail setup. How can I put on that bottom grey bar that Next button, how about a Prev button on left side?


navigation - How to display route information between two points in Android?

I am able to show the route between two geo points in android using google map. Now i want to know how to guide the user like turn right, take left; likewise should display message. How can we achieve this?


android menu navigation options

Can you please let me know on various possibilities or best options for handling navigation on android application. Links to sample will be very much helpful, if possible. Its to do the following: Application starts with a splash screen. The splash screen ends to display the following choices: Post a Quote List my Quotes List all Quotes Search for Quotes


gps - Google Navigation (Android 1.6) intent callback

I'm using intents to launch Google Navigation: Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("google.navigation:q=" + location)); startActivity(i); location is a string with GPS coordinates. Google Navigation pops up nicely and plots the route. Can they return some type of callback when the user has reached their destination? Any way of implementing startA...


android - Navigation between tabs in TabHost

Is there a possibility to navigate between Activities tabs in TabHost using back button? When I press it, I go out of the main Activity to the previous one.


java - Best practice: Design pattern for 2D HUD screen navigation

If you have an application with a GUI totally working on 2D drawing, what should be the best practice to handle what to draw and where to touch? An example for better understanding: I have a game with a map. On this map I can build houses and stuff. I also have an information bar which can be extended. On the extended bar I draw some information about the game and it also offers the interface to change diff...


android - How to detect the navigation button press on on HTC desire?

Closed. This question needs debugging detai...


Simple navigation animation with android

I'm looking for a simple animation example using the android SDK for displaying a little animation between views. Basically when we have a list view and a detail view - lets have a 'transition' animation between them. Thanks


android - Problem launching Google Navigation

i tried since many hours to launch navigation from my app. I want navigation without destination. i tried with Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("google.navigation:q=")); startActivity(i); That launches navigation but with destination not found I tried too to launch processName, packageName with startIntent with com.google.android....


Android controls for navigation in a tree hierarchy

I want to navigate items in a tree hierarchy. I put the items on the same level in a listview. Upon clicking the item in the listview it will open another listview to show the items in the child level. I want the user to navigate easily to another level (parent, grandparent, grandgrandparent) without pressing the back buttons several times. What is the best way (what type of Android controls) to han...






Still can't find your answer? Check out these communities...



Android Google Support | Android Community | Android Community (Facebook) | Dev.io Android



top