您好,登錄后才能下訂單哦!
這篇文章主要介紹android如何使用PullToRefresh框架實現ListView下拉刷新上拉加載更多,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
具體內容如下
其實谷歌官方目前已經推出ListView下拉刷新框架SwipeRefreshLayout,想了解的朋友可以點擊 android使用SwipeRefreshLayout實現ListView下拉刷新上拉加載 了解一下;
大家不難發現當你使用SwipeRefreshLayout下拉的時候布局文件不會跟著手勢往下滑,而且想要更改這個缺陷好像非常不容易。
雖然SwipeRefreshLayout非常簡單易懂,但是需求需要下拉刷新的時候跟著手勢下滑就不能用SwipeRefreshLayout了;
上面圖片效果使用的是PullToRefresh框架,在我的工程里面沒有導入類庫和jar包,而是把下拉刷新功能直接抽取出來使用;
當下拉的時候回調監聽,在抽取完下拉刷新功能的基礎上實現上拉加載更多功能實現也非常簡單,所以順手寫上了;
我是從github上下載的Android-PullToRefresh-master框架,在library中抽取的;
首先需要復制的類大概有十個左右:
然后跟進報錯查看需要什么文件就復制什么文件;把錯誤搞定之后首先來看下布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <!-- 我們添加了一個屬性:ptr:ptrMode="both" ,意思:上拉和下拉都支持。 可選值為:disabled(禁用下拉刷新),pullFromStart(僅支持下拉刷新), pullFromEnd(僅支持上拉刷新),both(二者都支持),manualOnly(只允許手動觸發) --> <!-- ptr:ptrAnimationStyle="rotate" FlipLoadingLayout為iOS風格的箭頭顛倒的刷新動畫 ptr:ptrAnimationStyle="flip" RotateLoadingLayout為android風格的圖片旋轉動畫 --> <com.ptrflv.www.pulltorefreshlistview.PullToRefreshListView xmlns:ptr="http://schemas.android.com/apk/res-auto" android:id="@+id/pull_to_refresh_listview" android:layout_width="wrap_content" android:layout_height="wrap_content" ptr:ptrMode="both" ptr:ptrAnimationStyle="flip" /> </LinearLayout>
值得注意的是默認情況下下拉刷新的執行動畫中顯示的文本是英文,這里我們需要手動修改pull_refresh_strings.xml中的內容:
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- 上拉刷新 --> <!-- …代表三個點 ... --> <string name="pull_to_refresh_pull_label">向下拉刷新…</string> <string name="pull_to_refresh_release_label">松開更新…</string> <string name="pull_to_refresh_refreshing_label">正在加載…</string> <!-- 下拉加載更多 --> <string name="pull_to_refresh_from_bottom_pull_label">向下拉加載更多…</string> <string name="pull_to_refresh_from_bottom_release_label">松開加載更多…</string> <string name="pull_to_refresh_from_bottom_refreshing_label">正在加載…</string> </resources>
下面是調用下拉刷新和上下加載更多的代碼:
public class MainActivity extends Activity { private PullToRefreshListView pullToRefreshListView; //adapter的數據源 private List<String> numList=new ArrayList<String>(); private ArrayAdapter<String> arrayAdapter; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); pullToRefreshListView=(PullToRefreshListView) findViewById(R.id.pull_to_refresh_listview); //初始化數據 for(int x=0;x<18;x++){ numList.add(""+x); } arrayAdapter = new ArrayAdapter<String>(this, R.layout.item_listview,R.id.textview,numList); pullToRefreshListView.setAdapter(arrayAdapter); //設定刷新監聽 pullToRefreshListView.setOnRefreshListener(new OnRefreshListener<ListView>() { @Override public void onRefresh(PullToRefreshBase<ListView> refreshView) { String label = DateUtils.formatDateTime(getApplicationContext(), System.currentTimeMillis(), DateUtils.FORMAT_SHOW_TIME | DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_ABBREV_ALL); // 顯示最后更新的時間 refreshView.getLoadingLayoutProxy() .setLastUpdatedLabel(label); //代表下拉刷新 if(refreshView.getHeaderLayout().isShown()){ new Thread(){ public void run() { try { sleep(1000); handler.sendEmptyMessage(99); } catch (InterruptedException e) { e.printStackTrace(); } }; }.start(); } //代表下拉刷新 if(refreshView.getFooterLayout().isShown()){ new Thread(){ public void run() { try { sleep(1000); handler.sendEmptyMessage(98); } catch (InterruptedException e) { e.printStackTrace(); } }; }.start(); } } }); } private Handler handler=new Handler(){ public void handleMessage(android.os.Message msg) { if(msg.what==99){ numList.add(0, "英雄聯盟"); arrayAdapter.notifyDataSetChanged(); //關閉刷新的動畫 pullToRefreshListView.onRefreshComplete(); } if(msg.what==98){ numList.add(numList.size(), "魔獸世界"); arrayAdapter.notifyDataSetChanged(); //關閉刷新的動畫 pullToRefreshListView.onRefreshComplete(); } }; }; }
在判斷上拉刷新和下拉加載的時候
refreshView.getFooterLayout().isShown()
refreshView.getHeaderLayout().isShown()會報錯,因為PullToRefreshBase這兩個方法默認不是共有方法,我們需要手動該更為public
以上是“android如何使用PullToRefresh框架實現ListView下拉刷新上拉加載更多”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。