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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T21:43:46+00:00 2026-06-11T21:43:46+00:00

I have MapActivity with working mapview in my application. The problem that I faced

  • 0

I have MapActivity with working mapview in my application. The problem that I faced is that I want to tap any location on the map, show the dialog with text example:

do you want to mark this location?

If yes, it’ll extract the coordinates and save it somewhere (that doesn’t matter where right now),

how can I do that? I’ve tried to use dispatchTouchEvent method but I failed.

@Override
public boolean dispatchTouchEvent(MotionEvent event) 
{   
if (event.getAction() == 1) {                
    GeoPoint p = mapView.getProjection().fromPixels(
        (int) event.getX(),
        (int) event.getY());
        // send the intent from here to your next activity with the GeoPoint coords.
        Toast.makeText(getBaseContext(), 
            p.getLatitudeE6() / 1E6 + "," + 
            p.getLongitudeE6() /1E6 , 
            Toast.LENGTH_SHORT).show();
}                      
return false;
}  

It shows me my coordinates – but it’s doing it everytime when I just touch the map – I can’t even move it.

  • 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-06-11T21:43:47+00:00Added an answer on June 11, 2026 at 9:43 pm

    The javadoc for dispatchTouchEvent(MotionEvent event) states the following:

    You can override this to intercept all touch screen events before they are dispatched to the window. Be sure to call this implementation for touch screen events that should be handled normally.

    So you should handle all other events with the original method:

    public boolean dispatchTouchEvent(MotionEvent event) {   
      if (event.getAction() == 1) {
        // do your stuff
        return true;
      }                      
      return super.dispatchTouchEvent(event);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on an application that displays the location of moving items on a
I'm working on some application that should fetch current location and after device is
I am currently working on an application that is supposed to have a transition
I have one application for showing the map but it is not working does
I have an Activity which extends MapActivity (to show a MapView) and contains a
I have registered ProximityAlert in MapActivity. No problem with catching alerts in BroadcastReceiver and
I created a MapActivity that contains a MapView and a Button on the top
I have an activity that implements LocationListener in my application and my onLocationChanged method
I have a MapActivity. If it's set to an appropriate location and zoom level
I have written one MapActivity class that is able to display a set of

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.