summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/utils/AnimatorUtils.java
blob: 7694604d9fdd61fda221f06bad5dddff2e8883d2 (plain)
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
package com.mapbox.mapboxsdk.utils;

import android.animation.Animator;
import android.animation.AnimatorInflater;
import android.animation.AnimatorListenerAdapter;
import android.animation.ObjectAnimator;
import android.support.annotation.AnimatorRes;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.view.animation.FastOutSlowInInterpolator;
import android.view.View;

public class AnimatorUtils {

  public static void animate(@NonNull final View view, @AnimatorRes int animatorRes,
                             @Nullable OnAnimationEndListener listener) {
    animate(view, animatorRes, -1, listener);
  }

  public static void animate(final View view, @AnimatorRes int animatorRes, int duration,
                             @Nullable final OnAnimationEndListener listener) {
    if (view == null) {
      return;
    }

    view.setLayerType(View.LAYER_TYPE_HARDWARE, null);
    Animator animator = AnimatorInflater.loadAnimator(view.getContext(), animatorRes);
    if (duration != -1) {
      animator.setDuration(duration);
    }

    animator.addListener(new AnimatorListenerAdapter() {
      @Override
      public void onAnimationEnd(Animator animation) {
        super.onAnimationEnd(animation);
        view.setLayerType(View.LAYER_TYPE_NONE, null);
        if (listener != null) {
          listener.onAnimationEnd();
        }
      }
    });
    animator.setTarget(view);
    animator.start();
  }

  public static void animate(@NonNull final View view, @AnimatorRes int animatorRes) {
    animate(view, animatorRes, -1);
  }

  public static void animate(@NonNull final View view, @AnimatorRes int animatorRes, int duration) {
    animate(view, animatorRes, duration, null);
  }

  public static void rotate(@NonNull final View view, float rotation) {
    view.setLayerType(View.LAYER_TYPE_HARDWARE, null);
    ObjectAnimator rotateAnimator = ObjectAnimator.ofFloat(view, View.ROTATION, view.getRotation(), rotation);
    rotateAnimator.addListener(new AnimatorListenerAdapter() {
      @Override
      public void onAnimationEnd(Animator animation) {
        super.onAnimationEnd(animation);
        view.setLayerType(View.LAYER_TYPE_NONE, null);
      }
    });
    rotateAnimator.start();
  }

  public static void rotateBy(@NonNull final View view, float rotationBy) {
    view.setLayerType(View.LAYER_TYPE_HARDWARE, null);
    view.animate().rotationBy(rotationBy).setInterpolator(new FastOutSlowInInterpolator()).setListener(
      new AnimatorListenerAdapter() {
        @Override
        public void onAnimationEnd(Animator animation) {
          super.onAnimationEnd(animation);
          view.setLayerType(View.LAYER_TYPE_NONE, null);
        }
      });
  }

  public static void alpha(@NonNull final View convertView, float alpha,
                           @Nullable final OnAnimationEndListener listener) {
    convertView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
    ObjectAnimator rotateAnimator = ObjectAnimator.ofFloat(convertView, View.ALPHA, convertView.getAlpha(), alpha);
    rotateAnimator.addListener(new AnimatorListenerAdapter() {
      @Override
      public void onAnimationStart(Animator animation) {
        super.onAnimationStart(animation);
        convertView.setVisibility(View.VISIBLE);
      }

      @Override
      public void onAnimationEnd(Animator animation) {
        super.onAnimationEnd(animation);
        convertView.setLayerType(View.LAYER_TYPE_NONE, null);
        if (listener != null) {
          listener.onAnimationEnd();
        }
      }
    });
    rotateAnimator.start();
  }

  public static void alpha(@NonNull final View convertView, float alpha) {
    alpha(convertView, alpha, null);
  }

  public interface OnAnimationEndListener {
    void onAnimationEnd();
  }
}