如何使用 WiFi 获取当前位置?在我使用 gps 的项目中,我可以获得当前位置...如何在 android 中使用网络服务?
LocationManager mlocManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
LocationListener currentlocation = new CurrentLocation();
mlocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0,
currentlocation);
但我想要当前位置的 WiFi?任何人都可以帮助我使用 WiFi 获取当前位置吗?