android PullToRrefresh自定義下拉重新整理動畫
參考自 http://blog.csdn.net/wwj_748/article/details/42523611
首先,下載著名的重新整理框架https://github.com/chrisbanes/Android-PullToRefresh,其中simple為demo,library和extras作為專案包匯入到simple中
一,定義重新整理動畫的layout
在library下的com.handmark.pulltorefresh.library.internal包中的FlipLoadingLayout和RotateLoadingLayout
FlipLoadingLayout為ios風格的箭頭顛倒的重新整理動畫
RotateLoadingLayout為android風格的圖片旋轉動畫
共同的設定方法是
1,getDefaultDrawableResId()
動畫預設圖片,可以替換為自己的圖片
2,refreshingImpl()
正在重新整理時的回撥方法,可以設定開始動畫
3,resetImpl()
重置
二,正在重新整理時為圖片居中旋轉的效果
1,首先修改library中的pull_to_refresh_header_vertical.xml,去除文字的layout,圖片layout水平居中
-
<?xmlversion="1.0"encoding="utf-8"?>
- <mergexmlns:android="http://schemas.android.com/apk/res/android">
- <FrameLayout
- android:id="@+id/fl_inner"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="@dimen/header_footer_top_bottom_padding"
-
android:paddingLeft
- android:paddingRight="@dimen/header_footer_left_right_padding"
- android:paddingTop="@dimen/header_footer_top_bottom_padding">
- <FrameLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal">
- <ImageView
- android:id="@+id/pull_to_refresh_image"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"/>
- <ProgressBar
- android:id="@+id/pull_to_refresh_progress"
- style="?android:attr/progressBarStyleSmall"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:indeterminate="true"
- android:visibility="gone"/>
- </FrameLayout>
- <!-- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:gravity="center_horizontal"
- android:orientation="vertical">
- <TextView
- android:id="@+id/pull_to_refresh_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:singleLine="true"
- android:textAppearance="?android:attr/textAppearance"
- android:textStyle="bold"/>
- <TextView
- android:id="@+id/pull_to_refresh_sub_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:singleLine="true"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:visibility="gone"/>
- </LinearLayout> -->
- </FrameLayout>
- </merge>
2,去除LoadingLayout中的關於textview的程式碼
3,可以在RotateLoadingLayout中的getDefaultDrawableResId()方法替換成自己的圖片
三,設定自定義動畫效果
1,首先設定一個簡單的小人走的動畫效果,在anim資料夾下新建一個xml,需要載入兩張圖片,控制圖片的停留時間
- <?xmlversion="1.0"encoding="utf-8"?>
- <animation-listxmlns:android="http://schemas.android.com/apk/res/android"
- android:oneshot="false">
- <item
- android:drawable="@drawable/app_loading0"
- android:duration="150"/>
- <item
- android:drawable="@drawable/app_loading1"
- android:duration="150"/>
- </animation-list>
2,新建重新整理動畫的layout,TweenAnimLoadingLayout,類似於之前的原始碼中的FlipLoadingLayout和RotateLoadingLayout
主要設定初始化,和那幾個關鍵方法就行
- package com.handmark.pulltorefresh.library.internal;
- import com.handmark.pulltorefresh.library.R;
- import com.handmark.pulltorefresh.library.PullToRefreshBase.Mode;
- import com.handmark.pulltorefresh.library.PullToRefreshBase.Orientation;
- import android.content.Context;
- import android.content.res.TypedArray;
- import android.graphics.drawable.AnimationDrawable;
- import android.graphics.drawable.Drawable;
- import android.view.View;
- /**
- * @date 2015/1/8
- * @author wuwenjie
- * @desc 幀動畫載入佈局
- */
- publicclass TweenAnimLoadingLayout extends LoadingLayout {
- private AnimationDrawable animationDrawable;
- public TweenAnimLoadingLayout(Context context, Mode mode,
- Orientation scrollDirection, TypedArray attrs) {
- super(context, mode, scrollDirection, attrs);
- // 初始化
- mHeaderImage.setImageResource(R.anim.loading);
- animationDrawable = (AnimationDrawable) mHeaderImage.getDrawable();
- }
- // 預設圖片
- @Override
- protectedint getDefaultDrawableResId() {
- return R.drawable.app_loading0;
- }
- @Override
- protectedvoid onLoadingDrawableSet(Drawable imageDrawable) {
- // NO-OP
- }
- @Override
- protectedvoid onPullImpl(float scaleOfLayout) {
- // NO-OP
- }
- // 下拉以重新整理
- @Override
- protectedvoid pullToRefreshImpl() {
- // NO-OP
- }
- // 正在重新整理時回撥
- @Override
- protectedvoid refreshingImpl() {
- // 播放幀動畫
- animationDrawable.start();
- }
- // 釋放以重新整理
- @Override
- protectedvoid releaseToRefreshImpl() {
- // NO-OP
- }
- // 重新設定
- @Override
- protectedvoid resetImpl() {
- mHeaderImage.setVisibility(View.VISIBLE);
- mHeaderImage.clearAnimation();
- }