blob: 2a37845fb4fb2f167589e9902d76433327d588ea [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;
Jason Monk49fa0162017-01-11 09:21:56 -050092import com.android.systemui.stackdivider.Divider;
93import com.android.systemui.statusbar.CommandQueue;
94import com.android.systemui.statusbar.CommandQueue.Callbacks;
Jason Monk91e587e2017-04-13 13:41:23 -040095import com.android.systemui.statusbar.policy.AccessibilityManagerWrapper;
Mike Digman7d092772018-01-11 12:10:32 -080096import com.android.systemui.statusbar.policy.KeyButtonDrawable;
Jason Monk49fa0162017-01-11 09:21:56 -050097import com.android.systemui.statusbar.policy.KeyButtonView;
Mike Digman7d092772018-01-11 12:10:32 -080098import com.android.systemui.statusbar.policy.RotationLockController;
Jason Monk49fa0162017-01-11 09:21:56 -050099import com.android.systemui.statusbar.stack.StackStateAnimator;
100
101import java.io.FileDescriptor;
102import java.io.PrintWriter;
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800103import java.util.List;
Jason Monk49fa0162017-01-11 09:21:56 -0500104import java.util.Locale;
Mike Digman121b11f2018-04-04 12:45:24 -0700105import java.util.Optional;
Jason Monk49fa0162017-01-11 09:21:56 -0500106
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();
176 }
177
178 @Override
Matthew Ng2ea93b72018-03-14 19:43:18 +0000179 public void onQuickStepStarted() {
Mike Digman85a9bea2018-02-23 15:08:53 -0800180 // Use navbar dragging as a signal to hide the rotate button
181 setRotateSuggestionButtonState(false);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000182 }
Matthew Ng8f25fb962018-01-16 17:17:24 -0800183
184 @Override
185 public void onInteractionFlagsChanged(@InteractionType int flags) {
186 mNavigationBarView.updateStates();
Winson Chungf9e30272018-03-26 17:25:36 -0700187 updateScreenPinningGestures();
Matthew Ng8f25fb962018-01-16 17:17:24 -0800188 }
Matthew Ng96985e72018-05-08 15:46:13 -0700189
190 @Override
191 public void onBackButtonAlphaChanged(float alpha, boolean animate) {
192 final ButtonDispatcher backButton = mNavigationBarView.getBackButton();
193 backButton.setVisibility(alpha > 0 ? View.VISIBLE : View.INVISIBLE);
194 backButton.setAlpha(alpha, animate);
195 }
Matthew Ng9c3bce52018-02-01 22:00:31 +0000196 };
Mike Digman7d092772018-01-11 12:10:32 -0800197
Jason Monk49fa0162017-01-11 09:21:56 -0500198 // ----- Fragment Lifecycle Callbacks -----
199
200 @Override
201 public void onCreate(@Nullable Bundle savedInstanceState) {
202 super.onCreate(savedInstanceState);
Jason Monk9c7844c2017-01-18 15:21:53 -0500203 mCommandQueue = SysUiServiceProvider.getComponent(getContext(), CommandQueue.class);
Jason Monk49fa0162017-01-11 09:21:56 -0500204 mCommandQueue.addCallbacks(this);
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500205 mStatusBar = SysUiServiceProvider.getComponent(getContext(), StatusBar.class);
Jason Monk9c7844c2017-01-18 15:21:53 -0500206 mRecents = SysUiServiceProvider.getComponent(getContext(), Recents.class);
207 mDivider = SysUiServiceProvider.getComponent(getContext(), Divider.class);
Jason Monk49fa0162017-01-11 09:21:56 -0500208 mWindowManager = getContext().getSystemService(WindowManager.class);
209 mAccessibilityManager = getContext().getSystemService(AccessibilityManager.class);
Jason Monk91e587e2017-04-13 13:41:23 -0400210 Dependency.get(AccessibilityManagerWrapper.class).addCallback(
211 mAccessibilityListener);
Casey Burkhardtb9dcd662017-03-20 15:10:16 -0700212 mContentResolver = getContext().getContentResolver();
Casey Burkhardt74922c62017-02-13 12:43:16 -0800213 mMagnificationObserver = new MagnificationContentObserver(
214 getContext().getMainThreadHandler());
Casey Burkhardtb9dcd662017-03-20 15:10:16 -0700215 mContentResolver.registerContentObserver(Settings.Secure.getUriFor(
Casey Burkhardt74922c62017-02-13 12:43:16 -0800216 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_NAVBAR_ENABLED), false,
Casey Burkhardt5d614402017-04-06 13:46:50 -0700217 mMagnificationObserver, UserHandle.USER_ALL);
Casey Burkhardt74922c62017-02-13 12:43:16 -0800218
Jason Monk49fa0162017-01-11 09:21:56 -0500219 if (savedInstanceState != null) {
220 mDisabledFlags1 = savedInstanceState.getInt(EXTRA_DISABLE_STATE, 0);
Mike Digmandd2f49e2018-03-16 10:54:22 -0700221 mDisabledFlags2 = savedInstanceState.getInt(EXTRA_DISABLE2_STATE, 0);
Jason Monk49fa0162017-01-11 09:21:56 -0500222 }
Jason Monk9c7844c2017-01-18 15:21:53 -0500223 mAssistManager = Dependency.get(AssistManager.class);
Matthew Ngdc79e5c2017-12-14 17:37:35 -0800224 mOverviewProxyService = Dependency.get(OverviewProxyService.class);
Jason Monk49fa0162017-01-11 09:21:56 -0500225
226 try {
227 WindowManagerGlobal.getWindowManagerService()
Andrii Kulian35fa3c22017-03-11 09:37:28 -0800228 .watchRotation(mRotationWatcher, getContext().getDisplay().getDisplayId());
Jason Monk49fa0162017-01-11 09:21:56 -0500229 } catch (RemoteException e) {
230 throw e.rethrowFromSystemServer();
231 }
Mike Digman7d092772018-01-11 12:10:32 -0800232
233 mRotationLockController = Dependency.get(RotationLockController.class);
234
Mike Digmanab650252018-03-06 11:01:41 -0800235 // Reset user rotation pref to match that of the WindowManager if starting in locked mode
236 // This will automatically happen when switching from auto-rotate to locked mode
237 if (mRotationLockController.isRotationLocked()) {
238 final int winRotation = mWindowManager.getDefaultDisplay().getRotation();
239 mRotationLockController.setRotationLockedAtAngle(true, winRotation);
240 }
241
Mike Digman7d092772018-01-11 12:10:32 -0800242 // Register the task stack listener
243 mTaskStackListener = new TaskStackListenerImpl();
244 ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener);
Jason Monk49fa0162017-01-11 09:21:56 -0500245 }
246
247 @Override
248 public void onDestroy() {
249 super.onDestroy();
250 mCommandQueue.removeCallbacks(this);
Jason Monk91e587e2017-04-13 13:41:23 -0400251 Dependency.get(AccessibilityManagerWrapper.class).removeCallback(
252 mAccessibilityListener);
Casey Burkhardtb9dcd662017-03-20 15:10:16 -0700253 mContentResolver.unregisterContentObserver(mMagnificationObserver);
Jason Monk49fa0162017-01-11 09:21:56 -0500254 try {
255 WindowManagerGlobal.getWindowManagerService()
256 .removeRotationWatcher(mRotationWatcher);
257 } catch (RemoteException e) {
258 throw e.rethrowFromSystemServer();
259 }
Mike Digman7d092772018-01-11 12:10:32 -0800260
261 // Unregister the task stack listener
262 ActivityManagerWrapper.getInstance().unregisterTaskStackListener(mTaskStackListener);
Jason Monk49fa0162017-01-11 09:21:56 -0500263 }
264
265 @Override
266 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
267 Bundle savedInstanceState) {
268 return inflater.inflate(R.layout.navigation_bar, container, false);
269 }
270
271 @Override
272 public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
273 super.onViewCreated(view, savedInstanceState);
274 mNavigationBarView = (NavigationBarView) view;
275
276 mNavigationBarView.setDisabledFlags(mDisabledFlags1);
Matthew Ng78f88d12018-01-23 12:39:55 -0800277 mNavigationBarView.setComponents(mRecents, mDivider, mStatusBar.getPanel());
Jason Monk49fa0162017-01-11 09:21:56 -0500278 mNavigationBarView.setOnVerticalChangedListener(this::onVerticalChanged);
279 mNavigationBarView.setOnTouchListener(this::onNavigationTouch);
280 if (savedInstanceState != null) {
281 mNavigationBarView.getLightTransitionsController().restoreState(savedInstanceState);
282 }
283
284 prepareNavigationBarView();
285 checkNavBarModes();
286
Mike Digmandd2f49e2018-03-16 10:54:22 -0700287 setDisabled2Flags(mDisabledFlags2);
288
Jason Monk49fa0162017-01-11 09:21:56 -0500289 IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_OFF);
290 filter.addAction(Intent.ACTION_SCREEN_ON);
Phil Weavera858c5f2018-04-26 13:27:30 -0700291 filter.addAction(Intent.ACTION_USER_SWITCHED);
Jason Monk49fa0162017-01-11 09:21:56 -0500292 getContext().registerReceiverAsUser(mBroadcastReceiver, UserHandle.ALL, filter, null, null);
Siarhei Vishniakoud002a0a2017-06-05 22:44:37 +0100293 notifyNavigationBarScreenOn();
Matthew Ng9c3bce52018-02-01 22:00:31 +0000294 mOverviewProxyService.addCallback(mOverviewProxyListener);
Jason Monk49fa0162017-01-11 09:21:56 -0500295 }
296
297 @Override
298 public void onDestroyView() {
299 super.onDestroyView();
Jason Monkaa573e92017-01-27 17:00:29 -0500300 mNavigationBarView.getLightTransitionsController().destroy(getContext());
Matthew Ng9c3bce52018-02-01 22:00:31 +0000301 mOverviewProxyService.removeCallback(mOverviewProxyListener);
Jason Monk49fa0162017-01-11 09:21:56 -0500302 getContext().unregisterReceiver(mBroadcastReceiver);
303 }
304
305 @Override
306 public void onSaveInstanceState(Bundle outState) {
307 super.onSaveInstanceState(outState);
308 outState.putInt(EXTRA_DISABLE_STATE, mDisabledFlags1);
Mike Digmandd2f49e2018-03-16 10:54:22 -0700309 outState.putInt(EXTRA_DISABLE2_STATE, mDisabledFlags2);
Jason Monk49fa0162017-01-11 09:21:56 -0500310 if (mNavigationBarView != null) {
311 mNavigationBarView.getLightTransitionsController().saveState(outState);
312 }
313 }
314
315 @Override
316 public void onConfigurationChanged(Configuration newConfig) {
317 super.onConfigurationChanged(newConfig);
318 final Locale locale = getContext().getResources().getConfiguration().locale;
319 final int ld = TextUtils.getLayoutDirectionFromLocale(locale);
320 if (!locale.equals(mLocale) || ld != mLayoutDirection) {
321 if (DEBUG) {
322 Log.v(TAG, String.format(
323 "config changed locale/LD: %s (%d) -> %s (%d)", mLocale, mLayoutDirection,
324 locale, ld));
325 }
326 mLocale = locale;
327 mLayoutDirection = ld;
328 refreshLayout(ld);
329 }
330 repositionNavigationBar();
331 }
332
333 @Override
334 public void dump(String prefix, FileDescriptor fd, PrintWriter pw, String[] args) {
335 if (mNavigationBarView != null) {
336 pw.print(" mNavigationBarWindowState=");
337 pw.println(windowStateToString(mNavigationBarWindowState));
338 pw.print(" mNavigationBarMode=");
339 pw.println(BarTransitions.modeToString(mNavigationBarMode));
340 dumpBarTransitions(pw, "mNavigationBarView", mNavigationBarView.getBarTransitions());
341 }
342
343 pw.print(" mNavigationBarView=");
344 if (mNavigationBarView == null) {
345 pw.println("null");
346 } else {
347 mNavigationBarView.dump(fd, pw, args);
348 }
349 }
350
351 // ----- CommandQueue Callbacks -----
352
353 @Override
354 public void setImeWindowStatus(IBinder token, int vis, int backDisposition,
355 boolean showImeSwitcher) {
356 boolean imeShown = (vis & InputMethodService.IME_VISIBLE) != 0;
357 int hints = mNavigationIconHints;
Yohei Yukawa386f50e2018-03-14 13:03:42 -0700358 switch (backDisposition) {
359 case InputMethodService.BACK_DISPOSITION_DEFAULT:
360 case InputMethodService.BACK_DISPOSITION_WILL_NOT_DISMISS:
361 case InputMethodService.BACK_DISPOSITION_WILL_DISMISS:
362 if (imeShown) {
363 hints |= NAVIGATION_HINT_BACK_ALT;
364 } else {
365 hints &= ~NAVIGATION_HINT_BACK_ALT;
366 }
367 break;
368 case InputMethodService.BACK_DISPOSITION_ADJUST_NOTHING:
369 hints &= ~NAVIGATION_HINT_BACK_ALT;
370 break;
Jason Monk49fa0162017-01-11 09:21:56 -0500371 }
372 if (showImeSwitcher) {
373 hints |= NAVIGATION_HINT_IME_SHOWN;
374 } else {
375 hints &= ~NAVIGATION_HINT_IME_SHOWN;
376 }
377 if (hints == mNavigationIconHints) return;
378
379 mNavigationIconHints = hints;
380
381 if (mNavigationBarView != null) {
382 mNavigationBarView.setNavigationIconHints(hints);
383 }
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500384 mStatusBar.checkBarModes();
Jason Monk49fa0162017-01-11 09:21:56 -0500385 }
386
387 @Override
388 public void topAppWindowChanged(boolean showMenu) {
389 if (mNavigationBarView != null) {
390 mNavigationBarView.setMenuVisibility(showMenu);
391 }
392 }
393
394 @Override
395 public void setWindowState(int window, int state) {
396 if (mNavigationBarView != null
397 && window == StatusBarManager.WINDOW_NAVIGATION_BAR
398 && mNavigationBarWindowState != state) {
399 mNavigationBarWindowState = state;
400 if (DEBUG_WINDOW_STATE) Log.d(TAG, "Navigation bar " + windowStateToString(state));
Mike Digman5aeca792018-03-05 11:14:39 -0800401
402 // If the navbar is visible, show the rotate button if there's a pending suggestion
403 if (state == WINDOW_STATE_SHOWING && mPendingRotationSuggestion) {
404 showAndLogRotationSuggestion();
405 }
Jason Monk49fa0162017-01-11 09:21:56 -0500406 }
407 }
408
Mike Digman7d092772018-01-11 12:10:32 -0800409 @Override
Mike Digmane0777312018-01-19 12:41:51 -0800410 public void onRotationProposal(final int rotation, boolean isValid) {
Mike Digman3e33da62018-03-14 16:25:11 -0700411 final int winRotation = mWindowManager.getDefaultDisplay().getRotation();
Mike Digmandd2f49e2018-03-16 10:54:22 -0700412 final boolean rotateSuggestionsDisabled = hasDisable2RotateSuggestionFlag(mDisabledFlags2);
Mike Digman3e33da62018-03-14 16:25:11 -0700413 if (DEBUG_ROTATION) {
414 Log.v(TAG, "onRotationProposal proposedRotation=" + Surface.rotationToString(rotation)
415 + ", winRotation=" + Surface.rotationToString(winRotation)
416 + ", isValid=" + isValid + ", mNavBarWindowState="
417 + StatusBarManager.windowStateToString(mNavigationBarWindowState)
Mike Digmandd2f49e2018-03-16 10:54:22 -0700418 + ", rotateSuggestionsDisabled=" + rotateSuggestionsDisabled
Mike Digman3e33da62018-03-14 16:25:11 -0700419 + ", isRotateButtonVisible=" + (mNavigationBarView == null ? "null" :
420 mNavigationBarView.isRotateButtonVisible()));
421 }
422
Mike Digmandd2f49e2018-03-16 10:54:22 -0700423 // Respect the disabled flag, no need for action as flag change callback will handle hiding
424 if (rotateSuggestionsDisabled) return;
425
Mike Digmane0777312018-01-19 12:41:51 -0800426 // This method will be called on rotation suggestion changes even if the proposed rotation
427 // is not valid for the top app. Use invalid rotation choices as a signal to remove the
428 // rotate button if shown.
Mike Digmane0777312018-01-19 12:41:51 -0800429 if (!isValid) {
Mike Digman1e28a5a2018-02-14 10:49:19 -0800430 setRotateSuggestionButtonState(false);
Mike Digmane0777312018-01-19 12:41:51 -0800431 return;
432 }
433
Mike Digman5aeca792018-03-05 11:14:39 -0800434 // If window rotation matches suggested rotation, remove any current suggestions
Mike Digman1e28a5a2018-02-14 10:49:19 -0800435 if (rotation == winRotation) {
Mike Digman5aeca792018-03-05 11:14:39 -0800436 getView().removeCallbacks(mRemoveRotationProposal);
Mike Digman1e28a5a2018-02-14 10:49:19 -0800437 setRotateSuggestionButtonState(false);
Mike Digman5aeca792018-03-05 11:14:39 -0800438 return;
Mike Digman7d092772018-01-11 12:10:32 -0800439 }
Mike Digman5aeca792018-03-05 11:14:39 -0800440
441 // Prepare to show the navbar icon by updating the icon style to change anim params
442 mLastRotationSuggestion = rotation; // Remember rotation for click
443 if (mNavigationBarView != null) {
444 final boolean rotationCCW = isRotationAnimationCCW(winRotation, rotation);
445 int style;
446 if (winRotation == Surface.ROTATION_0 || winRotation == Surface.ROTATION_180) {
447 style = rotationCCW ? R.style.RotateButtonCCWStart90 :
448 R.style.RotateButtonCWStart90;
449 } else { // 90 or 270
450 style = rotationCCW ? R.style.RotateButtonCCWStart0 :
451 R.style.RotateButtonCWStart0;
452 }
453 mNavigationBarView.updateRotateSuggestionButtonStyle(style, true);
454 }
455
456 if (mNavigationBarWindowState != WINDOW_STATE_SHOWING) {
457 // If the navbar isn't shown, flag the rotate icon to be shown should the navbar become
458 // visible given some time limit.
459 mPendingRotationSuggestion = true;
460 getView().removeCallbacks(mCancelPendingRotationProposal);
461 getView().postDelayed(mCancelPendingRotationProposal,
462 NAVBAR_HIDDEN_PENDING_ICON_TIMEOUT_MS);
463
464 } else { // The navbar is visible so show the icon right away
465 showAndLogRotationSuggestion();
466 }
467 }
468
Mike Digmandd2f49e2018-03-16 10:54:22 -0700469 private void onRotationSuggestionsDisabled() {
470 // Immediately hide the rotate button and clear any planned removal
471 setRotateSuggestionButtonState(false, true);
Mike Digmane14c4752018-03-20 12:14:54 -0700472
473 // This method can be called before view setup is done, ensure getView isn't null
474 final View v = getView();
475 if (v != null) v.removeCallbacks(mRemoveRotationProposal);
Mike Digmandd2f49e2018-03-16 10:54:22 -0700476 }
477
Mike Digman5aeca792018-03-05 11:14:39 -0800478 private void showAndLogRotationSuggestion() {
479 setRotateSuggestionButtonState(true);
480 rescheduleRotationTimeout(false);
481 mMetricsLogger.visible(MetricsEvent.ROTATION_SUGGESTION_SHOWN);
Mike Digman7d092772018-01-11 12:10:32 -0800482 }
483
Mike Digman1e28a5a2018-02-14 10:49:19 -0800484 private boolean isRotationAnimationCCW(int from, int to) {
485 // All 180deg WM rotation animations are CCW, match that
486 if (from == Surface.ROTATION_0 && to == Surface.ROTATION_90) return false;
487 if (from == Surface.ROTATION_0 && to == Surface.ROTATION_180) return true; //180d so CCW
488 if (from == Surface.ROTATION_0 && to == Surface.ROTATION_270) return true;
489 if (from == Surface.ROTATION_90 && to == Surface.ROTATION_0) return true;
490 if (from == Surface.ROTATION_90 && to == Surface.ROTATION_180) return false;
491 if (from == Surface.ROTATION_90 && to == Surface.ROTATION_270) return true; //180d so CCW
492 if (from == Surface.ROTATION_180 && to == Surface.ROTATION_0) return true; //180d so CCW
493 if (from == Surface.ROTATION_180 && to == Surface.ROTATION_90) return true;
494 if (from == Surface.ROTATION_180 && to == Surface.ROTATION_270) return false;
495 if (from == Surface.ROTATION_270 && to == Surface.ROTATION_0) return false;
496 if (from == Surface.ROTATION_270 && to == Surface.ROTATION_90) return true; //180d so CCW
497 if (from == Surface.ROTATION_270 && to == Surface.ROTATION_180) return true;
498 return false; // Default
Mike Digmana48cf192018-02-12 17:52:48 -0800499 }
500
Mike Digman1e28a5a2018-02-14 10:49:19 -0800501 public void setRotateSuggestionButtonState(final boolean visible) {
502 setRotateSuggestionButtonState(visible, false);
503 }
504
505 public void setRotateSuggestionButtonState(final boolean visible, final boolean force) {
506 if (mNavigationBarView == null) return;
507
508 // At any point the the button can become invisible because an a11y service became active.
509 // Similarly, a call to make the button visible may be rejected because an a11y service is
510 // active. Must account for this.
511
512 ButtonDispatcher rotBtn = mNavigationBarView.getRotateSuggestionButton();
513 final boolean currentlyVisible = mNavigationBarView.isRotateButtonVisible();
514
515 // Rerun a show animation to indicate change but don't rerun a hide animation
516 if (!visible && !currentlyVisible) return;
517
518 View view = rotBtn.getCurrentView();
519 if (view == null) return;
520
521 KeyButtonDrawable kbd = rotBtn.getImageDrawable();
522 if (kbd == null) return;
523
524 // The KBD and AVD is recreated every new valid suggestion because of style changes.
525 AnimatedVectorDrawable animIcon = null;
526 if (kbd.getDrawable(0) instanceof AnimatedVectorDrawable) {
527 animIcon = (AnimatedVectorDrawable) kbd.getDrawable(0);
528 }
529
Mike Digman5aeca792018-03-05 11:14:39 -0800530 // Clear any pending suggestion flag as it has either been nullified or is being shown
531 mPendingRotationSuggestion = false;
Mike Digmanf4c98992018-04-25 11:25:59 -0700532 if (getView() != null) getView().removeCallbacks(mCancelPendingRotationProposal);
Mike Digman5aeca792018-03-05 11:14:39 -0800533
534 // Handle the visibility change and animation
Mike Digman1e28a5a2018-02-14 10:49:19 -0800535 if (visible) { // Appear and change (cannot force)
Mike Digman85a9bea2018-02-23 15:08:53 -0800536 // Stop and clear any currently running hide animations
Mike Digman1e28a5a2018-02-14 10:49:19 -0800537 if (mRotateHideAnimator != null && mRotateHideAnimator.isRunning()) {
Mike Digman85a9bea2018-02-23 15:08:53 -0800538 mRotateHideAnimator.cancel();
Mike Digman1e28a5a2018-02-14 10:49:19 -0800539 }
Mike Digman85a9bea2018-02-23 15:08:53 -0800540 mRotateHideAnimator = null;
Mike Digman1e28a5a2018-02-14 10:49:19 -0800541
542 // Reset the alpha if any has changed due to hide animation
543 view.setAlpha(1f);
544
545 // Run the rotate icon's animation if it has one
546 if (animIcon != null) {
547 animIcon.reset();
548 animIcon.start();
549 }
550
Mike Digman50752642018-02-15 13:36:09 -0800551 if (!isRotateSuggestionIntroduced()) mViewRippler.start(view);
552
Mike Digman1e28a5a2018-02-14 10:49:19 -0800553 // Set visibility, may fail if a11y service is active.
554 // If invisible, call will stop animation.
Mike Digman9b50b762018-04-19 10:50:35 -0700555 int appliedVisibility = mNavigationBarView.setRotateButtonVisibility(true);
556 if (appliedVisibility == View.VISIBLE) {
557 // If the button will actually become visible and the navbar is about to hide,
558 // tell the statusbar to keep it around for longer
559 mStatusBar.touchAutoHide();
560 }
Mike Digman1e28a5a2018-02-14 10:49:19 -0800561
562 } else { // Hide
563
Mike Digman50752642018-02-15 13:36:09 -0800564 mViewRippler.stop(); // Prevent any pending ripples, force hide or not
565
Mike Digman1e28a5a2018-02-14 10:49:19 -0800566 if (force) {
567 // If a hide animator is running stop it and make invisible
568 if (mRotateHideAnimator != null && mRotateHideAnimator.isRunning()) {
569 mRotateHideAnimator.pause();
570 }
571 mNavigationBarView.setRotateButtonVisibility(false);
572 return;
573 }
574
575 // Don't start any new hide animations if one is running
576 if (mRotateHideAnimator != null && mRotateHideAnimator.isRunning()) return;
577
578 ObjectAnimator fadeOut = ObjectAnimator.ofFloat(view, "alpha",
579 0f);
580 fadeOut.setDuration(BUTTON_FADE_IN_OUT_DURATION_MS);
581 fadeOut.setInterpolator(Interpolators.LINEAR);
582 fadeOut.addListener(new AnimatorListenerAdapter() {
583 @Override
584 public void onAnimationEnd(Animator animation) {
585 mNavigationBarView.setRotateButtonVisibility(false);
586 }
587 });
588
589 mRotateHideAnimator = fadeOut;
590 fadeOut.start();
Mike Digmana48cf192018-02-12 17:52:48 -0800591 }
592 }
593
Mike Digman90402952018-01-22 16:05:51 -0800594 private void rescheduleRotationTimeout(final boolean reasonHover) {
595 // May be called due to a new rotation proposal or a change in hover state
596 if (reasonHover) {
597 // Don't reschedule if a hide animator is running
Mike Digman1e28a5a2018-02-14 10:49:19 -0800598 if (mRotateHideAnimator != null && mRotateHideAnimator.isRunning()) return;
Mike Digman90402952018-01-22 16:05:51 -0800599 // Don't reschedule if not visible
Mike Digman1e28a5a2018-02-14 10:49:19 -0800600 if (!mNavigationBarView.isRotateButtonVisible()) return;
Mike Digman90402952018-01-22 16:05:51 -0800601 }
602
Mike Digman5aeca792018-03-05 11:14:39 -0800603 getView().removeCallbacks(mRemoveRotationProposal); // Stop any pending removal
604 getView().postDelayed(mRemoveRotationProposal,
Mike Digman90402952018-01-22 16:05:51 -0800605 computeRotationProposalTimeout()); // Schedule timeout
606 }
607
608 private int computeRotationProposalTimeout() {
609 if (mAccessibilityFeedbackEnabled) return 20000;
610 if (mHoveringRotationSuggestion) return 16000;
611 return 6000;
612 }
613
Mike Digman50752642018-02-15 13:36:09 -0800614 private boolean isRotateSuggestionIntroduced() {
615 ContentResolver cr = getContext().getContentResolver();
616 return Settings.Secure.getInt(cr, Settings.Secure.NUM_ROTATION_SUGGESTIONS_ACCEPTED, 0)
617 >= NUM_ACCEPTED_ROTATION_SUGGESTIONS_FOR_INTRODUCTION;
618 }
619
620 private void incrementNumAcceptedRotationSuggestionsIfNeeded() {
621 // Get the number of accepted suggestions
622 ContentResolver cr = getContext().getContentResolver();
623 final int numSuggestions = Settings.Secure.getInt(cr,
624 Settings.Secure.NUM_ROTATION_SUGGESTIONS_ACCEPTED, 0);
625
626 // Increment the number of accepted suggestions only if it would change intro mode
627 if (numSuggestions < NUM_ACCEPTED_ROTATION_SUGGESTIONS_FOR_INTRODUCTION) {
628 Settings.Secure.putInt(cr, Settings.Secure.NUM_ROTATION_SUGGESTIONS_ACCEPTED,
629 numSuggestions + 1);
630 }
631 }
632
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500633 // Injected from StatusBar at creation.
Jason Monk49fa0162017-01-11 09:21:56 -0500634 public void setCurrentSysuiVisibility(int systemUiVisibility) {
635 mSystemUiVisibility = systemUiVisibility;
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500636 mNavigationBarMode = mStatusBar.computeBarMode(0, mSystemUiVisibility,
Jason Monk49fa0162017-01-11 09:21:56 -0500637 View.NAVIGATION_BAR_TRANSIENT, View.NAVIGATION_BAR_TRANSLUCENT,
638 View.NAVIGATION_BAR_TRANSPARENT);
639 checkNavBarModes();
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500640 mStatusBar.touchAutoHide();
Jason Monk49fa0162017-01-11 09:21:56 -0500641 mLightBarController.onNavigationVisibilityChanged(mSystemUiVisibility, 0 /* mask */,
642 true /* nbModeChanged */, mNavigationBarMode);
643 }
644
645 @Override
646 public void setSystemUiVisibility(int vis, int fullscreenStackVis, int dockedStackVis,
647 int mask, Rect fullscreenStackBounds, Rect dockedStackBounds) {
648 final int oldVal = mSystemUiVisibility;
649 final int newVal = (oldVal & ~mask) | (vis & mask);
650 final int diff = newVal ^ oldVal;
651 boolean nbModeChanged = false;
652 if (diff != 0) {
653 mSystemUiVisibility = newVal;
654
655 // update navigation bar mode
656 final int nbMode = getView() == null
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500657 ? -1 : mStatusBar.computeBarMode(oldVal, newVal,
Jason Monk49fa0162017-01-11 09:21:56 -0500658 View.NAVIGATION_BAR_TRANSIENT, View.NAVIGATION_BAR_TRANSLUCENT,
659 View.NAVIGATION_BAR_TRANSPARENT);
660 nbModeChanged = nbMode != -1;
661 if (nbModeChanged) {
662 if (mNavigationBarMode != nbMode) {
663 mNavigationBarMode = nbMode;
664 checkNavBarModes();
665 }
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500666 mStatusBar.touchAutoHide();
Jason Monk49fa0162017-01-11 09:21:56 -0500667 }
668 }
669
670 mLightBarController.onNavigationVisibilityChanged(vis, mask, nbModeChanged,
671 mNavigationBarMode);
672 }
673
674 @Override
675 public void disable(int state1, int state2, boolean animate) {
Mike Digmandd2f49e2018-03-16 10:54:22 -0700676 // Navigation bar flags are in both state1 and state2.
677 final int masked = state1 & (StatusBarManager.DISABLE_HOME
Jason Monk49fa0162017-01-11 09:21:56 -0500678 | StatusBarManager.DISABLE_RECENT
679 | StatusBarManager.DISABLE_BACK
680 | StatusBarManager.DISABLE_SEARCH);
681 if (masked != mDisabledFlags1) {
682 mDisabledFlags1 = masked;
683 if (mNavigationBarView != null) mNavigationBarView.setDisabledFlags(state1);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000684 updateScreenPinningGestures();
Jason Monk49fa0162017-01-11 09:21:56 -0500685 }
Mike Digmandd2f49e2018-03-16 10:54:22 -0700686
687 final int masked2 = state2 & (StatusBarManager.DISABLE2_ROTATE_SUGGESTIONS);
688 if (masked2 != mDisabledFlags2) {
689 mDisabledFlags2 = masked2;
690 setDisabled2Flags(masked2);
691 }
692 }
693
694 private void setDisabled2Flags(int state2) {
695 // Method only called on change of disable2 flags
696 final boolean rotateSuggestionsDisabled = hasDisable2RotateSuggestionFlag(state2);
697 if (rotateSuggestionsDisabled) onRotationSuggestionsDisabled();
698 }
699
700 private boolean hasDisable2RotateSuggestionFlag(int disable2Flags) {
701 return (disable2Flags & StatusBarManager.DISABLE2_ROTATE_SUGGESTIONS) != 0;
Jason Monk49fa0162017-01-11 09:21:56 -0500702 }
703
704 // ----- Internal stuffz -----
705
706 private void refreshLayout(int layoutDirection) {
707 if (mNavigationBarView != null) {
708 mNavigationBarView.setLayoutDirection(layoutDirection);
709 }
710 }
711
712 private boolean shouldDisableNavbarGestures() {
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500713 return !mStatusBar.isDeviceProvisioned()
Matthew Ngfee0b5b2018-02-21 15:38:21 -0800714 || (mDisabledFlags1 & StatusBarManager.DISABLE_SEARCH) != 0;
Jason Monk49fa0162017-01-11 09:21:56 -0500715 }
716
717 private void repositionNavigationBar() {
718 if (mNavigationBarView == null || !mNavigationBarView.isAttachedToWindow()) return;
719
720 prepareNavigationBarView();
721
722 mWindowManager.updateViewLayout((View) mNavigationBarView.getParent(),
723 ((View) mNavigationBarView.getParent()).getLayoutParams());
724 }
725
Matthew Ng9c3bce52018-02-01 22:00:31 +0000726 private void updateScreenPinningGestures() {
727 if (mNavigationBarView == null) {
728 return;
729 }
730
731 // Change the cancel pin gesture to home and back if recents button is invisible
732 boolean recentsVisible = mNavigationBarView.isRecentsButtonVisible();
Matthew Ng9c3bce52018-02-01 22:00:31 +0000733 ButtonDispatcher backButton = mNavigationBarView.getBackButton();
734 if (recentsVisible) {
Matthew Ng9c3bce52018-02-01 22:00:31 +0000735 backButton.setOnLongClickListener(this::onLongPressBackRecents);
736 } else {
Matthew Ng9c3bce52018-02-01 22:00:31 +0000737 backButton.setOnLongClickListener(this::onLongPressBackHome);
738 }
739 }
740
Siarhei Vishniakoud002a0a2017-06-05 22:44:37 +0100741 private void notifyNavigationBarScreenOn() {
Matthew Ngd0a73e72018-03-02 15:16:03 -0800742 mNavigationBarView.updateNavButtonIcons();
Jason Monk49fa0162017-01-11 09:21:56 -0500743 }
744
745 private void prepareNavigationBarView() {
746 mNavigationBarView.reorient();
747
748 ButtonDispatcher recentsButton = mNavigationBarView.getRecentsButton();
749 recentsButton.setOnClickListener(this::onRecentsClick);
750 recentsButton.setOnTouchListener(this::onRecentsTouch);
751 recentsButton.setLongClickable(true);
752 recentsButton.setOnLongClickListener(this::onLongPressBackRecents);
753
754 ButtonDispatcher backButton = mNavigationBarView.getBackButton();
755 backButton.setLongClickable(true);
Jason Monk49fa0162017-01-11 09:21:56 -0500756
757 ButtonDispatcher homeButton = mNavigationBarView.getHomeButton();
758 homeButton.setOnTouchListener(this::onHomeTouch);
Matthew Ngfee0b5b2018-02-21 15:38:21 -0800759 homeButton.setOnLongClickListener(this::onHomeLongClick);
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800760
761 ButtonDispatcher accessibilityButton = mNavigationBarView.getAccessibilityButton();
762 accessibilityButton.setOnClickListener(this::onAccessibilityClick);
763 accessibilityButton.setOnLongClickListener(this::onAccessibilityLongClick);
Phil Weaverdb9a7742017-04-18 08:15:06 -0700764 updateAccessibilityServicesState(mAccessibilityManager);
Mike Digman7d092772018-01-11 12:10:32 -0800765
766 ButtonDispatcher rotateSuggestionButton = mNavigationBarView.getRotateSuggestionButton();
767 rotateSuggestionButton.setOnClickListener(this::onRotateSuggestionClick);
Mike Digman90402952018-01-22 16:05:51 -0800768 rotateSuggestionButton.setOnHoverListener(this::onRotateSuggestionHover);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000769 updateScreenPinningGestures();
Jason Monk49fa0162017-01-11 09:21:56 -0500770 }
771
772 private boolean onHomeTouch(View v, MotionEvent event) {
773 if (mHomeBlockedThisTouch && event.getActionMasked() != MotionEvent.ACTION_DOWN) {
774 return true;
775 }
776 // If an incoming call is ringing, HOME is totally disabled.
777 // (The user is already on the InCallUI at this point,
778 // and his ONLY options are to answer or reject the call.)
779 switch (event.getAction()) {
780 case MotionEvent.ACTION_DOWN:
781 mHomeBlockedThisTouch = false;
782 TelecomManager telecomManager =
783 getContext().getSystemService(TelecomManager.class);
784 if (telecomManager != null && telecomManager.isRinging()) {
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500785 if (mStatusBar.isKeyguardShowing()) {
Jason Monk49fa0162017-01-11 09:21:56 -0500786 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call. " +
787 "No heads up");
788 mHomeBlockedThisTouch = true;
789 return true;
790 }
791 }
792 break;
793 case MotionEvent.ACTION_UP:
794 case MotionEvent.ACTION_CANCEL:
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500795 mStatusBar.awakenDreams();
Jason Monk49fa0162017-01-11 09:21:56 -0500796 break;
797 }
798 return false;
799 }
800
801 private void onVerticalChanged(boolean isVertical) {
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500802 mStatusBar.setQsScrimEnabled(!isVertical);
Jason Monk49fa0162017-01-11 09:21:56 -0500803 }
804
805 private boolean onNavigationTouch(View v, MotionEvent event) {
Eliot Courtneycb5d3162017-08-09 16:53:15 +0900806 mStatusBar.checkUserAutohide(event);
Jason Monk49fa0162017-01-11 09:21:56 -0500807 return false;
808 }
809
Jason Monk865246d2017-01-19 08:27:01 -0500810 @VisibleForTesting
811 boolean onHomeLongClick(View v) {
Matthew Ng6ff33b72018-02-27 13:47:38 -0800812 if (!mNavigationBarView.isRecentsButtonVisible()
813 && ActivityManagerWrapper.getInstance().isScreenPinningActive()) {
Matthew Ngfee0b5b2018-02-21 15:38:21 -0800814 return onLongPressBackHome(v);
815 }
Jason Monk49fa0162017-01-11 09:21:56 -0500816 if (shouldDisableNavbarGestures()) {
817 return false;
818 }
Matthew Ng2ea93b72018-03-14 19:43:18 +0000819 mNavigationBarView.onNavigationButtonLongPress(v);
Mike Digmanc94759d2018-01-23 11:01:21 -0800820 mMetricsLogger.action(MetricsEvent.ACTION_ASSIST_LONG_PRESS);
Jason Monk49fa0162017-01-11 09:21:56 -0500821 mAssistManager.startAssist(new Bundle() /* args */);
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500822 mStatusBar.awakenDreams();
Matthew Ngdc79e5c2017-12-14 17:37:35 -0800823
Jason Monk49fa0162017-01-11 09:21:56 -0500824 if (mNavigationBarView != null) {
825 mNavigationBarView.abortCurrentGesture();
826 }
827 return true;
828 }
829
830 // additional optimization when we have software system buttons - start loading the recent
831 // tasks on touch down
832 private boolean onRecentsTouch(View v, MotionEvent event) {
833 int action = event.getAction() & MotionEvent.ACTION_MASK;
834 if (action == MotionEvent.ACTION_DOWN) {
835 mCommandQueue.preloadRecentApps();
836 } else if (action == MotionEvent.ACTION_CANCEL) {
837 mCommandQueue.cancelPreloadRecentApps();
838 } else if (action == MotionEvent.ACTION_UP) {
839 if (!v.isPressed()) {
840 mCommandQueue.cancelPreloadRecentApps();
841 }
842 }
843 return false;
844 }
845
846 private void onRecentsClick(View v) {
847 if (LatencyTracker.isEnabled(getContext())) {
848 LatencyTracker.getInstance(getContext()).onActionStart(
849 LatencyTracker.ACTION_TOGGLE_RECENTS);
850 }
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500851 mStatusBar.awakenDreams();
Jason Monk49fa0162017-01-11 09:21:56 -0500852 mCommandQueue.toggleRecentApps();
853 }
854
Matthew Ng9c3bce52018-02-01 22:00:31 +0000855 private boolean onLongPressBackHome(View v) {
Matthew Ng2ea93b72018-03-14 19:43:18 +0000856 mNavigationBarView.onNavigationButtonLongPress(v);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000857 return onLongPressNavigationButtons(v, R.id.back, R.id.home);
858 }
859
860 private boolean onLongPressBackRecents(View v) {
Matthew Ng2ea93b72018-03-14 19:43:18 +0000861 mNavigationBarView.onNavigationButtonLongPress(v);
Matthew Ng9c3bce52018-02-01 22:00:31 +0000862 return onLongPressNavigationButtons(v, R.id.back, R.id.recent_apps);
863 }
864
Jason Monk49fa0162017-01-11 09:21:56 -0500865 /**
Matthew Ng9c3bce52018-02-01 22:00:31 +0000866 * This handles long-press of both back and recents/home. Back is the common button with
867 * combination of recents if it is visible or home if recents is invisible.
868 * They are handled together to capture them both being long-pressed
Jason Monk49fa0162017-01-11 09:21:56 -0500869 * at the same time to exit screen pinning (lock task).
870 *
Matthew Ng9c3bce52018-02-01 22:00:31 +0000871 * When accessibility mode is on, only a long-press from recents/home
Jason Monk49fa0162017-01-11 09:21:56 -0500872 * is required to exit.
873 *
874 * In all other circumstances we try to pass through long-press events
875 * for Back, so that apps can still use it. Which can be from two things.
876 * 1) Not currently in screen pinning (lock task).
Matthew Ng9c3bce52018-02-01 22:00:31 +0000877 * 2) Back is long-pressed without recents/home.
Jason Monk49fa0162017-01-11 09:21:56 -0500878 */
Matthew Ng9c3bce52018-02-01 22:00:31 +0000879 private boolean onLongPressNavigationButtons(View v, @IdRes int btnId1, @IdRes int btnId2) {
Jason Monk49fa0162017-01-11 09:21:56 -0500880 try {
881 boolean sendBackLongPress = false;
882 IActivityManager activityManager = ActivityManagerNative.getDefault();
883 boolean touchExplorationEnabled = mAccessibilityManager.isTouchExplorationEnabled();
884 boolean inLockTaskMode = activityManager.isInLockTaskMode();
885 if (inLockTaskMode && !touchExplorationEnabled) {
886 long time = System.currentTimeMillis();
Matthew Ng9c3bce52018-02-01 22:00:31 +0000887
Jason Monk49fa0162017-01-11 09:21:56 -0500888 // If we recently long-pressed the other button then they were
889 // long-pressed 'together'
890 if ((time - mLastLockToAppLongPress) < LOCK_TO_APP_GESTURE_TOLERENCE) {
Benjamin Franza83859f2017-07-03 16:34:14 +0100891 activityManager.stopSystemLockTaskMode();
Jason Monk49fa0162017-01-11 09:21:56 -0500892 // When exiting refresh disabled flags.
Matthew Ngd0a73e72018-03-02 15:16:03 -0800893 mNavigationBarView.updateNavButtonIcons();
Jason Monk49fa0162017-01-11 09:21:56 -0500894 return true;
Matthew Ng9c3bce52018-02-01 22:00:31 +0000895 } else if (v.getId() == btnId1) {
896 ButtonDispatcher button = btnId2 == R.id.recent_apps
897 ? mNavigationBarView.getRecentsButton()
898 : mNavigationBarView.getHomeButton();
899 if (!button.getCurrentView().isPressed()) {
900 // If we aren't pressing recents/home right now then they presses
901 // won't be together, so send the standard long-press action.
902 sendBackLongPress = true;
903 }
Jason Monk49fa0162017-01-11 09:21:56 -0500904 }
905 mLastLockToAppLongPress = time;
906 } else {
907 // If this is back still need to handle sending the long-press event.
Matthew Ng9c3bce52018-02-01 22:00:31 +0000908 if (v.getId() == btnId1) {
Jason Monk49fa0162017-01-11 09:21:56 -0500909 sendBackLongPress = true;
910 } else if (touchExplorationEnabled && inLockTaskMode) {
Matthew Ng9c3bce52018-02-01 22:00:31 +0000911 // When in accessibility mode a long press that is recents/home (not back)
Jason Monk49fa0162017-01-11 09:21:56 -0500912 // should stop lock task.
Benjamin Franza83859f2017-07-03 16:34:14 +0100913 activityManager.stopSystemLockTaskMode();
Jason Monk49fa0162017-01-11 09:21:56 -0500914 // When exiting refresh disabled flags.
Matthew Ngd0a73e72018-03-02 15:16:03 -0800915 mNavigationBarView.updateNavButtonIcons();
Jason Monk49fa0162017-01-11 09:21:56 -0500916 return true;
Matthew Ng9c3bce52018-02-01 22:00:31 +0000917 } else if (v.getId() == btnId2) {
918 return btnId2 == R.id.recent_apps
919 ? onLongPressRecents()
920 : onHomeLongClick(mNavigationBarView.getHomeButton().getCurrentView());
Jason Monk49fa0162017-01-11 09:21:56 -0500921 }
922 }
923 if (sendBackLongPress) {
924 KeyButtonView keyButtonView = (KeyButtonView) v;
925 keyButtonView.sendEvent(KeyEvent.ACTION_DOWN, KeyEvent.FLAG_LONG_PRESS);
926 keyButtonView.sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_LONG_CLICKED);
927 return true;
928 }
929 } catch (RemoteException e) {
930 Log.d(TAG, "Unable to reach activity manager", e);
931 }
932 return false;
933 }
934
935 private boolean onLongPressRecents() {
Erik Wolsheimer9be3a062017-05-31 14:59:57 -0700936 if (mRecents == null || !ActivityManager.supportsMultiWindow(getContext())
Matthew Ng43db6d22017-06-27 15:29:39 -0700937 || !mDivider.getView().getSnapAlgorithm().isSplitScreenFeasible()
Winson Chung074c4342018-03-26 17:27:19 -0700938 || Recents.getConfiguration().isLowRamDevice
939 // If we are connected to the overview service, then disable the recents button
940 || mOverviewProxyService.getProxy() != null) {
Jason Monk49fa0162017-01-11 09:21:56 -0500941 return false;
942 }
943
Jason Monk2a6ea9c2017-01-26 11:14:51 -0500944 return mStatusBar.toggleSplitScreenMode(MetricsEvent.ACTION_WINDOW_DOCK_LONGPRESS,
Jason Monk49fa0162017-01-11 09:21:56 -0500945 MetricsEvent.ACTION_WINDOW_UNDOCK_LONGPRESS);
946 }
947
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800948 private void onAccessibilityClick(View v) {
949 mAccessibilityManager.notifyAccessibilityButtonClicked();
950 }
951
952 private boolean onAccessibilityLongClick(View v) {
Casey Burkhardt5e8b9802017-03-24 10:07:20 -0700953 Intent intent = new Intent(AccessibilityManager.ACTION_CHOOSE_ACCESSIBILITY_BUTTON);
954 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
Casey Burkhardt5d614402017-04-06 13:46:50 -0700955 v.getContext().startActivityAsUser(intent, UserHandle.CURRENT);
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800956 return true;
957 }
958
Phil Weaverdb9a7742017-04-18 08:15:06 -0700959 private void updateAccessibilityServicesState(AccessibilityManager accessibilityManager) {
Casey Burkhardt74922c62017-02-13 12:43:16 -0800960 int requestingServices = 0;
961 try {
Casey Burkhardt5d614402017-04-06 13:46:50 -0700962 if (Settings.Secure.getIntForUser(mContentResolver,
963 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_NAVBAR_ENABLED,
964 UserHandle.USER_CURRENT) == 1) {
Casey Burkhardt74922c62017-02-13 12:43:16 -0800965 requestingServices++;
966 }
967 } catch (Settings.SettingNotFoundException e) {
968 }
969
Mike Digman90402952018-01-22 16:05:51 -0800970 boolean feedbackEnabled = false;
Casey Burkhardt5d614402017-04-06 13:46:50 -0700971 // AccessibilityManagerService resolves services for the current user since the local
972 // AccessibilityManager is created from a Context with the INTERACT_ACROSS_USERS permission
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800973 final List<AccessibilityServiceInfo> services =
Phil Weaverdb9a7742017-04-18 08:15:06 -0700974 accessibilityManager.getEnabledAccessibilityServiceList(
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800975 AccessibilityServiceInfo.FEEDBACK_ALL_MASK);
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800976 for (int i = services.size() - 1; i >= 0; --i) {
977 AccessibilityServiceInfo info = services.get(i);
978 if ((info.flags & AccessibilityServiceInfo.FLAG_REQUEST_ACCESSIBILITY_BUTTON) != 0) {
979 requestingServices++;
980 }
Mike Digman90402952018-01-22 16:05:51 -0800981
982 if (info.feedbackType != 0 && info.feedbackType !=
983 AccessibilityServiceInfo.FEEDBACK_GENERIC) {
984 feedbackEnabled = true;
985 }
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800986 }
987
Mike Digman90402952018-01-22 16:05:51 -0800988 mAccessibilityFeedbackEnabled = feedbackEnabled;
989
Casey Burkhardt048c2bc2016-12-08 16:09:20 -0800990 final boolean showAccessibilityButton = requestingServices >= 1;
991 final boolean targetSelection = requestingServices >= 2;
992 mNavigationBarView.setAccessibilityButtonState(showAccessibilityButton, targetSelection);
993 }
994
Mike Digman7d092772018-01-11 12:10:32 -0800995 private void onRotateSuggestionClick(View v) {
Mike Digmanc94759d2018-01-23 11:01:21 -0800996 mMetricsLogger.action(MetricsEvent.ACTION_ROTATION_SUGGESTION_ACCEPTED);
Mike Digman50752642018-02-15 13:36:09 -0800997 incrementNumAcceptedRotationSuggestionsIfNeeded();
Mike Digman7d092772018-01-11 12:10:32 -0800998 mRotationLockController.setRotationLockedAtAngle(true, mLastRotationSuggestion);
999 }
1000
Mike Digman90402952018-01-22 16:05:51 -08001001 private boolean onRotateSuggestionHover(View v, MotionEvent event) {
1002 final int action = event.getActionMasked();
1003 mHoveringRotationSuggestion = (action == MotionEvent.ACTION_HOVER_ENTER)
1004 || (action == MotionEvent.ACTION_HOVER_MOVE);
1005 rescheduleRotationTimeout(true);
1006 return false; // Must return false so a11y hover events are dispatched correctly.
1007 }
1008
Jason Monk2a6ea9c2017-01-26 11:14:51 -05001009 // ----- Methods that StatusBar talks to (should be minimized) -----
Jason Monk49fa0162017-01-11 09:21:56 -05001010
Jason Monk49fa0162017-01-11 09:21:56 -05001011 public void setLightBarController(LightBarController lightBarController) {
1012 mLightBarController = lightBarController;
1013 mLightBarController.setNavigationBar(mNavigationBarView.getLightTransitionsController());
1014 }
1015
1016 public boolean isSemiTransparent() {
1017 return mNavigationBarMode == MODE_SEMI_TRANSPARENT;
1018 }
1019
Jason Monk49fa0162017-01-11 09:21:56 -05001020 public void disableAnimationsDuringHide(long delay) {
1021 mNavigationBarView.setLayoutTransitionsEnabled(false);
1022 mNavigationBarView.postDelayed(() -> mNavigationBarView.setLayoutTransitionsEnabled(true),
1023 delay + StackStateAnimator.ANIMATION_DURATION_GO_TO_FULL_SHADE);
1024 }
1025
Jason Monk49fa0162017-01-11 09:21:56 -05001026 public BarTransitions getBarTransitions() {
1027 return mNavigationBarView.getBarTransitions();
1028 }
1029
1030 public void checkNavBarModes() {
Jason Monk2a6ea9c2017-01-26 11:14:51 -05001031 mStatusBar.checkBarMode(mNavigationBarMode,
Jason Monk49fa0162017-01-11 09:21:56 -05001032 mNavigationBarWindowState, mNavigationBarView.getBarTransitions());
1033 }
1034
1035 public void finishBarAnimations() {
1036 mNavigationBarView.getBarTransitions().finishAnimations();
1037 }
1038
Jason Monk91e587e2017-04-13 13:41:23 -04001039 private final AccessibilityServicesStateChangeListener mAccessibilityListener =
1040 this::updateAccessibilityServicesState;
1041
Casey Burkhardt74922c62017-02-13 12:43:16 -08001042 private class MagnificationContentObserver extends ContentObserver {
1043
1044 public MagnificationContentObserver(Handler handler) {
1045 super(handler);
1046 }
1047
1048 @Override
1049 public void onChange(boolean selfChange) {
Phil Weaverdb9a7742017-04-18 08:15:06 -07001050 NavigationBarFragment.this.updateAccessibilityServicesState(mAccessibilityManager);
Casey Burkhardt74922c62017-02-13 12:43:16 -08001051 }
1052 }
1053
Jason Monk49fa0162017-01-11 09:21:56 -05001054 private final Stub mRotationWatcher = new Stub() {
1055 @Override
Mike Digman90402952018-01-22 16:05:51 -08001056 public void onRotationChanged(final int rotation) throws RemoteException {
Jason Monk49fa0162017-01-11 09:21:56 -05001057 // We need this to be scheduled as early as possible to beat the redrawing of
1058 // window in response to the orientation change.
1059 Handler h = getView().getHandler();
1060 Message msg = Message.obtain(h, () -> {
Mike Digman85ff7fa2018-01-23 14:59:52 -08001061
1062 // If the screen rotation changes while locked, potentially update lock to flow with
Mike Digman90402952018-01-22 16:05:51 -08001063 // new screen rotation and hide any showing suggestions.
1064 if (mRotationLockController.isRotationLocked()) {
Mike Digman85ff7fa2018-01-23 14:59:52 -08001065 if (shouldOverrideUserLockPrefs(rotation)) {
1066 mRotationLockController.setRotationLockedAtAngle(true, rotation);
1067 }
Mike Digman1e28a5a2018-02-14 10:49:19 -08001068 setRotateSuggestionButtonState(false, true);
Mike Digman90402952018-01-22 16:05:51 -08001069 }
1070
Jason Monk49fa0162017-01-11 09:21:56 -05001071 if (mNavigationBarView != null
1072 && mNavigationBarView.needsReorient(rotation)) {
1073 repositionNavigationBar();
1074 }
1075 });
1076 msg.setAsynchronous(true);
1077 h.sendMessageAtFrontOfQueue(msg);
1078 }
Mike Digman85ff7fa2018-01-23 14:59:52 -08001079
1080 private boolean shouldOverrideUserLockPrefs(final int rotation) {
Mike Digmanab650252018-03-06 11:01:41 -08001081 // Only override user prefs when returning to the natural rotation (normally portrait).
Mike Digman85ff7fa2018-01-23 14:59:52 -08001082 // Don't let apps that force landscape or 180 alter user lock.
Mike Digmanab650252018-03-06 11:01:41 -08001083 return rotation == NATURAL_ROTATION;
Mike Digman85ff7fa2018-01-23 14:59:52 -08001084 }
Jason Monk49fa0162017-01-11 09:21:56 -05001085 };
1086
1087 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
1088 @Override
1089 public void onReceive(Context context, Intent intent) {
1090 String action = intent.getAction();
Siarhei Vishniakoud002a0a2017-06-05 22:44:37 +01001091 if (Intent.ACTION_SCREEN_OFF.equals(action)
1092 || Intent.ACTION_SCREEN_ON.equals(action)) {
1093 notifyNavigationBarScreenOn();
Jason Monk49fa0162017-01-11 09:21:56 -05001094 }
Phil Weavera858c5f2018-04-26 13:27:30 -07001095 if (Intent.ACTION_USER_SWITCHED.equals(action)) {
1096 // The accessibility settings may be different for the new user
1097 updateAccessibilityServicesState(mAccessibilityManager);
1098 };
Jason Monk49fa0162017-01-11 09:21:56 -05001099 }
1100 };
1101
Mike Digman7d092772018-01-11 12:10:32 -08001102 class TaskStackListenerImpl extends SysUiTaskStackChangeListener {
1103 // Invalidate any rotation suggestion on task change or activity orientation change
1104 // Note: all callbacks happen on main thread
1105
1106 @Override
1107 public void onTaskStackChanged() {
Mike Digman1e28a5a2018-02-14 10:49:19 -08001108 setRotateSuggestionButtonState(false);
Mike Digman7d092772018-01-11 12:10:32 -08001109 }
1110
1111 @Override
1112 public void onTaskRemoved(int taskId) {
Mike Digman1e28a5a2018-02-14 10:49:19 -08001113 setRotateSuggestionButtonState(false);
Mike Digman7d092772018-01-11 12:10:32 -08001114 }
1115
1116 @Override
1117 public void onTaskMovedToFront(int taskId) {
Mike Digman1e28a5a2018-02-14 10:49:19 -08001118 setRotateSuggestionButtonState(false);
Mike Digman7d092772018-01-11 12:10:32 -08001119 }
1120
1121 @Override
1122 public void onActivityRequestedOrientationChanged(int taskId, int requestedOrientation) {
Mike Digman85a9bea2018-02-23 15:08:53 -08001123 // Only hide the icon if the top task changes its requestedOrientation
1124 // Launcher can alter its requestedOrientation while it's not on top, don't hide on this
Mike Digman121b11f2018-04-04 12:45:24 -07001125 Optional.ofNullable(ActivityManagerWrapper.getInstance())
1126 .map(ActivityManagerWrapper::getRunningTask)
1127 .ifPresent(a -> {
1128 if (a.id == taskId) setRotateSuggestionButtonState(false);
1129 });
Mike Digman7d092772018-01-11 12:10:32 -08001130 }
1131 }
1132
Mike Digman50752642018-02-15 13:36:09 -08001133 private class ViewRippler {
1134 private static final int RIPPLE_OFFSET_MS = 50;
1135 private static final int RIPPLE_INTERVAL_MS = 2000;
1136 private View mRoot;
1137
1138 public void start(View root) {
1139 stop(); // Stop any pending ripple animations
1140
1141 mRoot = root;
1142
1143 // Schedule pending ripples, offset the 1st to avoid problems with visibility change
1144 mRoot.postOnAnimationDelayed(mRipple, RIPPLE_OFFSET_MS);
1145 mRoot.postOnAnimationDelayed(mRipple, RIPPLE_INTERVAL_MS);
1146 mRoot.postOnAnimationDelayed(mRipple, 2*RIPPLE_INTERVAL_MS);
1147 }
1148
1149 public void stop() {
1150 if (mRoot != null) mRoot.removeCallbacks(mRipple);
1151 }
1152
1153 private final Runnable mRipple = new Runnable() {
1154 @Override
1155 public void run() { // Cause the ripple to fire via false presses
Mike Digmanf4c98992018-04-25 11:25:59 -07001156 if (!mRoot.isAttachedToWindow()) return;
Mike Digman50752642018-02-15 13:36:09 -08001157 mRoot.setPressed(true);
1158 mRoot.setPressed(false);
1159 }
1160 };
1161 }
1162
Jason Monk49fa0162017-01-11 09:21:56 -05001163 public static View create(Context context, FragmentListener listener) {
1164 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1165 LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT,
1166 WindowManager.LayoutParams.TYPE_NAVIGATION_BAR,
1167 WindowManager.LayoutParams.FLAG_TOUCHABLE_WHEN_WAKING
1168 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1169 | WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL
1170 | WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH
1171 | WindowManager.LayoutParams.FLAG_SPLIT_TOUCH
1172 | WindowManager.LayoutParams.FLAG_SLIPPERY,
1173 PixelFormat.TRANSLUCENT);
1174 lp.token = new Binder();
Jason Monk49fa0162017-01-11 09:21:56 -05001175 lp.setTitle("NavigationBar");
Phil Weaver8583ae82018-02-13 11:01:24 -08001176 lp.accessibilityTitle = context.getString(R.string.nav_bar);
Jason Monk49fa0162017-01-11 09:21:56 -05001177 lp.windowAnimations = 0;
1178
1179 View navigationBarView = LayoutInflater.from(context).inflate(
1180 R.layout.navigation_bar_window, null);
1181
1182 if (DEBUG) Log.v(TAG, "addNavigationBar: about to add " + navigationBarView);
1183 if (navigationBarView == null) return null;
1184
1185 context.getSystemService(WindowManager.class).addView(navigationBarView, lp);
1186 FragmentHostManager fragmentHost = FragmentHostManager.get(navigationBarView);
1187 NavigationBarFragment fragment = new NavigationBarFragment();
1188 fragmentHost.getFragmentManager().beginTransaction()
1189 .replace(R.id.navigation_bar_frame, fragment, TAG)
1190 .commit();
1191 fragmentHost.addTagListener(TAG, listener);
1192 return navigationBarView;
1193 }
1194}