ViewPager的OnPageChangeListener使用分析

本文详细解析了ViewPager的OnPageChangeListener的三个回调方法:onPageScrollStateChanged、onPageScrolled和onPageSelected。通过实例分析了在滑动过程中参数的变化,揭示了滑动开始、滑动中、滑动结束的状态变化以及页面切换的条件。
摘要由CSDN通过智能技术生成

今天在实现轮播的时候需要监听ViewPager的滑动时间,所以就研究了一下这个监听事件,记录一下。

首先这个监听事件添加之后需要我们来实现三个回调方法,分别是:onPageSelected(int position)、onPageScrollStateChanged(int state)、onPageScrolled(int position,float positionOffset,int positionOffsetPixels)。

在测试的时候,我直接实现了这个接口,然后根据输出的日志来分析结果,整个实现接口的类如下:

这里写图片描述


1.onPageScrollStateChanged (int state)。

首先看一下官方的解释:

public abstract void onPageScrollStateChanged (int state)

Called when the scroll state changes. Useful for discovering when the user begins dragging, when the pager is automatically settling to the current page, or when it is fully stopped/idle.

Parameters
state The new scroll state.
See Also
SCROLL_STATE_IDLE
SCROLL_STATE_DRAGGING
SCROLL_STATE_SETTLING

也就是说当滚动状态发生改变的时候会回调这个方法,同时传递进来一个此刻滚动状态的参数。

参数的值为:

public static final int SCROLL_STATE_DRAGGING

Indicates that the pager is currently being dragged by the user.

Constant Value: 1 (0x00000001)
public static final int SCROLL_STATE_IDLE

Indicates that the pager is in an idle, settled state. The current page is fully in view and no animation is in

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值