《Android ScrollView与MapView滑动冲突》

  • 需求

map与recycleView拼接于同一个页面,类似高德地图效果。

  • 需求完成思路
    

        

            

            
        
    
  • 出现的问题

       scrollview与地图冲突,滑动地图时,出现卡顿情况 。

  • 解决思路

自定义控件

import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.RelativeLayout;
import android.widget.ScrollView;

public class MapContainer extends RelativeLayout {
    private ScrollView scrollView;
    public MapContainer(Context context) {
        super(context);
    }

    public MapContainer(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public void setScrollView(ScrollView scrollView) {
        this.scrollView = scrollView;
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        if (ev.getAction() == MotionEvent.ACTION_UP) {
            scrollView.requestDisallowInterceptTouchEvent(false);
        } else {
            scrollView.requestDisallowInterceptTouchEvent(true);
        }
        return false;
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        return true;
    }
}
给map包裹加一件衣服
            

                

            
然后再Activity里面添加
mapContainer.setScrollView(scrollView);

再次运行,即可。

你可能感兴趣的:(Android)