使用LocationListner接口时出错

时间:2015-11-24 15:54:27

标签: android gps location location-services

我试图实现一个简单的应用程序,它给出了我们当前位置的纬度和纵向坐标。但是我得到了屏幕截图中显示的这个错误 Screen Shot

2 个答案:

答案 0 :(得分:0)

您必须实施此方法

TextView longitude, latitude;

//get current location coordinates
LocationListener locationListener = new LocationListener() {
    @Override
    public void onLocationChanged(Location location) {
          //here you will get your current locations
          longitude.setText(location.getLongitude() + "");
          latitude.setText(location.getLatitude() + "");
    }

    @Override
    public void onStatusChanged(String s, int i, Bundle bundle) {

    }

    @Override
    public void onProviderEnabled(String s) {

    }

    @Override
    public void onProviderDisabled(String s) {

    }
};

答案 1 :(得分:0)

您收到此错误的原因是因为在Android 6.0(Marshmallow)中他们引入了关闭权限的功能。此错误表示您在继续之前未检查是否已启用位置权限。您可以通过单击有问题的代码轻松实现权限,然后单击左侧的提示灯泡图标,然后生成检查权限代码。

我之前已经回答了一个类似问题的一些很好的例子,说明如何正确检查权限并在需要时请求它们。我试图再次找到它,以便我可以将它链接到你。

编辑:发现它! GPS reading cant be retrieved