首页 > 技术文章 > 清新大气的ListView下拉上拉刷新--第三方开源--PullDownListView

zzw1994 原文

下载地址: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

            }

        });

推荐阅读