您的位置:首页 > 其它

Andorid解决HorzintalListView和ScrollView冲突问题

2015-08-20 10:47 561 查看
今天在项目中遇到了横向LIstView和ScrollView的嵌套使用,发现嵌套后横向LIstView会出现卡顿,也就是横向滑动与纵向滑动发生了

冲突,上网百度了一下,最终通过重写ScrollView,解决了这个问题。

public class MyScrollView extends ScrollView {

private GestureDetector mGestureDetector;

View.OnTouchListener mGestureListener;

@SuppressWarnings("deprecation")
public CustomScrollView(Context context,AttributeSet attrs) {

super(context,attrs);

mGestureDetector= new GestureDetector(new YScrollDetector());

setFadingEdgeLength(0);

}

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {

return false;

}

// Return false if we're scrolling in the x direction

class YScrollDetector extends SimpleOnGestureListener {

@Override
public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {
if(Math.abs(distanceY) > Math.abs(distanceX)) {
return true;
}
return false;
}
}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: