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

  • SEARCH
  • Home
  • 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 7573185
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T16:07:05+00:00 2026-05-30T16:07:05+00:00

I am trying to Set Location but getting NullPointerException , i have Provided android.permission.ACCESS_COARSE_LOCATION

  • 0

I am trying to Set Location but getting NullPointerException , i have Provided android.permission.ACCESS_COARSE_LOCATION , android.permission.ACCESS_FINE_LOCATION
In manifest file my Source code is as Follow , i am getting Null pointer on
List<Address> addresses = new Geocoder(LocationDemo.this,Locale.getDefault()).getFromLocation(currentLocation.getLatitude(), currentLocation.getLongitude(), 1);

My Coding is As Follow

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

public class LocationDemo extends Activity {

 TextView addressText;
 Location currentLocation;
 double currentLatitude;
 double currentLongitude;
 String store;
 @Override

public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     setContentView(R.layout.main);
     addressText = (TextView)findViewById(R.id.addressText);
     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);
currentLocation = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER); 

try{
    List<Address> addresses = new Geocoder(LocationDemo.this,Locale.getDefault()).getFromLocation(currentLocation.getLatitude(), currentLocation.getLongitude(), 1);        
    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());
         store = addressText.getText().toString(); 
}
catch(IOException ex)
{
addressText.setText(ex.getMessage().toString());
} 
} 
void updateLocation(Location location){
   currentLocation = location;
   currentLatitude = currentLocation.getLatitude();
  currentLongitude = currentLocation.getLongitude();
 } 
}

i am importing this code in application that extends Service that is trying to obtain Address on startup of service

  • 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-30T16:07:07+00:00Added an answer on May 30, 2026 at 4:07 pm

    Might be you are getting current location as null. as it takes some time to calculate the location .if this is the case , try this

       import java.io.IOException;
        import java.util.*;
        import android.widget.*;
        import android.app.Activity;
        import android.os.Bundle;
        import android.location.*;
        import android.content.*;
    
        public class LocationDemo extends Activity {
    
         TextView addressText;
         Location currentLocation;
         double currentLatitude;
         double currentLongitude;
         String store;
         @Override
    
        public void onCreate(Bundle savedInstanceState) {
             super.onCreate(savedInstanceState);
             setContentView(R.layout.main);
             addressText = (TextView)findViewById(R.id.addressText);
             addressText.setText("ready");
             LocationManager locationManager = 
            (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);
            LocationListener locationListener = new LocationListener() {
    
            public void onLocationChanged(Location location) {
               setAddress(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);
         }
    
    
    
    
    
    
    public void setAddress(Location location){
    currentLocation = location;
           currentLatitude = currentLocation.getLatitude();
          currentLongitude = currentLocation.getLongitude();
    try{
            List<Address> addresses = new Geocoder(LocationDemo.this,Locale.getDefault()).getFromLocation(currentLocation.getLatitude(), currentLocation.getLongitude(), 1);        
            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());
                 store = addressText.getText().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

I am trying to find and set the location as shown below but I
Im trying to set up a session and i am getting a header error,
Im trying to build a kd-tree for searching through a set of points, but
I'm trying to update a database entry but it won't change anything. I'm getting
I currently have CruiseControl.NET set up with SVN to automatically grab the code source
I'm saving a file to a non-default spot in Android and am trying to
Ok so im trying to have php check if the date on file is
I'm trying to build this iPhone sample: http://trac.pjsip.org/repos/wiki/Getting-Started/iPhone but I'm having trouble since I
Im trying set the single table inheritance model type in a form. So i
I am trying set up databinding as described in the title. The problem I

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.