如何使用WiFi获取当前位置? 在我使用gps的项目中,我可以获得当前位置... 我怎样才能在android中使用网络服务?
LocationManager mlocManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
LocationListener currentlocation = new CurrentLocation();
mlocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0,
currentlocation);
但我想要当前的位置WiFi? 任何人都可以帮助我使用WiFi获取当前位置吗?
答案 0 :(得分:1)
尝试使用NETWORK_PROVIDER。
请注意,您还需要修改AndroidManifest.xml,方法是添加:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />