這個網址必須收藏,解決viewpager嵌套viewpager和其他view 衝突問題

來源:互聯網
上載者:User

我們只需要重寫子viewpager  就可以很好的解決這個問題了

 

 

 

/**
 * ChanpinViewPager.java
 * com.stg.ln.utils.ui
 *
 * Function: TODO
 *
 *   ver     date       author
 * ──────────────────────────────────
 *   2013-7-9 zhangyanhong
 *
 * Copyright (c) 2013, TNT All Rights Reserved.
*/


package com.stg.ln.utils.ui;


import android.content.Context;
import android.support.v4.view.ViewPager;
import android.util.AttributeSet;
import android.view.MotionEvent;

 

public class ChildViewPager extends ViewPager {


public ChildViewPager(Context context, AttributeSet attrs) {

super(context, attrs);
// TODO Auto-generated constructor stub

}
public static ViewPager mPager;//此處我直接在調用的時候靜態賦值過來 的
    private int abc = 1;
    private float mLastMotionX;
    String TAG="@";
   
    private float firstDownX;
    private float firstDownY;
    private boolean flag=false;


   
    public boolean dispatchTouchEvent(MotionEvent ev) {
            // TODO Auto-generated method stub       
            final float x = ev.getX();
            switch (ev.getAction()) {
            case MotionEvent.ACTION_DOWN:
                    mPager.requestDisallowInterceptTouchEvent(true);
                    abc=1;
                    mLastMotionX=x;
                    break;
            case MotionEvent.ACTION_MOVE:
                    if (abc == 1) {
                            if (x - mLastMotionX > 5 && getCurrentItem() == 0) {
                                    abc = 0;
                                    mPager.requestDisallowInterceptTouchEvent(false);
                            }


                            if (x - mLastMotionX < -5 && getCurrentItem()  == getAdapter().getCount()-1) {
                                    abc = 0;
                                    mPager.requestDisallowInterceptTouchEvent(false);
                            }
                    }
                    break;
            case MotionEvent.ACTION_UP:
            case MotionEvent.ACTION_CANCEL:
                    mPager.requestDisallowInterceptTouchEvent(false);
                    break;
            }
            return super.dispatchTouchEvent(ev);
    }


    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
            // TODO Auto-generated method stub
            return super.onInterceptTouchEvent(ev);
    }


    @Override
    public boolean onTouchEvent(MotionEvent event) {
            // TODO Auto-generated method stub
            return super.onTouchEvent(event);
    }
}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.