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 6843831
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:17:59+00:00 2026-05-27T00:17:59+00:00

my activity with a mapview crashes out randomly. I think all my potentially null

  • 0

my activity with a mapview crashes out randomly. I think all my potentially null variables are handled but one out of 10 times, they are not. I’ve attached my activity and the error below.

public class HomeActivity extends MapActivity {

boolean pickup = false;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.home);

    findViewById(R.id.searchBar).setVisibility(View.VISIBLE);

    findViewById(R.id.searchBar).setOnClickListener(new OnClickListener(){

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub

            //load new dialog thing with only a onSearchRequested() thing, and a bg click that finishes the app

            //but also somehow returns the result back to the map??? put intent, here get intent on resume()?? or whatever, debug breakpoints
            findViewById(R.id.searchBar).setVisibility(View.GONE);

            Intent pseudoSearch = new Intent(HomeGroup.group, PseudoMapSearchActivity.class);
            startActivityForResult(pseudoSearch, 0);
        }

    });

    // initialize the map and set the default location
    MapView map = (MapView) findViewById(R.id.map);
    //map.setBuiltInZoomControls(true);
    map.setSatellite(false);


    MapController controller = map.getController();
    List<Overlay> overlays = map.getOverlays();

    Drawable drawable = this.getResources().getDrawable(
            R.drawable.origin_pin);
    HomeItemizedOverlay overlay = new HomeItemizedOverlay(drawable,
            HomeGroup.group);


    overlays.clear();
    overlays.add(overlay);

    controller.setZoom(17);
    map.postInvalidate();

    final LocationManager locator = (LocationManager) this
            .getSystemService(Context.LOCATION_SERVICE);
    String provider = "";

    // check what location provider is available
    if (!locator.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
        //provider = LocationManager.GPS_PROVIDER;

        //force user to turn on gps
        Criteria criteria = new Criteria();
        criteria.setAccuracy(Criteria.ACCURACY_FINE);
        criteria.setPowerRequirement(Criteria.POWER_HIGH);

        LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
        provider = lm.getBestProvider(criteria, true);
    } else {
        provider = LocationManager.GPS_PROVIDER;
    }

    // get the current location
    if (provider != null) {
        //setLocation(locator.getLastKnownLocation(provider));

        final LocationListener listener = new LocationListener() {

            @Override
            public void onLocationChanged(Location location) {
                setLocation(location);
                locator.removeUpdates(this);
            }

            @Override
            public void onProviderDisabled(String provider) {
            }

            @Override
            public void onProviderEnabled(String provider) {
            }

            @Override
            public void onStatusChanged(String provider, int status,
                    Bundle extras) {
            }
        };

        locator.requestLocationUpdates(provider, 15000, 0, listener);
    } else {
        Toast toast = Toast.makeText(HomeActivity.this,
                "Location provider could not be found.", Toast.LENGTH_LONG);
        toast.show();
    }

}

/**
 * Performs any action required to update the current location displayed on
 * the home map.
 * 
 * @param location
 *            A {@link Location} object with the new location to display.
 */
private void setLocation(Location location) {

    if (location == null) {
        return;
    }

    if(AndroidHelper.pickup == false)
    {
        MapView map = (MapView) findViewById(R.id.map);
        map.setSatellite(false);

        MapController controller = map.getController();
        List<Overlay> overlays = map.getOverlays();

        Drawable drawable = this.getResources().getDrawable(
            R.drawable.origin_pin);
        HomeItemizedOverlay overlay = new HomeItemizedOverlay(drawable,
            HomeGroup.group);

        int latitude = (int) (location.getLatitude() * 1e6);
        int longitude = (int) (location.getLongitude() * 1e6);

        GeoPoint point = new GeoPoint(latitude, longitude);
        if(point!=null)
        {   
            OverlayItem item = new OverlayItem(point, "Current Location",
                    "This is where you are currently located.");
            overlay.setOrigin(item);
        }
        overlays.clear();
        overlays.add(overlay);

        controller.animateTo(point);
        controller.setZoom(18);
        map.postInvalidate();
    }



}

here is my HomeItemizedOverlay class

 public class HomeItemizedOverlay extends ItemizedOverlay<OverlayItem> {

    private Map<Integer, OverlayItem> overlays = null;
    private Context context = null;

    private static final int ORIGIN = 0;
    private static final int DESTINATION = 1;

    public HomeItemizedOverlay(Drawable defaultMarker) {
            super(boundCenterBottom(defaultMarker));
            this.overlays = new HashMap<Integer, OverlayItem>();
    }

    public HomeItemizedOverlay(Drawable defaultMarker, Context context) {
            this(defaultMarker);
            this.context = context;
    }

    /**
     * Set an {@link OverlayItem} to be the origin and calls {@link #populate()}
     * to create the overlay.
     * 
     * @param item
     *            An item to add to the overlay.
     */
    public void setOrigin(OverlayItem item) {
            this.overlays.put(ORIGIN, item);
            populate();
    }

    /**
     * Adds an {@link OverlayItem} to be the destination and calls
     * {@link #populate()} to create the overlay.
     * 
     * @param item
     *            An item to add to the overlay.
     */
    public void setDestination(OverlayItem item) {
            this.overlays.put(DESTINATION, item);
            populate();
    }

    @Override
    protected OverlayItem createItem(int i) {
            return this.overlays.get(i);
    }

    @Override
    public int size() {
            return this.overlays.size();
    }

    @Override
    protected boolean onTap(int index) {
            OverlayItem item = this.overlays.get(index);

            //think this causes crashes
            AlertDialog.Builder dialog = new AlertDialog.Builder(this.context);
            dialog.setTitle(item.getTitle());
            dialog.setMessage(item.getSnippet());
            dialog.show();

            return true;
    }
}

this logcat error does not mention a line in my code, so I don’t really understand where it is breaking. This happens about 1 out of 10 times.

11-15 13:47:13.192: E/AndroidRuntime(3585): FATAL EXCEPTION: main
11-15 13:47:13.192: E/AndroidRuntime(3585): java.lang.NullPointerException
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.google.android.maps.ItemizedOverlay.getItemsAtLocation(ItemizedOverlay.java:617)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.google.android.maps.ItemizedOverlay.getItemAtLocation(ItemizedOverlay.java:586)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.google.android.maps.ItemizedOverlay.handleMotionEvent(ItemizedOverlay.java:498)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.google.android.maps.ItemizedOverlay.onTouchEvent(ItemizedOverlay.java:572)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.google.android.maps.OverlayBundle.onTouchEvent(OverlayBundle.java:63)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.google.android.maps.MapView.onTouchEvent(MapView.java:679)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.View.dispatchTouchEvent(View.java:3882)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:903)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:869)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:869)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:869)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:1691)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1125)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.app.Activity.dispatchTouchEvent(Activity.java:2096)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:1675)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:869)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:869)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:1691)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1125)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.app.Activity.dispatchTouchEvent(Activity.java:2096)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:1675)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:869)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:869)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:869)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:869)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:869)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:1691)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1125)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.app.Activity.dispatchTouchEvent(Activity.java:2096)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:1675)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewRoot.deliverPointerEvent(ViewRoot.java:2204)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.view.ViewRoot.handleMessage(ViewRoot.java:1888)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.os.Handler.dispatchMessage(Handler.java:99)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.os.Looper.loop(Looper.java:130)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at android.app.ActivityThread.main(ActivityThread.java:3683)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at java.lang.reflect.Method.invokeNative(Native Method)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at java.lang.reflect.Method.invoke(Method.java:507)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
11-15 13:47:13.192: E/AndroidRuntime(3585):     at dalvik.system.NativeStart.main(Native Method)
  • 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-27T00:18:00+00:00Added an answer on May 27, 2026 at 12:18 am

    Try calling populate() immediately after you call super in your constructor. There have been other complaints of problems like this http://code.google.com/p/android/issues/detail?id=2035.

    The javadoc for populate says:

    Utility method to perform all processing on a new ItemizedOverlay. Subclasses provide Items through the createItem(int) method. The subclass should call this as soon as it has data, before anything else gets called.

    which honestly isn’t very helpful, but I believe you have to call this method in your constructor.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to make 2 MapView on one Activity ? If so, How
An Activity occurs at a location on a specific date, but each activity may
The main activity includes some variables with set values. I created a sub-activity with
I have an Android Activity that displays Google Maps through MapView control and extending
I'm having awful problems with this. I have a MapView, in my activity I
I've finished my Hello MapView tutorial but there is a problem in application when
I'm trying to use a mapview object in my app, but I need to
I have a MapView in an activity and it works fine, the map shows,
Possible Duplicate: Double Tap -> Zoom on Android MapView? I have an Activity that
I've been trying insert a MapView into an ActionBar Tab , but I wasn't

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.