On an Android Cupake (1.5) enabled device, how do I check and activate the GPS?
|
feedback
|
|
Best way seems to be the following:
| |||||||||
feedback
|
|
yes GPS settings cannot be changed programatically any more as they are privacy settings and we have to check if they are switched on or not from the program and handle it if they are not switched on. you can notify the user that GPS is turned off and use something like this to show the settings screen to the user if you want. Check if location providers are available
If the user want to enable GPS you may show the settings screen in this way.
And in your onActivityResult you can see if the user has enabled it or not
Thats one way to do it and i hope it helps. Let me know if I am doing anything wrong. | |||||||
feedback
|
|
GPS will be used if the user has allowed it to be used in its settings. You can't explicitly switch this on anymore, but you don't have to - it's a privacy setting really, so you don't want to tweak it. If the user is OK with apps getting precise co-ordinates it'll be on. Then the location manager API will use GPS if it can. If your app really isn't useful without GPS, and it's off, you can open the settings app at the right screen using an intent so the user can enable it. | |||
|
feedback
|
|
In android, we can easily check whether GPS is enabled in device or not using LocationManager. Here is a simple program to Check. GPS Enabled or Not :- Add the below user permission line in AndroidManifest.xml to Access Location
Your java class file should be
The output will looks like
| |||
|
feedback
|
|
You will find info about the "REQUEST_CODE" here: http://developer.android.com/reference/android/app/Activity.html#startActivityForResult%28android.content.Intent,%20int%29 | |||
|
feedback
|

