清新大气的ListView下拉上拉刷新--第三方开源--PullDownListView

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清新大气的ListView下拉上拉刷新--第三方开源--PullDownListView相关的知识,希望对你有一定的参考价值。

技术分享

 

下载地址:https://github.com/guojunyi/PullDownListView

 

使用:

xml:

<com.pulldownlistview.PullDownListView
        android:id="@+id/pullDownListView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#424242"
        >

        <RelativeLayout
            android:id="@+id/layoutHeader"
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:layout_alignParentTop="true" >

            <com.yourCustomView..../>

        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/layoutFooter"
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:layout_alignParentBottom="true" >

            <com.yourCustomView..../>

        </RelativeLayout>
</com.pulldownlistview.PullDownListView>

JAVA:

pullDownListView.setOnPullHeightChangeListener(new OnPullHeightChangeListener(){

            @Override
            public void onTopHeightChange(int headerHeight, int pullHeight) {
                // TODO Auto-generated method stub

            }

            @Override
            public void onBottomHeightChange(int footerHeight, int pullHeight) {
                // TODO Auto-generated method stub

            }

            @Override
            public void onRefreshing(boolean isTop) {
                // TODO Auto-generated method stub

            }

        });

 

以上是关于清新大气的ListView下拉上拉刷新--第三方开源--PullDownListView的主要内容,如果未能解决你的问题,请参考以下文章

Android PullToRefresh 下拉刷新,上拉很多其它,支持ScrollView,ListView,可方便拓展GridView,WebView等

vue10行代码实现上拉翻页加载更多数据,纯手写js实现下拉刷新上拉翻页不引用任何第三方插件

Android之 RecyclerView,CardView 详解和相对应的上拉刷新下拉加载

上拉更新,下拉刷新

iOS-上拉刷新下拉加载 新版MJRefresh和EGOTableViewPullRefresh

Android实现RecyclerView的下拉刷新和上拉载入很多其它