Java - 检查纬度和经度时Android GPS崩溃

时间:2016-05-31 15:57:34

标签: java android gps openstreetmap

早上好,我的Android应用程序出现问题,一切正常,直到现在,当我想检查用户当前的纬度和经度时。 Android Studio没有显示任何错误,但是当这部分代码未被注释时,它会导致应用程序崩溃。

    if (latitude.equals("52,68068") && logitude.equals("19,04763"))
    {
        String Url = "http://www.google.com";
        if (!Url.startsWith("http://") && !Url.startsWith("https://"))
        {
            Url= "http://" + Url;
        }
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Url)));
    }


        //  Database credentials
        String USER = "sa";
        String PASS = "admin";

这是我用来获取纬度和经度的部分

                    public void onLocationChanged(Location location) {
            //saving the position to variable
            latitude = location.getLatitude() + "";
            logitude = location.getLongitude() + "";
            //executing connectionDB2 to update Database position
            new ConnectionDB2().execute();
        }

0 个答案:

没有答案