本文主要是介绍PullToRefreshListView一键置顶功能实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
项目中我们经常会用到各种列表需求,有的时候列表数据过多,用户滑动到最下面 ,返回到最上面是很不方便的,所以我们就需要一个一键置顶的功能。
效果图:
这里面需要注意一点是 这个按钮加一个判断,当可见区域超过一屏时候显示此按钮 否则隐藏
判断逻辑代码:
mListRefreshView.setOnScrollListener(new AbsListView.OnScrollListener() {@Overridepublic void onScrollStateChanged(AbsListView view, int scrollState) {}@Overridepublic void onScroll(AbsListView view, int firstVisibleItem,int visibleItemCount, int totalItemCount) {int lastVisiblePosition = view.getLastVisiblePosition();//判断置顶按钮显示隐藏if(lastVisiblePosition > PAGE_SIZE){topBtn.setVisibility(View.VISIBLE);}else {topBtn.setVisibility(View.GONE);}if (totalItemCount > 10 && lastVisiblePosition == totalItemCount - 10) {if (mStandardList != null&& mStandardList.size() < (PAGE_INDEX - 1) * PAGE_SIZE) {mListRefreshView.onRefreshComplete();mListRefreshView.setPullToRefreshEnabled(false);mTvLoadAll.setVisibility(View.VISIBLE);} else {getData(1, 1);}}}});
一键置顶按钮布局
<RelativeLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"><FrameLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"><com.jky.mobilebzt.pulltorefresh.PullToRefreshListViewandroid:id="@+id/plv_standard"android:layout_width="match_parent"android:layout_height="match_parent"android:layout_marginTop="2dp"android:background="@color/white"android:cacheColorHint="@null"android:groupIndicator="@null"android:scrollbars="none" /><includeandroid:id="@+id/no_data_view"layout="@layout/layout_no_data_view"android:visibility="gone"/></FrameLayout><TextViewandroid:id="@+id/top_btn"android:layout_width="50dp"android:layout_height="50dp"android:padding="@dimen/padding_10"android:layout_alignParentBottom="true"android:layout_alignParentRight="true"android:layout_marginBottom="6dp"android:layout_marginRight="6dp"android:background="@drawable/icon_top" /></RelativeLayout>
点击逻辑
case R.id.top_btn:setListViewPos(0);break;private void setListViewPos(int pos) {if (android.os.Build.VERSION.SDK_INT >= 8) {mListRefreshView.getRefreshableView().smoothScrollToPosition(pos);} else {mListRefreshView.getRefreshableView().setSelection(pos);}}
如果帮助到大家了就帮忙点个关注 ,点赞评论支持一下,你们的支持是我持续更新的动力。谢谢大家!!
同时也欢迎各位小伙伴加入我的qq群:开发一群:454430053 开发二群:537532956 开发三群:812695329 和大家一起沟通讨论交流,这里已经有很多小伙伴在等你了,快来加入我们吧!
这篇关于PullToRefreshListView一键置顶功能实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!