码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-01-27 17:12:48      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

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

标签:

原文地址:http://www.cnblogs.com/zzw1994/p/5163700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!