Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7549199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T09:53:28+00:00 2026-05-30T09:53:28+00:00

my following coding for getting current address means location is failed if i try

  • 0

my following coding for getting current address means location is failed if i try to set address to the TextBox but when i put that code inside a onClick event of Button that works properly

This is Coding is Working When it is inside a onCLick event

import java.io.IOException;
import java.util.*;
import android.widget.*;
import android.view.View;
import android.view.View.OnClickListener;
import android.app.Activity;
import android.os.Bundle;
import android.location.*;
import android.content.*;

public class location extends Activity {  

 Button addressButton;
 TextView addressText;
 Location currentLocation;
 double currentLatitude;
 double currentLongitude;
 @Override

 public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     setContentView(R.layout.location);  
     addressText = (TextView)findViewById(R.id.addressText);
     addressButton = (Button)findViewById(R.id.addressButton);
     this.addressText.setText("ready");

    LocationManager locationManager = 
        (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);

    LocationListener locationListener = new LocationListener() {
        public void onLocationChanged(Location location) {
            updateLocation(location);
        }
        public void onStatusChanged(
                String provider, int status, Bundle extras) {}
        public void onProviderEnabled(String provider) {}
        public void onProviderDisabled(String provider) {}
    };
    locationManager.requestLocationUpdates(
            LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);
    this.addressButton.setOnClickListener(new OnClickListener() {
        public void onClick(View v){
            try{
                Geocoder gcd = new Geocoder(location.this, Locale.getDefault());
                List<Address> addresses = 
                    gcd.getFromLocation(currentLatitude, currentLongitude,100);
                StringBuilder result = new StringBuilder();
                if (addresses.size() > 0) {      
                        Address address =  addresses.get(0);
                        int maxIndex = address.getMaxAddressLineIndex();
                        for (int x = 0; x <= maxIndex; x++ ){
                            result.append(address.getAddressLine(x));
                            //result.append(",");
                        }                    
                    }
                    addressText.setText(result.toString()); 
                    Intent send_add = new Intent();
                    send_add.putExtra("address",result.toString());
            }
            catch(IOException ex){
                addressText.setText(ex.getMessage().toString());
            }
        }
    });
} 
void updateLocation(Location location){
    currentLocation = location;
    currentLatitude = currentLocation.getLatitude();
    currentLongitude = currentLocation.getLongitude();
}}

This is Coding not Working here i dont want to use Button when i open this activity it must display direct address means it should be Set to the Textview

public class location extends Activity {  
Button addressButton;
TextView addressText;
Location currentLocation;
double currentLatitude;
double currentLongitude;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.location);  
    addressText = (TextView)findViewById(R.id.addressText);
    addressButton = (Button)findViewById(R.id.addressButton);
    this.addressText.setText("ready");

    LocationManager locationManager = 
        (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);

    LocationListener locationListener = new LocationListener() {
        public void onLocationChanged(Location location) {
            updateLocation(location);
        }
        public void onStatusChanged(
                String provider, int status, Bundle extras) {}
        public void onProviderEnabled(String provider) {}
        public void onProviderDisabled(String provider) {}
    };
    locationManager.requestLocationUpdates(
            LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);

            try{
                Geocoder gcd = new Geocoder(location.this, Locale.getDefault());
                List<Address> addresses = 
                    gcd.getFromLocation(currentLatitude, currentLongitude,100);
                StringBuilder result = new StringBuilder();
                if (addresses.size() > 0) {      
                        Address address =  addresses.get(0);
                        int maxIndex = address.getMaxAddressLineIndex();
                        for (int x = 0; x <= maxIndex; x++ ){
                            result.append(address.getAddressLine(x));
                            //result.append(",");
                        }                    
                    }
                    addressText.setText(result.toString()); 
                    Intent send_add = new Intent();
                    send_add.putExtra("address",result.toString());
            }
            catch(IOException ex){
                addressText.setText(ex.getMessage().toString());
            }
} 
void updateLocation(Location location){
    currentLocation = location;
    currentLatitude = currentLocation.getLatitude();
    currentLongitude = currentLocation.getLongitude();
}}

Here i just made a small change but not working

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T09:53:29+00:00Added an answer on May 30, 2026 at 9:53 am

    I have updated your code and it is working correct now :

            locationManager.requestLocationUpdates(
                    LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);
            currentLocation = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER); //added by me
          //  Geocoder gcd = new Geocoder(location.this, Locale.getDefault());
            try{
               // Geocoder gcd = new Geocoder(location.this, Locale.getDefault());
                //List<Address> addresses = 
                   // gcd.getFromLocation(currentLatitude, currentLongitude,100);
                List<Address> addresses = new Geocoder(location.this,Locale.getDefault()).getFromLocation(currentLocation.getLatitude(), currentLocation.getLongitude(), 1);          // changed
                StringBuilder result = new StringBuilder();
                if (addresses.size() > 0) {      
                        Address address =  addresses.get(0);
                        int maxIndex = address.getMaxAddressLineIndex();
                        for (int x = 0; x <= maxIndex; x++ ){
                            result.append(address.getAddressLine(x));
                            //result.append(",");
                        }                    
                    }
                    addressText.setText(result.toString()); 
                    Intent send_add = new Intent();
                    send_add.putExtra("address",result.toString());
            }
            catch(IOException ex){
    
    
       addressText.setText(ex.getMessage().toString());
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The Zend Framework coding standard mentions the following: For files that contain only PHP
Consider the following code (for simplicity, I did not follow any C# coding rules).
I'm getting the following error: this class is not key value coding-compliant for the
I keep getting Clang errors on the following type of code and I can't
I'm using the following lines of code to convert the unix time I'm getting
I think I am following the right approach but I am still getting an
I am using Twitter+OAuth in my app. But I am getting following error in
In a question answer I find the following coding tip:- 2) simple lambdas with
My style of coding includes the following idiom: class Derived : public Base {
The following have been proposed for an upcoming C++ project. C++ Coding Standards, by

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.