Android :: Documentation On Launching / Controlling Google Navigation App Via Intents?

Dec 11, 2009

I realize this might not be the proper place to post this since it's not Android specific, but rather its about integrating with a google app.

I've been trying to find some documentation on launching / controlling the Google Navigation app via Intents or otherwise. I was hoping to find an intent to launch the navigation app with address parameters setup and start navigation immediately.

Can't find anything out there, so I'm still not even sure if it can be done.

Android :: Documentation on launching / controlling Google Navigation app via Intents?


Android :: Launching Google Navigation Without Destination?

Sep 12, 2010

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.apps.maps,
com.google.android.apps.maps:driveabout and
**com.google.android.maps.driveabout.app.DestinationActivity
with no success too :/

View 4 Replies View Related

Android :: Blocking Intents From Launching?

Apr 6, 2010

On the market, there's an application called App Protector, which seems to effectively block the launching of configured activities until a password is correctly provided. By default, it blocks access to itself (not very interesting), Settings, and a few others. I wrote my own app to launch settings (rather than doing so through the home screen) and App Protector continued to do the job it claims to do.
When an activity that is protected is started, App Protector's password input activity is shown instead. Once the correct password is provided, the activity that was started comes to the front.
First -- does anyone know how this app is able to get between the rest of the system and the activities it protects? I would like to do something along these lines in my own application as well. Perhaps this app is receiving a broadcast about other activities coming to the foreground, and when the foreground activity is protected, it forces itself to the foreground?
Second -- does anyone know how well this technique will stand up to attack? Are there other ways to circumvent, where start Activity(...) fails to? It seems that one could use adb to un install it, thus removing its protection easily, but if I pursue my plans here, the app will be a part of a device's firmware (which, I assume, offers some protection against its apps being installed?)

View 2 Replies View Related

Android :: Launching Activity Through Intents

Aug 9, 2010

I am implementing a simple app. I need to start an activity based on the state of the Activity. Lets take i am using a button to start the activity.
1. If the activity is not started, I need to start XYZ activity.
2. If the XYZ activity is on focus, then i need to close the activity on the button press.
3. If the XYZ activity is not in focus (like onPause) state then, I need to change the button state.Can you please help me in the flags that i need to use for starting the intent. Is it possible to get the state of activity before I start that activity?

View 2 Replies View Related

Android :: Change Behavior Of Layout Display When Launching Intents?

Dec 21, 2009

I have an app where pressing button on the screen launches an intent with a new screen and buttons. Everything is working very well, but I'm got one small visual problem. When I press the button on screen on my phone, the new page slides in from the right, pushing the old page off screen left. This happens very quickly, but the overall effect is a bit jarring. Is there a way to stop pages from display this way? If possible, I'd like the page to just appear over the old page, without any scrolling.

Is this possible in Android?

View 2 Replies View Related

Android :: ANDROID Intents Problem Launching Application

Jul 5, 2010

My problem is thus; I am new to programming on the ANDROID platform and have a 'working' application that piggy-backs on the API-Docs example. I wish it to launch three tabs one containing a list of reports, one a form to file a report and the last to show the geo-located reports. It doesn't appear as a separate application, it instead appears as a list to be launched by the API-Docs example.

Below is my manifest code...

View 1 Replies View Related

Motorola Droid :: Google Navigation Showing Navigation W/o Destination

Nov 3, 2009

Can anyone confirm if Google Navigation can be used to just show your progress/location on a road while driving, without having to have an actual destination input?I know this was shown on a few of Rob's videos as not being possible, but just wanted to confirm if anyone had any further info on it.

View 30 Replies View Related

Android :: GMail App Intents Included With Official Google Phones?

Oct 9, 2009

Is there a list of Intents supported by the GMail app included with official Google phones? I can look at the source of the other apps to see what's available, but the GMail app is closed source so I'm not able to go that route. I have the basic MAIN intent running fine, but would love to be able to jump right into a specific conversation and things like that.

View 3 Replies View Related

Android :: Launching Google Map Application - Unable To Get URL

May 4, 2010

I am launching Google map application from my application, using
Uri.parse("geo:" + "13.042206" + "," + "80.17000?z=10");
and its working fine. But I want to show direction between two latitudes and longitudes, for that I tried using this uri,
Uri.parse("geo:" + "13.042206" + "," + "80.17000" + "geo:" + "9.580000" + "," + "78.100000?z=10");
But I am getting a Toast telling "Unable to load the url".

View 5 Replies View Related

Android :: Launching Google Maps With More Parameters

Aug 20, 2010

I have read a lot of stuff about launching Google Maps in Android. That's pretty easy:
Uri uri = Uri.parse("geo:38.899533,-77.036476");
Intent it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);

The problem is that the map is shown at a high zoom level and there is no marker on the map. So, if the user move a little bit or something happen, the point is lost. Is that possible to add a marker like this:

http://img.skitch.com/20100820-da3n4r7h5xbsu6bsx4p4ujjghc.jpg
or like this:
http://img.skitch.com/20100820-qg7k2m5wtwm3j5phphrgc8tb53.jpg

So I can be sure that even if the user move the map, he will be able to find this place again.

View 1 Replies View Related

Android :: Launching Google Maps And Navigator From Application

Aug 18, 2010

I have an android application which allows the user to open up google maps or navigator to show a certain address. This functionality was working in the past, but now I get the following error and the app crashes:
ERROR/AndroidRuntime(2165):
android.content.ActivityNotFoundException:
No Activity found to handle Intent { act=android.intent.action.VIEW
dat=google.navigation:q=MCNAMARA+TERMINAL+ROMULUS+MI+48174 }

The two intents I'm using are-

1) For Map:
String uri = "geo:0,0?q=MCNAMARA+TERMINAL+ROMULUS+MI+48174";
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(i);

2) For Navigator:
String uri = "google.navigation:q=MCNAMARA+TERMINAL+ROMULUS+MI+48174";
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(i);

View 1 Replies View Related

Android :: Launching Google Maps Directions Via Intent

Apr 18, 2010

My app needs to show Google Maps directions from A to B, but I don't want to put the Google Maps into my application - instead, I want to launch it using an Intent. Is this possible? If yes, how?

View 2 Replies View Related

Android :: What's Difference Between Google Navigator And Google Navigation?

Aug 3, 2010

A client of mine also has an Eris and I was helping her get her navigation system set up and teach her how to use it. I wanted to put the google navigator icon (the blue arrow) on her home screen but could not find it anywhere in her apps. I did find the google navigation (map icon) app and set that up for her. So, my questions are: What is the difference between the two? How come I couldn't find the navigator app on her phone (on mine, it's under "programs")?

View 5 Replies View Related

Android :: Launching Google Finance And Display Graph On A Particular Stock

Mar 6, 2010

I would like to do two things within my Android app: Check if the Google Finance app is installed on the device. Should be pretty straight forward, isn't it ? If yes, launch an intent to Open up Google Finance, displaying a graph on a particular Stock. So I also need to pass the stock ticker to Google Finance in some way... but is this even possible? Any other alternative I could use to display Stock Charts (let's say a 5 days intraday chart) on any stock?

View 2 Replies View Related

Android :: Possible Bug With Intents / Pending Intents

Nov 7, 2009

I have some code that is creating and removing alarms, and which works great in Android 1.5 and 1.6 but breaks on the Android 2.0 AVD.The code that's giving this exception is: Code...

View 3 Replies View Related

HTC Incredible :: How To Stop Google Maps From Launching Itself?

Jul 21, 2010

My incredible keeps launching google maps on it's own. I will kill it will ATK and it will stay killed for a while but sometime between 15min to 45 min later it will have launched itself again. Has anyone found a way to stop this?

View 4 Replies View Related

Android :: Using Google Maps Navigation

Oct 4, 2010

I'm trying to use Google Maps Navigation from within my application. I've found on the net it can be done with this intent : Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("geo:"+lat +","+lng)); where lat and lng are the latitude and longitude. Unfortunately, I get a SecurityException :'(. Can someone tell me which permission I should ask ?

View 3 Replies View Related

Android :: GPS Navigation Without Google Maps

Nov 1, 2009

I'd like to show you off-road GPS navigator utility, created for active people. I like no-map Garmin GPS handy navigators, so I created software, that has most functions of such navigator. TripComputer records tracks of your trips and stores your interesting waypoints. You can view them on map view, see stats like distances, speed, time, altitute graph, bearing, azimuth, and many more. Also, if you have internet connection, you can send your selected waypoints and find waypoints sent by others,to use in you own trips.

At this time, TripComputer does not use maps - because in off-road areas, maps are useless. However, topo maps will be supported in future versions. Also, I'm working on GPX files and some geocaching support.

View 23 Replies View Related

Android :: Google Navigation - Shortcut

Oct 8, 2010

Is there any way to put a shortcut on your homescreen that would open Google Nav with directions to that point?

IE putting an icon on the home screen that says "Home", tap on it, and Google Nav opens up with directions to your home that you've previously programed.

Using Fascinate if it matters

View 6 Replies View Related

Android :: Google Navigation Route

Sep 24, 2010

I made the switch to Google Navigation after using Sprint's Navigation application for a few years on my previous BlackBerry and love it! It's my primary GPS application. So, here's my query. While I was tinkering with it today, I noticed the option to choose an alternate route. We are going to be driving to LA a little later this evening and the default route Google Navigation chose was longer in both time and distance compared to one of the alternate routes (total of three routes). The default route gave said it is 332 miles and 6hr/9min. When I pulled up alternate routes, the second option was 325 miles and 5hr/49min. The third route was over 7 hours long. Do you guys know what methodology Google Navigation uses to pick the default route? Why the longer route?

View 17 Replies View Related

Android :: Volume Control In Google Navigation?

Jul 2, 2010

I can't seem to find the volume control for Google Navigation. It seems that I can only have either mute or full volume which doesn't help if I playing music in the background. Am I missing something or is there no way to adjust the volume in Navigation? Thanks.

View 7 Replies View Related

Android :: Change Voice On Google Navigation?

May 25, 2010

Just wondering if there are any apps on the market that I can get to change the default voice because this womans voice drives me and others mad. I havnt found anything on the market myself yet but would be grateful if anybody knew of an app that will allow me to change the default text to speech voice to a better voice like a normal sat nav.

View 7 Replies View Related

Android :: Sprint Navigation Vs Google Maps

Nov 4, 2009

Which one do you like better? I used GM the other day and got lost. then tried SN to get back on track. Any real world usage? Opinions?

View 17 Replies View Related

Android :: Can't Get The Navigation To Work On Google Maps

Nov 29, 2010

I've just had a HTC Wildfire, I can't get the navigation to work on google maps. When I open google maps, there is only a zoom in and out button. Does anyone know if it works on this version of phone.

View 1 Replies View Related

Android :: Google Navigation Needs Downloadable Maps?

Apr 28, 2010

Suprised that this has not been mentioned already, but in the timesonline article re the release of the GMN they mentioned downloading the maps to your SD card. Quote: The system?s main weakness, he acknowledged, is that motorists using their Google Maps satnav in Europe will be forced to pay data roaming charges. He suggested that users on holiday download a route using wireless broadband internet before setting out, and then tourn off data roaming to avoid racking up a huge bill.

So my question is can you?if yes how, if not when can you? or is it always going to require your data signal and download as you use? Also noticed someone mention that they did not like the voice for the sat nav only for some smart arse to simply reply, change it. I have a had a look and cant see how you can, so maybe said smart arse can enlighten us all

View 10 Replies View Related

Android :: Download Google Navigation Full Map?

Sep 30, 2010

Does anyone know can you download Maps into Google Nav? The reason I ask is that if you take a wrong turn it takes for ever to download the new route. Does anyone know a way around this or if you can download a full map?

View 2 Replies View Related

Android :: Google Navigation And Bluetooth Error

Jul 18, 2010

My google navigation will "skip" when I use it with my car stereo's bluetooth. The first second of every turn-by-turn direction, is missing. Any ideas on with the problem might be? I have an HTC EVO and my car stereo is the Dual XHD7714. When I use Pandora with bluetooth, everything is perfect, no skipping; even google navigation works great too when it is running with Pandora. However, when i run google navigation by itself with bluetooth, the first second is missing. Thank you in advanced and sorry if this question has already been answered. I tried to search for it but could not find any mention of it.

View 1 Replies View Related

Android :: Google Navigation Screen Timeout

Oct 21, 2010

I was using Google Navigation this morning to direct me to somewhere and the screen kept timing out and locking. This was happening every 10 minutes or so.

Surley this is not meant to happen on a NAVIGATION application where you would expect the screen to stay active all the time! how can i prevent this from happening?

View 2 Replies View Related

Android :: Speed Camera Application And Google Navigation

Sep 20, 2010

I use google navigation which I think is a brilliant navigation system seeing as it's completely free! The only downside is that it doesn't pick-up speed cameras. Does anyone know of any good speed camera apps that can run in the background or in conjunction with google navigation?

View 1 Replies View Related

Android :: Beta Version Of Google Maps Navigation

Dec 8, 2009

I am looking for a link to download the beta version of Google Maps Navigation and I can not find it at all. I have a Hero and really want this.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved