I have a mapview in my app, and everything is working fabulously with touchEvents.

However to maximize usership of the App, I have been trying to add trackBall interface functionality as well and am running into a problem.

The trackball properly scrolls the mapView around when it is in focus, however I am unable to get the onTap event to fire when the user has centered on an overlay item.

When I click the mouse button (I am using the emulator) to simulate a click by the trackball user (F6 engaged trackball) nothing happens.. The onTrackBallEvent code never gets fired in this situation, which I would expect given the API docs say that the onTap should be fired in this instance, but it doesn't get fired either.

If I am not centered on an overlayItem I do get the ACTION_DOWN and ACTION_UP events in the onTrackBallEvent, it is only when the map is centered on an OverlayItem that the onTrackBallEvent does not get fired. Unfortunately the onTap Events don't get fired either. Obviously the OS is doing something with these clicks when an overlay is under the center of the screen and a user clicks on the trackball, but I will be darned if I can figure out what it is.

Does anyone know what Event I should be looking for?

link|improve this question

50% accept rate
feedback

2 Answers

For it works with this. I check if the hit point on the screen matches with some overlay item.

        public boolean onTouchEvent(MotionEvent event, MapView mv) {
        final int action=event.getAction();
        final int x=(int)event.getX();
        final int y=(int)event.getY();

        if(!this.marker.equals(getResources().getDrawable(R.drawable.parada))){
            if (action == MotionEvent.ACTION_DOWN) {
                        for (OverlayItem item : mItems) {
                        Point p = new Point(0,0);                       
                        mv.getProjection().toPixels(item.getPoint(), p);                        
                        if (hitTest(item, marker, x-p.x, y-p.y) && item.getSnippet()!= "parada") {
link|improve this answer
I am not 100% sure what you are suggesting here, this code looks like it would determine which marker was clicked on in a view. However where/when is this event being called? – user756212 May 23 '11 at 16:22
I don't see this signature in the API's – user756212 May 23 '11 at 16:23
Nevermind, I found it... This is an override in the overlay got you. However I am still confused why the onTap is not being fired like the API says it should. – user756212 May 23 '11 at 16:25
Hi, It will be launch each time the use touch the screen. Are u extending your class from MapActivity? Is a class of the GoogleMap API for Android, and contains the event handler. – Dayerman May 23 '11 at 22:31
Yes, I am extending MapActivity, and as I stated, for touch events everything is working beautifully... its the trackball click on the Overlay Item that is just not happening. – user756212 May 24 '11 at 6:08
show 7 more comments
feedback

please try this one. This is used for showing multiple overlays on map view, may be it will solve the problem: https://github.com/donnfelker/android-mapviewballoons

link|improve this answer
Thanks, for the suggestion, but this isn't my problem. – user756212 May 24 '11 at 16:14
The overlays appear fine, the problem is that when in trackball mode, and over an overlay, the trackball click event never seems to fire.. or at least never seems to reach my code.. Its as thought the trackball click is not being passed up the view chains. IE the managedOverlay is consuming it, when its on an overlay item, and I don't have direct or simple access to extend/override this class. – user756212 May 24 '11 at 16:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.