summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/app/dialpad/PseudoEmergencyAnimator.java
blob: be2964dfe094bc5a7b4d134dd052bd9e80e76f8d (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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
 * Copyright (C) 2015 The Android Open Source Project
 *
 * 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.android.dialer.app.dialpad;

import android.animation.Animator;
import android.animation.Animator.AnimatorListener;
import android.animation.ArgbEvaluator;
import android.animation.ValueAnimator;
import android.animation.ValueAnimator.AnimatorUpdateListener;
import android.content.Context;
import android.graphics.Color;
import android.graphics.ColorFilter;
import android.graphics.LightingColorFilter;
import android.os.Handler;
import android.os.Vibrator;
import android.view.View;
import com.android.dialer.app.R;

/** Animates the dial button on "emergency" phone numbers. */
public class PseudoEmergencyAnimator {

  public static final String PSEUDO_EMERGENCY_NUMBER = "01189998819991197253";
  private static final int VIBRATE_LENGTH_MILLIS = 200;
  private static final int ITERATION_LENGTH_MILLIS = 1000;
  private static final int ANIMATION_ITERATION_COUNT = 6;
  private ViewProvider mViewProvider;
  private ValueAnimator mPseudoEmergencyColorAnimator;

  PseudoEmergencyAnimator(ViewProvider viewProvider) {
    mViewProvider = viewProvider;
  }

  public void destroy() {
    end();
    mViewProvider = null;
  }

  public void start() {
    if (mPseudoEmergencyColorAnimator == null) {
      Integer colorFrom = Color.BLUE;
      Integer colorTo = Color.RED;
      mPseudoEmergencyColorAnimator =
          ValueAnimator.ofObject(new ArgbEvaluator(), colorFrom, colorTo);

      mPseudoEmergencyColorAnimator.addUpdateListener(
          new AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animator) {
              try {
                int color = (int) animator.getAnimatedValue();
                ColorFilter colorFilter = new LightingColorFilter(Color.BLACK, color);

                View floatingActionButtonContainer =
                    getView().findViewById(R.id.floating_action_button);
                if (floatingActionButtonContainer != null) {
                  floatingActionButtonContainer.getBackground().setColorFilter(colorFilter);
                }
              } catch (Exception e) {
                animator.cancel();
              }
            }
          });

      mPseudoEmergencyColorAnimator.addListener(
          new AnimatorListener() {
            @Override
            public void onAnimationCancel(Animator animation) {}

            @Override
            public void onAnimationRepeat(Animator animation) {
              try {
                vibrate(VIBRATE_LENGTH_MILLIS);
              } catch (Exception e) {
                animation.cancel();
              }
            }

            @Override
            public void onAnimationStart(Animator animation) {}

            @Override
            public void onAnimationEnd(Animator animation) {
              try {
                View floatingActionButtonContainer =
                    getView().findViewById(R.id.floating_action_button);
                if (floatingActionButtonContainer != null) {
                  floatingActionButtonContainer.getBackground().clearColorFilter();
                }

                new Handler()
                    .postDelayed(
                        new Runnable() {
                          @Override
                          public void run() {
                            try {
                              vibrate(VIBRATE_LENGTH_MILLIS);
                            } catch (Exception e) {
                              // ignored
                            }
                          }
                        },
                        ITERATION_LENGTH_MILLIS);
              } catch (Exception e) {
                animation.cancel();
              }
            }
          });

      mPseudoEmergencyColorAnimator.setDuration(VIBRATE_LENGTH_MILLIS);
      mPseudoEmergencyColorAnimator.setRepeatMode(ValueAnimator.REVERSE);
      mPseudoEmergencyColorAnimator.setRepeatCount(ANIMATION_ITERATION_COUNT);
    }
    if (!mPseudoEmergencyColorAnimator.isStarted()) {
      mPseudoEmergencyColorAnimator.start();
    }
  }

  public void end() {
    if (mPseudoEmergencyColorAnimator != null && mPseudoEmergencyColorAnimator.isStarted()) {
      mPseudoEmergencyColorAnimator.end();
    }
  }

  private View getView() {
    return mViewProvider == null ? null : mViewProvider.getView();
  }

  private Context getContext() {
    View view = getView();
    return view != null ? view.getContext() : null;
  }

  private void vibrate(long milliseconds) {
    Context context = getContext();
    if (context != null) {
      Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE);
      if (vibrator != null) {
        vibrator.vibrate(milliseconds);
      }
    }
  }

  public interface ViewProvider {

    View getView();
  }
}