Android自訂下拉重新整理控制項RefreshableView_Android

來源:互聯網
上載者:User

這是在瞭解下拉重新整理功能原理下的產物,下拉重新整理可以說是國產APP裡面必有的功能,連Google都為此出了SwipeRefreshLayout,一種MD風格的下拉重新整理。
不過,MD風格在國內似乎很是艱難,不單單是國內系統主流仍是4.4的原因,也有使用者習慣的問題,扯的有點多了,在看了許多部落格之後,我突然想寫一個能仿照 SwipeRefreshLayout 的相容所有控制項的下拉重新整理,不單單只是 ListView,希望它也可以包容普通的View和ScrollView,經過兩天的奮鬥,終於搞定了,因為我的目的只是想要下拉重新整理,所以功能很少,不過,如果能把下拉重新整理搞定了,其它的功能,就可以慢慢堆砌起來了。

新系統的原因,無法給出合適的gif,只能截圖了:

第一張圖片展示的是TextView:

第二章圖片展示的是ListView:

第三章圖片展示的是ScrollView:

基本上這就是我測試的成功的控制項,相容普通的View是最簡單的,複雜一點的就是ListView和ScrollView。

思路:我的思路和大部分部落格都是一樣的,自訂一個ViewGroup,然後將包含的要拖拽的控制項的Touch事件交給 RefreshableView 處理,動態改變 headView 的 marginTop 的值,以上。當然,這其中會有一些細節要注意,比如 onTouch 方法的傳回值的處理,還有子 View 的 MarginTop 值的處理。

源碼

先是headView的布局檔案:

<?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" android:orientation="horizontal"> <ImageView android:id="@+id/imageView_down" android:layout_width="14dp" android:layout_height="24dp" android:padding="2dp" android:src="@drawable/svg_down" /> <ProgressBar android:visibility="gone" android:id="@+id/progressBar" style="?android:attr/progressBarStyle" android:layout_width="20dp" android:layout_height="20dp" android:progressDrawable="@drawable/progressBar" /> <TextView android:padding="15dp" android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/pull_to_refresh" android:textSize="16sp" /></LinearLayout>

接下來就是至關重要的類 RefreshableView:

package com.pull2refresh;import android.animation.ObjectAnimator;import android.animation.ValueAnimator;import android.annotation.TargetApi;import android.content.Context;import android.os.Build;import android.util.AttributeSet;import android.util.Log;import android.view.LayoutInflater;import android.view.MotionEvent;import android.view.View;import android.view.ViewConfiguration;import android.view.ViewGroup;import android.view.animation.RotateAnimation;import android.widget.ImageView;import android.widget.LinearLayout;import android.widget.ProgressBar;import android.widget.TextView;import shike.xianrou.com.pull2refresh.R;/** * Created by cjh on 16-9-6. */public class RefreshableView extends LinearLayout implements View.OnTouchListener { private static final String TAG = "RefreshableView"; private static final int REFRESHING = 0;//正在重新整理 private static final int ORIGINAL = REFRESHING + 1;//初始狀態 private static final int RELEASE_TO_REFRESHING = ORIGINAL + 1;//釋放即將重新整理的狀態 private int current_status = ORIGINAL;//當前最新狀態 private LinearLayout headView;//重新整理layout private TextView textView;//重新整理layout中的文字提示 private ImageView imageView;//重新整理layout中的箭頭 private ProgressBar progressBar;//重新整理layout中的進度條 private View view;//手指控制的下拉的View private int hideHeight;//重新整理layout要隱藏的高度 private boolean isablePull;//是否可以下拉,例如當 current_status = REFRESHIING 時是不可以下拉拖拽的 private float yDown;//手指按下的座標 private int touchSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();//界限值,防止手指誤觸,過於靈敏 private boolean firstLayout = true;//第一次調用onLayout的時候置為false private int maxMarginTop;//重新整理Layout能拉下的最大距離 private MarginLayoutParams marginLayoutParams;//重新整理layout的MarginLayoutParams private String pull_to_refresh = "下拉可以重新整理"; private String release_to_refresh = "釋放立即重新整理"; private String refreshing = "正在重新整理…"; private int original_margin = 0;//針對下拉的View存在MarginTop這中特殊值的處理 public interface PullToRefreshListener { void onRefresh(); } private PullToRefreshListener pullToRefreshListener; public void addPullToRefreshListener(PullToRefreshListener pullToRefreshListener) { this.pullToRefreshListener = pullToRefreshListener; } public RefreshableView(Context context) { super(context); init(); } public RefreshableView(Context context, AttributeSet attrs) { super(context, attrs); init(); } public RefreshableView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); init(); } @TargetApi(Build.VERSION_CODES.LOLLIPOP) public RefreshableView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { super(context, attrs, defStyleAttr, defStyleRes); init(); } private void init() { headView = (LinearLayout) LayoutInflater.from(getContext()).inflate(R.layout.refresh_layout, null, true); imageView = (ImageView) headView.findViewById(R.id.imageView_down); progressBar = (ProgressBar) headView.findViewById(R.id.progressBar); textView = (TextView) headView.findViewById(R.id.textView); progressBar.setVisibility(View.GONE); setOrientation(VERTICAL); addView(headView, 0); } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { super.onLayout(changed, l, t, r, b); Log.d(TAG, "onlayout"); if (changed && firstLayout) {  //將View的Touch時間的處理交給RefreshableView去處理  view = getChildAt(1);  view.setOnTouchListener(this);  //重新整理layout的 marginTop 的最大值設為重新整理頭的高度  maxMarginTop = headView.getHeight();  //要將控制項完全隱藏起來,那麼隱藏的高度就設定為控制項的高度  hideHeight = -headView.getHeight();  marginLayoutParams = (MarginLayoutParams) headView.getLayoutParams();  marginLayoutParams.topMargin = hideHeight;  headView.setLayoutParams(marginLayoutParams);  //這裡必須將firstLayout設定為false,否則在處理Touch是件的過程中,headView在怎麼調用setLayoutParams都會被置為初始的隱藏狀態  firstLayout = false;  //如果子View是一個ViewGroup 那麼就需要計算出子View的MarginTop的值,因為如果MarginTop不為0,那麼子View的Y軸座標和父View的座標是不一樣的  if (view instanceof ViewGroup) {  int[] childLocations = new int[2];  int[] viewLocations = new int[2];  view.getLocationOnScreen(viewLocations);  ((ViewGroup) view).getChildAt(0).getLocationOnScreen(childLocations);  original_margin = childLocations[1] - viewLocations[1];  Log.d(TAG, "onLayout viewLocations[1] " + viewLocations[1]);  Log.d(TAG, "onLayout locations[1] " + childLocations[1]);  Log.d(TAG, "onLayout original_margin " + original_margin);  } } } @Override public boolean onTouch(View view, MotionEvent motionEvent) { if (pullToRefreshListener != null) {  isAblePull();  if (isablePull) {  switch (motionEvent.getAction()) {   case MotionEvent.ACTION_DOWN:   yDown = motionEvent.getRawY();   break;   case MotionEvent.ACTION_MOVE:   float yMove = motionEvent.getRawY();   float distance = yMove - yDown;   //如果手勢是向上的,並且手勢在Y軸的移動距離小於界限值,那麼就不處理   if (distance < 0 || Math.abs(distance) < touchSlop)    return false;   //MarginTop的距離是手勢距離的1/2,形成費力延遲的效果   marginLayoutParams.topMargin = (int) (distance / 2 + hideHeight);   Log.d(TAG, "topMargin " + marginLayoutParams.topMargin);   //如果大於最大的MarginTop的值的時候,就將值置為 maxMarginTop   if (marginLayoutParams.topMargin >= maxMarginTop)    marginLayoutParams.topMargin = maxMarginTop;   if (marginLayoutParams.topMargin >= 0) {    //當重新整理頭完全顯示的時候,改變狀態,置為 釋放重新整理的狀態    if (current_status != RELEASE_TO_REFRESHING) {    rotate(0, 180);    textView.setText(release_to_refresh);    }    current_status = RELEASE_TO_REFRESHING;   } else {    //否則就置為初始狀態    if (current_status != ORIGINAL) {    rotate(180, 360);    textView.setText(pull_to_refresh);    }    current_status = ORIGINAL;   }   headView.setLayoutParams(marginLayoutParams);   break;   case MotionEvent.ACTION_CANCEL:   case MotionEvent.ACTION_UP:   float yUp = motionEvent.getRawY();   float dis = yUp - yDown;   if (dis > 0 && Math.abs(dis) > touchSlop)    switch (current_status) {    //釋放重新整理    case RELEASE_TO_REFRESHING:     animateMarginTop(marginLayoutParams.topMargin, 0);     imageView.clearAnimation();     imageView.setVisibility(View.GONE);     progressBar.setVisibility(View.VISIBLE);     textView.setText(refreshing);     pullToRefreshListener.onRefresh();     break;    //初始化    case ORIGINAL:     reset();     //從當前的MarginTop的值,轉變到隱藏所需的 MarginTop     animateMarginTop(marginLayoutParams.topMargin, hideHeight);     break;    }   else    return false;   break;  }  return true;  } } return false; } /** * 判斷是否可以下拉 * * @return */ public boolean isAblePull() { //統一判斷,其實主要是對於view是普通View的判斷 if (current_status != REFRESHING)  isablePull = true; else  isablePull = false; if (view instanceof ViewGroup) {  isablePull = false;  View childView = ((ViewGroup) view).getChildAt(0);  int[] viewLocations = new int[2];  int[] childViewLocations = new int[2];  view.getLocationOnScreen(viewLocations);  childView.getLocationOnScreen(childViewLocations);  //這一步中的 original_margin 至關重要,就是用來相容 子View 有MarginTop屬性的值,當childView 的Y軸座標 和 計算出了 Margin 值後的父View座標相等時,說明此時處於可下拉的狀態  if (viewLocations[1] + original_margin == childViewLocations[1])  isablePull = true;  else  isablePull = false; } return isablePull; } private void rotate(int from, int to) { RotateAnimation rotateAnimation = new RotateAnimation(from, to, imageView.getWidth() / 2, imageView.getHeight() / 2); rotateAnimation.setDuration(100); rotateAnimation.setFillAfter(true); imageView.startAnimation(rotateAnimation); } private void animateMarginTop(int from, int to) { ObjectAnimator objectAnimator = ObjectAnimator.ofInt(headView, "cjh", from, to); objectAnimator.setDuration(300); objectAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {  @Override  public void onAnimationUpdate(ValueAnimator valueAnimator) {  int margin = (int) valueAnimator.getAnimatedValue();  marginLayoutParams.topMargin = margin;  headView.setLayoutParams(marginLayoutParams);  } }); objectAnimator.start(); } public void complete() { animateMarginTop(0, hideHeight); reset(); } private void reset() { rotate(180, 360); textView.setText(pull_to_refresh); imageView.setVisibility(View.VISIBLE); progressBar.setVisibility(View.GONE); }}

使用:

 <com.pull2refresh.RefreshableView android:id="@+id/refreshableView" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center"> <com.pull2refresh.MTextView  android:id="@+id/mTextView"  android:layout_width="match_parent"  android:layout_height="100dp"  android:background="@color/colorPrimary"  android:gravity="center"  android:text="Hello World!"  android:textSize="22sp" /> </com.pull2refresh.RefreshableView>
... refreshableView.addPullToRefreshListener(new RefreshableView.PullToRefreshListener() {  @Override  public void onRefresh() {  setData();  } });... private void setData() { ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(textView, "text", 1f, 100f); objectAnimator.setDuration(3000); objectAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {  @Override  public void onAnimationUpdate(ValueAnimator valueAnimator) {  textView.setText((Float) valueAnimator.getAnimatedValue());  } }); objectAnimator.addListener(new Animator.AnimatorListener() {  @Override  public void onAnimationStart(Animator animator) {  }  @Override  public void onAnimationEnd(Animator animator) {  refreshableView.complete();  }  @Override  public void onAnimationCancel(Animator animator) {  }  @Override  public void onAnimationRepeat(Animator animator) {  } }); objectAnimator.start(); }

在我自訂的 RefreshableView 中,如果不設定下拉的監聽,就沒有下拉的效果,也就是不支援下拉

源碼下載:Android下拉重新整理控制項

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.