2012年11月21日 星期三

Put MapView In ScrollView

參考:http://stackoverflow.com/questions/6546108/mapview-inside-a-scrollview

簡單說就是讓ScrollView內的那一層不要接收Touch事件


@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;
}

沒有留言:

張貼留言