Get Current Location Using Wifi?
How can i get current location using WiFi? In my project using gps I can get current location ... How can I use network service in android? LocationManager mlocManager = (LocationM
Solution 1:
Try to use NETWORK_PROVIDER.
Please note, that you will have to amend your AndroidManifest.xml as well by adding:
<uses-permissionandroid:name="android.permission.ACCESS_FINE_LOCATION" /><uses-permissionandroid:name="android.permission.ACCESS_COARSE_LOCATION" />
Post a Comment for "Get Current Location Using Wifi?"