方法中的参数指示什么 public void onScroll (AbsListView view, int firstVisibleItem, int visibleItemCount, int t



实际上我需要在我的应用程序中使用 onscrolllistener,但我无法理解方法中的参数指示什么 public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount),请帮助我

请检查文档,您可以轻松了解所有这些参数。

即使在这里我用我的语言解释。

view : View for which we implemented this listener
firstVisibleItem : Index of very first visible row/cell at a time
visibleItemCount : Total number of visible rows/cells
totalItemCount : Total number of items in the list adapter

最新更新