我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android仿淘宝商品浏览界面图片滚动效果

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android仿淘宝商品浏览界面图片滚动效果

用手机淘宝浏览商品详情时,商品图片是放在后面的,在第一个ScrollView滚动到最底下时会有提示,继续拖动才能浏览图片。仿照这个效果写一个出来并不难,只要定义一个Layout管理两个ScrollView就行了,当第一个ScrollView滑到底部时,再次向上滑动进入第二个ScrollView。效果如下:

需要注意的地方是:

      1、如果是手动滑到底部需要再次按下才能继续往下滑,自动滚动到底部则不需要

      2、在由上一个ScrollView滑动到下一个ScrollView的过程中多只手指相继拖动也不会导致布局的剧变,也就是多个pointer的滑动不会导致move距离的剧变。

这个Layout的实现思路是:

     在布局中放置两个ScrollView,并为其设置OnTouchListener,时刻判断ScrollView的滚动距离,一旦第一个ScrollView滚动到底部,则标识改为可向上拖动,此时开始记录滑动距离mMoveLen,根据mMoveLen重新layout两个ScrollView;同理,监听第二个ScrollView是否滚动到顶部,以往下拖动。

OK,明白了原理之后可以看代码了:


package com.jingchen.tbviewer; 
import java.util.Timer; 
import java.util.TimerTask; 
import android.content.Context; 
import android.os.Handler; 
import android.os.Message; 
import android.util.AttributeSet; 
import android.view.MotionEvent; 
import android.view.VelocityTracker; 
import android.view.View; 
import android.widget.RelativeLayout; 
import android.widget.ScrollView; 
 
public class ScrollViewContainer extends RelativeLayout { 
   
  public static final int AUTO_UP = 0; 
   
  public static final int AUTO_DOWN = 1; 
   
  public static final int DONE = 2; 
   
  public static final float SPEED = 6.5f; 
  private boolean isMeasured = false; 
   
  private VelocityTracker vt; 
  private int mViewHeight; 
  private int mViewWidth; 
  private View topView; 
  private View bottomView; 
  private boolean canPullDown; 
  private boolean canPullUp; 
  private int state = DONE; 
   
  private int mCurrentViewIndex = 0; 
   
  private float mMoveLen; 
  private MyTimer mTimer; 
  private float mLastY; 
   
  private int mEvents; 
  private Handler handler = new Handler() { 
    @Override 
    public void handleMessage(Message msg) { 
      if (mMoveLen != 0) { 
        if (state == AUTO_UP) { 
          mMoveLen -= SPEED; 
          if (mMoveLen <= -mViewHeight) { 
            mMoveLen = -mViewHeight; 
            state = DONE; 
            mCurrentViewIndex = 1; 
          } 
        } else if (state == AUTO_DOWN) { 
          mMoveLen += SPEED; 
          if (mMoveLen >= 0) { 
            mMoveLen = 0; 
            state = DONE; 
            mCurrentViewIndex = 0; 
          } 
        } else { 
          mTimer.cancel(); 
        } 
      } 
      requestLayout(); 
    } 
  }; 
  public ScrollViewContainer(Context context) { 
    super(context); 
    init(); 
  } 
  public ScrollViewContainer(Context context, AttributeSet attrs) { 
    super(context, attrs); 
    init(); 
  } 
  public ScrollViewContainer(Context context, AttributeSet attrs, int defStyle) { 
    super(context, attrs, defStyle); 
    init(); 
  } 
  private void init() { 
    mTimer = new MyTimer(handler); 
  } 
  @Override 
  public boolean dispatchTouchEvent(MotionEvent ev) { 
    switch (ev.getActionMasked()) { 
    case MotionEvent.ACTION_DOWN: 
      if (vt == null) 
        vt = VelocityTracker.obtain(); 
      else 
        vt.clear(); 
      mLastY = ev.getY(); 
      vt.addMovement(ev); 
      mEvents = 0; 
      break; 
    case MotionEvent.ACTION_POINTER_DOWN: 
    case MotionEvent.ACTION_POINTER_UP: 
      // 多一只手指按下或抬起时舍弃将要到来的第一个事件move,防止多点拖拽的bug 
      mEvents = -1; 
      break; 
    case MotionEvent.ACTION_MOVE: 
      vt.addMovement(ev); 
      if (canPullUp && mCurrentViewIndex == 0 && mEvents == 0) { 
        mMoveLen += (ev.getY() - mLastY); 
        // 防止上下越界 
        if (mMoveLen > 0) { 
          mMoveLen = 0; 
          mCurrentViewIndex = 0; 
        } else if (mMoveLen < -mViewHeight) { 
          mMoveLen = -mViewHeight; 
          mCurrentViewIndex = 1; 
        } 
        if (mMoveLen < -8) { 
          // 防止事件冲突 
          ev.setAction(MotionEvent.ACTION_CANCEL); 
        } 
      } else if (canPullDown && mCurrentViewIndex == 1 && mEvents == 0) { 
        mMoveLen += (ev.getY() - mLastY); 
        // 防止上下越界 
        if (mMoveLen < -mViewHeight) { 
          mMoveLen = -mViewHeight; 
          mCurrentViewIndex = 1; 
        } else if (mMoveLen > 0) { 
          mMoveLen = 0; 
          mCurrentViewIndex = 0; 
        } 
        if (mMoveLen > 8 - mViewHeight) { 
          // 防止事件冲突 
          ev.setAction(MotionEvent.ACTION_CANCEL); 
        } 
      } else 
        mEvents++; 
      mLastY = ev.getY(); 
      requestLayout(); 
      break; 
    case MotionEvent.ACTION_UP: 
      mLastY = ev.getY(); 
      vt.addMovement(ev); 
      vt.computeCurrentVelocity(700); 
      // 获取Y方向的速度 
      float mYV = vt.getYVelocity(); 
      if (mMoveLen == 0 || mMoveLen == -mViewHeight) 
        break; 
      if (Math.abs(mYV) < 500) { 
        // 速度小于一定值的时候当作静止释放,这时候两个View往哪移动取决于滑动的距离 
        if (mMoveLen <= -mViewHeight / 2) { 
          state = AUTO_UP; 
        } else if (mMoveLen > -mViewHeight / 2) { 
          state = AUTO_DOWN; 
        } 
      } else { 
        // 抬起手指时速度方向决定两个View往哪移动 
        if (mYV < 0) 
          state = AUTO_UP; 
        else 
          state = AUTO_DOWN; 
      } 
      mTimer.schedule(2); 
      try { 
        vt.recycle(); 
      } catch (Exception e) { 
        e.printStackTrace(); 
      } 
      break; 
    } 
    super.dispatchTouchEvent(ev); 
    return true; 
  } 
  @Override 
  protected void onLayout(boolean changed, int l, int t, int r, int b) { 
    topView.layout(0, (int) mMoveLen, mViewWidth, 
        topView.getMeasuredHeight() + (int) mMoveLen); 
    bottomView.layout(0, topView.getMeasuredHeight() + (int) mMoveLen, 
        mViewWidth, topView.getMeasuredHeight() + (int) mMoveLen 
            + bottomView.getMeasuredHeight()); 
  } 
  @Override 
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 
    super.onMeasure(widthMeasureSpec, heightMeasureSpec); 
    if (!isMeasured) { 
      isMeasured = true; 
      mViewHeight = getMeasuredHeight(); 
      mViewWidth = getMeasuredWidth(); 
      topView = getChildAt(0); 
      bottomView = getChildAt(1); 
      bottomView.setOnTouchListener(bottomViewTouchListener); 
      topView.setOnTouchListener(topViewTouchListener); 
    } 
  } 
  private OnTouchListener topViewTouchListener = new OnTouchListener() { 
    @Override 
    public boolean onTouch(View v, MotionEvent event) { 
      ScrollView sv = (ScrollView) v; 
      if (sv.getScrollY() == (sv.getChildAt(0).getMeasuredHeight() - sv 
          .getMeasuredHeight()) && mCurrentViewIndex == 0) 
        canPullUp = true; 
      else 
        canPullUp = false; 
      return false; 
    } 
  }; 
  private OnTouchListener bottomViewTouchListener = new OnTouchListener() { 
    @Override 
    public boolean onTouch(View v, MotionEvent event) { 
      ScrollView sv = (ScrollView) v; 
      if (sv.getScrollY() == 0 && mCurrentViewIndex == 1) 
        canPullDown = true; 
      else 
        canPullDown = false; 
      return false; 
    } 
  }; 
  class MyTimer { 
    private Handler handler; 
    private Timer timer; 
    private MyTask mTask; 
    public MyTimer(Handler handler) { 
      this.handler = handler; 
      timer = new Timer(); 
    } 
    public void schedule(long period) { 
      if (mTask != null) { 
        mTask.cancel(); 
        mTask = null; 
      } 
      mTask = new MyTask(handler); 
      timer.schedule(mTask, 0, period); 
    } 
    public void cancel() { 
      if (mTask != null) { 
        mTask.cancel(); 
        mTask = null; 
      } 
    } 
    class MyTask extends TimerTask { 
      private Handler handler; 
      public MyTask(Handler handler) { 
        this.handler = handler; 
      } 
      @Override 
      public void run() { 
        handler.obtainMessage().sendToTarget(); 
      } 
    } 
  } 
} 

注释写的很清楚了,有几个关键点需要讲一下
    1、由于这里为两个ScrollView设置了OnTouchListener,所以在其他地方不能再设置了,否则就白搭了。

    2、两个ScrollView的layout参数统一由mMoveLen决定。

    3、变量mEvents有两个作用:一是防止手动滑到底部或顶部时继续滑动而改变布局,必须再次按下才能继续滑动;二是在新的pointer down或up时把mEvents设置成-1可以舍弃将要到来的第一个move事件,防止mMoveLen出现剧变。为什么会出现剧变呢?因为假设一开始只有一只手指在滑动,记录的坐标值是这个pointer的事件坐标点,这时候另一只手指按下了导致事件又多了一个pointer,这时候到来的move事件的坐标可能就变成了新的pointer的坐标,这时计算与上一次坐标的差值就会出现剧变,变化的距离就是两个pointer间的距离。所以要把这个move事件舍弃掉,让mLastY值记录这个pointer的坐标再开始计算mMoveLen。pointer up的时候也一样。

理解了这几点,看起来就没什么难度了,代码量也很小。

MainActivity的布局:


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" > 
  <com.jingchen.tbviewer.ScrollViewContainer 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 
    <ScrollView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" > 
      <RelativeLayout 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" > 
        <LinearLayout 
          android:id="@+id/imagesLayout" 
          android:layout_width="match_parent" 
          android:layout_height="wrap_content" 
          android:gravity="center_horizontal" 
          android:orientation="vertical" > 
          <ImageView 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:background="@drawable/h" /> 
          <ImageView 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:background="@drawable/i" /> 
          <ImageView 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:background="@drawable/j" /> 
          <ImageView 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:background="@drawable/k" /> 
          <ImageView 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:background="@drawable/l" /> 
          <ImageView 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:background="@drawable/m" /> 
        </LinearLayout> 
        <TextView 
          android:layout_width="match_parent" 
          android:layout_height="60dp" 
          android:layout_below="@id/imagesLayout" 
          android:background="#eeeeee" 
          android:gravity="center" 
          android:text="继续拖动,查看更多美女" 
          android:textSize="20sp" /> 
      </RelativeLayout> 
    </ScrollView> 
    <ScrollView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:background="#000000" > 
      <LinearLayout 
        android:layout_width="match_parent" 
        android:layout_height="match_parent" 
        android:gravity="center_horizontal" 
        android:orientation="vertical" > 
        <ImageView 
          android:layout_width="wrap_content" 
          android:layout_height="wrap_content" 
          android:background="@drawable/a" /> 
        <ImageView 
          android:layout_width="wrap_content" 
          android:layout_height="wrap_content" 
          android:background="@drawable/b" /> 
        <ImageView 
          android:layout_width="wrap_content" 
          android:layout_height="wrap_content" 
          android:background="@drawable/c" /> 
        <ImageView 
          android:layout_width="wrap_content" 
          android:layout_height="wrap_content" 
          android:background="@drawable/d" /> 
        <ImageView 
          android:layout_width="wrap_content" 
          android:layout_height="wrap_content" 
          android:background="@drawable/e" /> 
        <ImageView 
          android:layout_width="wrap_content" 
          android:layout_height="wrap_content" 
          android:background="@drawable/f" /> 
        <ImageView 
          android:layout_width="wrap_content" 
          android:layout_height="wrap_content" 
          android:background="@drawable/g" /> 
      </LinearLayout> 
    </ScrollView> 
  </com.jingchen.tbviewer.ScrollViewContainer> 
</RelativeLayout> 

在ScrollView中放了几张图片而已。
MainActivity的代码:


package com.jingchen.tbviewer; 
import android.app.Activity; 
import android.os.Bundle; 
import android.view.Menu; 
public class MainActivity extends Activity 
{ 
  @Override 
  protected void onCreate(Bundle savedInstanceState) 
  { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
  } 
  @Override 
  public boolean onCreateOptionsMenu(Menu menu) 
  { 
    getMenuInflater().inflate(R.menu.main, menu); 
    return true; 
  } 
} 
您可能感兴趣的文章:Android实现图片滚动和页签控件功能的实现代码图片自动播放器编程网修正JS特效实现图片自动播放并可控的效果autoPlay 基于jquery的图片自动播放效果基于Jquery实现的一个图片滚动切换jquery 圆形旋转图片滚动切换效果JQuery 图片滚动轮播示例代码js实现网站首页图片滚动显示jQuery+css实现图片滚动效果(附源码)jquery实现图片滚动效果的简单实例js+div实现图片滚动效果代码ImageFlow可鼠标控制图片滚动javascript 不间断的图片滚动并可点击js实现鼠标经过时图片滚动停止的方法Android使用自定义属性实现图片自动播放滚动的功能


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android仿淘宝商品浏览界面图片滚动效果

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android仿淘宝商品浏览界面图片滚动效果

用手机淘宝浏览商品详情时,商品图片是放在后面的,在第一个ScrollView滚动到最底下时会有提示,继续拖动才能浏览图片。仿照这个效果写一个出来并不难,只要定义一个Layout管理两个ScrollView就行了,当第一个ScrollView
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录