首页 > 其他 > 详细

自定义双向seekbar中横向滑动和scrollview的滑动冲突

时间:2015-08-28 23:27:16      阅读:549      评论:0      收藏:0      [点我收藏+]

/**

* Tries to claim the user‘s drag motion, and requests disallowing any

* ancestors from stealing events in the drag.

* 试图告诉父view不要拦截子控件的drag

*/

private void attemptClaimDrag() {

if (getParent() != null) {

getParent().requestDisallowInterceptTouchEvent(true);

}

}


自定义双向seekbar中横向滑动和scrollview的滑动冲突

原文:http://my.oschina.net/yuanxulong/blog/498858

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!