标签:
public class ContainerViewPager extends MyViewPager {
public ContainerViewPager(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent arg0) {
return false;
}
@Override
public boolean onTouchEvent(MotionEvent arg0) {
return false;
}
}
标签:
原文地址:http://www.cnblogs.com/jeno-song/p/5610220.html