zoukankan      html  css  js  c++  java
  • 清新大气的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
    
                }
    
            });
  • 相关阅读:
    SAMBA服务初学练习
    NFS与AutoNFS实例
    NTP服务简介
    DHCP服务简单搭建步骤
    HBase文档操作--练习篇
    Hadoop体系结构管理
    HBase表结构设计--练习篇
    HBase备份恢复练习
    MongoDB管理练习
    24_BlockingQueue接口
  • 原文地址:https://www.cnblogs.com/zzw1994/p/5163700.html
Copyright © 2011-2022 走看看