admin
2020-08-08 3945f9a2c70335958c64c73894e3a1a14a7113b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*******************************************************************************
 * Copyright 2011, 2012 Chris Banes.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *******************************************************************************/
package com.handmark.pulltorefresh.library.internal;
 
import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Matrix;
import android.graphics.drawable.Drawable;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.view.animation.AnimationUtils;
import android.view.animation.Interpolator;
import android.view.animation.LinearInterpolator;
import android.view.animation.RotateAnimation;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.ImageView.ScaleType;
 
import com.handmark.pulltorefresh.library.PullToRefreshBase;
import com.handmark.pulltorefresh.library.R;
 
@SuppressLint("ViewConstructor")
public class IndicatorLayout extends FrameLayout implements AnimationListener {
 
    static final int DEFAULT_ROTATION_ANIMATION_DURATION = 150;
 
    private Animation mInAnim, mOutAnim;
    private ImageView mArrowImageView;
 
    private final Animation mRotateAnimation, mResetRotateAnimation;
 
    public IndicatorLayout(Context context, PullToRefreshBase.Mode mode) {
        super(context);
        mArrowImageView = new ImageView(context);
 
        Drawable arrowD = getResources().getDrawable(R.drawable.indicator_arrow);
        mArrowImageView.setImageDrawable(arrowD);
 
        final int padding = getResources().getDimensionPixelSize(R.dimen.indicator_internal_padding);
        mArrowImageView.setPadding(padding, padding, padding, padding);
        addView(mArrowImageView);
 
        int inAnimResId, outAnimResId;
        switch (mode) {
            case PULL_FROM_END:
                inAnimResId = R.anim.slide_in_from_bottom;
                outAnimResId = R.anim.slide_out_to_bottom;
                setBackgroundResource(R.drawable.indicator_bg_bottom);
 
                // Rotate Arrow so it's pointing the correct way
                mArrowImageView.setScaleType(ScaleType.MATRIX);
                Matrix matrix = new Matrix();
                matrix.setRotate(180f, arrowD.getIntrinsicWidth() / 2f, arrowD.getIntrinsicHeight() / 2f);
                mArrowImageView.setImageMatrix(matrix);
                break;
            default:
            case PULL_FROM_START:
                inAnimResId = R.anim.slide_in_from_top;
                outAnimResId = R.anim.slide_out_to_top;
                setBackgroundResource(R.drawable.indicator_bg_top);
                break;
        }
 
        mInAnim = AnimationUtils.loadAnimation(context, inAnimResId);
        mInAnim.setAnimationListener(this);
 
        mOutAnim = AnimationUtils.loadAnimation(context, outAnimResId);
        mOutAnim.setAnimationListener(this);
 
        final Interpolator interpolator = new LinearInterpolator();
        mRotateAnimation = new RotateAnimation(0, -180, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,
                0.5f);
        mRotateAnimation.setInterpolator(interpolator);
        mRotateAnimation.setDuration(DEFAULT_ROTATION_ANIMATION_DURATION);
        mRotateAnimation.setFillAfter(true);
 
        mResetRotateAnimation = new RotateAnimation(-180, 0, Animation.RELATIVE_TO_SELF, 0.5f,
                Animation.RELATIVE_TO_SELF, 0.5f);
        mResetRotateAnimation.setInterpolator(interpolator);
        mResetRotateAnimation.setDuration(DEFAULT_ROTATION_ANIMATION_DURATION);
        mResetRotateAnimation.setFillAfter(true);
 
    }
 
    public final boolean isVisible() {
        Animation currentAnim = getAnimation();
        if (null != currentAnim) {
            return mInAnim == currentAnim;
        }
 
        return getVisibility() == View.VISIBLE;
    }
 
    public void hide() {
        startAnimation(mOutAnim);
    }
 
    public void show() {
        mArrowImageView.clearAnimation();
        startAnimation(mInAnim);
    }
 
    @Override
    public void onAnimationEnd(Animation animation) {
        if (animation == mOutAnim) {
            mArrowImageView.clearAnimation();
            setVisibility(View.GONE);
        } else if (animation == mInAnim) {
            setVisibility(View.VISIBLE);
        }
 
        clearAnimation();
    }
 
    @Override
    public void onAnimationRepeat(Animation animation) {
        // NO-OP
    }
 
    @Override
    public void onAnimationStart(Animation animation) {
        setVisibility(View.VISIBLE);
    }
 
    public void releaseToRefresh() {
        mArrowImageView.startAnimation(mRotateAnimation);
    }
 
    public void pullToRefresh() {
        mArrowImageView.startAnimation(mResetRotateAnimation);
    }
 
}