[Android] Viewpager 与 Google map v2 冲突,导致地图不能左右滑动解决

最近在做项目,同时用到这两个控件,在viewpager中嵌入了google map,但是发现地图左右滑动出现了卡顿,于是乎推测可能是Viewpager的原因,两者冲突。

解决办法:

重新写一个NewViewPager继承Viewpager

public class NewViewPager extends ViewPager {


    public NewViewPager (Context context) {
        super(context);
    }


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


    @Override
    protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) {
        // Not satisfied with this method of checking...
        // working on a more robust solution
        if(v.getClass().getName().equals("maps.j.b")) {
            return true;
        }
		//if(v instanceof MapView){
        //    return true;
        //}
return super.canScroll(v, checkV, dx, x, y); }}
布局中写:

 
  
 
  
 
  
 
  
 
 

你可能感兴趣的:(Android)