从坐标获取城市名称

时间:2018-06-19 16:38:10

标签: java android coordinates

我的应用程序获取用户坐标。现在,我尝试获取坐标所属城市的名称。我搜索了其他主题,但没有找到任何有用的信息或新知识。我应该显示地址名称的textView保持为空,还是获取地址的错误方法?

我的代码:

public class MainActivity extends AppCompatActivity {

    double lat;
    double lon;
    Button btnLoc;
    TextView textView7;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TextView textView7 = (TextView) findViewById(R.id.textView7);

        btnLoc = (Button) findViewById(R.id.btnGetLoc);
        ActivityCompat.requestPermissions(MainActivity.this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, 123);

        btnLoc.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                GPSTracker gt = new GPSTracker(getApplicationContext());
                Location location = gt.getLocation();

                if (location == null) {
                    Toast.makeText(getApplicationContext(), "GPS unable to get Value", Toast.LENGTH_SHORT).show();
                } else {

                    double lat = location.getLatitude();
                    double lon = location.getLongitude();

                    TextView textView5 = (TextView) findViewById(R.id.textView5);
                    textView5.setText(String.valueOf(lat));

                    TextView textView6 = (TextView) findViewById(R.id.textView6);
                    textView6.setText(String.valueOf(lon));

                }
            }
        });

        try {

            Geocoder geocoder = new Geocoder(this, Locale.getDefault());
            List<Address> addresses = geocoder.getFromLocation(lat, lon, 1);
            if (addresses.size() > 0)

                textView7.setText(addresses.get(0).getLocality());
        } catch (IOException e) {

        }
    }
}

1 个答案:

答案 0 :(得分:1)

我注意到了几件事。

  1. 您没有初始化在活动范围中定义的经度和纬度。

    双纬 double lon;

当您将它们传递给函数时,它们将保持为空

List<Address> addresses = geocoder.getFromLocation(lat, lon, 1);

因此,您可能希望尝试从click函数中的经/长变量中删除类型。

            - double lat = location.getLatitude();
            - double lon = location.getLongitude();


            + lat = location.getLatitude();
            + lon = location.getLongitude();
  1. 点击后尝试获取结果。初始化Click侦听器后没有。由于获取位置后没有正确的回调设置可触发(我假设这是一个异步调用),因此可以通过设置另一个按钮/单击侦听器来暂时克服此问题,在获取后即可单击您的坐标。

如果这样不起作用,请查看这份简短的实用指南 https://www.kerstner.at/2013/08/convert-gps-coordinates-to-address-using-google-geocoding-api-in-java/

欢呼