-2

如何使用 WiFi 获取当前位置?在我使用 gps 的项目中,我可以获得当前位置...如何在 android 中使用网络服务?

LocationManager mlocManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
LocationListener currentlocation = new CurrentLocation();
        mlocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0,
                currentlocation);

但我想要当前位置的 WiFi?任何人都可以帮助我使用 WiFi 获取当前位置吗?

4

1 回答 1

1

尝试使用NETWORK_PROVIDER

请注意,您还必须通过添加以下内容来修改您的 AndroidManifest.xml:

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
于 2012-04-16T10:08:29.410 回答