【开源】PullDownListView

PullDownListView

使用说明:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<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>

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
 
            }
 
        });

 

相关代码

  • android-PullRefreshLayout
  • CRefreshLayout
  • android-PullRefreshLayout
  • CRefreshLayout
  • StikkyHeader

posted on 2015-04-29 10:03  wasdchenhao  阅读(147)  评论(0)    收藏  举报

导航