欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android下拉刷新与轮播图滑动冲突解决方案

程序员文章站 2023-12-21 21:26:04
最近在开发中遇到了这样一个问题,在下拉刷新组件中包含了一个轮播图组件,当左右滑动的图片时很容易触发下拉刷新,如下图所示: 如图中红色箭头所示方向切换轮播图,很容易触发...

最近在开发中遇到了这样一个问题,在下拉刷新组件中包含了一个轮播图组件,当左右滑动的图片时很容易触发下拉刷新,如下图所示:

Android下拉刷新与轮播图滑动冲突解决方案

如图中红色箭头所示方向切换轮播图,很容易触发下拉刷新。网上查了很多方法,发现都不能很好的解决,于是自己研究了下。

我选用的第三方控件

1.下拉刷新我选用的是chanven的commonpulltorefresh(系统自带的swiperefreshlayout也应该是一样的道理);

2.轮播图选用的是daimajia的androidimageslider(用viewpager也是一样的道理)。具体界面自行脑补哈。

解决方案

我们仔细分析一下,我们要解决的实际上就是控件的事件拦截问题。现在的情况是外层的控件已经拦截了斜着滑动的事件,那么我们只要让外层的控件把这个事件分发下去就可以了【在dispatchtouchevent(motionevent ev)方法中处理】,那么问题来了,怎么判断斜着的事件。网上有很多方案,但都不是很完美。我想到了一种,跟大家分享一下,先看图:

Android下拉刷新与轮播图滑动冲突解决方案

方案分析

1.图一中x=y,作为临界条件,这时α刚好等于45°;

2.图二中x<y,α>45°,这时我们判断为上下移动;

3.图三中x>y,α<45°,这时我们判断为左右移动。

那么我们只要判断tan(α)与tan(45)的关系就能判断是左右还是上下移动。我们写一个类继承ptrclassicframelayout,下面是关键代码:

public class subptrclassicframelayout extends ptrclassicframelayout {

  private float mdownx;
  private float mdowny;

  public subptrclassicframelayout(context context) {
    super(context);
  }

  public subptrclassicframelayout(context context, attributeset attrs) {
    super(context, attrs);
  }

  public subptrclassicframelayout(context context, attributeset attrs, int defstyle) {
    super(context, attrs, defstyle);
  }

  @override
  public boolean dispatchtouchevent(motionevent ev) {
    switch (ev.getaction()) {
      case motionevent.action_down:
        mdownx = ev.getx();
        mdowny = ev.getrawy();
        break;
      case motionevent.action_move:
        float movex = ev.getx();
        float movey = ev.getrawy();
        float diffx = math.abs(movex - mdownx);
        float diffy = math.abs(movey - mdowny);
        boolean ishorizon = math.tan(diffy / diffx) < math.tan(45.0);
        if (ishorizon) {
          return dispatchtoucheventsupper(ev);
        }
        break;
    }
    return super.dispatchtouchevent(ev);
  }

}

我们可以看到,其实很简单,关键就是判断当前位置相对于初始位置的滑动方向。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: