blob: 09f0cf5d5ec0d63c32116a77bef11450a0d9e4d6 [file] [log] [blame]
Jason Monk49fa0162017-01-11 09:21:56 -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.statusbar.phone;
16
17import static android.app.StatusBarManager.NAVIGATION_HINT_BACK_ALT;
18import static android.app.StatusBarManager.NAVIGATION_HINT_IME_SHOWN;
19import static android.app.StatusBarManager.WINDOW_STATE_SHOWING;
20import static android.app.StatusBarManager.windowStateToString;
21
Mike Digmanab650252018-03-06 11:01:41 -080022import static com.android.internal.view.RotationPolicy.NATURAL_ROTATION;
23
Matthew Ng8f25fb962018-01-16 17:17:24 -080024import static com.android.systemui.shared.system.NavigationBarCompat.InteractionType;
Jason Monk49fa0162017-01-11 09:21:56 -050025import static com.android.systemui.statusbar.phone.BarTransitions.MODE_SEMI_TRANSPARENT;
Jason Monk2a6ea9c2017-01-26 11:14:51 -050026import static com.android.systemui.statusbar.phone.StatusBar.DEBUG_WINDOW_STATE;
27import static com.android.systemui.statusbar.phone.StatusBar.dumpBarTransitions;
Matthew Ng9c3bce52018-02-01 22:00:31 +000028import static com.android.systemui.OverviewProxyService.OverviewProxyListener;
Jason Monk49fa0162017-01-11 09:21:56 -050029
Casey Burkhardt048c2bc2016-12-08 16:09:20 -080030import android.accessibilityservice.AccessibilityServiceInfo;
Mike Digman7d092772018-01-11 12:10:32 -080031import android.animation.Animator;
32import android.animation.AnimatorListenerAdapter;
Mike Digman7d092772018-01-11 12:10:32 -080033import android.animation.ObjectAnimator;
Matthew Ng9c3bce52018-02-01 22:00:31 +000034import android.annotation.IdRes;
Jason Monk49fa0162017-01-11 09:21:56 -050035import android.annotation.Nullable;
36import android.app.ActivityManager;
37import android.app.ActivityManagerNative;
38import android.app.Fragment;
39import android.app.IActivityManager;
40import android.app.StatusBarManager;
41import android.content.BroadcastReceiver;
Casey Burkhardtb9dcd662017-03-20 15:10:16 -070042import android.content.ContentResolver;
Jason Monk49fa0162017-01-11 09:21:56 -050043import android.content.Context;
44import android.content.Intent;
45import android.content.IntentFilter;
46import android.content.res.Configuration;
Casey Burkhardt74922c62017-02-13 12:43:16 -080047import android.database.ContentObserver;
Jason Monk49fa0162017-01-11 09:21:56 -050048import android.graphics.PixelFormat;
49import android.graphics.Rect;
Mike Digman7d092772018-01-11 12:10:32 -080050import android.graphics.drawable.AnimatedVectorDrawable;
Jason Monk49fa0162017-01-11 09:21:56 -050051import android.inputmethodservice.InputMethodService;
52import android.os.Binder;
53import android.os.Bundle;
54import android.os.Handler;
55import android.os.IBinder;
56import android.os.Message;
Jason Monk49fa0162017-01-11 09:21:56 -050057import android.os.RemoteException;
58import android.os.UserHandle;
Casey Burkhardt74922c62017-02-13 12:43:16 -080059import android.provider.Settings;
Jason Monk865246d2017-01-19 08:27:01 -050060import android.support.annotation.VisibleForTesting;
Jason Monk49fa0162017-01-11 09:21:56 -050061import android.telecom.TelecomManager;
62import android.text.TextUtils;
63import android.util.Log;
64import android.view.IRotationWatcher.Stub;
65import android.view.KeyEvent;
66import android.view.LayoutInflater;
67import android.view.MotionEvent;
Mike Digman85ff7fa2018-01-23 14:59:52 -080068import android.view.Surface;
Jason Monk49fa0162017-01-11 09:21:56 -050069import android.view.View;
70import android.view.ViewGroup;
71import android.view.WindowManager;
72import android.view.WindowManager.LayoutParams;
73import android.view.WindowManagerGlobal;
74import android.view.accessibility.AccessibilityEvent;
75import android.view.accessibility.AccessibilityManager;
Jason Monk91e587e2017-04-13 13:41:23 -040076import android.view.accessibility.AccessibilityManager.AccessibilityServicesStateChangeListener;
Jason Monk49fa0162017-01-11 09:21:56 -050077
78import com.android.internal.logging.MetricsLogger;
79import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
Jason Monkea03be12017-12-04 11:08:41 -050080import com.android.internal.util.LatencyTracker;
Jason Monk9c7844c2017-01-18 15:21:53 -050081import com.android.systemui.Dependency;
Mike Digman7d092772018-01-11 12:10:32 -080082import com.android.systemui.Interpolators;
Mike Digman1e28a5a2018-02-14 10:49:19 -080083import com.android.systemui.OverviewProxyService;
Jason Monk49fa0162017-01-11 09:21:56 -050084import com.android.systemui.R;
Jason Monk9c7844c2017-01-18 15:21:53 -050085import com.android.systemui.SysUiServiceProvider;
Jason Monk49fa0162017-01-11 09:21:56 -050086import com.android.systemui.assist.AssistManager;
87import com.android.systemui.fragments.FragmentHostManager;
88import com.android.systemui.fragments.FragmentHostManager.FragmentListener;
89import com.android.systemui.recents.Recents;
Mike Digman7d092772018-01-11 12:10:32 -080090import com.android.systemui.recents.misc.SysUiTaskStackChangeListener;
91import com.android.systemui.shared.system.ActivityManagerWrapper;
Matthew Ng64543e62018-02-28 17:35:10 -080092import com.android.systemui.shared.system.WindowManagerWrapper;
Jason Monk49fa0162017-01-11 09:21:56 -050093import com.android.systemui.stackdivider.Divider;
94import com.android.systemui.statusbar.CommandQueue;
95import com.android.systemui.statusbar.CommandQueue.Callbacks;
Jason Monk91e587e2017-04-13 13:41:23 -040096import com.android.systemui.statusbar.policy.AccessibilityManagerWrapper;
Mike Digman7d092772018-01-11 12:10:32 -080097import com.android.systemui.statusbar.policy.KeyButtonDrawable;
Jason Monk49fa0162017-01-11 09:21:56 -050098import com.android.systemui.statusbar.policy.KeyButtonView;
Mike Digman7d092772018-01-11 12:10:32 -080099import com.android.systemui.statusbar.policy.RotationLockController;
Jason Monk49fa0162017-01-11 09:21:56 -0500100import com.android.systemui.statusbar.stack.StackStateAnimator;
101
102import java.io.FileDescriptor;
103import java.io.PrintWriter;
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800104import java.util.List;
Jason Monk49fa0162017-01-11 09:21:56 -0500105import java.util.Locale;
106
107/**
108 * Fragment containing the NavigationBarFragment. Contains logic for what happens
109 * on clicks and view states of the nav bar.
110 */
111public class NavigationBarFragment extends Fragment implements Callbacks {
112
Jason Monkd4afe152017-05-01 15:37:43 -0400113 public static final String TAG = "NavigationBar";
Jason Monk49fa0162017-01-11 09:21:56 -0500114 private static final boolean DEBUG = false;
Mike Digman3e33da62018-03-14 16:25:11 -0700115 private static final boolean DEBUG_ROTATION = true;
Jason Monk49fa0162017-01-11 09:21:56 -0500116 private static final String EXTRA_DISABLE_STATE = "disabled_state";
Mike Digmandd2f49e2018-03-16 10:54:22 -0700117 private static final String EXTRA_DISABLE2_STATE = "disabled2_state";
Jason Monk49fa0162017-01-11 09:21:56 -0500118
Mike Digman1e28a5a2018-02-14 10:49:19 -0800119 private final static int BUTTON_FADE_IN_OUT_DURATION_MS = 100;
Mike Digman5aeca792018-03-05 11:14:39 -0800120 private final static int NAVBAR_HIDDEN_PENDING_ICON_TIMEOUT_MS = 20000;
Mike Digman1e28a5a2018-02-14 10:49:19 -0800121
Mike Digman50752642018-02-15 13:36:09 -0800122 private static final int NUM_ACCEPTED_ROTATION_SUGGESTIONS_FOR_INTRODUCTION = 3;
123
Jason Monk49fa0162017-01-11 09:21:56 -0500124 /** Allow some time inbetween the long press for back and recents. */
125 private static final int LOCK_TO_APP_GESTURE_TOLERENCE = 200;
126
127 protected NavigationBarView mNavigationBarView = null;
128 protected AssistManager mAssistManager;
129
130 private int mNavigationBarWindowState = WINDOW_STATE_SHOWING;
131
132 private int mNavigationIconHints = 0;
133 private int mNavigationBarMode;
Mike Digman90402952018-01-22 16:05:51 -0800134 private boolean mAccessibilityFeedbackEnabled;
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800135 private AccessibilityManager mAccessibilityManager;
Casey Burkhardt74922c62017-02-13 12:43:16 -0800136 private MagnificationContentObserver mMagnificationObserver;
Casey Burkhardtb9dcd662017-03-20 15:10:16 -0700137 private ContentResolver mContentResolver;
Mike Digmanc94759d2018-01-23 11:01:21 -0800138 private final MetricsLogger mMetricsLogger = Dependency.get(MetricsLogger.class);
Jason Monk49fa0162017-01-11 09:21:56 -0500139
140 private int mDisabledFlags1;
Mike Digmandd2f49e2018-03-16 10:54:22 -0700141 private int mDisabledFlags2;
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500142 private StatusBar mStatusBar;
Jason Monk49fa0162017-01-11 09:21:56 -0500143 private Recents mRecents;
144 private Divider mDivider;
145 private WindowManager mWindowManager;
146 private CommandQueue mCommandQueue;
147 private long mLastLockToAppLongPress;
148
149 private Locale mLocale;
150 private int mLayoutDirection;
151
152 private int mSystemUiVisibility;
153 private LightBarController mLightBarController;
Jason Monk49fa0162017-01-11 09:21:56 -0500154
Matthew Ngdc79e5c2017-12-14 17:37:35 -0800155 private OverviewProxyService mOverviewProxyService;
156
Jason Monk49fa0162017-01-11 09:21:56 -0500157 public boolean mHomeBlockedThisTouch;
158
Mike Digman7d092772018-01-11 12:10:32 -0800159 private int mLastRotationSuggestion;
Mike Digman5aeca792018-03-05 11:14:39 -0800160 private boolean mPendingRotationSuggestion;
Mike Digman90402952018-01-22 16:05:51 -0800161 private boolean mHoveringRotationSuggestion;
Mike Digman7d092772018-01-11 12:10:32 -0800162 private RotationLockController mRotationLockController;
163 private TaskStackListenerImpl mTaskStackListener;
164
Mike Digman1e28a5a2018-02-14 10:49:19 -0800165 private final Runnable mRemoveRotationProposal = () -> setRotateSuggestionButtonState(false);
Mike Digman5aeca792018-03-05 11:14:39 -0800166 private final Runnable mCancelPendingRotationProposal =
167 () -> mPendingRotationSuggestion = false;
Mike Digman7d092772018-01-11 12:10:32 -0800168 private Animator mRotateHideAnimator;
Mike Digman50752642018-02-15 13:36:09 -0800169 private ViewRippler mViewRippler = new ViewRippler();
Mike Digman7d092772018-01-11 12:10:32 -0800170
Matthew Ng9c3bce52018-02-01 22:00:31 +0000171 private final OverviewProxyListener mOverviewProxyListener = new OverviewProxyListener() {
172 @Override
173 public void onConnectionChanged(boolean isConnected) {
Winson Chungf9e30272018-03-26 17:25:36 -0700174 mNavigationBarView.updateStates();
Matthew Ng9c3bce52018-02-01 22:00:31 +0000175 updateScreenPinningGestures();
Matthew Ng64543e62018-02-28 17:35:10 -0800176 WindowManagerWrapper.getInstance()
177 .setNavBarVirtualKeyHapticFeedbackEnabled(!isConnected);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000178 }
179
180 @Override
Matthew Ng2ea93b72018-03-14 19:43:18 +0000181 public void onQuickStepStarted() {
182 mNavigationBarView.onQuickStepStarted();
Mike Digman85a9bea2018-02-23 15:08:53 -0800183
184 // Use navbar dragging as a signal to hide the rotate button
185 setRotateSuggestionButtonState(false);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000186 }
Matthew Ng8f25fb962018-01-16 17:17:24 -0800187
188 @Override
189 public void onInteractionFlagsChanged(@InteractionType int flags) {
190 mNavigationBarView.updateStates();
Winson Chungf9e30272018-03-26 17:25:36 -0700191 updateScreenPinningGestures();
Matthew Ng8f25fb962018-01-16 17:17:24 -0800192 }
Matthew Ng9c3bce52018-02-01 22:00:31 +0000193 };
Mike Digman7d092772018-01-11 12:10:32 -0800194
Jason Monk49fa0162017-01-11 09:21:56 -0500195 // ----- Fragment Lifecycle Callbacks -----
196
197 @Override
198 public void onCreate(@Nullable Bundle savedInstanceState) {
199 super.onCreate(savedInstanceState);
Jason Monk9c7844c2017-01-18 15:21:53 -0500200 mCommandQueue = SysUiServiceProvider.getComponent(getContext(), CommandQueue.class);
Jason Monk49fa0162017-01-11 09:21:56 -0500201 mCommandQueue.addCallbacks(this);
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500202 mStatusBar = SysUiServiceProvider.getComponent(getContext(), StatusBar.class);
Jason Monk9c7844c2017-01-18 15:21:53 -0500203 mRecents = SysUiServiceProvider.getComponent(getContext(), Recents.class);
204 mDivider = SysUiServiceProvider.getComponent(getContext(), Divider.class);
Jason Monk49fa0162017-01-11 09:21:56 -0500205 mWindowManager = getContext().getSystemService(WindowManager.class);
206 mAccessibilityManager = getContext().getSystemService(AccessibilityManager.class);
Jason Monk91e587e2017-04-13 13:41:23 -0400207 Dependency.get(AccessibilityManagerWrapper.class).addCallback(
208 mAccessibilityListener);
Casey Burkhardtb9dcd662017-03-20 15:10:16 -0700209 mContentResolver = getContext().getContentResolver();
Casey Burkhardt74922c62017-02-13 12:43:16 -0800210 mMagnificationObserver = new MagnificationContentObserver(
211 getContext().getMainThreadHandler());
Casey Burkhardtb9dcd662017-03-20 15:10:16 -0700212 mContentResolver.registerContentObserver(Settings.Secure.getUriFor(
Casey Burkhardt74922c62017-02-13 12:43:16 -0800213 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_NAVBAR_ENABLED), false,
Casey Burkhardt5d614402017-04-06 13:46:50 -0700214 mMagnificationObserver, UserHandle.USER_ALL);
Casey Burkhardt74922c62017-02-13 12:43:16 -0800215
Jason Monk49fa0162017-01-11 09:21:56 -0500216 if (savedInstanceState != null) {
217 mDisabledFlags1 = savedInstanceState.getInt(EXTRA_DISABLE_STATE, 0);
Mike Digmandd2f49e2018-03-16 10:54:22 -0700218 mDisabledFlags2 = savedInstanceState.getInt(EXTRA_DISABLE2_STATE, 0);
Jason Monk49fa0162017-01-11 09:21:56 -0500219 }
Jason Monk9c7844c2017-01-18 15:21:53 -0500220 mAssistManager = Dependency.get(AssistManager.class);
Matthew Ngdc79e5c2017-12-14 17:37:35 -0800221 mOverviewProxyService = Dependency.get(OverviewProxyService.class);
Jason Monk49fa0162017-01-11 09:21:56 -0500222
223 try {
224 WindowManagerGlobal.getWindowManagerService()
Andrii Kulian35fa3c22017-03-11 09:37:28 -0800225 .watchRotation(mRotationWatcher, getContext().getDisplay().getDisplayId());
Jason Monk49fa0162017-01-11 09:21:56 -0500226 } catch (RemoteException e) {
227 throw e.rethrowFromSystemServer();
228 }
Mike Digman7d092772018-01-11 12:10:32 -0800229
230 mRotationLockController = Dependency.get(RotationLockController.class);
231
Mike Digmanab650252018-03-06 11:01:41 -0800232 // Reset user rotation pref to match that of the WindowManager if starting in locked mode
233 // This will automatically happen when switching from auto-rotate to locked mode
234 if (mRotationLockController.isRotationLocked()) {
235 final int winRotation = mWindowManager.getDefaultDisplay().getRotation();
236 mRotationLockController.setRotationLockedAtAngle(true, winRotation);
237 }
238
Mike Digman7d092772018-01-11 12:10:32 -0800239 // Register the task stack listener
240 mTaskStackListener = new TaskStackListenerImpl();
241 ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener);
Jason Monk49fa0162017-01-11 09:21:56 -0500242 }
243
244 @Override
245 public void onDestroy() {
246 super.onDestroy();
247 mCommandQueue.removeCallbacks(this);
Jason Monk91e587e2017-04-13 13:41:23 -0400248 Dependency.get(AccessibilityManagerWrapper.class).removeCallback(
249 mAccessibilityListener);
Casey Burkhardtb9dcd662017-03-20 15:10:16 -0700250 mContentResolver.unregisterContentObserver(mMagnificationObserver);
Jason Monk49fa0162017-01-11 09:21:56 -0500251 try {
252 WindowManagerGlobal.getWindowManagerService()
253 .removeRotationWatcher(mRotationWatcher);
254 } catch (RemoteException e) {
255 throw e.rethrowFromSystemServer();
256 }
Mike Digman7d092772018-01-11 12:10:32 -0800257
258 // Unregister the task stack listener
259 ActivityManagerWrapper.getInstance().unregisterTaskStackListener(mTaskStackListener);
Jason Monk49fa0162017-01-11 09:21:56 -0500260 }
261
262 @Override
263 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
264 Bundle savedInstanceState) {
265 return inflater.inflate(R.layout.navigation_bar, container, false);
266 }
267
268 @Override
269 public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
270 super.onViewCreated(view, savedInstanceState);
271 mNavigationBarView = (NavigationBarView) view;
272
273 mNavigationBarView.setDisabledFlags(mDisabledFlags1);
Matthew Ng78f88d12018-01-23 12:39:55 -0800274 mNavigationBarView.setComponents(mRecents, mDivider, mStatusBar.getPanel());
Jason Monk49fa0162017-01-11 09:21:56 -0500275 mNavigationBarView.setOnVerticalChangedListener(this::onVerticalChanged);
276 mNavigationBarView.setOnTouchListener(this::onNavigationTouch);
277 if (savedInstanceState != null) {
278 mNavigationBarView.getLightTransitionsController().restoreState(savedInstanceState);
279 }
280
281 prepareNavigationBarView();
282 checkNavBarModes();
283
Mike Digmandd2f49e2018-03-16 10:54:22 -0700284 setDisabled2Flags(mDisabledFlags2);
285
Jason Monk49fa0162017-01-11 09:21:56 -0500286 IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_OFF);
287 filter.addAction(Intent.ACTION_SCREEN_ON);
288 getContext().registerReceiverAsUser(mBroadcastReceiver, UserHandle.ALL, filter, null, null);
Siarhei Vishniakoud002a0a2017-06-05 22:44:37 +0100289 notifyNavigationBarScreenOn();
Matthew Ng9c3bce52018-02-01 22:00:31 +0000290 mOverviewProxyService.addCallback(mOverviewProxyListener);
Jason Monk49fa0162017-01-11 09:21:56 -0500291 }
292
293 @Override
294 public void onDestroyView() {
295 super.onDestroyView();
Jason Monkaa573e92017-01-27 17:00:29 -0500296 mNavigationBarView.getLightTransitionsController().destroy(getContext());
Matthew Ng9c3bce52018-02-01 22:00:31 +0000297 mOverviewProxyService.removeCallback(mOverviewProxyListener);
Jason Monk49fa0162017-01-11 09:21:56 -0500298 getContext().unregisterReceiver(mBroadcastReceiver);
299 }
300
301 @Override
302 public void onSaveInstanceState(Bundle outState) {
303 super.onSaveInstanceState(outState);
304 outState.putInt(EXTRA_DISABLE_STATE, mDisabledFlags1);
Mike Digmandd2f49e2018-03-16 10:54:22 -0700305 outState.putInt(EXTRA_DISABLE2_STATE, mDisabledFlags2);
Jason Monk49fa0162017-01-11 09:21:56 -0500306 if (mNavigationBarView != null) {
307 mNavigationBarView.getLightTransitionsController().saveState(outState);
308 }
309 }
310
311 @Override
312 public void onConfigurationChanged(Configuration newConfig) {
313 super.onConfigurationChanged(newConfig);
314 final Locale locale = getContext().getResources().getConfiguration().locale;
315 final int ld = TextUtils.getLayoutDirectionFromLocale(locale);
316 if (!locale.equals(mLocale) || ld != mLayoutDirection) {
317 if (DEBUG) {
318 Log.v(TAG, String.format(
319 "config changed locale/LD: %s (%d) -> %s (%d)", mLocale, mLayoutDirection,
320 locale, ld));
321 }
322 mLocale = locale;
323 mLayoutDirection = ld;
324 refreshLayout(ld);
325 }
326 repositionNavigationBar();
327 }
328
329 @Override
330 public void dump(String prefix, FileDescriptor fd, PrintWriter pw, String[] args) {
331 if (mNavigationBarView != null) {
332 pw.print(" mNavigationBarWindowState=");
333 pw.println(windowStateToString(mNavigationBarWindowState));
334 pw.print(" mNavigationBarMode=");
335 pw.println(BarTransitions.modeToString(mNavigationBarMode));
336 dumpBarTransitions(pw, "mNavigationBarView", mNavigationBarView.getBarTransitions());
337 }
338
339 pw.print(" mNavigationBarView=");
340 if (mNavigationBarView == null) {
341 pw.println("null");
342 } else {
343 mNavigationBarView.dump(fd, pw, args);
344 }
345 }
346
347 // ----- CommandQueue Callbacks -----
348
349 @Override
350 public void setImeWindowStatus(IBinder token, int vis, int backDisposition,
351 boolean showImeSwitcher) {
352 boolean imeShown = (vis & InputMethodService.IME_VISIBLE) != 0;
353 int hints = mNavigationIconHints;
Yohei Yukawa386f50e2018-03-14 13:03:42 -0700354 switch (backDisposition) {
355 case InputMethodService.BACK_DISPOSITION_DEFAULT:
356 case InputMethodService.BACK_DISPOSITION_WILL_NOT_DISMISS:
357 case InputMethodService.BACK_DISPOSITION_WILL_DISMISS:
358 if (imeShown) {
359 hints |= NAVIGATION_HINT_BACK_ALT;
360 } else {
361 hints &= ~NAVIGATION_HINT_BACK_ALT;
362 }
363 break;
364 case InputMethodService.BACK_DISPOSITION_ADJUST_NOTHING:
365 hints &= ~NAVIGATION_HINT_BACK_ALT;
366 break;
Jason Monk49fa0162017-01-11 09:21:56 -0500367 }
368 if (showImeSwitcher) {
369 hints |= NAVIGATION_HINT_IME_SHOWN;
370 } else {
371 hints &= ~NAVIGATION_HINT_IME_SHOWN;
372 }
373 if (hints == mNavigationIconHints) return;
374
375 mNavigationIconHints = hints;
376
377 if (mNavigationBarView != null) {
378 mNavigationBarView.setNavigationIconHints(hints);
379 }
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500380 mStatusBar.checkBarModes();
Jason Monk49fa0162017-01-11 09:21:56 -0500381 }
382
383 @Override
384 public void topAppWindowChanged(boolean showMenu) {
385 if (mNavigationBarView != null) {
386 mNavigationBarView.setMenuVisibility(showMenu);
387 }
388 }
389
390 @Override
391 public void setWindowState(int window, int state) {
392 if (mNavigationBarView != null
393 && window == StatusBarManager.WINDOW_NAVIGATION_BAR
394 && mNavigationBarWindowState != state) {
395 mNavigationBarWindowState = state;
396 if (DEBUG_WINDOW_STATE) Log.d(TAG, "Navigation bar " + windowStateToString(state));
Mike Digman5aeca792018-03-05 11:14:39 -0800397
398 // If the navbar is visible, show the rotate button if there's a pending suggestion
399 if (state == WINDOW_STATE_SHOWING && mPendingRotationSuggestion) {
400 showAndLogRotationSuggestion();
401 }
Jason Monk49fa0162017-01-11 09:21:56 -0500402 }
403 }
404
Mike Digman7d092772018-01-11 12:10:32 -0800405 @Override
Mike Digmane0777312018-01-19 12:41:51 -0800406 public void onRotationProposal(final int rotation, boolean isValid) {
Mike Digman3e33da62018-03-14 16:25:11 -0700407 final int winRotation = mWindowManager.getDefaultDisplay().getRotation();
Mike Digmandd2f49e2018-03-16 10:54:22 -0700408 final boolean rotateSuggestionsDisabled = hasDisable2RotateSuggestionFlag(mDisabledFlags2);
Mike Digman3e33da62018-03-14 16:25:11 -0700409 if (DEBUG_ROTATION) {
410 Log.v(TAG, "onRotationProposal proposedRotation=" + Surface.rotationToString(rotation)
411 + ", winRotation=" + Surface.rotationToString(winRotation)
412 + ", isValid=" + isValid + ", mNavBarWindowState="
413 + StatusBarManager.windowStateToString(mNavigationBarWindowState)
Mike Digmandd2f49e2018-03-16 10:54:22 -0700414 + ", rotateSuggestionsDisabled=" + rotateSuggestionsDisabled
Mike Digman3e33da62018-03-14 16:25:11 -0700415 + ", isRotateButtonVisible=" + (mNavigationBarView == null ? "null" :
416 mNavigationBarView.isRotateButtonVisible()));
417 }
418
Mike Digmandd2f49e2018-03-16 10:54:22 -0700419 // Respect the disabled flag, no need for action as flag change callback will handle hiding
420 if (rotateSuggestionsDisabled) return;
421
Mike Digmane0777312018-01-19 12:41:51 -0800422 // This method will be called on rotation suggestion changes even if the proposed rotation
423 // is not valid for the top app. Use invalid rotation choices as a signal to remove the
424 // rotate button if shown.
Mike Digmane0777312018-01-19 12:41:51 -0800425 if (!isValid) {
Mike Digman1e28a5a2018-02-14 10:49:19 -0800426 setRotateSuggestionButtonState(false);
Mike Digmane0777312018-01-19 12:41:51 -0800427 return;
428 }
429
Mike Digman5aeca792018-03-05 11:14:39 -0800430 // If window rotation matches suggested rotation, remove any current suggestions
Mike Digman1e28a5a2018-02-14 10:49:19 -0800431 if (rotation == winRotation) {
Mike Digman5aeca792018-03-05 11:14:39 -0800432 getView().removeCallbacks(mRemoveRotationProposal);
Mike Digman1e28a5a2018-02-14 10:49:19 -0800433 setRotateSuggestionButtonState(false);
Mike Digman5aeca792018-03-05 11:14:39 -0800434 return;
Mike Digman7d092772018-01-11 12:10:32 -0800435 }
Mike Digman5aeca792018-03-05 11:14:39 -0800436
437 // Prepare to show the navbar icon by updating the icon style to change anim params
438 mLastRotationSuggestion = rotation; // Remember rotation for click
439 if (mNavigationBarView != null) {
440 final boolean rotationCCW = isRotationAnimationCCW(winRotation, rotation);
441 int style;
442 if (winRotation == Surface.ROTATION_0 || winRotation == Surface.ROTATION_180) {
443 style = rotationCCW ? R.style.RotateButtonCCWStart90 :
444 R.style.RotateButtonCWStart90;
445 } else { // 90 or 270
446 style = rotationCCW ? R.style.RotateButtonCCWStart0 :
447 R.style.RotateButtonCWStart0;
448 }
449 mNavigationBarView.updateRotateSuggestionButtonStyle(style, true);
450 }
451
452 if (mNavigationBarWindowState != WINDOW_STATE_SHOWING) {
453 // If the navbar isn't shown, flag the rotate icon to be shown should the navbar become
454 // visible given some time limit.
455 mPendingRotationSuggestion = true;
456 getView().removeCallbacks(mCancelPendingRotationProposal);
457 getView().postDelayed(mCancelPendingRotationProposal,
458 NAVBAR_HIDDEN_PENDING_ICON_TIMEOUT_MS);
459
460 } else { // The navbar is visible so show the icon right away
461 showAndLogRotationSuggestion();
462 }
463 }
464
Mike Digmandd2f49e2018-03-16 10:54:22 -0700465 private void onRotationSuggestionsDisabled() {
466 // Immediately hide the rotate button and clear any planned removal
467 setRotateSuggestionButtonState(false, true);
Mike Digmane14c4752018-03-20 12:14:54 -0700468
469 // This method can be called before view setup is done, ensure getView isn't null
470 final View v = getView();
471 if (v != null) v.removeCallbacks(mRemoveRotationProposal);
Mike Digmandd2f49e2018-03-16 10:54:22 -0700472 }
473
Mike Digman5aeca792018-03-05 11:14:39 -0800474 private void showAndLogRotationSuggestion() {
475 setRotateSuggestionButtonState(true);
476 rescheduleRotationTimeout(false);
477 mMetricsLogger.visible(MetricsEvent.ROTATION_SUGGESTION_SHOWN);
Mike Digman7d092772018-01-11 12:10:32 -0800478 }
479
Mike Digman1e28a5a2018-02-14 10:49:19 -0800480 private boolean isRotationAnimationCCW(int from, int to) {
481 // All 180deg WM rotation animations are CCW, match that
482 if (from == Surface.ROTATION_0 && to == Surface.ROTATION_90) return false;
483 if (from == Surface.ROTATION_0 && to == Surface.ROTATION_180) return true; //180d so CCW
484 if (from == Surface.ROTATION_0 && to == Surface.ROTATION_270) return true;
485 if (from == Surface.ROTATION_90 && to == Surface.ROTATION_0) return true;
486 if (from == Surface.ROTATION_90 && to == Surface.ROTATION_180) return false;
487 if (from == Surface.ROTATION_90 && to == Surface.ROTATION_270) return true; //180d so CCW
488 if (from == Surface.ROTATION_180 && to == Surface.ROTATION_0) return true; //180d so CCW
489 if (from == Surface.ROTATION_180 && to == Surface.ROTATION_90) return true;
490 if (from == Surface.ROTATION_180 && to == Surface.ROTATION_270) return false;
491 if (from == Surface.ROTATION_270 && to == Surface.ROTATION_0) return false;
492 if (from == Surface.ROTATION_270 && to == Surface.ROTATION_90) return true; //180d so CCW
493 if (from == Surface.ROTATION_270 && to == Surface.ROTATION_180) return true;
494 return false; // Default
Mike Digmana48cf192018-02-12 17:52:48 -0800495 }
496
Mike Digman1e28a5a2018-02-14 10:49:19 -0800497 public void setRotateSuggestionButtonState(final boolean visible) {
498 setRotateSuggestionButtonState(visible, false);
499 }
500
501 public void setRotateSuggestionButtonState(final boolean visible, final boolean force) {
502 if (mNavigationBarView == null) return;
503
504 // At any point the the button can become invisible because an a11y service became active.
505 // Similarly, a call to make the button visible may be rejected because an a11y service is
506 // active. Must account for this.
507
508 ButtonDispatcher rotBtn = mNavigationBarView.getRotateSuggestionButton();
509 final boolean currentlyVisible = mNavigationBarView.isRotateButtonVisible();
510
511 // Rerun a show animation to indicate change but don't rerun a hide animation
512 if (!visible && !currentlyVisible) return;
513
514 View view = rotBtn.getCurrentView();
515 if (view == null) return;
516
517 KeyButtonDrawable kbd = rotBtn.getImageDrawable();
518 if (kbd == null) return;
519
520 // The KBD and AVD is recreated every new valid suggestion because of style changes.
521 AnimatedVectorDrawable animIcon = null;
522 if (kbd.getDrawable(0) instanceof AnimatedVectorDrawable) {
523 animIcon = (AnimatedVectorDrawable) kbd.getDrawable(0);
524 }
525
Mike Digman5aeca792018-03-05 11:14:39 -0800526 // Clear any pending suggestion flag as it has either been nullified or is being shown
527 mPendingRotationSuggestion = false;
528 getView().removeCallbacks(mCancelPendingRotationProposal);
529
530 // Handle the visibility change and animation
Mike Digman1e28a5a2018-02-14 10:49:19 -0800531 if (visible) { // Appear and change (cannot force)
Mike Digman85a9bea2018-02-23 15:08:53 -0800532 // Stop and clear any currently running hide animations
Mike Digman1e28a5a2018-02-14 10:49:19 -0800533 if (mRotateHideAnimator != null && mRotateHideAnimator.isRunning()) {
Mike Digman85a9bea2018-02-23 15:08:53 -0800534 mRotateHideAnimator.cancel();
Mike Digman1e28a5a2018-02-14 10:49:19 -0800535 }
Mike Digman85a9bea2018-02-23 15:08:53 -0800536 mRotateHideAnimator = null;
Mike Digman1e28a5a2018-02-14 10:49:19 -0800537
538 // Reset the alpha if any has changed due to hide animation
539 view.setAlpha(1f);
540
541 // Run the rotate icon's animation if it has one
542 if (animIcon != null) {
543 animIcon.reset();
544 animIcon.start();
545 }
546
Mike Digman50752642018-02-15 13:36:09 -0800547 if (!isRotateSuggestionIntroduced()) mViewRippler.start(view);
548
Mike Digman1e28a5a2018-02-14 10:49:19 -0800549 // Set visibility, may fail if a11y service is active.
550 // If invisible, call will stop animation.
551 mNavigationBarView.setRotateButtonVisibility(true);
552
553 } else { // Hide
554
Mike Digman50752642018-02-15 13:36:09 -0800555 mViewRippler.stop(); // Prevent any pending ripples, force hide or not
556
Mike Digman1e28a5a2018-02-14 10:49:19 -0800557 if (force) {
558 // If a hide animator is running stop it and make invisible
559 if (mRotateHideAnimator != null && mRotateHideAnimator.isRunning()) {
560 mRotateHideAnimator.pause();
561 }
562 mNavigationBarView.setRotateButtonVisibility(false);
563 return;
564 }
565
566 // Don't start any new hide animations if one is running
567 if (mRotateHideAnimator != null && mRotateHideAnimator.isRunning()) return;
568
569 ObjectAnimator fadeOut = ObjectAnimator.ofFloat(view, "alpha",
570 0f);
571 fadeOut.setDuration(BUTTON_FADE_IN_OUT_DURATION_MS);
572 fadeOut.setInterpolator(Interpolators.LINEAR);
573 fadeOut.addListener(new AnimatorListenerAdapter() {
574 @Override
575 public void onAnimationEnd(Animator animation) {
576 mNavigationBarView.setRotateButtonVisibility(false);
577 }
578 });
579
580 mRotateHideAnimator = fadeOut;
581 fadeOut.start();
Mike Digmana48cf192018-02-12 17:52:48 -0800582 }
583 }
584
Mike Digman90402952018-01-22 16:05:51 -0800585 private void rescheduleRotationTimeout(final boolean reasonHover) {
586 // May be called due to a new rotation proposal or a change in hover state
587 if (reasonHover) {
588 // Don't reschedule if a hide animator is running
Mike Digman1e28a5a2018-02-14 10:49:19 -0800589 if (mRotateHideAnimator != null && mRotateHideAnimator.isRunning()) return;
Mike Digman90402952018-01-22 16:05:51 -0800590 // Don't reschedule if not visible
Mike Digman1e28a5a2018-02-14 10:49:19 -0800591 if (!mNavigationBarView.isRotateButtonVisible()) return;
Mike Digman90402952018-01-22 16:05:51 -0800592 }
593
Mike Digman5aeca792018-03-05 11:14:39 -0800594 getView().removeCallbacks(mRemoveRotationProposal); // Stop any pending removal
595 getView().postDelayed(mRemoveRotationProposal,
Mike Digman90402952018-01-22 16:05:51 -0800596 computeRotationProposalTimeout()); // Schedule timeout
597 }
598
599 private int computeRotationProposalTimeout() {
600 if (mAccessibilityFeedbackEnabled) return 20000;
601 if (mHoveringRotationSuggestion) return 16000;
602 return 6000;
603 }
604
Mike Digman50752642018-02-15 13:36:09 -0800605 private boolean isRotateSuggestionIntroduced() {
606 ContentResolver cr = getContext().getContentResolver();
607 return Settings.Secure.getInt(cr, Settings.Secure.NUM_ROTATION_SUGGESTIONS_ACCEPTED, 0)
608 >= NUM_ACCEPTED_ROTATION_SUGGESTIONS_FOR_INTRODUCTION;
609 }
610
611 private void incrementNumAcceptedRotationSuggestionsIfNeeded() {
612 // Get the number of accepted suggestions
613 ContentResolver cr = getContext().getContentResolver();
614 final int numSuggestions = Settings.Secure.getInt(cr,
615 Settings.Secure.NUM_ROTATION_SUGGESTIONS_ACCEPTED, 0);
616
617 // Increment the number of accepted suggestions only if it would change intro mode
618 if (numSuggestions < NUM_ACCEPTED_ROTATION_SUGGESTIONS_FOR_INTRODUCTION) {
619 Settings.Secure.putInt(cr, Settings.Secure.NUM_ROTATION_SUGGESTIONS_ACCEPTED,
620 numSuggestions + 1);
621 }
622 }
623
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500624 // Injected from StatusBar at creation.
Jason Monk49fa0162017-01-11 09:21:56 -0500625 public void setCurrentSysuiVisibility(int systemUiVisibility) {
626 mSystemUiVisibility = systemUiVisibility;
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500627 mNavigationBarMode = mStatusBar.computeBarMode(0, mSystemUiVisibility,
Jason Monk49fa0162017-01-11 09:21:56 -0500628 View.NAVIGATION_BAR_TRANSIENT, View.NAVIGATION_BAR_TRANSLUCENT,
629 View.NAVIGATION_BAR_TRANSPARENT);
630 checkNavBarModes();
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500631 mStatusBar.touchAutoHide();
Jason Monk49fa0162017-01-11 09:21:56 -0500632 mLightBarController.onNavigationVisibilityChanged(mSystemUiVisibility, 0 /* mask */,
633 true /* nbModeChanged */, mNavigationBarMode);
634 }
635
636 @Override
637 public void setSystemUiVisibility(int vis, int fullscreenStackVis, int dockedStackVis,
638 int mask, Rect fullscreenStackBounds, Rect dockedStackBounds) {
639 final int oldVal = mSystemUiVisibility;
640 final int newVal = (oldVal & ~mask) | (vis & mask);
641 final int diff = newVal ^ oldVal;
642 boolean nbModeChanged = false;
643 if (diff != 0) {
644 mSystemUiVisibility = newVal;
645
646 // update navigation bar mode
647 final int nbMode = getView() == null
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500648 ? -1 : mStatusBar.computeBarMode(oldVal, newVal,
Jason Monk49fa0162017-01-11 09:21:56 -0500649 View.NAVIGATION_BAR_TRANSIENT, View.NAVIGATION_BAR_TRANSLUCENT,
650 View.NAVIGATION_BAR_TRANSPARENT);
651 nbModeChanged = nbMode != -1;
652 if (nbModeChanged) {
653 if (mNavigationBarMode != nbMode) {
654 mNavigationBarMode = nbMode;
655 checkNavBarModes();
656 }
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500657 mStatusBar.touchAutoHide();
Jason Monk49fa0162017-01-11 09:21:56 -0500658 }
659 }
660
661 mLightBarController.onNavigationVisibilityChanged(vis, mask, nbModeChanged,
662 mNavigationBarMode);
663 }
664
665 @Override
666 public void disable(int state1, int state2, boolean animate) {
Mike Digmandd2f49e2018-03-16 10:54:22 -0700667 // Navigation bar flags are in both state1 and state2.
668 final int masked = state1 & (StatusBarManager.DISABLE_HOME
Jason Monk49fa0162017-01-11 09:21:56 -0500669 | StatusBarManager.DISABLE_RECENT
670 | StatusBarManager.DISABLE_BACK
671 | StatusBarManager.DISABLE_SEARCH);
672 if (masked != mDisabledFlags1) {
673 mDisabledFlags1 = masked;
674 if (mNavigationBarView != null) mNavigationBarView.setDisabledFlags(state1);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000675 updateScreenPinningGestures();
Jason Monk49fa0162017-01-11 09:21:56 -0500676 }
Mike Digmandd2f49e2018-03-16 10:54:22 -0700677
678 final int masked2 = state2 & (StatusBarManager.DISABLE2_ROTATE_SUGGESTIONS);
679 if (masked2 != mDisabledFlags2) {
680 mDisabledFlags2 = masked2;
681 setDisabled2Flags(masked2);
682 }
683 }
684
685 private void setDisabled2Flags(int state2) {
686 // Method only called on change of disable2 flags
687 final boolean rotateSuggestionsDisabled = hasDisable2RotateSuggestionFlag(state2);
688 if (rotateSuggestionsDisabled) onRotationSuggestionsDisabled();
689 }
690
691 private boolean hasDisable2RotateSuggestionFlag(int disable2Flags) {
692 return (disable2Flags & StatusBarManager.DISABLE2_ROTATE_SUGGESTIONS) != 0;
Jason Monk49fa0162017-01-11 09:21:56 -0500693 }
694
695 // ----- Internal stuffz -----
696
697 private void refreshLayout(int layoutDirection) {
698 if (mNavigationBarView != null) {
699 mNavigationBarView.setLayoutDirection(layoutDirection);
700 }
701 }
702
703 private boolean shouldDisableNavbarGestures() {
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500704 return !mStatusBar.isDeviceProvisioned()
Matthew Ngfee0b5b2018-02-21 15:38:21 -0800705 || (mDisabledFlags1 & StatusBarManager.DISABLE_SEARCH) != 0;
Jason Monk49fa0162017-01-11 09:21:56 -0500706 }
707
708 private void repositionNavigationBar() {
709 if (mNavigationBarView == null || !mNavigationBarView.isAttachedToWindow()) return;
710
711 prepareNavigationBarView();
712
713 mWindowManager.updateViewLayout((View) mNavigationBarView.getParent(),
714 ((View) mNavigationBarView.getParent()).getLayoutParams());
715 }
716
Matthew Ng9c3bce52018-02-01 22:00:31 +0000717 private void updateScreenPinningGestures() {
718 if (mNavigationBarView == null) {
719 return;
720 }
721
722 // Change the cancel pin gesture to home and back if recents button is invisible
723 boolean recentsVisible = mNavigationBarView.isRecentsButtonVisible();
Matthew Ng9c3bce52018-02-01 22:00:31 +0000724 ButtonDispatcher backButton = mNavigationBarView.getBackButton();
725 if (recentsVisible) {
Matthew Ng9c3bce52018-02-01 22:00:31 +0000726 backButton.setOnLongClickListener(this::onLongPressBackRecents);
727 } else {
Matthew Ng9c3bce52018-02-01 22:00:31 +0000728 backButton.setOnLongClickListener(this::onLongPressBackHome);
729 }
730 }
731
Siarhei Vishniakoud002a0a2017-06-05 22:44:37 +0100732 private void notifyNavigationBarScreenOn() {
Matthew Ngd0a73e72018-03-02 15:16:03 -0800733 mNavigationBarView.updateNavButtonIcons();
Jason Monk49fa0162017-01-11 09:21:56 -0500734 }
735
736 private void prepareNavigationBarView() {
737 mNavigationBarView.reorient();
738
739 ButtonDispatcher recentsButton = mNavigationBarView.getRecentsButton();
740 recentsButton.setOnClickListener(this::onRecentsClick);
741 recentsButton.setOnTouchListener(this::onRecentsTouch);
742 recentsButton.setLongClickable(true);
743 recentsButton.setOnLongClickListener(this::onLongPressBackRecents);
744
745 ButtonDispatcher backButton = mNavigationBarView.getBackButton();
746 backButton.setLongClickable(true);
Jason Monk49fa0162017-01-11 09:21:56 -0500747
748 ButtonDispatcher homeButton = mNavigationBarView.getHomeButton();
749 homeButton.setOnTouchListener(this::onHomeTouch);
Matthew Ngfee0b5b2018-02-21 15:38:21 -0800750 homeButton.setOnLongClickListener(this::onHomeLongClick);
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800751
752 ButtonDispatcher accessibilityButton = mNavigationBarView.getAccessibilityButton();
753 accessibilityButton.setOnClickListener(this::onAccessibilityClick);
754 accessibilityButton.setOnLongClickListener(this::onAccessibilityLongClick);
Phil Weaverdb9a7742017-04-18 08:15:06 -0700755 updateAccessibilityServicesState(mAccessibilityManager);
Mike Digman7d092772018-01-11 12:10:32 -0800756
757 ButtonDispatcher rotateSuggestionButton = mNavigationBarView.getRotateSuggestionButton();
758 rotateSuggestionButton.setOnClickListener(this::onRotateSuggestionClick);
Mike Digman90402952018-01-22 16:05:51 -0800759 rotateSuggestionButton.setOnHoverListener(this::onRotateSuggestionHover);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000760 updateScreenPinningGestures();
Jason Monk49fa0162017-01-11 09:21:56 -0500761 }
762
763 private boolean onHomeTouch(View v, MotionEvent event) {
764 if (mHomeBlockedThisTouch && event.getActionMasked() != MotionEvent.ACTION_DOWN) {
765 return true;
766 }
767 // If an incoming call is ringing, HOME is totally disabled.
768 // (The user is already on the InCallUI at this point,
769 // and his ONLY options are to answer or reject the call.)
770 switch (event.getAction()) {
771 case MotionEvent.ACTION_DOWN:
772 mHomeBlockedThisTouch = false;
773 TelecomManager telecomManager =
774 getContext().getSystemService(TelecomManager.class);
775 if (telecomManager != null && telecomManager.isRinging()) {
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500776 if (mStatusBar.isKeyguardShowing()) {
Jason Monk49fa0162017-01-11 09:21:56 -0500777 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call. " +
778 "No heads up");
779 mHomeBlockedThisTouch = true;
780 return true;
781 }
782 }
783 break;
784 case MotionEvent.ACTION_UP:
785 case MotionEvent.ACTION_CANCEL:
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500786 mStatusBar.awakenDreams();
Jason Monk49fa0162017-01-11 09:21:56 -0500787 break;
788 }
789 return false;
790 }
791
792 private void onVerticalChanged(boolean isVertical) {
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500793 mStatusBar.setQsScrimEnabled(!isVertical);
Jason Monk49fa0162017-01-11 09:21:56 -0500794 }
795
796 private boolean onNavigationTouch(View v, MotionEvent event) {
Eliot Courtneycb5d3162017-08-09 16:53:15 +0900797 mStatusBar.checkUserAutohide(event);
Jason Monk49fa0162017-01-11 09:21:56 -0500798 return false;
799 }
800
Jason Monk865246d2017-01-19 08:27:01 -0500801 @VisibleForTesting
802 boolean onHomeLongClick(View v) {
Matthew Ng6ff33b72018-02-27 13:47:38 -0800803 if (!mNavigationBarView.isRecentsButtonVisible()
804 && ActivityManagerWrapper.getInstance().isScreenPinningActive()) {
Matthew Ngfee0b5b2018-02-21 15:38:21 -0800805 return onLongPressBackHome(v);
806 }
Jason Monk49fa0162017-01-11 09:21:56 -0500807 if (shouldDisableNavbarGestures()) {
808 return false;
809 }
Matthew Ng2ea93b72018-03-14 19:43:18 +0000810 mNavigationBarView.onNavigationButtonLongPress(v);
Mike Digmanc94759d2018-01-23 11:01:21 -0800811 mMetricsLogger.action(MetricsEvent.ACTION_ASSIST_LONG_PRESS);
Jason Monk49fa0162017-01-11 09:21:56 -0500812 mAssistManager.startAssist(new Bundle() /* args */);
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500813 mStatusBar.awakenDreams();
Matthew Ngdc79e5c2017-12-14 17:37:35 -0800814
Jason Monk49fa0162017-01-11 09:21:56 -0500815 if (mNavigationBarView != null) {
816 mNavigationBarView.abortCurrentGesture();
817 }
818 return true;
819 }
820
821 // additional optimization when we have software system buttons - start loading the recent
822 // tasks on touch down
823 private boolean onRecentsTouch(View v, MotionEvent event) {
824 int action = event.getAction() & MotionEvent.ACTION_MASK;
825 if (action == MotionEvent.ACTION_DOWN) {
826 mCommandQueue.preloadRecentApps();
827 } else if (action == MotionEvent.ACTION_CANCEL) {
828 mCommandQueue.cancelPreloadRecentApps();
829 } else if (action == MotionEvent.ACTION_UP) {
830 if (!v.isPressed()) {
831 mCommandQueue.cancelPreloadRecentApps();
832 }
833 }
834 return false;
835 }
836
837 private void onRecentsClick(View v) {
838 if (LatencyTracker.isEnabled(getContext())) {
839 LatencyTracker.getInstance(getContext()).onActionStart(
840 LatencyTracker.ACTION_TOGGLE_RECENTS);
841 }
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500842 mStatusBar.awakenDreams();
Jason Monk49fa0162017-01-11 09:21:56 -0500843 mCommandQueue.toggleRecentApps();
844 }
845
Matthew Ng9c3bce52018-02-01 22:00:31 +0000846 private boolean onLongPressBackHome(View v) {
Matthew Ng2ea93b72018-03-14 19:43:18 +0000847 mNavigationBarView.onNavigationButtonLongPress(v);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000848 return onLongPressNavigationButtons(v, R.id.back, R.id.home);
849 }
850
851 private boolean onLongPressBackRecents(View v) {
Matthew Ng2ea93b72018-03-14 19:43:18 +0000852 mNavigationBarView.onNavigationButtonLongPress(v);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000853 return onLongPressNavigationButtons(v, R.id.back, R.id.recent_apps);
854 }
855
Jason Monk49fa0162017-01-11 09:21:56 -0500856 /**
Matthew Ng9c3bce52018-02-01 22:00:31 +0000857 * This handles long-press of both back and recents/home. Back is the common button with
858 * combination of recents if it is visible or home if recents is invisible.
859 * They are handled together to capture them both being long-pressed
Jason Monk49fa0162017-01-11 09:21:56 -0500860 * at the same time to exit screen pinning (lock task).
861 *
Matthew Ng9c3bce52018-02-01 22:00:31 +0000862 * When accessibility mode is on, only a long-press from recents/home
Jason Monk49fa0162017-01-11 09:21:56 -0500863 * is required to exit.
864 *
865 * In all other circumstances we try to pass through long-press events
866 * for Back, so that apps can still use it. Which can be from two things.
867 * 1) Not currently in screen pinning (lock task).
Matthew Ng9c3bce52018-02-01 22:00:31 +0000868 * 2) Back is long-pressed without recents/home.
Jason Monk49fa0162017-01-11 09:21:56 -0500869 */
Matthew Ng9c3bce52018-02-01 22:00:31 +0000870 private boolean onLongPressNavigationButtons(View v, @IdRes int btnId1, @IdRes int btnId2) {
Jason Monk49fa0162017-01-11 09:21:56 -0500871 try {
872 boolean sendBackLongPress = false;
873 IActivityManager activityManager = ActivityManagerNative.getDefault();
874 boolean touchExplorationEnabled = mAccessibilityManager.isTouchExplorationEnabled();
875 boolean inLockTaskMode = activityManager.isInLockTaskMode();
876 if (inLockTaskMode && !touchExplorationEnabled) {
877 long time = System.currentTimeMillis();
Matthew Ng9c3bce52018-02-01 22:00:31 +0000878
Jason Monk49fa0162017-01-11 09:21:56 -0500879 // If we recently long-pressed the other button then they were
880 // long-pressed 'together'
881 if ((time - mLastLockToAppLongPress) < LOCK_TO_APP_GESTURE_TOLERENCE) {
Benjamin Franza83859f2017-07-03 16:34:14 +0100882 activityManager.stopSystemLockTaskMode();
Jason Monk49fa0162017-01-11 09:21:56 -0500883 // When exiting refresh disabled flags.
Matthew Ngd0a73e72018-03-02 15:16:03 -0800884 mNavigationBarView.updateNavButtonIcons();
Jason Monk49fa0162017-01-11 09:21:56 -0500885 return true;
Matthew Ng9c3bce52018-02-01 22:00:31 +0000886 } else if (v.getId() == btnId1) {
887 ButtonDispatcher button = btnId2 == R.id.recent_apps
888 ? mNavigationBarView.getRecentsButton()
889 : mNavigationBarView.getHomeButton();
890 if (!button.getCurrentView().isPressed()) {
891 // If we aren't pressing recents/home right now then they presses
892 // won't be together, so send the standard long-press action.
893 sendBackLongPress = true;
894 }
Jason Monk49fa0162017-01-11 09:21:56 -0500895 }
896 mLastLockToAppLongPress = time;
897 } else {
898 // If this is back still need to handle sending the long-press event.
Matthew Ng9c3bce52018-02-01 22:00:31 +0000899 if (v.getId() == btnId1) {
Jason Monk49fa0162017-01-11 09:21:56 -0500900 sendBackLongPress = true;
901 } else if (touchExplorationEnabled && inLockTaskMode) {
Matthew Ng9c3bce52018-02-01 22:00:31 +0000902 // When in accessibility mode a long press that is recents/home (not back)
Jason Monk49fa0162017-01-11 09:21:56 -0500903 // should stop lock task.
Benjamin Franza83859f2017-07-03 16:34:14 +0100904 activityManager.stopSystemLockTaskMode();
Jason Monk49fa0162017-01-11 09:21:56 -0500905 // When exiting refresh disabled flags.
Matthew Ngd0a73e72018-03-02 15:16:03 -0800906 mNavigationBarView.updateNavButtonIcons();
Jason Monk49fa0162017-01-11 09:21:56 -0500907 return true;
Matthew Ng9c3bce52018-02-01 22:00:31 +0000908 } else if (v.getId() == btnId2) {
909 return btnId2 == R.id.recent_apps
910 ? onLongPressRecents()
911 : onHomeLongClick(mNavigationBarView.getHomeButton().getCurrentView());
Jason Monk49fa0162017-01-11 09:21:56 -0500912 }
913 }
914 if (sendBackLongPress) {
915 KeyButtonView keyButtonView = (KeyButtonView) v;
916 keyButtonView.sendEvent(KeyEvent.ACTION_DOWN, KeyEvent.FLAG_LONG_PRESS);
917 keyButtonView.sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_LONG_CLICKED);
918 return true;
919 }
920 } catch (RemoteException e) {
921 Log.d(TAG, "Unable to reach activity manager", e);
922 }
923 return false;
924 }
925
926 private boolean onLongPressRecents() {
Erik Wolsheimer9be3a062017-05-31 14:59:57 -0700927 if (mRecents == null || !ActivityManager.supportsMultiWindow(getContext())
Matthew Ng43db6d22017-06-27 15:29:39 -0700928 || !mDivider.getView().getSnapAlgorithm().isSplitScreenFeasible()
929 || Recents.getConfiguration().isLowRamDevice) {
Jason Monk49fa0162017-01-11 09:21:56 -0500930 return false;
931 }
932
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500933 return mStatusBar.toggleSplitScreenMode(MetricsEvent.ACTION_WINDOW_DOCK_LONGPRESS,
Jason Monk49fa0162017-01-11 09:21:56 -0500934 MetricsEvent.ACTION_WINDOW_UNDOCK_LONGPRESS);
935 }
936
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800937 private void onAccessibilityClick(View v) {
938 mAccessibilityManager.notifyAccessibilityButtonClicked();
939 }
940
941 private boolean onAccessibilityLongClick(View v) {
Casey Burkhardt5e8b9802017-03-24 10:07:20 -0700942 Intent intent = new Intent(AccessibilityManager.ACTION_CHOOSE_ACCESSIBILITY_BUTTON);
943 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
Casey Burkhardt5d614402017-04-06 13:46:50 -0700944 v.getContext().startActivityAsUser(intent, UserHandle.CURRENT);
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800945 return true;
946 }
947
Phil Weaverdb9a7742017-04-18 08:15:06 -0700948 private void updateAccessibilityServicesState(AccessibilityManager accessibilityManager) {
Casey Burkhardt74922c62017-02-13 12:43:16 -0800949 int requestingServices = 0;
950 try {
Casey Burkhardt5d614402017-04-06 13:46:50 -0700951 if (Settings.Secure.getIntForUser(mContentResolver,
952 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_NAVBAR_ENABLED,
953 UserHandle.USER_CURRENT) == 1) {
Casey Burkhardt74922c62017-02-13 12:43:16 -0800954 requestingServices++;
955 }
956 } catch (Settings.SettingNotFoundException e) {
957 }
958
Mike Digman90402952018-01-22 16:05:51 -0800959 boolean feedbackEnabled = false;
Casey Burkhardt5d614402017-04-06 13:46:50 -0700960 // AccessibilityManagerService resolves services for the current user since the local
961 // AccessibilityManager is created from a Context with the INTERACT_ACROSS_USERS permission
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800962 final List<AccessibilityServiceInfo> services =
Phil Weaverdb9a7742017-04-18 08:15:06 -0700963 accessibilityManager.getEnabledAccessibilityServiceList(
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800964 AccessibilityServiceInfo.FEEDBACK_ALL_MASK);
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800965 for (int i = services.size() - 1; i >= 0; --i) {
966 AccessibilityServiceInfo info = services.get(i);
967 if ((info.flags & AccessibilityServiceInfo.FLAG_REQUEST_ACCESSIBILITY_BUTTON) != 0) {
968 requestingServices++;
969 }
Mike Digman90402952018-01-22 16:05:51 -0800970
971 if (info.feedbackType != 0 && info.feedbackType !=
972 AccessibilityServiceInfo.FEEDBACK_GENERIC) {
973 feedbackEnabled = true;
974 }
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800975 }
976
Mike Digman90402952018-01-22 16:05:51 -0800977 mAccessibilityFeedbackEnabled = feedbackEnabled;
978
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800979 final boolean showAccessibilityButton = requestingServices >= 1;
980 final boolean targetSelection = requestingServices >= 2;
981 mNavigationBarView.setAccessibilityButtonState(showAccessibilityButton, targetSelection);
982 }
983
Mike Digman7d092772018-01-11 12:10:32 -0800984 private void onRotateSuggestionClick(View v) {
Mike Digmanc94759d2018-01-23 11:01:21 -0800985 mMetricsLogger.action(MetricsEvent.ACTION_ROTATION_SUGGESTION_ACCEPTED);
Mike Digman50752642018-02-15 13:36:09 -0800986 incrementNumAcceptedRotationSuggestionsIfNeeded();
Mike Digman7d092772018-01-11 12:10:32 -0800987 mRotationLockController.setRotationLockedAtAngle(true, mLastRotationSuggestion);
988 }
989
Mike Digman90402952018-01-22 16:05:51 -0800990 private boolean onRotateSuggestionHover(View v, MotionEvent event) {
991 final int action = event.getActionMasked();
992 mHoveringRotationSuggestion = (action == MotionEvent.ACTION_HOVER_ENTER)
993 || (action == MotionEvent.ACTION_HOVER_MOVE);
994 rescheduleRotationTimeout(true);
995 return false; // Must return false so a11y hover events are dispatched correctly.
996 }
997
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500998 // ----- Methods that StatusBar talks to (should be minimized) -----
Jason Monk49fa0162017-01-11 09:21:56 -0500999
Jason Monk49fa0162017-01-11 09:21:56 -05001000 public void setLightBarController(LightBarController lightBarController) {
1001 mLightBarController = lightBarController;
1002 mLightBarController.setNavigationBar(mNavigationBarView.getLightTransitionsController());
1003 }
1004
1005 public boolean isSemiTransparent() {
1006 return mNavigationBarMode == MODE_SEMI_TRANSPARENT;
1007 }
1008
Jason Monk49fa0162017-01-11 09:21:56 -05001009 public void disableAnimationsDuringHide(long delay) {
1010 mNavigationBarView.setLayoutTransitionsEnabled(false);
1011 mNavigationBarView.postDelayed(() -> mNavigationBarView.setLayoutTransitionsEnabled(true),
1012 delay + StackStateAnimator.ANIMATION_DURATION_GO_TO_FULL_SHADE);
1013 }
1014
Jason Monk49fa0162017-01-11 09:21:56 -05001015 public BarTransitions getBarTransitions() {
1016 return mNavigationBarView.getBarTransitions();
1017 }
1018
1019 public void checkNavBarModes() {
Jason Monk2a6ea9c2017-01-26 11:14:51 -05001020 mStatusBar.checkBarMode(mNavigationBarMode,
Jason Monk49fa0162017-01-11 09:21:56 -05001021 mNavigationBarWindowState, mNavigationBarView.getBarTransitions());
1022 }
1023
1024 public void finishBarAnimations() {
1025 mNavigationBarView.getBarTransitions().finishAnimations();
1026 }
1027
Jason Monk91e587e2017-04-13 13:41:23 -04001028 private final AccessibilityServicesStateChangeListener mAccessibilityListener =
1029 this::updateAccessibilityServicesState;
1030
Casey Burkhardt74922c62017-02-13 12:43:16 -08001031 private class MagnificationContentObserver extends ContentObserver {
1032
1033 public MagnificationContentObserver(Handler handler) {
1034 super(handler);
1035 }
1036
1037 @Override
1038 public void onChange(boolean selfChange) {
Phil Weaverdb9a7742017-04-18 08:15:06 -07001039 NavigationBarFragment.this.updateAccessibilityServicesState(mAccessibilityManager);
Casey Burkhardt74922c62017-02-13 12:43:16 -08001040 }
1041 }
1042
Jason Monk49fa0162017-01-11 09:21:56 -05001043 private final Stub mRotationWatcher = new Stub() {
1044 @Override
Mike Digman90402952018-01-22 16:05:51 -08001045 public void onRotationChanged(final int rotation) throws RemoteException {
Jason Monk49fa0162017-01-11 09:21:56 -05001046 // We need this to be scheduled as early as possible to beat the redrawing of
1047 // window in response to the orientation change.
1048 Handler h = getView().getHandler();
1049 Message msg = Message.obtain(h, () -> {
Mike Digman85ff7fa2018-01-23 14:59:52 -08001050
1051 // If the screen rotation changes while locked, potentially update lock to flow with
Mike Digman90402952018-01-22 16:05:51 -08001052 // new screen rotation and hide any showing suggestions.
1053 if (mRotationLockController.isRotationLocked()) {
Mike Digman85ff7fa2018-01-23 14:59:52 -08001054 if (shouldOverrideUserLockPrefs(rotation)) {
1055 mRotationLockController.setRotationLockedAtAngle(true, rotation);
1056 }
Mike Digman1e28a5a2018-02-14 10:49:19 -08001057 setRotateSuggestionButtonState(false, true);
Mike Digman90402952018-01-22 16:05:51 -08001058 }
1059
Jason Monk49fa0162017-01-11 09:21:56 -05001060 if (mNavigationBarView != null
1061 && mNavigationBarView.needsReorient(rotation)) {
1062 repositionNavigationBar();
1063 }
1064 });
1065 msg.setAsynchronous(true);
1066 h.sendMessageAtFrontOfQueue(msg);
1067 }
Mike Digman85ff7fa2018-01-23 14:59:52 -08001068
1069 private boolean shouldOverrideUserLockPrefs(final int rotation) {
Mike Digmanab650252018-03-06 11:01:41 -08001070 // Only override user prefs when returning to the natural rotation (normally portrait).
Mike Digman85ff7fa2018-01-23 14:59:52 -08001071 // Don't let apps that force landscape or 180 alter user lock.
Mike Digmanab650252018-03-06 11:01:41 -08001072 return rotation == NATURAL_ROTATION;
Mike Digman85ff7fa2018-01-23 14:59:52 -08001073 }
Jason Monk49fa0162017-01-11 09:21:56 -05001074 };
1075
1076 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
1077 @Override
1078 public void onReceive(Context context, Intent intent) {
1079 String action = intent.getAction();
Siarhei Vishniakoud002a0a2017-06-05 22:44:37 +01001080 if (Intent.ACTION_SCREEN_OFF.equals(action)
1081 || Intent.ACTION_SCREEN_ON.equals(action)) {
1082 notifyNavigationBarScreenOn();
Jason Monk49fa0162017-01-11 09:21:56 -05001083 }
1084 }
1085 };
1086
Mike Digman7d092772018-01-11 12:10:32 -08001087 class TaskStackListenerImpl extends SysUiTaskStackChangeListener {
1088 // Invalidate any rotation suggestion on task change or activity orientation change
1089 // Note: all callbacks happen on main thread
1090
1091 @Override
1092 public void onTaskStackChanged() {
Mike Digman1e28a5a2018-02-14 10:49:19 -08001093 setRotateSuggestionButtonState(false);
Mike Digman7d092772018-01-11 12:10:32 -08001094 }
1095
1096 @Override
1097 public void onTaskRemoved(int taskId) {
Mike Digman1e28a5a2018-02-14 10:49:19 -08001098 setRotateSuggestionButtonState(false);
Mike Digman7d092772018-01-11 12:10:32 -08001099 }
1100
1101 @Override
1102 public void onTaskMovedToFront(int taskId) {
Mike Digman1e28a5a2018-02-14 10:49:19 -08001103 setRotateSuggestionButtonState(false);
Mike Digman7d092772018-01-11 12:10:32 -08001104 }
1105
1106 @Override
1107 public void onActivityRequestedOrientationChanged(int taskId, int requestedOrientation) {
Mike Digman85a9bea2018-02-23 15:08:53 -08001108 // Only hide the icon if the top task changes its requestedOrientation
1109 // Launcher can alter its requestedOrientation while it's not on top, don't hide on this
1110 final boolean top = ActivityManagerWrapper.getInstance().getRunningTask().id == taskId;
1111 if (top) setRotateSuggestionButtonState(false);
Mike Digman7d092772018-01-11 12:10:32 -08001112 }
1113 }
1114
Mike Digman50752642018-02-15 13:36:09 -08001115 private class ViewRippler {
1116 private static final int RIPPLE_OFFSET_MS = 50;
1117 private static final int RIPPLE_INTERVAL_MS = 2000;
1118 private View mRoot;
1119
1120 public void start(View root) {
1121 stop(); // Stop any pending ripple animations
1122
1123 mRoot = root;
1124
1125 // Schedule pending ripples, offset the 1st to avoid problems with visibility change
1126 mRoot.postOnAnimationDelayed(mRipple, RIPPLE_OFFSET_MS);
1127 mRoot.postOnAnimationDelayed(mRipple, RIPPLE_INTERVAL_MS);
1128 mRoot.postOnAnimationDelayed(mRipple, 2*RIPPLE_INTERVAL_MS);
1129 }
1130
1131 public void stop() {
1132 if (mRoot != null) mRoot.removeCallbacks(mRipple);
1133 }
1134
1135 private final Runnable mRipple = new Runnable() {
1136 @Override
1137 public void run() { // Cause the ripple to fire via false presses
1138 mRoot.setPressed(true);
1139 mRoot.setPressed(false);
1140 }
1141 };
1142 }
1143
Jason Monk49fa0162017-01-11 09:21:56 -05001144 public static View create(Context context, FragmentListener listener) {
1145 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1146 LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT,
1147 WindowManager.LayoutParams.TYPE_NAVIGATION_BAR,
1148 WindowManager.LayoutParams.FLAG_TOUCHABLE_WHEN_WAKING
1149 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1150 | WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL
1151 | WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH
1152 | WindowManager.LayoutParams.FLAG_SPLIT_TOUCH
1153 | WindowManager.LayoutParams.FLAG_SLIPPERY,
1154 PixelFormat.TRANSLUCENT);
1155 lp.token = new Binder();
Jason Monk49fa0162017-01-11 09:21:56 -05001156 lp.setTitle("NavigationBar");
Phil Weaver8583ae82018-02-13 11:01:24 -08001157 lp.accessibilityTitle = context.getString(R.string.nav_bar);
Jason Monk49fa0162017-01-11 09:21:56 -05001158 lp.windowAnimations = 0;
1159
1160 View navigationBarView = LayoutInflater.from(context).inflate(
1161 R.layout.navigation_bar_window, null);
1162
1163 if (DEBUG) Log.v(TAG, "addNavigationBar: about to add " + navigationBarView);
1164 if (navigationBarView == null) return null;
1165
1166 context.getSystemService(WindowManager.class).addView(navigationBarView, lp);
1167 FragmentHostManager fragmentHost = FragmentHostManager.get(navigationBarView);
1168 NavigationBarFragment fragment = new NavigationBarFragment();
1169 fragmentHost.getFragmentManager().beginTransaction()
1170 .replace(R.id.navigation_bar_frame, fragment, TAG)
1171 .commit();
1172 fragmentHost.addTagListener(TAG, listener);
1173 return navigationBarView;
1174 }
1175}