Android pulltorefresh使用

来源:http://www.cnblogs.com/hyyweb/archive/2016/02/26/5220834.html
-Advertisement-
Play Games

pulltorefresh插件可以輕鬆實現上拉下拉刷新,github.com上直接搜索進行下載。 佈局文件: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ptr="http://sc


pulltorefresh插件可以輕鬆實現上拉下拉刷新,github.com上直接搜索進行下載。

佈局文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ptr="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >


    <com.handmark.pulltorefresh.library.PullToRefreshListView
    android:id="@+id/pull_to_refresh_listview"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    ptr:ptrDrawable="@drawable/default_ptr_flip"
    ptr:ptrAnimationStyle="flip"
    ptr:ptrHeaderBackground="@android:color/transparent"
    ptr:ptrHeaderTextColor="#919191"
     />
</RelativeLayout>

核心代碼如下,這裡用到了Android當中不少的知識點,其中主要的是非同步任務處理、自定義適配器。

package com.example.pulltorefresh;

import java.util.ArrayList;

import com.handmark.pulltorefresh.library.ILoadingLayout;
import com.handmark.pulltorefresh.library.PullToRefreshBase;
import com.handmark.pulltorefresh.library.PullToRefreshListView;

import android.os.AsyncTask;
import android.os.Bundle;
import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;

public class MainActivity extends Activity {

    private PullToRefreshListView pullToRefreshView;
    private ArrayList<Music> musics=new ArrayList<Music>();
    private DataAdapter dataAdapter;
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        pullToRefreshView = (PullToRefreshListView) findViewById(R.id.pull_to_refresh_listview);
        pullToRefreshView.setOnRefreshListener(new PullToRefreshBase.OnRefreshListener2() {

            @Override
            public void onPullDownToRefresh(PullToRefreshBase refreshView) {
                // TODO 自動生成的方法存根
                new DataAsyncTask(MainActivity.this).execute();
            }

            @Override
            public void onPullUpToRefresh(PullToRefreshBase refreshView) {
                // TODO 自動生成的方法存根
                new DataAsyncTask(MainActivity.this).execute();
            }
        });
        pullToRefreshView.setMode(PullToRefreshBase.Mode.BOTH);
        ILoadingLayout startLabels = pullToRefreshView    
                .getLoadingLayoutProxy(true, false);    
        startLabels.setPullLabel("下拉刷新...");// 剛下拉時,顯示的提示    
        startLabels.setRefreshingLabel("正在載入...");// 刷新時    
        startLabels.setReleaseLabel("放開刷新...");// 下來達到一定距離時,顯示的提示    
    
        ILoadingLayout endLabels = pullToRefreshView.getLoadingLayoutProxy(    
                false, true);    
        endLabels.setPullLabel("上拉刷新...");// 剛下拉時,顯示的提示    
        endLabels.setRefreshingLabel("正在載入...");// 刷新時    
        endLabels.setReleaseLabel("放開刷新...");// 下來達到一定距離時,顯示的提示    
        loadData();
        dataAdapter=new DataAdapter(this, musics);
        pullToRefreshView.setAdapter(dataAdapter);
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
    
    private int count;
    private void loadData(){
        for(int i=0;i<10;i++){
            musics.add(new Music("歌曲-"+count,"歌手-"+count));
            count++;
        }
    }
    static class DataAsyncTask extends AsyncTask<Void, Void, String>{
        private MainActivity mainActivity;
        public DataAsyncTask(MainActivity mainActivity){
            this.mainActivity=mainActivity;
        }

        @Override
        protected String doInBackground(Void... arg0) {
            try {
                Thread.sleep(2000);
            } catch (InterruptedException e) {
                // TODO 自動生成的 catch 塊
                e.printStackTrace();
            }
            mainActivity.loadData();
            return "success";
        }
        
        @Override
        protected void onPostExecute(String result) {
            // TODO 自動生成的方法存根
            super.onPostExecute(result);
            if("success".equals(result)){
                mainActivity.dataAdapter.notifyDataSetChanged();
                mainActivity.pullToRefreshView.onRefreshComplete();
                
            }
        }
    }
    
    static class DataAdapter extends BaseAdapter{

        private Context ctx;
        private ArrayList<Music> musics;
        public DataAdapter(Context ctx,ArrayList<Music> musics){
            this.ctx=ctx;
            this.musics=musics;
        }
        @Override
        public int getCount() {
            // TODO 自動生成的方法存根
            return musics.size();
        }

        @Override
        public Object getItem(int arg0) {
            // TODO 自動生成的方法存根
            return musics.get(arg0);
        }

        @Override
        public long getItemId(int arg0) {
            // TODO 自動生成的方法存根
            return arg0;
        }

        //ViewHolder就是一個持有者的類,他裡面一般沒有方法,只有屬性,作用就是一個臨時的儲存器,
        //把你getView方法中每次返回的View存起來,可以下次再用。這樣做的好處就是不必每次都到佈局文件中去拿到你的View,提高了效率
        @Override
        public View getView(int arg0, View arg1, ViewGroup arg2) {
            ViewHolder vh;
            if(arg1==null){
                arg1=LayoutInflater.from(ctx).inflate(R.layout.listitem,null);
                vh=new ViewHolder();
                vh.tv_title=(TextView) arg1.findViewById(R.id.gequ);
                vh.tv_singer=(TextView) arg1.findViewById(R.id.geshou);
                arg1.setTag(vh);
            }
            vh=(ViewHolder) arg1.getTag();
            Music m=musics.get(arg0);
            vh.tv_title.setText(m.getTitle());
            vh.tv_singer.setText(m.getSinger());
            return arg1;
        }
        
        static class ViewHolder{
            TextView tv_title;
            TextView tv_singer;
        }
    }
}

附帶核心代碼中用到的Music類,自定義適配器用到的自定義佈局很簡單,就兩個TextView,這裡略。

package com.example.pulltorefresh;

public class Music {
    private String title;
    private String singer;
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public String getSinger() {
        return singer;
    }
    public void setSinger(String singer) {
        this.singer = singer;
    }
    public Music(String title, String singer) {
        this.title = title;
        this.singer = singer;
    }
    public Music() {
    }
    
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • ReactNative高級交流群 127482131 或訪問 http://blog.1ygowu.com ReactNative技術專題
  • 1、自定義ViewGroup 1 /** 2 * Created by Administrator on 2016/2/26. 3 * 4 * --------自動換行的ViewGroup----------- 5 */ 6 public class LineWrapLayout extends V
  • 單例模式 單例模式幾乎是設計模式中最簡單的形式了。在使用單例時,單例對象的類必須保證只有一個勢力存在。許多時候整個系統只需要擁有一個全局對象。保證一個類僅有一個實例,並提供一個訪問它的全局訪問點。經常用於設計約束或者為了控制對有限資源的訪問。 單例模式的實現思路:一個類只能創建一個實例(永遠是同一個
  • 開源中國android端版本號:2.4 啟動界面: 在AndroidManifest.xml中找到程式的入口, 屏幕方向設置為豎屏,主題為AppStartLoad,關於它的定義如下: welcome.png就是啟動頁顯示的圖片,填充了整個屏幕。 AppS...
  • 1 在ViewPager的適配器中的getCount()長度設置無限大Integer.MAX_VALUE 2 明白當前currentIten 為position % images.length; 3 設置一開始ViewPager的位置 viewPager.setCurrentItem((images
  • 學習筆記 compileDebugJavaWithJavac,缺少插件,在module app gradle文件最上面添加一段 apply plugin: 'me.tatarka.retrolambda'(插件根據需要添加,此處為支持lambda表達式的插件)添加好以後還得在priject app
  • Print Description of "string":把 string 的信息輸出到控制台。Copy:複製 string 的信息,包含變數名,類名和值。View Value As:以什麼類型的格式來查看變數,預設情況下會自動推斷類型。Edit Value:可以直接修改變數的值。在 Swift中
  • 前情提要:我的測試機是華為榮耀6,我裝過一個16G的記憶體卡 因為要面試的需要,我的一個演示項目用的是android本地的WebService。然而寫好的webService部署到本地上,應用怎麼獲取數據都報錯了,只有幾個返回的僅僅是字元串的沒有問題。查看了代碼,正常的部分都是直接返回字元串的。不正常
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...