blob: 655f9620a1fc4167a76101db814ea066344a7fc2 [file] [log] [blame]
Jason Monke5b770e2017-03-03 21:49:29 -05001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
5 * except in compliance with the License. You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software distributed under the
10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
11 * KIND, either express or implied. See the License for the specific language governing
12 * permissions and limitations under the License.
13 */
14
15package com.android.systemui.qs;
16
Charles Hece2a7c02017-10-11 20:25:20 +010017import static android.app.StatusBarManager.DISABLE2_QUICK_SETTINGS;
Charles Hece2a7c02017-10-11 20:25:20 +010018
Rohan Shahd3cf7562018-02-23 11:12:28 -080019import android.animation.Animator;
20import android.animation.AnimatorListenerAdapter;
Amin Shaikh0e003312018-03-08 11:39:01 -050021import android.annotation.ColorInt;
Lucas Dupin1f7374a2018-02-26 18:08:33 -080022import android.app.ActivityManager;
Rohan Shahd3cf7562018-02-23 11:12:28 -080023import android.app.AlarmManager;
Amin Shaikh761c5662018-03-27 16:55:43 -040024import android.content.BroadcastReceiver;
Jason Monke5b770e2017-03-03 21:49:29 -050025import android.content.Context;
Evan Laird4ea2a492018-01-22 11:29:12 -050026import android.content.Intent;
Amin Shaikh761c5662018-03-27 16:55:43 -040027import android.content.IntentFilter;
Jason Monke5b770e2017-03-03 21:49:29 -050028import android.content.res.Configuration;
Rohan Shahcc3d1d82018-03-30 21:24:17 +000029import android.content.res.Resources;
Jason Monke5b770e2017-03-03 21:49:29 -050030import android.graphics.Color;
31import android.graphics.Rect;
Amin Shaikh761c5662018-03-27 16:55:43 -040032import android.media.AudioManager;
Rohan Shahd3cf7562018-02-23 11:12:28 -080033import android.os.Handler;
Evan Laird4ea2a492018-01-22 11:29:12 -050034import android.provider.AlarmClock;
Jason Monke5b770e2017-03-03 21:49:29 -050035import android.support.annotation.VisibleForTesting;
Rohan Shahd3cf7562018-02-23 11:12:28 -080036import android.text.format.DateUtils;
Jason Monke5b770e2017-03-03 21:49:29 -050037import android.util.AttributeSet;
Rohan Shaha160ab12018-03-09 15:47:36 -080038import android.util.Log;
Adrian Roos13836052018-03-15 21:06:37 +010039import android.util.Pair;
Jason Monk824ffff2017-04-11 15:49:06 -040040import android.view.View;
Adrian Roos13836052018-03-15 21:06:37 +010041import android.view.WindowInsets;
Amin Shaikh761c5662018-03-27 16:55:43 -040042import android.widget.ImageView;
Jason Monke5b770e2017-03-03 21:49:29 -050043import android.widget.RelativeLayout;
Rohan Shahd3cf7562018-02-23 11:12:28 -080044import android.widget.TextView;
Jason Monke5b770e2017-03-03 21:49:29 -050045
46import com.android.settingslib.Utils;
47import com.android.systemui.BatteryMeterView;
48import com.android.systemui.Dependency;
Rohan Shahd3cf7562018-02-23 11:12:28 -080049import com.android.systemui.Prefs;
Jason Monke5b770e2017-03-03 21:49:29 -050050import com.android.systemui.R;
Charles Hece2a7c02017-10-11 20:25:20 +010051import com.android.systemui.SysUiServiceProvider;
Jason Monke5b770e2017-03-03 21:49:29 -050052import com.android.systemui.plugins.ActivityStarter;
53import com.android.systemui.qs.QSDetail.Callback;
Charles Hece2a7c02017-10-11 20:25:20 +010054import com.android.systemui.statusbar.CommandQueue;
Adrian Roos13836052018-03-15 21:06:37 +010055import com.android.systemui.statusbar.phone.PhoneStatusBarView;
Evan Laird95896952018-01-22 19:30:05 -050056import com.android.systemui.statusbar.phone.StatusBarIconController;
57import com.android.systemui.statusbar.phone.StatusBarIconController.TintedIconManager;
Rohan Shahcc3d1d82018-03-30 21:24:17 +000058import com.android.systemui.statusbar.policy.Clock;
Evan Laird39254d42018-01-18 16:05:30 -050059import com.android.systemui.statusbar.policy.DarkIconDispatcher;
Jason Monk824ffff2017-04-11 15:49:06 -040060import com.android.systemui.statusbar.policy.DarkIconDispatcher.DarkReceiver;
Rohan Shahcc3d1d82018-03-30 21:24:17 +000061import com.android.systemui.statusbar.policy.DateView;
Rohan Shahd3cf7562018-02-23 11:12:28 -080062import com.android.systemui.statusbar.policy.NextAlarmController;
Jason Monke5b770e2017-03-03 21:49:29 -050063
Lucas Dupin1f7374a2018-02-26 18:08:33 -080064import java.util.Locale;
65
Rohan Shahd3cf7562018-02-23 11:12:28 -080066/**
67 * View that contains the top-most bits of the screen (primarily the status bar with date, time, and
68 * battery) and also contains the {@link QuickQSPanel} along with some of the panel's inner
69 * contents.
70 */
Amin Shaikhf09450b2018-04-06 17:32:45 -040071public class QuickStatusBarHeader extends RelativeLayout implements
Rohan Shahd3cf7562018-02-23 11:12:28 -080072 View.OnClickListener, NextAlarmController.NextAlarmChangeCallback {
Rohan Shaha160ab12018-03-09 15:47:36 -080073 private static final String TAG = "QuickStatusBarHeader";
74 private static final boolean DEBUG = false;
Jason Monke5b770e2017-03-03 21:49:29 -050075
Rohan Shahd3cf7562018-02-23 11:12:28 -080076 /** Delay for auto fading out the long press tooltip after it's fully visible (in ms). */
77 private static final long AUTO_FADE_OUT_DELAY_MS = DateUtils.SECOND_IN_MILLIS * 6;
78 private static final int FADE_ANIMATION_DURATION_MS = 300;
79 private static final int TOOLTIP_NOT_YET_SHOWN_COUNT = 0;
Rohan Shahb6a915c2018-03-01 11:57:00 -080080 public static final int MAX_TOOLTIP_SHOWN_COUNT = 2;
Rohan Shahd3cf7562018-02-23 11:12:28 -080081
82 private final Handler mHandler = new Handler();
Jason Monke5b770e2017-03-03 21:49:29 -050083
84 private QSPanel mQsPanel;
85
86 private boolean mExpanded;
87 private boolean mListening;
Charles Hece2a7c02017-10-11 20:25:20 +010088 private boolean mQsDisabled;
Jason Monke5b770e2017-03-03 21:49:29 -050089
90 protected QuickQSPanel mHeaderQsPanel;
91 protected QSTileHost mHost;
Evan Laird95896952018-01-22 19:30:05 -050092 private TintedIconManager mIconManager;
Rohan Shahd3cf7562018-02-23 11:12:28 -080093 private TouchAnimator mStatusIconsAlphaAnimator;
94 private TouchAnimator mHeaderTextContainerAlphaAnimator;
Evan Laird95896952018-01-22 19:30:05 -050095
Rohan Shahcc3d1d82018-03-30 21:24:17 +000096 private View mSystemIconsView;
Evan Laird95896952018-01-22 19:30:05 -050097 private View mQuickQsStatusIcons;
Evan Laird4ea2a492018-01-22 11:29:12 -050098 private View mDate;
Rohan Shahd3cf7562018-02-23 11:12:28 -080099 private View mHeaderTextContainerView;
Amin Shaikh761c5662018-03-27 16:55:43 -0400100 /** View containing the next alarm and ringer mode info. */
101 private View mStatusContainer;
Rohan Shahd3cf7562018-02-23 11:12:28 -0800102 /** Tooltip for educating users that they can long press on icons to see more details. */
103 private View mLongPressTooltipView;
Amin Shaikh761c5662018-03-27 16:55:43 -0400104
105 private int mRingerMode = AudioManager.RINGER_MODE_NORMAL;
106 private AlarmManager.AlarmClockInfo mNextAlarm;
107
108 private ImageView mNextAlarmIcon;
Rohan Shahd3cf7562018-02-23 11:12:28 -0800109 /** {@link TextView} containing the actual text indicating when the next alarm will go off. */
110 private TextView mNextAlarmTextView;
Amin Shaikh761c5662018-03-27 16:55:43 -0400111 private View mStatusSeparator;
112 private ImageView mRingerModeIcon;
113 private TextView mRingerModeTextView;
Rohan Shahcc3d1d82018-03-30 21:24:17 +0000114 private BatteryMeterView mBatteryMeterView;
115 private Clock mClockView;
116 private DateView mDateView;
Rohan Shahd3cf7562018-02-23 11:12:28 -0800117
118 private NextAlarmController mAlarmController;
Rohan Shahd3cf7562018-02-23 11:12:28 -0800119 /** Counts how many times the long press tooltip has been shown to the user. */
120 private int mShownCount;
121
Amin Shaikh761c5662018-03-27 16:55:43 -0400122 private final BroadcastReceiver mRingerReceiver = new BroadcastReceiver() {
123 @Override
124 public void onReceive(Context context, Intent intent) {
125 mRingerMode = intent.getIntExtra(AudioManager.EXTRA_RINGER_MODE, -1);
126 updateStatusText();
127 }
128 };
129
Rohan Shahd3cf7562018-02-23 11:12:28 -0800130 /**
131 * Runnable for automatically fading out the long press tooltip (as if it were animating away).
132 */
133 private final Runnable mAutoFadeOutTooltipRunnable = () -> hideLongPressTooltip(false);
Evan Laird4ea2a492018-01-22 11:29:12 -0500134
Jason Monke5b770e2017-03-03 21:49:29 -0500135 public QuickStatusBarHeader(Context context, AttributeSet attrs) {
136 super(context, attrs);
Rohan Shahd3cf7562018-02-23 11:12:28 -0800137 mAlarmController = Dependency.get(NextAlarmController.class);
138 mShownCount = getStoredShownCount();
Jason Monke5b770e2017-03-03 21:49:29 -0500139 }
140
141 @Override
142 protected void onFinishInflate() {
143 super.onFinishInflate();
Jason Monke5b770e2017-03-03 21:49:29 -0500144
145 mHeaderQsPanel = findViewById(R.id.quick_qs_panel);
Evan Laird4ea2a492018-01-22 11:29:12 -0500146 mDate = findViewById(R.id.date);
147 mDate.setOnClickListener(this);
Rohan Shahcc3d1d82018-03-30 21:24:17 +0000148 mSystemIconsView = findViewById(R.id.quick_status_bar_system_icons);
Evan Laird95896952018-01-22 19:30:05 -0500149 mQuickQsStatusIcons = findViewById(R.id.quick_qs_status_icons);
150 mIconManager = new TintedIconManager(findViewById(R.id.statusIcons));
Jason Monke5b770e2017-03-03 21:49:29 -0500151
Rohan Shahd3cf7562018-02-23 11:12:28 -0800152 // Views corresponding to the header info section (e.g. tooltip and next alarm).
153 mHeaderTextContainerView = findViewById(R.id.header_text_container);
154 mLongPressTooltipView = findViewById(R.id.long_press_tooltip);
Amin Shaikh761c5662018-03-27 16:55:43 -0400155 mStatusContainer = findViewById(R.id.status_container);
156 mStatusSeparator = findViewById(R.id.status_separator);
157 mNextAlarmIcon = findViewById(R.id.next_alarm_icon);
Rohan Shahd3cf7562018-02-23 11:12:28 -0800158 mNextAlarmTextView = findViewById(R.id.next_alarm_text);
Amin Shaikh761c5662018-03-27 16:55:43 -0400159 mRingerModeIcon = findViewById(R.id.ringer_mode_icon);
160 mRingerModeTextView = findViewById(R.id.ringer_mode_text);
Jason Monke5b770e2017-03-03 21:49:29 -0500161
162 updateResources();
163
Jason Monk824ffff2017-04-11 15:49:06 -0400164 Rect tintArea = new Rect(0, 0, 0, 0);
Jason Changb4e879d2018-04-11 11:17:58 +0800165 int colorForeground = Utils.getColorAttrDefaultColor(getContext(),
166 android.R.attr.colorForeground);
Amin Shaikh0e003312018-03-08 11:39:01 -0500167 float intensity = getColorIntensity(colorForeground);
Evan Laird95896952018-01-22 19:30:05 -0500168 int fillColor = fillColorForIntensity(intensity, getContext());
169
170 // Set light text on the header icons because they will always be on a black background
Evan Laird39254d42018-01-18 16:05:30 -0500171 applyDarkness(R.id.clock, tintArea, 0, DarkIconDispatcher.DEFAULT_ICON_TINT);
Evan Laird95896952018-01-22 19:30:05 -0500172
173 // Set the correct tint for the status icons so they contrast
174 mIconManager.setTint(fillColor);
Jason Monke5b770e2017-03-03 21:49:29 -0500175
Rohan Shahcc3d1d82018-03-30 21:24:17 +0000176 mBatteryMeterView = findViewById(R.id.battery);
177 mBatteryMeterView.setForceShowPercent(true);
178 mClockView = findViewById(R.id.clock);
179 mDateView = findViewById(R.id.date);
Jason Monke5b770e2017-03-03 21:49:29 -0500180 }
181
Amin Shaikh761c5662018-03-27 16:55:43 -0400182 private void updateStatusText() {
183 boolean ringerVisible = false;
184 if (mRingerMode == AudioManager.RINGER_MODE_VIBRATE) {
185 mRingerModeIcon.setImageResource(R.drawable.stat_sys_ringer_vibrate);
Amin Shaikhe4d25a92018-03-30 15:30:29 -0400186 mRingerModeTextView.setText(R.string.qs_status_phone_vibrate);
Amin Shaikh761c5662018-03-27 16:55:43 -0400187 ringerVisible = true;
188 } else if (mRingerMode == AudioManager.RINGER_MODE_SILENT) {
189 mRingerModeIcon.setImageResource(R.drawable.stat_sys_ringer_silent);
Amin Shaikhe4d25a92018-03-30 15:30:29 -0400190 mRingerModeTextView.setText(R.string.qs_status_phone_muted);
Amin Shaikh761c5662018-03-27 16:55:43 -0400191 ringerVisible = true;
192 }
193 mRingerModeIcon.setVisibility(ringerVisible ? View.VISIBLE : View.GONE);
194 mRingerModeTextView.setVisibility(ringerVisible ? View.VISIBLE : View.GONE);
195
196 boolean alarmVisible = false;
197 if (mNextAlarm != null) {
198 alarmVisible = true;
199 mNextAlarmTextView.setText(formatNextAlarm(mNextAlarm));
200 }
201 mNextAlarmIcon.setVisibility(alarmVisible ? View.VISIBLE : View.GONE);
202 mNextAlarmTextView.setVisibility(alarmVisible ? View.VISIBLE : View.GONE);
203 mStatusSeparator.setVisibility(alarmVisible && ringerVisible ? View.VISIBLE : View.GONE);
204 updateTooltipShow();
205 }
206
207
Jason Monk824ffff2017-04-11 15:49:06 -0400208 private void applyDarkness(int id, Rect tintArea, float intensity, int color) {
209 View v = findViewById(id);
210 if (v instanceof DarkReceiver) {
211 ((DarkReceiver) v).onDarkChanged(tintArea, intensity, color);
212 }
213 }
214
Evan Laird95896952018-01-22 19:30:05 -0500215 private int fillColorForIntensity(float intensity, Context context) {
216 if (intensity == 0) {
217 return context.getColor(R.color.light_mode_icon_color_dual_tone_fill);
218 }
219 return context.getColor(R.color.dark_mode_icon_color_dual_tone_fill);
220 }
221
Jason Monke5b770e2017-03-03 21:49:29 -0500222 @Override
223 protected void onConfigurationChanged(Configuration newConfig) {
224 super.onConfigurationChanged(newConfig);
225 updateResources();
Rohan Shahcc3d1d82018-03-30 21:24:17 +0000226
227 // Update color schemes in landscape to use wallpaperTextColor
228 boolean shouldUseWallpaperTextColor =
229 newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE;
230 mBatteryMeterView.useWallpaperTextColor(shouldUseWallpaperTextColor);
231 mClockView.useWallpaperTextColor(shouldUseWallpaperTextColor);
232 mDateView.useWallpaperTextColor(shouldUseWallpaperTextColor);
Jason Monke5b770e2017-03-03 21:49:29 -0500233 }
234
235 @Override
236 public void onRtlPropertiesChanged(int layoutDirection) {
237 super.onRtlPropertiesChanged(layoutDirection);
238 updateResources();
239 }
240
241 private void updateResources() {
Rohan Shahcc3d1d82018-03-30 21:24:17 +0000242 Resources resources = mContext.getResources();
243
244 // Update height for a few views, especially due to landscape mode restricting space.
Rohan Shahd3cf7562018-02-23 11:12:28 -0800245 mHeaderTextContainerView.getLayoutParams().height =
Rohan Shahcc3d1d82018-03-30 21:24:17 +0000246 resources.getDimensionPixelSize(R.dimen.qs_header_tooltip_height);
Rohan Shahd3cf7562018-02-23 11:12:28 -0800247 mHeaderTextContainerView.setLayoutParams(mHeaderTextContainerView.getLayoutParams());
248
Rohan Shahcc3d1d82018-03-30 21:24:17 +0000249 mSystemIconsView.getLayoutParams().height = resources.getDimensionPixelSize(
250 com.android.internal.R.dimen.quick_qs_offset_height);
251 mSystemIconsView.setLayoutParams(mSystemIconsView.getLayoutParams());
252
Amin Shaikhf09450b2018-04-06 17:32:45 -0400253 getLayoutParams().height = resources.getDimensionPixelSize(mQsDisabled
254 ? com.android.internal.R.dimen.quick_qs_offset_height
255 : com.android.internal.R.dimen.quick_qs_total_height);
Rohan Shahcc3d1d82018-03-30 21:24:17 +0000256 setLayoutParams(getLayoutParams());
257
Rohan Shahd3cf7562018-02-23 11:12:28 -0800258 updateStatusIconAlphaAnimator();
259 updateHeaderTextContainerAlphaAnimator();
Evan Laird95896952018-01-22 19:30:05 -0500260 }
261
Rohan Shahd3cf7562018-02-23 11:12:28 -0800262 private void updateStatusIconAlphaAnimator() {
263 mStatusIconsAlphaAnimator = new TouchAnimator.Builder()
Evan Laird95896952018-01-22 19:30:05 -0500264 .addFloat(mQuickQsStatusIcons, "alpha", 1, 0)
265 .build();
Jason Monke5b770e2017-03-03 21:49:29 -0500266 }
267
Rohan Shahd3cf7562018-02-23 11:12:28 -0800268 private void updateHeaderTextContainerAlphaAnimator() {
269 mHeaderTextContainerAlphaAnimator = new TouchAnimator.Builder()
270 .addFloat(mHeaderTextContainerView, "alpha", 0, 1)
271 .setStartDelay(.5f)
272 .build();
Jason Monke5b770e2017-03-03 21:49:29 -0500273 }
274
275 public void setExpanded(boolean expanded) {
276 if (mExpanded == expanded) return;
277 mExpanded = expanded;
278 mHeaderQsPanel.setExpanded(expanded);
279 updateEverything();
280 }
281
Rohan Shahd3cf7562018-02-23 11:12:28 -0800282 /**
283 * Animates the inner contents based on the given expansion details.
284 *
285 * @param isKeyguardShowing whether or not we're showing the keyguard (a.k.a. lockscreen)
286 * @param expansionFraction how much the QS panel is expanded/pulled out (up to 1f)
287 * @param panelTranslationY how much the panel has physically moved down vertically (required
288 * for keyguard animations only)
289 */
290 public void setExpansion(boolean isKeyguardShowing, float expansionFraction,
291 float panelTranslationY) {
292 final float keyguardExpansionFraction = isKeyguardShowing ? 1f : expansionFraction;
293 if (mStatusIconsAlphaAnimator != null) {
294 mStatusIconsAlphaAnimator.setPosition(keyguardExpansionFraction);
Evan Laird95896952018-01-22 19:30:05 -0500295 }
Rohan Shahd3cf7562018-02-23 11:12:28 -0800296
297 if (isKeyguardShowing) {
298 // If the keyguard is showing, we want to offset the text so that it comes in at the
299 // same time as the panel as it slides down.
300 mHeaderTextContainerView.setTranslationY(panelTranslationY);
301 } else {
302 mHeaderTextContainerView.setTranslationY(0f);
303 }
304
305 if (mHeaderTextContainerAlphaAnimator != null) {
306 mHeaderTextContainerAlphaAnimator.setPosition(keyguardExpansionFraction);
307 }
308
309 // Check the original expansion fraction - we don't want to show the tooltip until the
310 // panel is pulled all the way out.
311 if (expansionFraction == 1f) {
312 // QS is fully expanded, bring in the tooltip.
313 showLongPressTooltip();
314 }
315 }
316
317 /** Returns the latest stored tooltip shown count from SharedPreferences. */
318 private int getStoredShownCount() {
319 return Prefs.getInt(
320 mContext,
321 Prefs.Key.QS_LONG_PRESS_TOOLTIP_SHOWN_COUNT,
322 TOOLTIP_NOT_YET_SHOWN_COUNT);
Jason Monke5b770e2017-03-03 21:49:29 -0500323 }
324
Charles Hece2a7c02017-10-11 20:25:20 +0100325 public void disable(int state1, int state2, boolean animate) {
326 final boolean disabled = (state2 & DISABLE2_QUICK_SETTINGS) != 0;
327 if (disabled == mQsDisabled) return;
328 mQsDisabled = disabled;
329 mHeaderQsPanel.setDisabledByPolicy(disabled);
Amin Shaikhf09450b2018-04-06 17:32:45 -0400330 mHeaderTextContainerView.setVisibility(mQsDisabled ? View.GONE : View.VISIBLE);
331 mQuickQsStatusIcons.setVisibility(mQsDisabled ? View.GONE : View.VISIBLE);
332 updateResources();
Charles Hece2a7c02017-10-11 20:25:20 +0100333 }
334
335 @Override
336 public void onAttachedToWindow() {
Evan Laird95896952018-01-22 19:30:05 -0500337 Dependency.get(StatusBarIconController.class).addIconGroup(mIconManager);
Adrian Roos13836052018-03-15 21:06:37 +0100338 requestApplyInsets();
339 }
340
341 @Override
342 public WindowInsets onApplyWindowInsets(WindowInsets insets) {
343 Pair<Integer, Integer> padding = PhoneStatusBarView.cornerCutoutMargins(
344 insets.getDisplayCutout(), getDisplay());
345 if (padding == null) {
346 setPadding(0, 0, 0, 0);
347 } else {
348 setPadding(padding.first, 0, padding.second, 0);
349 }
350 return super.onApplyWindowInsets(insets);
Charles Hece2a7c02017-10-11 20:25:20 +0100351 }
352
353 @Override
Jason Monke5b770e2017-03-03 21:49:29 -0500354 @VisibleForTesting
355 public void onDetachedFromWindow() {
356 setListening(false);
Evan Laird95896952018-01-22 19:30:05 -0500357 Dependency.get(StatusBarIconController.class).removeIconGroup(mIconManager);
Jason Monke5b770e2017-03-03 21:49:29 -0500358 super.onDetachedFromWindow();
359 }
360
361 public void setListening(boolean listening) {
362 if (listening == mListening) {
363 return;
364 }
365 mHeaderQsPanel.setListening(listening);
366 mListening = listening;
Rohan Shahd3cf7562018-02-23 11:12:28 -0800367
368 if (listening) {
369 mAlarmController.addCallback(this);
Amin Shaikh761c5662018-03-27 16:55:43 -0400370 mContext.registerReceiver(mRingerReceiver,
371 new IntentFilter(AudioManager.INTERNAL_RINGER_MODE_CHANGED_ACTION));
Rohan Shahd3cf7562018-02-23 11:12:28 -0800372 } else {
373 mAlarmController.removeCallback(this);
Amin Shaikh761c5662018-03-27 16:55:43 -0400374 mContext.unregisterReceiver(mRingerReceiver);
Rohan Shahd3cf7562018-02-23 11:12:28 -0800375 }
Jason Monke5b770e2017-03-03 21:49:29 -0500376 }
377
Evan Laird95896952018-01-22 19:30:05 -0500378 @Override
379 public void onClick(View v) {
380 if(v == mDate){
381 Dependency.get(ActivityStarter.class).postStartActivityDismissingKeyguard(new Intent(
382 AlarmClock.ACTION_SHOW_ALARMS),0);
383 }
384 }
385
Rohan Shahd3cf7562018-02-23 11:12:28 -0800386 @Override
387 public void onNextAlarmChanged(AlarmManager.AlarmClockInfo nextAlarm) {
Amin Shaikh761c5662018-03-27 16:55:43 -0400388 mNextAlarm = nextAlarm;
389 updateStatusText();
390 }
Rohan Shaha160ab12018-03-09 15:47:36 -0800391
Amin Shaikh761c5662018-03-27 16:55:43 -0400392 private void updateTooltipShow() {
393 if (hasStatusText()) {
394 hideLongPressTooltip(true /* shouldShowStatusText */);
Rohan Shahd3cf7562018-02-23 11:12:28 -0800395 } else {
Amin Shaikh761c5662018-03-27 16:55:43 -0400396 hideStatusText();
Rohan Shahd3cf7562018-02-23 11:12:28 -0800397 }
398 updateHeaderTextContainerAlphaAnimator();
399 }
400
Amin Shaikh761c5662018-03-27 16:55:43 -0400401 private boolean hasStatusText() {
402 return mNextAlarmTextView.getVisibility() == View.VISIBLE
403 || mRingerModeTextView.getVisibility() == View.VISIBLE;
404 }
405
Rohan Shahd3cf7562018-02-23 11:12:28 -0800406 /**
407 * Animates in the long press tooltip (as long as the next alarm text isn't currently occupying
408 * the space).
409 */
410 public void showLongPressTooltip() {
Amin Shaikh761c5662018-03-27 16:55:43 -0400411 // If we have status text to show, don't bother fading in the tooltip.
412 if (hasStatusText()) {
Rohan Shahd3cf7562018-02-23 11:12:28 -0800413 return;
414 }
415
416 if (mShownCount < MAX_TOOLTIP_SHOWN_COUNT) {
417 mLongPressTooltipView.animate().cancel();
418 mLongPressTooltipView.setVisibility(View.VISIBLE);
419 mLongPressTooltipView.animate()
420 .alpha(1f)
421 .setDuration(FADE_ANIMATION_DURATION_MS)
422 .setListener(new AnimatorListenerAdapter() {
423 @Override
424 public void onAnimationEnd(Animator animation) {
425 mHandler.postDelayed(
426 mAutoFadeOutTooltipRunnable, AUTO_FADE_OUT_DELAY_MS);
427 }
428 })
429 .start();
430
431 // Increment and drop the shown count in prefs for the next time we're deciding to
432 // fade in the tooltip. We first sanity check that the tooltip count hasn't changed yet
433 // in prefs (say, from a long press).
434 if (getStoredShownCount() <= mShownCount) {
435 Prefs.putInt(mContext, Prefs.Key.QS_LONG_PRESS_TOOLTIP_SHOWN_COUNT, ++mShownCount);
436 }
437 }
438 }
439
440 /**
441 * Fades out the long press tooltip if it's partially visible - short circuits any running
Amin Shaikh761c5662018-03-27 16:55:43 -0400442 * animation. Additionally has the ability to fade in the status info text.
Rohan Shahd3cf7562018-02-23 11:12:28 -0800443 *
Amin Shaikh761c5662018-03-27 16:55:43 -0400444 * @param shouldShowStatusText whether we should fade in the status text
Rohan Shahd3cf7562018-02-23 11:12:28 -0800445 */
Amin Shaikh761c5662018-03-27 16:55:43 -0400446 private void hideLongPressTooltip(boolean shouldShowStatusText) {
Rohan Shahd3cf7562018-02-23 11:12:28 -0800447 mLongPressTooltipView.animate().cancel();
448 if (mLongPressTooltipView.getVisibility() == View.VISIBLE
449 && mLongPressTooltipView.getAlpha() != 0f) {
450 mHandler.removeCallbacks(mAutoFadeOutTooltipRunnable);
451 mLongPressTooltipView.animate()
452 .alpha(0f)
453 .setDuration(FADE_ANIMATION_DURATION_MS)
454 .setListener(new AnimatorListenerAdapter() {
455 @Override
456 public void onAnimationEnd(Animator animation) {
Rohan Shaha160ab12018-03-09 15:47:36 -0800457 if (DEBUG) Log.d(TAG, "hideLongPressTooltip: Hid long press tip");
Rohan Shahd3cf7562018-02-23 11:12:28 -0800458 mLongPressTooltipView.setVisibility(View.INVISIBLE);
459
Amin Shaikh761c5662018-03-27 16:55:43 -0400460 if (shouldShowStatusText) {
461 showStatus();
Rohan Shahd3cf7562018-02-23 11:12:28 -0800462 }
463 }
464 })
465 .start();
466 } else {
467 mLongPressTooltipView.setVisibility(View.INVISIBLE);
Amin Shaikh761c5662018-03-27 16:55:43 -0400468 if (shouldShowStatusText) {
469 showStatus();
Rohan Shahd3cf7562018-02-23 11:12:28 -0800470 }
471 }
472 }
473
474 /**
Amin Shaikh761c5662018-03-27 16:55:43 -0400475 * Fades in the updated status text. Note that if there's already a status showing, this will
476 * immediately hide it and fade in the updated status.
Rohan Shahd3cf7562018-02-23 11:12:28 -0800477 */
Amin Shaikh761c5662018-03-27 16:55:43 -0400478 private void showStatus() {
479 mStatusContainer.setAlpha(0f);
480 mStatusContainer.setVisibility(View.VISIBLE);
Rohan Shahd3cf7562018-02-23 11:12:28 -0800481
Rohan Shaha160ab12018-03-09 15:47:36 -0800482 // Animate the alarm back in. Make sure to clear the animator listener for the animation!
Amin Shaikh761c5662018-03-27 16:55:43 -0400483 mStatusContainer.animate()
Rohan Shahd3cf7562018-02-23 11:12:28 -0800484 .alpha(1f)
485 .setDuration(FADE_ANIMATION_DURATION_MS)
Rohan Shaha160ab12018-03-09 15:47:36 -0800486 .setListener(null)
Rohan Shahd3cf7562018-02-23 11:12:28 -0800487 .start();
488 }
489
Amin Shaikh761c5662018-03-27 16:55:43 -0400490 /** Fades out and hides the status text. */
491 private void hideStatusText() {
492 if (mStatusContainer.getVisibility() == View.VISIBLE) {
493 mStatusContainer.animate()
Rohan Shahd3cf7562018-02-23 11:12:28 -0800494 .alpha(0f)
495 .setListener(new AnimatorListenerAdapter() {
496 @Override
497 public void onAnimationEnd(Animator animation) {
Rohan Shaha160ab12018-03-09 15:47:36 -0800498 if (DEBUG) Log.d(TAG, "hideAlarmText: Hid alarm text");
499
Rohan Shahd3cf7562018-02-23 11:12:28 -0800500 // Reset the alpha regardless of how the animation ends for the next
501 // time we show this view/want to animate it.
Amin Shaikh761c5662018-03-27 16:55:43 -0400502 mStatusContainer.setVisibility(View.INVISIBLE);
503 mStatusContainer.setAlpha(1f);
Rohan Shahd3cf7562018-02-23 11:12:28 -0800504 }
505 })
506 .start();
Rohan Shahd3cf7562018-02-23 11:12:28 -0800507 }
508 }
509
Jason Monke5b770e2017-03-03 21:49:29 -0500510 public void updateEverything() {
Jason Monk1fdde2d2017-03-08 09:39:21 -0500511 post(() -> setClickable(false));
Jason Monke5b770e2017-03-03 21:49:29 -0500512 }
513
514 public void setQSPanel(final QSPanel qsPanel) {
515 mQsPanel = qsPanel;
516 setupHost(qsPanel.getHost());
517 }
518
519 public void setupHost(final QSTileHost host) {
520 mHost = host;
521 //host.setHeaderView(mExpandIndicator);
522 mHeaderQsPanel.setQSPanelAndHeader(mQsPanel, this);
523 mHeaderQsPanel.setHost(host, null /* No customization in header */);
Evan Lairdef160f22018-01-29 14:08:45 -0500524
525 // Use SystemUI context to get battery meter colors, and let it use the default tint (white)
Rohan Shahcc3d1d82018-03-30 21:24:17 +0000526 mBatteryMeterView.setColorsFromContext(mHost.getContext());
527 mBatteryMeterView.onDarkChanged(new Rect(), 0, DarkIconDispatcher.DEFAULT_ICON_TINT);
Jason Monke5b770e2017-03-03 21:49:29 -0500528 }
529
530 public void setCallback(Callback qsPanelCallback) {
531 mHeaderQsPanel.setCallback(qsPanelCallback);
532 }
Lucas Dupin1f7374a2018-02-26 18:08:33 -0800533
534 private String formatNextAlarm(AlarmManager.AlarmClockInfo info) {
535 if (info == null) {
536 return "";
537 }
538 String skeleton = android.text.format.DateFormat
539 .is24HourFormat(mContext, ActivityManager.getCurrentUser()) ? "EHm" : "Ehma";
540 String pattern = android.text.format.DateFormat
541 .getBestDateTimePattern(Locale.getDefault(), skeleton);
542 return android.text.format.DateFormat.format(pattern, info.getTriggerTime()).toString();
543 }
Amin Shaikh0e003312018-03-08 11:39:01 -0500544
545 public static float getColorIntensity(@ColorInt int color) {
546 return color == Color.WHITE ? 0 : 1;
547 }
548
Jason Monke5b770e2017-03-03 21:49:29 -0500549}