I have a device which has no GPS module. Is there any way to get the Lat Lon value without using the GPS module in Android.
Hey, down voters can you explain what is wrong in this question?
If you have a Answer to the question the give otherwise try to understand the questions.
Just put below Java class in your package.
MyLocation.java
Now, in your activity you can find the location as like below code:
With above code you dont have to on the GPS in device. It will automatically check for the best available locationmanager and find location based on it.
it also required some permission in the AndroidManifest.xml file.
Hope it will help you.