Android开发 ListView的OnScrollListener详解

OnScrollListener接口是定义在AbsListView中的,而AbsListView的直接子类有GridViewListView,非直接子类有ExpandableListView。OnScrollListener的完整路径是frameworks\base\core\java\Android\widget\AbsListView.java

其源码如下:

/** 
 * Interface definition for a callback to be invoked when the list or grid 
 * has been scrolled. 
 */  
public interface OnScrollListener {  
  
    /** 
     * The view is not scrolling. Note navigating the list using the trackball counts as 
     * being in the idle state since these transitions are not animated. 
     */  

	/*
	scrollState有三种状态,分别是SCROLL_STATE_IDLE、SCROLL_STATE_TOUCH_SCROLL、SCROLL_STATE_FLING 
	SCROLL_STATE_IDLE是当屏幕停止滚动时
	SCROLL_STATE_TOUCH_SCROLL是当用户在以触屏方式滚动屏幕并且手指仍然还在屏幕上时 
	SCROLL_STATE_FLING是当用户由于之前划动屏幕并抬起手指,屏幕产生惯性滑动时
	*/
    public static int SCROLL_STATE_IDLE = 0;  
  
    /** 
     * The user is scrolling using touch, and their finger is still on the screen 
     */  
    public static int SCROLL_STATE_TOUCH_SCROLL = 1;  
  
    /** 
     * The user had previously been scrolling using touch and had performed a fling. The 
     * animation is now coasting to a stop 
     */  
    public static int SCROLL_STATE_FLING = 2;  
  
    /** 
     * Callback method to be invoked while the list view or grid view is being scrolled. If the 
     * view is being scrolled, this method will be called before the next frame of the scroll is 
     * rendered. In particular, it will be called before any calls to 
     * {@link Adapter#getView(int, View, ViewGroup)}. 
     * 
     * @param view The view whose scroll state is being reported 
     * 
     * @param scrollState The current scroll state. One of {@link #SCROLL_STATE_IDLE}, 
     * {@link #SCROLL_STATE_TOUCH_SCROLL} or {@link #SCROLL_STATE_IDLE}. 
     */  
    public void onScrollStateChanged(AbsListView view, int scrollState);  
  
    /** 
     * Callback method to be invoked when the list or grid has been scrolled. This will be 
     * called after the scroll has completed 
     * @param view The view whose scroll state is being reported 
     * @param firstVisibleItem the index of the first visible cell (ignore if 
     *        visibleItemCount == 0) 
     * @param visibleItemCount the number of visible cells 
     * @param totalItemCount the number of items in the list adaptor 
     */  
    public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount,  
            int totalItemCount);  
	/*  
	 * 参数view表示被滚动的listview
	 * 参数firstVisibleItem 表示在当前屏幕显示的第一个listItem在整个listView里面的位置(下标从0开始) 
	 * 参数visibleItemCount表示在现时屏幕可以见到的ListItem(部分显示的ListItem也算)总数 
	 * 参数 totalItemCount表示ListView的ListItem总数
	 */  
}  




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值