代碼實現Android5.0的下拉重新整理效果

來源:互聯網
上載者:User

標籤:

,實作類別似與gmail的下拉重新整理。

項目地址:https://github.com/stormzhang/SwipeRefreshLayoutDemo

 

一、在xml檔案中定義

這個控制項在supportV4就提供了,叫做SwipeRefreshLayout。這個view其實就是一個父控制項,我們可以如下定義。

<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:id="@+id/swipe_container"    android:layout_width="match_parent"    android:layout_height="match_parent" >    <ListView        android:id="@+id/listview"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:padding="16dp" /></android.support.v4.widget.SwipeRefreshLayout>

有沒有感覺它和listview一毛錢關係都沒有!就是這麼方便,比之前的listview下拉重新整理要簡單多了。使用者只要在這個控制項的範圍裡下拉,就會自動出現下拉的圓形小球。在實際使用中,我們還是需要在java代碼中進行簡單處理的。

 

二、通過java代碼進行設定

     mSwipeLayout = (SwipeRefreshLayout) findViewById(R.id.swipe_container);        mSwipeLayout.setOnRefreshListener(this);        // 設定下拉圓圈上的顏色,藍色、綠色、橙色、紅色        mSwipeLayout.setColorSchemeResources(android.R.color.holo_blue_bright, android.R.color.holo_green_light,                android.R.color.holo_orange_light, android.R.color.holo_red_light);        mSwipeLayout.setDistanceToTriggerSync(400);// 設定手指在螢幕下拉多少距離會觸發下拉重新整理        mSwipeLayout.setProgressBackgroundColor(R.color.red); // 設定下拉圓圈的背景        mSwipeLayout.setSize(SwipeRefreshLayout.LARGE); // 設定圓圈的大小

設定了背景和圓圈的大小後就變成了下面的樣子:

  

更多的設定方式可以去官網參考文檔:https://developer.android.com/reference/android/support/v4/widget/SwipeRefreshLayout.html

設定監聽器:

public class MainActivity extends Activity implements SwipeRefreshLayout.OnRefreshListener {//……}
/*      * 監聽器SwipeRefreshLayout.OnRefreshListener中的方法,當下拉重新整理後觸發     */    public void onRefresh() {        new Handler().postDelayed(new Runnable() {            @Override            public void run() {                // 停止重新整理                mSwipeLayout.setRefreshing(false);            }        }, 5000); // 5秒後發送訊息,停止重新整理    }

 

全部代碼:

/* * Created by Storm Zhang, Mar 31, 2014. */package com.storm.swiperefreshlayout;import java.util.ArrayList;import android.app.Activity;import android.os.Bundle;import android.os.Handler;import android.support.v4.widget.SwipeRefreshLayout;import android.widget.ArrayAdapter;import android.widget.ListView;/** * @author: * @description  :stormzhang * @web: http://stormzhang.com/android/2014/10/27/android-swiperefreshlayout/ * @date  :2015年1月19日 */public class MainActivity extends Activity implements SwipeRefreshLayout.OnRefreshListener {    private SwipeRefreshLayout mSwipeLayout;    private ListView mListView;    private ArrayList<String> list = new ArrayList<String>();    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        mListView = (ListView) findViewById(R.id.listview);        mListView.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, getData()));        mSwipeLayout = (SwipeRefreshLayout) findViewById(R.id.swipe_container);        mSwipeLayout.setOnRefreshListener(this);        // 設定下拉圓圈上的顏色,藍色、綠色、橙色、紅色        mSwipeLayout.setColorSchemeResources(android.R.color.holo_blue_bright, android.R.color.holo_green_light,                android.R.color.holo_orange_light, android.R.color.holo_red_light);        mSwipeLayout.setDistanceToTriggerSync(400);// 設定手指在螢幕下拉多少距離會觸發下拉重新整理        mSwipeLayout.setProgressBackgroundColor(R.color.red);        mSwipeLayout.setSize(SwipeRefreshLayout.LARGE);    }    private ArrayList<String> getData() {        list.add("Hello");        list.add("This is stormzhang");        list.add("An Android Developer");        list.add("Love Open Source");        list.add("My GitHub: stormzhang");        list.add("weibo: googdev");        return list;    }    /*      * 監聽器SwipeRefreshLayout.OnRefreshListener中的方法,當下拉重新整理後觸發     */    public void onRefresh() {        new Handler().postDelayed(new Runnable() {            @Override            public void run() {                // 停止重新整理                mSwipeLayout.setRefreshing(false);            }        }, 5000); // 5秒後發送訊息,停止重新整理    }}

 

源碼下載:http://download.csdn.net/detail/shark0017/8375685

 

參考的項目:https://github.com/stormzhang/SwipeRefreshLayoutDemo

參考博文:http://stormzhang.com/android/2014/10/27/android-swiperefreshlayout/

 

代碼實現Android5.0的下拉重新整理效果

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.