使用PullToRefresh實現下拉刷新和上拉加載

PullToRefresh是一套實現很是好的下拉刷新庫,它支持: 1.ListView 2.ExpandableListView 3.GridView 4.WebView 等多種經常使用的須要刷新的View類型,並且使用起來也十分方便。(下載地址:https://github.com/chrisbanes/Android-PullToRefresh 2013年開始已經中止維護)android

下載完成,將它導入到eclipse中,做爲一個library導入到你的工程中就行了。git

1、廢話少說,下拉刷新Go。github

1.在你的佈局文件中加上你想用的View就行了,好比這兒我想用一個支持下拉 刷新的ExpandableListVieweclipse

<com.handmark.pulltorefresh.library.PullToRefreshExpandableListView  
    android:id="@+id/expand_list"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent" />
  1. 在你的Activity代碼中進行簡單的設置:
mExpandList = (PullToRefreshExpandableListView) rootView.findViewById(R.id.expand_list);  
mExpandList.getRefreshableView().setGroupIndicator(null);  
mExpandList.getRefreshableView().setDivider(null);  
mExpandList.getRefreshableView().setSelector(android.R.color.transparent);  
mExpandList.getRefreshableView().setOnGroupClickListener(this);  
mExpandList.setOnRefreshListener(this);

第一行是找到這個View,最後一行是爲它加上刷新的監聽器,中間的幾行是我對ExpandableListView進行一些設置。 這樣其實就已經能夠下拉刷新了,但刷新時須要運行的代碼寫在哪呢,還有爲何下拉不會收起來呢,且往下看。ide

3.下拉刷新時執行的方法onRefresh()佈局

@Override  
public void onRefresh(PullToRefreshBase<ExpandableListView> refreshView) {  
    if (!isRefreshing) {  
        isRefreshing = true;  
        updateList(true);  
    } else {  
        mExpandList.onRefreshComplete();  
    }  
}

通常來講咱們會開另外一個線程去獲取數據,因此這兒會加上一個判斷,若是已經在獲取數據了,就onRefreshComplete(),就是將下拉收起;不然就去開新線程取數據,取完記得也要onRefreshComplete()哦! 2、上拉加載 若是你不想再費時間去本身寫一個上拉加載,不妨試一下PullToRefresh自帶的上拉效果哦! PullToRefresh自己支持下拉刷新和上拉刷新,因此咱們只須要將上拉刷新改爲上拉加載就好了。 1.設置Modethis

// set mode to BOTH  
mExpandList.setMode(Mode.BOTH);  
mExpandList.getLoadingLayoutProxy(false, true).setPullLabel(getString(R.string.pull_to_load));  
mExpandList.getLoadingLayoutProxy(false, true).setRefreshingLabel(getString(R.string.loading));  
mExpandList.getLoadingLayoutProxy(false, true).setReleaseLabel(getString(R.string.release_to_load));

Mode設置爲Mode.BOTH後,下拉和上拉都會執行onRefresh()中的方法了。 由於界面上邊,咱們要顯示「下拉刷新」,下邊咱們要顯示「上拉加載」,因此後三行就是改變下邊部分的文字,getLoadingLayoutProxy(false, true)方法你們能夠本身感覺一下。spa

2.怎麼區分下拉/上拉 網上有的同窗是用onScrollListener來判斷,這樣並不嚴謹,我依靠是header仍是footer處於可見狀態來區分下拉和上拉,若是是下拉,那header必定是可見的;反之,footer必定是可見的。 可是PullToRefreshExpandableListView並無提供這樣的接口,那咱們就來小改一下咱們引入的工程吧,很簡單:線程

找到包「com.handmark.pulltorefresh.library」下的PullToRefreshAdapterViewBase.Java這個類,加入兩個新接口:code

public boolean isHeaderShown() {  
    return getHeaderLayout().isShown();  
}  
  
public boolean isFooterShown() {  
    return getFooterLayout().isShown();  
}

這樣就好了哦,從新編譯一下這個工程,和你本身的工程。 在onRefresh()中這樣來用:

@Override  
public void onRefresh(PullToRefreshBase<ExpandableListView> refreshView) {  
    if (!isRefreshing) {  
        isRefreshing = true;  
        if (mExpandList.isHeaderShown()) {  
            Utils.LOGD("pull-to-refresh");  
            refreshOnlineStatus(true);  
        } else if (mExpandList.isFooterShown()) {  
            Utils.LOGD("pull-to-load-more");  
            loadNextPage();  
        }  
    } else {  
        mExpandList.onRefreshComplete();  
    }  
}

很簡單吧,這樣咱們就YD地使用PullToRefresh實現了下拉刷新和上拉加載,LOL,但願多多少少能幫到你們。

更新於2014-07-01

近來發現:

1.實現上拉監聽,只須要實現OnRefreshListener2就能夠了,同時別忘記setMode(Mode.BOTH) 哦!

2.PullToRefreshListView在使用上有一個BUG,在你的xml layout中,不能一開始將它的visiablity設置爲GONE,不然,在代碼中設置visiablity爲VISIABLE也沒有做用。

最後放上一張效果圖 輸入圖片說明

相關文章
相關標籤/搜索