码迷,mamicode.com
首页 > 其他好文 > 详细

ViewPager嵌套viewpager有什么冲突问题

时间:2014-10-28 15:36:16      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   使用   sp   on   2014   问题   

Viewpager q嵌套 viewPager ,左右滑动事件的冲突,外围的ViewPager要重写几个方法就可以了:

onTouchEvent,OnInterceptTouchEvent,在这两个方法中加入自定义样式,在使用的时候根据需要选择

使用系统自己的处理方法或者用户自定义的方式


public class MYViewPager extends ViewPager {
    private boolean swipeable;
 
    public MYViewPager(Context context, AttributeSet attrs) {
        super(context, attrs);
 
        TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.MYViewPager);
        swipeable = ta.getBoolean(R.styleable.MYViewPager_swipeable, true);
        ta.recycle();
    }
 
    @SuppressLint("ClickableViewAccessibility")
    @Override
    public boolean onTouchEvent(MotionEvent event) {
        return swipeable ? super.onTouchEvent(event) : false;
    }
 
    @Override
    public boolean onInterceptTouchEvent(MotionEvent event) {
        return swipeable ? super.onInterceptTouchEvent(event) : false;
    }
 
    public boolean isSwipeable() {
        return swipeable;
    }
 
    public void setSwipeable(boolean swipeable) {
        this.swipeable = swipeable;
    }
 
}


ViewPager嵌套viewpager有什么冲突问题

标签:style   blog   io   ar   使用   sp   on   2014   问题   

原文地址:http://blog.csdn.net/honjane/article/details/40539999

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!