09-05-2008 02:28 PM
When I using the Spring GPS on the 8703e phone it is interferring with my phone calls. Anyone had any experience with this?
The criteria for the GPS within my application is initialized as follows..
Criteria c = new Criteria(); c.setCostAllowed(true); c.setHorizontalAccuracy(Criteria.NO_REQUIREMENT); c.setVerticalAccuracy(Criteria.NO_REQUIREMENT); c.setPreferredPowerConsumption(Criteria.POWER_USAG
E_LOW);
Any help would be appreciated.
Thank you!
Solved! Go to Solution.
09-05-2008 02:56 PM
The provider you get with that criteria is probably CELL_SITE which I don't think will work when you're in a call. Are you calling getLocation or do you have a listener registered?
09-05-2008 03:05 PM
09-05-2008 03:17 PM
The CELL_SITE method needs a channel to the cell site to get position. That's how it works. You'll probably have to stop the listener when in a call.
09-05-2008 03:37 PM