看看今天模仿的QQ空間的下拉更新個應用吧
首先看看布局
1.main.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <EditText
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:drawableLeft="@drawable/write"
- android:lines="1"
- android:padding="5px"
- android:singleLine="true"
- android:text="寫說說" />
-
- <TabHost
- android:id="@+id/tabhost"
- android:background="@drawable/bg"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <LinearLayout
- android:id="@+id/linearLayout1"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <TabWidget
- android:id="@android:id/tabs"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" >
- </TabWidget>
-
- <FrameLayout
- android:id="@android:id/tabcontent"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <LinearLayout
- android:id="@+id/tab1"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
-
- <com.wang.MyListView
- android:id="@+id/listView"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- />
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/tab2"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/tab3"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- </LinearLayout>
- </FrameLayout>
- </LinearLayout>
- </TabHost>
-
- </LinearLayout>
2.list的條目布局list_item.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal" >
-
- <ImageView
- android:id="@+id/imageView_item"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp"
- android:src="@drawable/icon" />
-
- <TextView
- android:id="@+id/textView_item"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:textColor="#FFFFFF"
- />
-
- </LinearLayout>
3. 刷新布局refresh.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" >
-
- <RelativeLayout
- android:id="@+id/head_contentLayout"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:paddingLeft="30dp" >
-
- <FrameLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true" >
-
- <ImageView
- android:id="@+id/head_arrowImageView"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:src="@drawable/down" />
-
- <ProgressBar
- android:id="@+id/head_progressBar"
- style="?android:attr/progressBarStyleSmall"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:visibility="gone" />
- </FrameLayout>
-
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:gravity="center_horizontal"
- android:orientation="vertical" >
-
- <TextView
- android:id="@+id/head_tipsTextView"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="下拉可以刷新"
- android:textSize="15dp" />
-
- <TextView
- android:id="@+id/head_lastUpdatedTextView"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="上次更新時間:"
- android:textSize="12dp" />
- </LinearLayout>
- </RelativeLayout>
-
- </LinearLayout>
4.看看主活動實現的過程PullrefreshDemoActivity.xml
- package com.wang;
-
- import java.util.LinkedList;
-
- import com.wang.MyListView.OnRefreshListener;
-
- import android.app.Activity;
- import android.content.res.Resources;
- import android.os.AsyncTask;
- import android.os.Bundle;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.ViewGroup;
- import android.view.Window;
- import android.view.WindowManager;
- import android.widget.BaseAdapter;
- import android.widget.TabHost;
- import android.widget.TextView;
-
- public class PullrefreshDemoActivity extends Activity {
- private LinkedList<String> data;
- private BaseAdapter adapter;
-
- public void onCreate(Bundle savedInstanceState) {
- // 去除標題欄
- requestWindowFeature(Window.FEATURE_NO_TITLE);
- // 設置全屏,取消狀態欄
- this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
- WindowManager.LayoutParams.FLAG_FULLSCREEN);
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
-
- TabHost tabhost=(TabHost)findViewById(R.id.tabhost);
- tabhost.setup();
- tabhost.addTab(tabhost.newTabSpec("tab1").setIndicator("好友動態").setContent(R.id.tab1));
-
- tabhost.addTab(tabhost.newTabSpec("tab2").setIndicator("我的動態").setContent(R.id.tab2));
- tabhost.addTab(tabhost.newTabSpec("tab3").setIndicator("我的應用").setContent(R.id.tab3));
-
- data = new LinkedList<String>();
- for (int i = 30; i < 40; i++) {
- // 輸出list——item上的數據
- data.add(String.valueOf("暑假第" + i + "天,我們一直很宅,想家ing ..."));
- }
-
- final MyListView listView = (MyListView) findViewById(R.id.listView);
- adapter = new BaseAdapter() {
-
- // 得到一個視圖,顯示在指定位置上的數據在數據集,可以創建一個視圖從XML布局文件
- public View getView(int position, View convertView, ViewGroup parent) {
- // 上下文全局應用程序對象
- convertView = LayoutInflater.from(getApplicationContext())
- .inflate(R.layout.list_item, null);
- // 實例化組件
- TextView textView = (TextView) convertView
- .findViewById(R.id.textView_item);
- // 設置文本本內容
- textView.setText(data.get(position));
- return convertView;
- }
-
- // 得到行相關聯id列表中指定的位置。
- public long getItemId(int position) {
- return position;
- }
-
- // 獲得相關的數據項中的指定位置的數據集
- public Object getItem(int position) {
- return data.get(position);
- }
-
- // 獲得項目在數據集適配器的個數。
- public int getCount() {
- return data.size();
- }
-
- };
-
- listView.setAdapter(adapter);
-
- listView.setonRefreshListener(new OnRefreshListener() {
- public void onRefresh() {
-
- new AsyncTask<Void, Void, Void>() {
- // ...b表示多個參數
- protected Void doInBackground(Void... params) {
- try {
- //
- Thread.sleep(1000);
- } catch (Exception e) {
- e.printStackTrace();
- }
-
- // 增加一條數據到list中
- data.addFirst("刷新後內容:每天都是新的一天!!!,親!要努力奮斗哦!!!");
-
- return null;
- }
-
- protected void onPostExecute(Void result) {
- adapter.notifyDataSetChanged();
- listView.onRefreshComplete();
- }
-
- }.execute(null);
- }
- });
- }
- }
5.接著是列表實現個過程MyListView.xml
- package com.wang;
-
- import java.text.SimpleDateFormat;
- import java.util.Date;
-
- import android.content.Context;
- import android.util.AttributeSet;
- import android.util.Log;
- import android.view.LayoutInflater;
- import android.view.MotionEvent;
- import android.view.View;
- import android.view.ViewGroup;
- import android.view.animation.LinearInterpolator;
- import android.view.animation.RotateAnimation;
- import android.widget.AbsListView;
- import android.widget.BaseAdapter;
- import android.widget.ImageView;
- import android.widget.LinearLayout;
- import android.widget.ListView;
- import android.widget.AbsListView.OnScrollListener;
- import android.widget.ProgressBar;
- import android.widget.TextView;
-
- public class MyListView extends ListView implements OnScrollListener {
-
- private static final String TAG = "listview";
-
- private final static int RELEASE_To_REFRESH = 0;
- private final static int PULL_To_REFRESH = 1;
- private final static int REFRESHING = 2;
- private final static int DONE = 3;
- private final static int LOADING = 4;
-
- // 實際的padding的距離與界面上偏移距離的比例
- private final static int RATIO = 3;
-
- private LayoutInflater inflater;
-
- private LinearLayout headView;
-
- private TextView tipsTextview;
- private TextView lastUpdatedTextView;
- private ImageView arrowImageView;
- private ProgressBar progressBar;
-
- private RotateAnimation animation;
- private RotateAnimation reverseAnimation;
-
- // 用於保證startY的值在一個完整的touch事件中只被記錄一次
- private boolean isRecored;
-
- private int headContentWidth;
- private int headContentHeight;
-
- private int startY;
- private int firstItemIndex;
-
- private int state;
-
- private boolean isBack;
-
- private OnRefreshListener refreshListener;
-
- private boolean isRefreshable;
-
- public MyListView(Context context) {
- super(context);
- // 調用下面初始化的函數
- init(context);
- }
-
- public MyListView(Context context, AttributeSet attrs) {
- super(context, attrs);
- // 調用下面初始化的函數
- init(context);
- }
-
- private void init(Context context) {
-
- // 獲得LayoutInflater從給定的上下文。
- inflater = LayoutInflater.from(context);
-
- // 實例化布局XML文件轉換成相應的視圖對象。
- headView = (LinearLayout) inflater.inflate(R.layout.refresh, null);
-
- arrowImageView = (ImageView) headView
- .findViewById(R.id.head_arrowImageView);
- // 設置最小寬度 和高度
- arrowImageView.setMinimumWidth(70);
- arrowImageView.setMinimumHeight(50);
- // 實例化布局XML文件轉換成相應的視圖對象。
- progressBar = (ProgressBar) headView
- .findViewById(R.id.head_progressBar);
- tipsTextview = (TextView) headView.findViewById(R.id.head_tipsTextView);
- lastUpdatedTextView = (TextView) headView
- .findViewById(R.id.head_lastUpdatedTextView);
-
- // 調用下拉刷新的方法
- measureView(headView);
- // d得到原始高度和寬度
- headContentHeight = headView.getMeasuredHeight();
- headContentWidth = headView.getMeasuredWidth();
-
- // 設置填充。視圖可能添加的空間要求顯示滾動條,這取決於風格和知名度的滾動條
- headView.setPadding(0, -1 * headContentHeight, 0, 0);
- headView.invalidate();
-
- // 標簽用來識別一個日志消息的來源。標識類或活動日志調用發生
- Log.v("size", "width:" + headContentWidth + " height:"
- + headContentHeight);
-
- // 添加一個固定視圖出現在列表的頂部
- addHeaderView(headView, null, false);
- // 設置監聽事件
- setOnScrollListener(this);
-
- // 動畫效果實現下拉和松開時候圖片的 180度 旋轉 注意0, -180,和他是有區別的 -180, 0,
- animation = new RotateAnimation(0, -180,
- RotateAnimation.RELATIVE_TO_SELF, 0.5f,
- RotateAnimation.RELATIVE_TO_SELF, 0.5f);
- // 設置加速度曲線為這個動畫。默認值為一個線性插值。
- animation.setInterpolator(new LinearInterpolator());
- animation.setDuration(300);
- // 如果fillAfter是真的,轉換,該動畫執行完成時將會持續下去
- animation.setFillAfter(true);
-
- reverseAnimation = new RotateAnimation(-180, 0,
- RotateAnimation.RELATIVE_TO_SELF, 0.5f,
- RotateAnimation.RELATIVE_TO_SELF, 0.5f);
- // 設置加速度曲線為這個動畫。默認值為一個線性插值。
- reverseAnimation.setInterpolator(new LinearInterpolator());
- reverseAnimation.setDuration(300);
- // 如果fillAfter是真的,轉換,該動畫執行完成時將會持續下去
- reverseAnimation.setFillAfter(true);
-
- // 設置狀態
- state = DONE;
- // 設置不可刷新狀態
- isRefreshable = false;
- }
-
- // 回調方法時要調用的列表或網格已經滾動。這將完成之後調用的滾動方法
- public void onScroll(AbsListView arg0, int firstVisiableItem, int arg2,
- int arg3) {
- firstItemIndex = firstVisiableItem;
- }
-
- /*
- * 回調方法調用而列表視圖或網格視圖被滾動。 如果這個視圖被滾動,將調用此方法在接下來的一局畫卷的呈現 *
- */
- public void onScrollStateChanged(AbsListView arg0, int arg1) {
- }
-
- // 觸摸事件監聽
- public boolean onTouchEvent(MotionEvent event) {
-
- // 判斷是否可以刷新
- if (isRefreshable) {
- // 根據動作相應不同的方法
- switch (event.getAction()) {
-
- // 當按住屏幕向下拉屏幕的時候
- case MotionEvent.ACTION_DOWN:
- if (firstItemIndex == 0 && !isRecored) {
- isRecored = true;
- startY = (int) event.getY();
- Log.v(TAG, "在下拉的時候記錄當前位置‘");
- }
- break;
-
- // 當按住屏幕向上松屏幕的時候
- case MotionEvent.ACTION_UP:
-
- if (state != REFRESHING && state != LOADING) {
- if (state == DONE) {
-
- }
- if (state == PULL_To_REFRESH) {
- state = DONE;
- changeHeaderViewByState();
-
- Log.v(TAG, "由下拉刷新狀態,到done狀態");
- }
- if (state == RELEASE_To_REFRESH) {
- state = REFRESHING;
- changeHeaderViewByState();
- onRefresh();
-
- Log.v(TAG, "由松開刷新狀態,到done狀態");
- }
- }
-
- isRecored = false;
- isBack = false;
-
- break;
-
- // 當按住屏幕移動時候
- case MotionEvent.ACTION_MOVE:
- int tempY = (int) event.getY();
-
- if (!isRecored && firstItemIndex == 0) {
- Log.v(TAG, "在move時候記錄下位置");
- isRecored = true;
- startY = tempY;
- }
-
- if (state != REFRESHING && isRecored && state != LOADING) {
-
- /***
- * , 當前的位置一直是在head,否則如果當列表超出屏幕的話, 當在上推的時候,列表會同時進行滾動
- */
- // 可以松手去刷新了
- if (state == RELEASE_To_REFRESH) {
-
- setSelection(0);
-
- // 往上推了,推到了屏幕足夠掩蓋head的程度,但是還沒有推到全部掩蓋的地步
- if (((tempY - startY) / RATIO < headContentHeight)
- && (tempY - startY) > 0) {
- state = PULL_To_REFRESH;
- changeHeaderViewByState();
-
- Log.v(TAG, "由松開刷新狀態轉變到下拉刷新狀態");
- }
- // 一下子推到頂了
- else if (tempY - startY <= 0) {
- state = DONE;
- // 調用改變時候的方法,更新UI
- changeHeaderViewByState();
-
- Log.v(TAG, "由松開刷新狀態轉變到done狀態");
- } else {
- }
- }
- // 還沒有到達顯示松開刷新的時候
- if (state == PULL_To_REFRESH) {
-
- setSelection(0);
-
- // 下拉到可以進入RELEASE_TO_REFRESH的狀態
- if ((tempY - startY) / RATIO >= headContentHeight) {
- state = RELEASE_To_REFRESH;
- isBack = true;
- // 調用改變時候的方法,更新UI
- changeHeaderViewByState();
-
- Log.v(TAG, "由done或者下拉刷新狀態轉變到松開刷新");
- }
- // 上推到頂了
- else if (tempY - startY <= 0) {
- state = DONE;
- // 調用改變時候的方法,更新UI
- changeHeaderViewByState();
-
- Log.v(TAG, "由DOne或者下拉刷新狀態轉變到done狀態");
- }
- }
-
- // done狀態下
- if (state == DONE) {
- if (tempY - startY > 0) {
- state = PULL_To_REFRESH;
- // 調用改變時候的方法,更新UI
- changeHeaderViewByState();
- }
- }
-
- // 更新headView的size
- if (state == PULL_To_REFRESH) {
- headView.setPadding(0, -1 * headContentHeight
- + (tempY - startY) / RATIO, 0, 0);
-
- }
-
- // 更新headView的paddingTop
- if (state == RELEASE_To_REFRESH) {
- headView.setPadding(0, (tempY - startY) / RATIO
- - headContentHeight, 0, 0);
- }
-
- }
-
- break;
- }
- }
-
- return super.onTouchEvent(event);
- }
-
- // 當狀態改變時候,調用該方法,以更新界面
- private void changeHeaderViewByState() {
- // 根據當前的狀態進行判斷
- switch (state) {
-
- // 下拉時候,松開既可刷新
- case RELEASE_To_REFRESH:
- // 設置視圖 VISIBLE 可見 ,GONE 不可見
- arrowImageView.setVisibility(View.VISIBLE);
- progressBar.setVisibility(View.GONE);
- tipsTextview.setVisibility(View.VISIBLE);
- lastUpdatedTextView.setVisibility(View.VISIBLE);
-
- // 現在開始指定的動畫。
- arrowImageView.clearAnimation();
- arrowImageView.startAnimation(animation);
-
- tipsTextview.setText("松開既可刷新");
-
- Log.v(TAG, "當前狀態,松開即可刷新");
- break;
-
- // 開始時候,下拉刷新
- case PULL_To_REFRESH:
- // 設置視圖 VISIBLE 可見 ,GONE 不可見
- progressBar.setVisibility(View.GONE);
- tipsTextview.setVisibility(View.VISIBLE);
- lastUpdatedTextView.setVisibility(View.VISIBLE);
- // 現在開始指定的動畫。
- arrowImageView.clearAnimation();
- arrowImageView.setVisibility(View.VISIBLE);
-
- if (isBack) {
- isBack = false;
- // 現在開始指定的動畫。
- arrowImageView.clearAnimation();
- arrowImageView.startAnimation(reverseAnimation);
-
- tipsTextview.setText("下拉刷新");
- } else {
- tipsTextview.setText("下拉刷新");
- }
- Log.v(TAG, "當前狀態,下拉刷新");
- break;
-
- case REFRESHING:
-
- headView.setPadding(0, 0, 0, 0);
- // 設置視圖 VISIBLE 可見 ,GONE 不可見
- progressBar.setVisibility(View.VISIBLE);
- // 現在開始指定的動畫。
- arrowImageView.clearAnimation();
- arrowImageView.setVisibility(View.GONE);
- tipsTextview.setText("正在刷新...");
- lastUpdatedTextView.setVisibility(View.VISIBLE);
-
- Log.v(TAG, "當前狀態,正在刷新...");
- break;
- case DONE:
- // 設置填充。視圖可能添加的空間要求顯示滾動條
- headView.setPadding(0, -1 * headContentHeight, 0, 0);
- // 設置視圖 VISIBLE 可見 ,GONE 不可見
- progressBar.setVisibility(View.GONE);
- // 現在開始指定的動畫。
- arrowImageView.clearAnimation();
- arrowImageView.setImageResource(R.drawable.down);
- tipsTextview.setText("下拉刷新");
- lastUpdatedTextView.setVisibility(View.VISIBLE);
-
- Log.v(TAG, "當前狀態");
- break;
- }
- }
-
- public void setonRefreshListener(OnRefreshListener refreshListener) {
- this.refreshListener = refreshListener;
- isRefreshable = true;
- }
-
- public interface OnRefreshListener {
- public void onRefresh();
- }
-
- // 設置更新時間
- public void onRefreshComplete() {
- state = DONE;
- //
- SimpleDateFormat format = new SimpleDateFormat("yyyy年MM月dd日 HH:mm");
- String date = format.format(new Date());
- lastUpdatedTextView.setText("最近更新:" + date);
- changeHeaderViewByState();
- }
-
- private void onRefresh() {
- if (refreshListener != null) {
- refreshListener.onRefresh();
- }
- }
-
- // 下拉刷新的
- private void measureView(View child) {
- // v這組布局參數寬度和高度
- ViewGroup.LayoutParams p = child.getLayoutParams();
- if (p == null) {
- // 創建一個新組布局參數指定的寬度(填充)和高度(包裹)。
- p = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,
- ViewGroup.LayoutParams.WRAP_CONTENT);
- }
-
- // d得到childWidthSpec(高度或寬度)的子視圖
- int childWidthSpec = ViewGroup.getChildMeasureSpec(0, 0 + 0, p.width);
- int lpHeight = p.height;
- int childHeightSpec;
- if (lpHeight > 0) {
- // 創建一個測量規范基於所提供的大小和模式
- childHeightSpec = MeasureSpec.makeMeasureSpec(lpHeight,
- MeasureSpec.EXACTLY);
- } else {
- childHeightSpec = MeasureSpec.makeMeasureSpec(0,
- MeasureSpec.UNSPECIFIED);
- }
- // 找出一個視圖應該多大。父供應約束信息在寬度和高度參數
- child.measure(childWidthSpec, childHeightSpec);
- }
-
- public void setAdapter(BaseAdapter adapter) {
- // 設置最近刷新的時間
- SimpleDateFormat format = new SimpleDateFormat("yyyy年MM月dd日 HH:mm");
- String date = format.format(new Date());
- lastUpdatedTextView.setText("最近更新:" + date);
- super.setAdapter(adapter);
- }
-
- }
6.接著就可以看到運行結果了,運行結果如下: