将当前地址显示为Toast

Teo*_*nee 2 java android location button toast

我正在编写一个应用程序,需要显示地址,以便我以后可以使用它.我从LocationManager获取位置,并希望在按下时显示显示地址的Toast.我的问题是,当按下按钮时,没有任何反应.(甚至没有在LogCat中)

这是代码:

Button getTaxi = (Button) findViewById(R.id.GetTaxi);
getTaxi.setOnClickListener(new View.OnClickListener() {

    public void getAddress() {
        Geocoder geocoder = new Geocoder(getBaseContext(), Locale.getDefault());
        String result = null;
        try {
            List<Address> list = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(), 1);
            if (list != null && list.size() > 0) {
                Address address = list.get(0);
                // sending back first address line and locality
                result = address.getAddressLine(0) + ", " + address.getLocality();
            }
        } catch (IOException e) {
            String exception = String.format("IOException!!");
            Toast.makeText(getApplicationContext(), exception, Toast.LENGTH_LONG);
        } finally {
            if (result != null) {
                Toast.makeText(getApplicationContext(), result, Toast.LENGTH_LONG);
            } else 
                Toast.makeText(getApplicationContext(), "nix is", Toast.LENGTH_LONG);
        }

        final Intent intent = new Intent();
        setResult(RESULT_OK, intent);
        finish();
        return;
    }

    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub
    }
});
Run Code Online (Sandbox Code Playgroud)

我知道它可能非常混乱,但我刚开始使用JAVA/Android编程.

非常感谢你提前!

Key*_*ari 5

改为:

Button getTaxi = (Button) findViewById(R.id.GetTaxi);
getTaxi.setOnClickListener(new View.OnClickListener() {


    Toast toast;

    public void getAddress() {
        Geocoder geocoder = new Geocoder(getBaseContext(), Locale.getDefault());   
        String result = null;
        try {
            List<Address> list = geocoder.getFromLocation(
                    location.getLatitude(), location.getLongitude(), 1);
            if (list != null && list.size() > 0) {
                Address address = list.get(0);
                // sending back first address line and locality
                result = address.getAddressLine(0) + ", " + address.getLocality();
            }
        } catch (IOException e) {
            String exception = String.format("IOException!!");
            toast = Toast.makeText(getApplicationContext(), exception, Toast.LENGTH_LONG);
        } finally {

            if (result != null) {
                toast = Toast.makeText(getApplicationContext(), result, Toast.LENGTH_LONG);
            } else 
                toast = Toast.makeText(getApplicationContext(), "nix is", Toast.LENGTH_LONG);
        }




        final Intent intent = new Intent();
        setResult(RESULT_OK, intent);
        finish();
        return;
    }


    @Override
    public void onClick(View v) {
        getAddress();
        toast.show();
    }
});
Run Code Online (Sandbox Code Playgroud)