Android listview viewpager解决冲突 滑动

时间:2024-01-13 17:22:44

Android listview viewpager滑动 跳动 冲突解决

ListView中嵌套ViewPage有或者滑动手势冲突解决

在listview 上使用 addHeaderView 在第一栏添加 viewpager 当做header

如:

Android listview viewpager解决冲突 滑动

当触发 滑动事件 的时候容易引起 滑动冲突    (比如斜着滑动viewpager  的时候 listview会跳动)

特别是在  下拉刷新或者上拉加载 的时候 , 组件可能会传递到viewpager当中

查阅了很多的帖子  发现修改起来都非常麻烦

(1)解决方案

1. 针对viewpager 做了些修改

替换掉support.v4当中的viewpager即可:

  1. package com.example.bz_viewpager;
  2. import android.content.Context;
  3. import android.support.v4.view.ViewPager;
  4. import android.util.AttributeSet;
  5. import android.view.MotionEvent;
  6. import android.view.ViewGroup;
  7. /**
  8. * viewpage 和listview 相互冲突 将父view 传递到viewpage 里面
  9. *
  10. * 使用父类的方法 parent.requestDisallowInterceptTouchEvent(true);
  11. *
  12. * 当 requestDisallowInterceptTouchEvent 如果为true的时候 表示:父view 不拦截子view的touch 事件
  13. *
  14. * 这个方法只是改变flag
  15. *
  16. * @author baozi
  17. *
  18. */
  19. public class DecoratorViewPager extends ViewPager {
  20. private ViewGroup parent;
  21. public DecoratorViewPager(Context context) {
  22. super(context);
  23. // TODO Auto-generated constructor stub
  24. }
  25. public DecoratorViewPager(Context context, AttributeSet attrs) {
  26. super(context, attrs);
  27. }
  28. public void setNestedpParent(ViewGroup parent) {
  29. this.parent = parent;
  30. }
  31. @Override
  32. public boolean dispatchTouchEvent(MotionEvent ev) {
  33. if (parent != null) {
  34. parent.requestDisallowInterceptTouchEvent(true);
  35. }
  36. return super.dispatchTouchEvent(ev);
  37. }
  38. @Override
  39. public boolean onInterceptTouchEvent(MotionEvent arg0) {
  40. if (parent != null) {
  41. parent.requestDisallowInterceptTouchEvent(true);
  42. }
  43. return super.onInterceptTouchEvent(arg0);
  44. }
  45. @Override
  46. public boolean onTouchEvent(MotionEvent arg0) {
  47. if (parent != null) {
  48. parent.requestDisallowInterceptTouchEvent(true);
  49. }
  50. return super.onTouchEvent(arg0);
  51. }
  52. }

2 . 在xml里面:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="#f1f1f1" >
  6. <com.example.bz_viewpager.DecoratorViewPager
  7. android:id="@+id/vp"
  8. android:layout_width="match_parent"
  9. android:layout_height="200dp"
  10. android:fadingEdge="none" />
  11. </RelativeLayout>

3. 在代码里使用

将 viewpager 的父view传递到viewpager里面

调用:       vp.setNestedpParent((ViewGroup)vp.getParent()); 方法

如下:

  1. lv = (ListView) findViewById(R.id.lv);
  2. View header = LayoutInflater.from(MainActivity.this).inflate(R.layout.viewpage_layout, null);
  3. DecoratorViewPager vp = (DecoratorViewPager) header.findViewById(R.id.vp);
  4. vp.setNestedpParent((ViewGroup)vp.getParent());
  5. MyPagapter myPagapter = new MyPagapter(MainActivity.this);
  6. vp.setAdapter(myPagapter);
  7. lv.addHeaderView(header);

(2)解析:

viewgroup 当中有 一个 requestDisallowInterceptTouchEvent方法

这个方法只改变flag  当 view.requestDisallowInterceptTouchEvent 参数为true的时候

view 不会拦截其子控件的 触摸事件

  1. /**
  2. * Called when a child does not want this parent and its ancestors to
  3. * intercept touch events with
  4. * {@link ViewGroup#onInterceptTouchEvent(MotionEvent)}.
  5. *
  6. * <p>This parent should pass this call onto its parents. This parent must obey
  7. * this request for the duration of the touch (that is, only clear the flag
  8. * after this parent has received an up or a cancel.</p>
  9. *
  10. * @param disallowIntercept True if the child does not want the parent to
  11. *            intercept touch events.
  12. */
  13. public void requestDisallowInterceptTouchEvent(boolean disallowIntercept);

贴上源码:

    1. public void requestDisallowInterceptTouchEvent(boolean disallowIntercept) {
    2. if (disallowIntercept == ((mGroupFlags & FLAG_DISALLOW_INTERCEPT) != 0)) {
    3. // We're already in this state, assume our ancestors are too
    4. return;
    5. }
    6. if (disallowIntercept) {
    7. mGroupFlags |= FLAG_DISALLOW_INTERCEPT;
    8. } else {
    9. mGroupFlags &= ~FLAG_DISALLOW_INTERCEPT;
    10. }
    11. // Pass it up to our parent
    12. if (mParent != null) {
    13. mParent.requestDisallowInterceptTouchEvent(disallowIntercept);
    14. }
    15. }