Android Get latitude and longitude with location manager [duplicate]

丶灬走出姿态 提交于 2019-12-02 22:25:55

问题


I'm trying to get the user location with location manager but the location always returns null. I also am asking to the user to turn on the gps.

This is my code:

   int permisioncheck = ContextCompat.checkSelfPermission(getActivity(), Manifest.permission.ACCESS_FINE_LOCATION);

    if(permisioncheck == 0){

        lm = (LocationManager)getContext().getSystemService(Context.LOCATION_SERVICE);

        List<String> providers = lm.getProviders(true);

        Location bestLocation = null;

        for (String provider : providers) {
            Location location = lm.getLastKnownLocation(provider);
            if (location == null) {
                continue;
            }

            if (bestLocation == null || location.getAccuracy() < bestLocation.getAccuracy()) {
                // Found best last known location: %s", l);
                bestLocation = location;
            }
        }

        if(bestLocation == null){
            System.out.println("is NULL!");
        }
    }else{

        ActivityCompat.requestPermissions(getActivity(), new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, 1);
    }

I hope that someone could help me to find the error, thanks.


回答1:


The "error" is that you are assuming that getLastKnownLocation() will return a Location. Frequently, it will return null. Use getLastKnownLocation() as a possible optimization, but otherwise you need to requestLocationUpdates(), then use the location in the onLocationChanged() method.

See this sample project and the documentation for more.



来源:https://stackoverflow.com/questions/43396716/android-get-latitude-and-longitude-with-location-manager

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