Get current location using wifi?

自闭症网瘾萝莉.ら 提交于 2020-01-07 09:33:07

问题


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 = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
LocationListener currentlocation = new CurrentLocation();
        mlocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0,
                currentlocation);

But I want current location WiFi? Can anyone help me for getting current location using WiFi?


回答1:


Try to use NETWORK_PROVIDER.

Please note, that you will have to amend your AndroidManifest.xml as well by adding:

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />


来源:https://stackoverflow.com/questions/10172136/get-current-location-using-wifi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!