I would like to have a MapView inside a ScrollView, however when I try to scroll the map, the ScrollView takes priority! Is there a way to give the MapView priority when scrolling inside the map, and the ScrollView otherwise?

Thanks!

link|improve this question

What's your layout? can you post a screenshot of the final layout that is rendered. – Sheikh Aman Jul 1 '11 at 9:49
feedback

2 Answers

up vote -1 down vote accepted

MapView automatically handles the scrolling....

link|improve this answer
I know. I have a ScrollView which contains a lot of different things, including a MapView. The problem is that when I try to scroll inside the mapview, the scrollview will override it. – Cesar Jul 1 '11 at 12:18
1  
I was also doing that in my app, but didn't get any solution so i put mapview outside the scroll view and rest of the layout in the scrollview. – Sandy Jul 1 '11 at 18:37
I ended up putting the mapview in a popup window, since I didn't find a solution either. The annoying thing is that it works just fine on the iPhone :/ I'll accept your answer although it's really the comment I'm accepting :P – Cesar Jul 13 '11 at 7:27
You can use this template: <LinearLayout><LL><FL><MAP></FL></LL><LL><SV><OtherLayouy></SV></LL>. Also provide the layout_weight value to each LL(LinearLayout) According to your size. – Sandy Jul 13 '11 at 7:40
feedback

I have had a same problem for 10 days, but I got a solution a few minutes ago!! Here is the solution. I made a custom MapView and override onTouchEvent() like this.

@Override
public boolean onTouchEvent(MotionEvent ev) {
    int action = ev.getAction();
    switch (action) {
    case MotionEvent.ACTION_DOWN:
        // Disallow ScrollView to intercept touch events.
        this.getParent().requestDisallowInterceptTouchEvent(true);
        break;

    case MotionEvent.ACTION_UP:
        // Allow ScrollView to intercept touch events.
        this.getParent().requestDisallowInterceptTouchEvent(false);
        break;
    }

    // Handle MapView's touch events.
    super.onTouchEvent(ev);
    return true;
}
link|improve this answer
This works great. I had a multiline EditText within a ScrollView, and this made the EditText scrollable again. Nice! – dmon Aug 19 '11 at 17:15
that's awesome..Thanks.. never thought i would get out of this problem... – Shash Mar 14 at 7:29
this works for me, but are you experiencing any weird flashing in the layout that the mapview is contained? – aimango Mar 26 at 0:35
feedback

Your Answer

 
or
required, but never shown

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