blob: 3a70e675acdb31c6834ca341e915da9a764bc04d [file] [log] [blame]
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001/*
Jeff Brown37df39a92015-02-25 15:42:31 -08002 * Copyright (C) 2006 The Android Open Source Project
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jorim Jaggib10e33f2015-02-04 21:57:40 +010017package com.android.server.policy;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080018
Wale Ogunwale3797c222015-10-27 14:21:58 -070019import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
20import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
Jorim Jaggi86905582016-02-09 21:36:09 -080021import static android.app.ActivityManager.StackId.FULLSCREEN_WORKSPACE_STACK_ID;
22import static android.app.ActivityManager.StackId.HOME_STACK_ID;
Jaewan Kim49117872016-01-19 17:24:08 +090023import static android.content.pm.PackageManager.FEATURE_PICTURE_IN_PICTURE;
24import static android.content.pm.PackageManager.FEATURE_TELEVISION;
25import static android.content.pm.PackageManager.FEATURE_WATCH;
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -080026import static android.content.res.Configuration.UI_MODE_TYPE_CAR;
27import static android.content.res.Configuration.UI_MODE_TYPE_MASK;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -070028import static android.view.WindowManager.LayoutParams.*;
Jaewan Kim49117872016-01-19 17:24:08 +090029import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -070030import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
31import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
Jaewan Kim49117872016-01-19 17:24:08 +090032import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
33import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
34import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -070035
Dianne Hackborna4972e92012-03-14 10:38:05 -070036import android.app.ActivityManager;
Jorim Jaggi86905582016-02-09 21:36:09 -080037import android.app.ActivityManager.StackId;
Jeff Brown061ea992015-04-17 19:55:47 -070038import android.app.ActivityManagerInternal;
39import android.app.ActivityManagerInternal.SleepToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080040import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080041import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040042import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070043import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070044import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040045import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080046import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070047import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080048import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040049import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080050import android.content.ContentResolver;
51import android.content.Context;
52import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070053import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070054import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080055import android.content.pm.ActivityInfo;
56import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040057import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070058import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080059import android.content.res.Configuration;
60import android.content.res.Resources;
61import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080062import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080063import android.graphics.Rect;
Jinsuk Kime601b712015-07-07 08:01:02 +090064import android.hardware.hdmi.HdmiControlManager;
65import android.hardware.hdmi.HdmiPlaybackClient;
66import android.hardware.hdmi.HdmiPlaybackClient.OneTouchPlayCallback;
John Spurlock7b414672014-07-18 13:02:39 -040067import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080068import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050069import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080070import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070071import android.media.Ringtone;
72import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070073import android.media.session.MediaSessionLegacyHelper;
Billy Laucbe540f2015-06-25 01:51:44 +010074import android.os.Binder;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070075import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080076import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070077import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080078import android.os.Handler;
79import android.os.IBinder;
Dianne Hackbornb6683c42015-06-18 17:40:33 -070080import android.os.IDeviceIdleController;
Jeff Brown32cbc38552011-12-01 14:01:49 -080081import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070082import android.os.Message;
83import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080084import android.os.PowerManager;
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -070085import android.os.PowerManagerInternal;
Billy Laucbe540f2015-06-25 01:51:44 +010086import android.os.Process;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080087import android.os.RemoteException;
88import android.os.ServiceManager;
89import android.os.SystemClock;
90import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080091import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070092import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080093import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070094import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080095import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070096import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040097import android.service.dreams.DreamService;
98import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070099import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700100import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -0700101import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800102import android.util.EventLog;
103import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -0700104import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -0800105import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700106import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800107import android.view.Gravity;
108import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800109import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800110import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -0700111import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -0700112import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -0800113import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800114import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -0800115import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -0800116import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800117import android.view.KeyEvent;
118import android.view.MotionEvent;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800119import android.view.Surface;
120import android.view.View;
121import android.view.ViewConfiguration;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800122import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800123import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700124import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800125import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800126import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800127import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800128import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200129import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800130import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800131import com.android.internal.R;
Jason Monk8f7f3182015-11-18 16:35:14 -0500132import com.android.internal.logging.MetricsLogger;
133import com.android.internal.policy.PhoneWindow;
Craig Mautnerae446592012-12-06 19:05:05 -0800134import com.android.internal.statusbar.IStatusBarService;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700135import com.android.internal.util.ScreenShapeHelper;
Craig Mautnerae446592012-12-06 19:05:05 -0800136import com.android.internal.widget.PointerLocationView;
Adrian Roos5941c982015-09-03 15:59:49 -0700137import com.android.server.GestureLauncherService;
Craig Mautner8a0da012014-05-31 15:13:37 -0700138import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100139import com.android.server.policy.keyguard.KeyguardServiceDelegate;
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700140import com.android.server.policy.keyguard.KeyguardServiceDelegate.DrawnListener;
Jorim Jaggi86905582016-02-09 21:36:09 -0800141import com.android.server.statusbar.StatusBarManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800142
143import java.io.File;
144import java.io.FileReader;
145import java.io.IOException;
146import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700147import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800148import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800149
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800150/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700151 * WindowManagerPolicy implementation for the Android phone UI. This
152 * introduces a new method suffix, Lp, for an internal lock of the
153 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400154 * can be acquired with either the Lw and Li lock held, so has the restrictions
The Android Open Source Project0727d222009-03-11 12:11:58 -0700155 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800156 */
157public class PhoneWindowManager implements WindowManagerPolicy {
158 static final String TAG = "WindowManager";
159 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700160 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700161 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700162 static final boolean DEBUG_KEYGUARD = false;
163 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700164 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700165 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800166 static final boolean SHOW_STARTING_ANIMATIONS = true;
167 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400168
Daniel Sandler6396c722013-04-16 20:19:09 -0400169 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
keunyounga7710492015-09-23 11:33:58 -0700170 // No longer recommended for desk docks;
Daniel Sandler6396c722013-04-16 20:19:09 -0400171 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
172
Jeff Brown6d8fd272014-05-20 21:24:38 -0700173 static final int SHORT_PRESS_POWER_NOTHING = 0;
174 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
175 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
176 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800177 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700178
Joe Onoratod208e702010-10-08 16:22:43 -0400179 static final int LONG_PRESS_POWER_NOTHING = 0;
180 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
181 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700182 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700183
Jeff Brown13f00f02014-10-31 14:45:50 -0700184 static final int MULTI_PRESS_POWER_NOTHING = 0;
185 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
186 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
187
Michael Jurka3b1fc472011-06-13 10:54:40 -0700188 // These need to match the documentation/constant in
189 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800190 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800191 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700192 static final int LONG_PRESS_HOME_ASSIST = 2;
Jaewan Kim52632e22016-01-14 18:01:52 +0900193 static final int LONG_PRESS_HOME_PICTURE_IN_PICTURE = 3;
194 static final int LAST_LONG_PRESS_HOME_BEHAVIOR = LONG_PRESS_HOME_PICTURE_IN_PICTURE;
Jeff Browncaca8812013-05-09 13:34:33 -0700195
196 static final int DOUBLE_TAP_HOME_NOTHING = 0;
197 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800198
Jaewan Kim49117872016-01-19 17:24:08 +0900199 static final int SHORT_PRESS_WINDOW_NOTHING = 0;
200 static final int SHORT_PRESS_WINDOW_PICTURE_IN_PICTURE = 1;
201
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000202 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
203 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
204
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700205 static final int APPLICATION_MEDIA_SUBLAYER = -2;
206 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800207 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800208 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700209 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700210
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800211 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
212 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
213 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500214 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700215 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800216
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700217 /**
218 * These are the system UI flags that, when changing, can cause the layout
219 * of the screen to change.
220 */
221 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400222 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400223 | View.SYSTEM_UI_FLAG_FULLSCREEN
224 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200225 | View.NAVIGATION_BAR_TRANSLUCENT
Jorim Jaggi4fa78922015-11-30 17:13:56 -0800226 | View.STATUS_BAR_TRANSPARENT
227 | View.NAVIGATION_BAR_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700228
John Spurlock7b414672014-07-18 13:02:39 -0400229 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
230 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
231 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
232 .build();
233
Adrian Roosddc8b272015-05-21 16:28:27 -0700234 // The panic gesture may become active only after the keyguard is dismissed and the immersive
235 // app shows again. If that doesn't happen for 30s we drop the gesture.
236 private static final long PANIC_GESTURE_EXPIRATION = 30000;
237
Jim Miller5ecd8112013-01-09 18:50:26 -0800238 /**
239 * Keyguard stuff
240 */
241 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100242 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700243 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800244
Jeff Brown6651a632011-11-28 12:59:11 -0800245 /* Table of Application Launch keys. Maps from key codes to intent categories.
246 *
247 * These are special keys that are used to launch particular kinds of applications,
248 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
249 * usage page. We don't support quite that many yet...
250 */
251 static SparseArray<String> sApplicationLaunchKeyCategories;
252 static {
253 sApplicationLaunchKeyCategories = new SparseArray<String>();
254 sApplicationLaunchKeyCategories.append(
255 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
256 sApplicationLaunchKeyCategories.append(
257 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
258 sApplicationLaunchKeyCategories.append(
259 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
260 sApplicationLaunchKeyCategories.append(
261 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
262 sApplicationLaunchKeyCategories.append(
263 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
264 sApplicationLaunchKeyCategories.append(
265 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
266 }
267
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700268 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
Jorim Jaggi0d210f62015-07-10 14:24:44 -0700269 static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700270
Dianne Hackborndf89e652011-10-06 22:35:11 -0700271 /**
272 * Lock protecting internal state. Must not call out into window
273 * manager with lock held. (This lock will be acquired in places
274 * where the window manager is calling in with its own lock held.)
275 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800276 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700277
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800278 Context mContext;
279 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700280 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700281 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700282 PowerManager mPowerManager;
Jeff Brown061ea992015-04-17 19:55:47 -0700283 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700284 DreamManagerInternal mDreamManagerInternal;
Michael Wrighta4d22d72015-09-16 23:19:26 +0100285 PowerManagerInternal mPowerManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400286 IStatusBarService mStatusBarService;
Jorim Jaggi86905582016-02-09 21:36:09 -0800287 StatusBarManagerInternal mStatusBarManagerInternal;
Jeff Browncaca8812013-05-09 13:34:33 -0700288 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700289 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800290 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700291 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800292 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000293 BurnInProtectionHelper mBurnInProtectionHelper;
Billy Laucbe540f2015-06-25 01:51:44 +0100294 AppOpsManager mAppOpsManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800295
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700296 // Vibrator pattern for haptic feedback of a long press.
297 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700298
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700299 // Vibrator pattern for haptic feedback of virtual key press.
300 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700301
Amith Yamasanic33cb712010-02-10 15:21:49 -0800302 // Vibrator pattern for a short vibration.
303 long[] mKeyboardTapVibePattern;
304
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700305 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
306 long[] mClockTickVibePattern;
307
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700308 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
309 long[] mCalendarDateVibePattern;
310
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700311 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
312 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700313
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700314 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
315 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700316
Mady Mellore8608912015-06-05 09:02:55 -0700317 // Vibrator pattern for haptic feedback of a context click.
318 long[] mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -0700319
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800320 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
321 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400322
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800323 boolean mSafeMode;
324 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700325 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400326 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400327 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700328 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400329 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
330 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -0800331 int[] mNavigationBarHeightForRotationDefault = new int[4];
332 int[] mNavigationBarWidthForRotationDefault = new int[4];
333 int[] mNavigationBarHeightForRotationInCarMode = new int[4];
334 int[] mNavigationBarWidthForRotationInCarMode = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400335
keunyounga7710492015-09-23 11:33:58 -0700336 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
337 // This is for car dock and this is updated from resource.
338 private boolean mEnableCarDockHomeCapture = true;
339
Craig Mautnera631d492014-08-05 15:16:01 -0700340 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800341 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700342 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700343 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700344 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700345 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
346 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
347 }
348 };
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700349 final DrawnListener mKeyguardDrawnCallback = new DrawnListener() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700350 @Override
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700351 public void onDrawn() {
352 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onDrawn.");
Craig Mautner8a0da012014-05-31 15:13:37 -0700353 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
354 }
355 };
356
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800357 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800358 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900359 WindowState mLastInputMethodWindow = null;
360 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800361
Jeff Brown13f00f02014-10-31 14:45:50 -0700362 // FIXME This state is shared between the input reader and handler thread.
363 // Technically it's broken and buggy but it has been like this for many years
364 // and we have not yet seen any problems. Someday we'll rewrite this logic
365 // so that only one thread is involved in handling input policy. Unfortunately
366 // it's on a critical path for power management so we can't just post the work to the
367 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
368 // to hold wakelocks during dispatch and eliminating the critical path.
369 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800370 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700371 volatile int mPowerKeyPressCounter;
372 volatile boolean mEndCallKeyHandled;
373
Winson Chungd42a6cf2014-06-03 16:24:04 -0700374 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700375 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700376 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800377
Jeff Brown2e7760e2012-04-11 15:14:55 -0700378 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700379 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700380 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800381
Dianne Hackbornc777e072010-02-12 13:07:59 -0800382 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700383 boolean mSystemBooted;
Adrian Roos3542f7d2015-07-13 15:57:53 -0700384 private boolean mDeferBindKeyguard;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800385 boolean mHdmiPlugged;
Jinsuk Kime601b712015-07-07 08:01:02 +0900386 HdmiControl mHdmiControl;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700387 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400388 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700389 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700390 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400391 int mCarDockRotation;
392 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700393 int mUndockedHdmiRotation;
394 int mDemoHdmiRotation;
395 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800396 int mDemoRotation;
397 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400398
Jeff Browna20dda42014-05-27 20:57:24 -0700399 boolean mWakeGestureEnabledSetting;
400 MyWakeGestureListener mWakeGestureListener;
401
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700402 // Default display does not rotate, apps that require non-default orientation will have to
403 // have the orientation emulated.
404 private boolean mForceDefaultOrientation = false;
405
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400406 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
407 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700408 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400409
Jeff Brownbcdfc622014-03-06 19:13:04 -0800410 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700411 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400412 boolean mCarDockEnablesAccelerometer;
413 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700414 int mLidKeyboardAccessibility;
415 int mLidNavigationAccessibility;
Edward Savage-Jones7def60d2015-11-13 13:27:03 +0100416 boolean mLidControlsScreenLock;
Jeff Brownc458ce92012-04-30 14:58:40 -0700417 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700418 int mShortPressOnPowerBehavior;
419 int mLongPressOnPowerBehavior;
420 int mDoublePressOnPowerBehavior;
421 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000422 int mShortPressOnSleepBehavior;
Jaewan Kim49117872016-01-19 17:24:08 +0900423 int mShortPressWindowBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700424 boolean mAwake;
425 boolean mScreenOnEarly;
426 boolean mScreenOnFully;
427 ScreenOnListener mScreenOnListener;
428 boolean mKeyguardDrawComplete;
429 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800430 boolean mOrientationSensorEnabled = false;
431 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800432 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400433 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800434 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700435
Jeff Brown70825162012-03-28 17:27:48 -0700436 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800437
438 // The last window we were told about in focusChanged.
439 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800440 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800441
Jeff Brown70825162012-03-28 17:27:48 -0700442 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800443
Dianne Hackbornc652de82013-02-15 16:32:56 -0800444 // The current size of the screen; really; extends into the overscan area of
445 // the screen and doesn't account for any system elements like the status bar.
446 int mOverscanScreenLeft, mOverscanScreenTop;
447 int mOverscanScreenWidth, mOverscanScreenHeight;
448 // The current visible size of the screen; really; (ir)regardless of whether the status
449 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800450 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
451 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800452 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
453 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
454 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700455 // The current size of the screen; these may be different than (0,0)-(dw,dh)
456 // if the status bar can't be hidden; in that case it effectively carves out
457 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800458 int mRestrictedScreenLeft, mRestrictedScreenTop;
459 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700460 // During layout, the current screen borders accounting for any currently
461 // visible system UI elements.
462 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700463 // For applications requesting stable content insets, these are them.
464 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700465 // For applications requesting stable content insets but have also set the
466 // fullscreen window flag, these are the stable dimensions without the status bar.
467 int mStableFullscreenLeft, mStableFullscreenTop;
468 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800469 // During layout, the current screen borders with all outer decoration
470 // (status bar, input method dock) accounted for.
471 int mCurLeft, mCurTop, mCurRight, mCurBottom;
472 // During layout, the frame in which content should be displayed
473 // to the user, accounting for all screen decoration except for any
474 // space they deem as available for other content. This is usually
475 // the same as mCur*, but may be larger if the screen decor has supplied
476 // content insets.
477 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700478 // During layout, the frame in which voice content should be displayed
479 // to the user, accounting for all screen decoration except for any
480 // space they deem as available for other content.
481 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800482 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800483 // windows are placed.
484 int mDockLeft, mDockTop, mDockRight, mDockBottom;
485 // During layout, the layer at which the doc window is placed.
486 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700487 // During layout, this is the layer of the status bar.
488 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700489 int mLastSystemUiFlags;
490 // Bits that we are in the process of clearing, so we want to prevent
491 // them from being set by applications until everything has been updated
492 // to have them clear.
493 int mResettingSystemUiFlags = 0;
494 // Bits that we are currently always keeping cleared.
495 int mForceClearedSystemUiFlags = 0;
Jorim Jaggi86905582016-02-09 21:36:09 -0800496 int mLastFullscreenStackSysUiFlags;
497 int mLastDockedStackSysUiFlags;
498 final Rect mNonDockedStackBounds = new Rect();
499 final Rect mDockedStackBounds = new Rect();
500 final Rect mLastNonDockedStackBounds = new Rect();
501 final Rect mLastDockedStackBounds = new Rect();
502
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800503 // What we last reported to system UI about whether the compatibility
504 // menu needs to be displayed.
505 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700506 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
507 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700508
Selim Cinekf83e8242015-05-19 18:08:14 -0700509 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700510
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800511 static final Rect mTmpParentFrame = new Rect();
512 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800513 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800514 static final Rect mTmpContentFrame = new Rect();
515 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400516 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700517 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700518 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700519 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700520
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800521 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100522 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Jorim Jaggi86905582016-02-09 21:36:09 -0800523 WindowState mTopDockedOpaqueWindowState;
524 WindowState mTopDockedOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700525 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200526 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400527 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800528 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700529 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700530 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700531 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800532 boolean mForcingShowNavBar;
533 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700534
535 // States of keyguard dismiss.
536 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
537 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
538 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
539 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
540
541 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
542 * be done once per window. */
543 private WindowState mWinDismissingKeyguard;
544
tingna_sunge785ffa2015-05-12 13:23:15 +0800545 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
546 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
547 * lock SIM card. This variable is used to record the previous keyguard secure state for
548 * monitoring secure state change on window dismissing keyguard. */
549 private boolean mSecureDismissingKeyguard;
550
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700551 /** The window that is currently showing "over" the keyguard. If there is an app window
552 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
553 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
554 * the wallpaper. */
555 private WindowState mWinShowWhenLocked;
556
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700557 boolean mShowingLockscreen;
558 boolean mShowingDream;
559 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700560 boolean mDreamingSleepTokenNeeded;
561 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700562 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700563 boolean mKeyguardSecure;
564 boolean mKeyguardSecureIncludingHidden;
565 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800566 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700567 boolean mHomeConsumed;
568 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800569 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700570 Intent mCarDockIntent;
571 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700572 boolean mSearchKeyShortcutPending;
573 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700574 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700575 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800576
Mike Lockwood28569302010-01-28 11:54:40 -0500577 // support for activating the lock screen while the screen is on
578 boolean mAllowLockscreenWhenOn;
579 int mLockScreenTimeout;
580 boolean mLockScreenTimerActive;
581
David Brownbaf8d092010-03-08 21:52:59 -0800582 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800583 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800584
585 // Behavior of POWER button while in-call and screen on.
586 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
587 int mIncallPowerBehavior;
588
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700589 Display mDisplay;
590
Filip Gruszczynski2987f612015-06-30 15:03:30 -0700591 private int mDisplayRotation;
592
Dianne Hackborn9d132642011-04-21 17:26:39 -0700593 int mLandscapeRotation = 0; // default landscape rotation
594 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
595 int mPortraitRotation = 0; // default portrait rotation
596 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700597
Dianne Hackbornc652de82013-02-15 16:32:56 -0800598 int mOverscanLeft = 0;
599 int mOverscanTop = 0;
600 int mOverscanRight = 0;
601 int mOverscanBottom = 0;
602
Joe Onorato46b0d682010-11-22 17:37:27 -0800603 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700604 private int mLongPressOnHomeBehavior;
605
606 // What we do when the user double-taps on home
607 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800608
Bryce Lee584a4452014-10-21 15:55:55 -0700609 // Allowed theater mode wake actions
610 private boolean mAllowTheaterModeWakeFromKey;
611 private boolean mAllowTheaterModeWakeFromPowerKey;
612 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800613 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700614 private boolean mAllowTheaterModeWakeFromCameraLens;
615 private boolean mAllowTheaterModeWakeFromLidSwitch;
616 private boolean mAllowTheaterModeWakeFromWakeGesture;
617
Bryce Leed3b28402015-03-09 15:49:13 +0000618 // Whether to support long press from power button in non-interactive mode
619 private boolean mSupportLongPressPowerWhenNonInteractive;
620
Bryce Lee55e846d2014-11-04 12:43:44 -0800621 // Whether to go to sleep entering theater mode from power button
622 private boolean mGoToSleepOnButtonPressTheaterMode;
623
Winson Chung9112ec32011-06-27 13:15:32 -0700624 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700625 // Time to volume and power must be pressed within this interval of each other.
626 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700627 // Increase the chord delay when taking a screenshot from the keyguard
628 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800629 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700630 private boolean mScreenshotChordVolumeDownKeyTriggered;
631 private long mScreenshotChordVolumeDownKeyTime;
632 private boolean mScreenshotChordVolumeDownKeyConsumed;
633 private boolean mScreenshotChordVolumeUpKeyTriggered;
634 private boolean mScreenshotChordPowerKeyTriggered;
635 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700636
Michael Wrightb854e242013-02-05 17:54:02 -0800637 /* The number of steps between min and max brightness */
638 private static final int BRIGHTNESS_STEPS = 10;
639
Christopher Tate5e08af02012-09-21 17:17:22 -0700640 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800641 ShortcutManager mShortcutManager;
642 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700643 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700644 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800645
Craig Mautnerd625ab22013-09-06 13:40:31 -0700646 private int mCurrentUserId;
647
Justin Kohd378ad72013-04-01 12:18:26 -0700648 // Maps global key codes to the components that will handle them.
649 private GlobalKeyManager mGlobalKeyManager;
650
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700651 // Fallback actions by key code.
652 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
653 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800654
Jorim Jaggi76a16232014-08-08 17:00:47 +0200655 private final LogDecelerateInterpolator mLogDecelerateInterpolator
656 = new LogDecelerateInterpolator(100, 0);
657
Jorim Jaggi4fa78922015-11-30 17:13:56 -0800658 private boolean mForceWindowDrawsStatusBarBackground;
659
Jeff Brown70825162012-03-28 17:27:48 -0700660 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
661 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700662 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
663 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700664 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
665 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
666 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700667 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700668 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700669 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700670 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700671 private static final int MSG_POWER_DELAYED_PRESS = 13;
672 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700673 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700674 private static final int MSG_REQUEST_TRANSIENT_BARS = 16;
Jaewan Kimc552b042016-01-18 16:08:45 +0900675 private static final int MSG_REQUEST_TV_PICTURE_IN_PICTURE = 17;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700676
677 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS = 0;
678 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION = 1;
Jeff Brown70825162012-03-28 17:27:48 -0700679
680 private class PolicyHandler extends Handler {
681 @Override
682 public void handleMessage(Message msg) {
683 switch (msg.what) {
684 case MSG_ENABLE_POINTER_LOCATION:
685 enablePointerLocation();
686 break;
687 case MSG_DISABLE_POINTER_LOCATION:
688 disablePointerLocation();
689 break;
Jeff Brown40013652012-05-16 21:22:36 -0700690 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
691 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
692 break;
693 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
694 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
695 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700696 case MSG_DISPATCH_SHOW_RECENTS:
697 showRecentApps(false);
698 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700699 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
700 showGlobalActionsInternal();
701 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700702 case MSG_KEYGUARD_DRAWN_COMPLETE:
703 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700704 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700705 break;
706 case MSG_KEYGUARD_DRAWN_TIMEOUT:
707 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700708 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700709 break;
710 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
711 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700712 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700713 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700714 case MSG_HIDE_BOOT_MESSAGE:
715 handleHideBootMessage();
716 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700717 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
718 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
719 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700720 case MSG_POWER_DELAYED_PRESS:
721 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
722 finishPowerKeyPress();
723 break;
724 case MSG_POWER_LONG_PRESS:
725 powerLongPress();
726 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700727 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
728 updateDreamingSleepToken(msg.arg1 != 0);
729 break;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700730 case MSG_REQUEST_TRANSIENT_BARS:
731 WindowState targetBar = (msg.arg1 == MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS) ?
732 mStatusBar : mNavigationBar;
733 if (targetBar != null) {
734 requestTransientBars(targetBar);
735 }
736 break;
Jaewan Kimc552b042016-01-18 16:08:45 +0900737 case MSG_REQUEST_TV_PICTURE_IN_PICTURE:
738 requestTvPictureInPictureInternal();
739 break;
Jeff Brown70825162012-03-28 17:27:48 -0700740 }
741 }
742 }
743
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800744 private UEventObserver mHDMIObserver = new UEventObserver() {
745 @Override
746 public void onUEvent(UEventObserver.UEvent event) {
747 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
748 }
749 };
750
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800751 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800752 SettingsObserver(Handler handler) {
753 super(handler);
754 }
David Brownbaf8d092010-03-08 21:52:59 -0800755
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800756 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700757 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800758 ContentResolver resolver = mContext.getContentResolver();
759 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700760 Settings.System.END_BUTTON_BEHAVIOR), false, this,
761 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800762 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700763 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
764 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700765 resolver.registerContentObserver(Settings.Secure.getUriFor(
766 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
767 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800768 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700769 Settings.System.ACCELEROMETER_ROTATION), false, this,
770 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500771 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700772 Settings.System.USER_ROTATION), false, this,
773 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400774 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700775 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
776 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800777 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700778 Settings.System.POINTER_LOCATION), false, this,
779 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800780 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700781 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
782 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500783 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400784 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700785 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500786 resolver.registerContentObserver(Settings.Global.getUriFor(
787 Settings.Global.POLICY_CONTROL), false, this,
788 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800789 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800790 }
791
792 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800793 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700794 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800795 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800796 }
Craig Mautner967212c2013-04-13 21:10:58 -0700797
Jeff Browna20dda42014-05-27 20:57:24 -0700798 class MyWakeGestureListener extends WakeGestureListener {
799 MyWakeGestureListener(Context context, Handler handler) {
800 super(context, handler);
801 }
802
803 @Override
804 public void onWakeUp() {
805 synchronized (mLock) {
806 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700807 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700808 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture,
809 "android.policy:GESTURE");
Jeff Browna20dda42014-05-27 20:57:24 -0700810 }
811 }
812 }
813 }
814
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800815 class MyOrientationListener extends WindowOrientationListener {
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700816 private final Runnable mUpdateRotationRunnable = new Runnable() {
817 @Override
818 public void run() {
Tim Murray1f407642015-10-01 17:07:12 -0700819 // send interaction hint to improve redraw performance
820 mPowerManagerInternal.powerHint(PowerManagerInternal.POWER_HINT_INTERACTION, 0);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700821 updateRotation(false);
822 }
823 };
824
Craig Mautnereee29c42013-01-17 14:44:34 -0800825 MyOrientationListener(Context context, Handler handler) {
826 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800827 }
Craig Mautner967212c2013-04-13 21:10:58 -0700828
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800829 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700830 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700831 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700832 mHandler.post(mUpdateRotationRunnable);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700833 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800834 }
835 MyOrientationListener mOrientationListener;
836
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100837 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400838
John Spurlock27735a42013-08-14 17:57:38 -0400839 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400840 View.NAVIGATION_BAR_TRANSIENT,
841 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400842 View.NAVIGATION_BAR_TRANSLUCENT,
843 StatusBarManager.WINDOW_NAVIGATION_BAR,
Jorim Jaggi4fa78922015-11-30 17:13:56 -0800844 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION,
845 View.NAVIGATION_BAR_TRANSPARENT);
John Spurlock5b9145b2013-08-20 15:13:47 -0400846
John Spurlockf1a36642013-10-12 17:50:42 -0400847 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400848
Craig Mautner037aa8d2013-06-07 10:35:44 -0700849 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400850
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700851 IStatusBarService getStatusBarService() {
852 synchronized (mServiceAquireLock) {
853 if (mStatusBarService == null) {
854 mStatusBarService = IStatusBarService.Stub.asInterface(
855 ServiceManager.getService("statusbar"));
856 }
857 return mStatusBarService;
858 }
859 }
860
Jorim Jaggi86905582016-02-09 21:36:09 -0800861 StatusBarManagerInternal getStatusBarManagerInternal() {
862 synchronized (mServiceAquireLock) {
863 if (mStatusBarManagerInternal == null) {
864 mStatusBarManagerInternal =
865 LocalServices.getService(StatusBarManagerInternal.class);
866 }
867 return mStatusBarManagerInternal;
868 }
869 }
870
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700871 /*
872 * We always let the sensor be switched on by default except when
873 * the user has explicitly disabled sensor based rotation or when the
874 * screen is switched off.
875 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700876 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800877 if (mSupportAutoRotation) {
878 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
879 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
880 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
881 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
882 // If the application has explicitly requested to follow the
883 // orientation, then we need to turn the sensor on.
884 return true;
885 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800886 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700887 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800888 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
889 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
890 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400891 // enable accelerometer if we are docked in a dock that enables accelerometer
892 // orientation management,
893 return true;
894 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700895 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800896 // If the setting for using the sensor by default is enabled, then
897 // we will always leave it on. Note that the user could go to
898 // a window that forces an orientation that does not use the
899 // sensor and in theory we could turn it off... however, when next
900 // turning it on we won't have a good value for the current
901 // orientation for a little bit, which can cause orientation
902 // changes to lag, so we'd like to keep it always on. (It will
903 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700904 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800905 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800906 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800907 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700908
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800909 /*
910 * Various use cases for invoking this function
911 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700912 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800913 * if not already enabled
914 * screen turned on and current app does not have sensor orientation, disable listeners if
915 * already enabled
916 * screen turning on and current app has sensor based orientation, enable listeners if needed
917 * screen turning on and current app has nosensor based orientation, do nothing
918 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700919 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800920 if (!mOrientationListener.canDetectOrientation()) {
921 // If sensor is turned off or nonexistent for some reason
922 return;
923 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000924 // Could have been invoked due to screen turning on or off or
925 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700926 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
927 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000928 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
929 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
930 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800931 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000932 // Note: We postpone the rotating of the screen until the keyguard as well as the
933 // window manager have reported a draw complete.
934 if (mScreenOnEarly && mAwake &&
935 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700936 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800937 disable = false;
938 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700939 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800940 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700941 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800942 mOrientationSensorEnabled = true;
943 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700944 }
945 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800946 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700947 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800948 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700949 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800950 mOrientationSensorEnabled = false;
951 }
952 }
953
Jeff Brown13f00f02014-10-31 14:45:50 -0700954 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
955 // Hold a wake lock until the power key is released.
956 if (!mPowerKeyWakeLock.isHeld()) {
957 mPowerKeyWakeLock.acquire();
958 }
959
960 // Cancel multi-press detection timeout.
961 if (mPowerKeyPressCounter != 0) {
962 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
963 }
964
965 // Detect user pressing the power button in panic when an application has
966 // taken over the whole screen.
967 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800968 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700969 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700970 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700971 }
972
973 // Latch power key state to detect screenshot chord.
974 if (interactive && !mScreenshotChordPowerKeyTriggered
975 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
976 mScreenshotChordPowerKeyTriggered = true;
977 mScreenshotChordPowerKeyTime = event.getDownTime();
978 interceptScreenshotChord();
979 }
980
981 // Stop ringing or end call if configured to do so when power is pressed.
982 TelecomManager telecomManager = getTelecommService();
983 boolean hungUp = false;
984 if (telecomManager != null) {
985 if (telecomManager.isRinging()) {
986 // Pressing Power while there's a ringing incoming
987 // call should silence the ringer.
988 telecomManager.silenceRinger();
989 } else if ((mIncallPowerBehavior
990 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
991 && telecomManager.isInCall() && interactive) {
992 // Otherwise, if "Power button ends call" is enabled,
993 // the Power button will hang up any current active call.
994 hungUp = telecomManager.endCall();
995 }
996 }
997
Adrian Roos5941c982015-09-03 15:59:49 -0700998 GestureLauncherService gestureService = LocalServices.getService(
999 GestureLauncherService.class);
1000 boolean gesturedServiceIntercepted = false;
1001 if (gestureService != null) {
1002 gesturedServiceIntercepted = gestureService.interceptPowerKeyDown(event, interactive);
1003 }
1004
Jeff Brown13f00f02014-10-31 14:45:50 -07001005 // If the power key has still not yet been handled, then detect short
1006 // press, long press, or multi press and decide what to do.
1007 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
Adrian Roos5941c982015-09-03 15:59:49 -07001008 || mScreenshotChordVolumeUpKeyTriggered || gesturedServiceIntercepted;
Jeff Brown13f00f02014-10-31 14:45:50 -07001009 if (!mPowerKeyHandled) {
1010 if (interactive) {
1011 // When interactive, we're already awake.
1012 // Wait for a long press or for the button to be released to decide what to do.
1013 if (hasLongPressOnPowerBehavior()) {
1014 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
1015 msg.setAsynchronous(true);
1016 mHandler.sendMessageDelayed(msg,
1017 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
1018 }
1019 } else {
Bryce Leed9268e32014-11-17 17:40:59 -08001020 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -08001021
Bryce Leed3b28402015-03-09 15:49:13 +00001022 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
1023 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
1024 msg.setAsynchronous(true);
1025 mHandler.sendMessageDelayed(msg,
1026 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -08001027 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +00001028 } else {
1029 final int maxCount = getMaxMultiPressPowerCount();
1030
1031 if (maxCount <= 1) {
1032 mPowerKeyHandled = true;
1033 } else {
1034 mBeganFromNonInteractive = true;
1035 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001036 }
1037 }
Jeff Brown4d396052010-10-29 21:50:21 -07001038 }
1039 }
1040
Jeff Brown13f00f02014-10-31 14:45:50 -07001041 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
1042 final boolean handled = canceled || mPowerKeyHandled;
1043 mScreenshotChordPowerKeyTriggered = false;
1044 cancelPendingScreenshotChordAction();
1045 cancelPendingPowerKeyAction();
1046
1047 if (!handled) {
1048 // Figure out how to handle the key now that it has been released.
1049 mPowerKeyPressCounter += 1;
1050
1051 final int maxCount = getMaxMultiPressPowerCount();
1052 final long eventTime = event.getDownTime();
1053 if (mPowerKeyPressCounter < maxCount) {
1054 // This could be a multi-press. Wait a little bit longer to confirm.
1055 // Continue holding the wake lock.
1056 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
1057 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
1058 msg.setAsynchronous(true);
1059 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
1060 return;
1061 }
1062
1063 // No other actions. Handle it immediately.
1064 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -07001065 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001066
1067 // Done. Reset our state.
1068 finishPowerKeyPress();
1069 }
1070
1071 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -08001072 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001073 mPowerKeyPressCounter = 0;
1074 if (mPowerKeyWakeLock.isHeld()) {
1075 mPowerKeyWakeLock.release();
1076 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001077 }
1078
1079 private void cancelPendingPowerKeyAction() {
1080 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001081 mPowerKeyHandled = true;
1082 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001083 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001084 }
1085
1086 private void powerPress(long eventTime, boolean interactive, int count) {
1087 if (mScreenOnEarly && !mScreenOnFully) {
1088 Slog.i(TAG, "Suppressed redundant power key press while "
1089 + "already in the process of turning the screen on.");
1090 return;
Jeff Brownff204712011-10-25 21:27:54 -07001091 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001092
1093 if (count == 2) {
1094 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1095 } else if (count == 3) {
1096 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001097 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001098 switch (mShortPressOnPowerBehavior) {
1099 case SHORT_PRESS_POWER_NOTHING:
1100 break;
1101 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1102 mPowerManager.goToSleep(eventTime,
1103 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1104 break;
1105 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1106 mPowerManager.goToSleep(eventTime,
1107 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1108 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1109 break;
1110 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1111 mPowerManager.goToSleep(eventTime,
1112 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1113 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1114 launchHomeFromHotKey();
1115 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001116 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001117 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001118 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001119 }
1120 }
1121 }
1122
1123 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1124 switch (behavior) {
1125 case MULTI_PRESS_POWER_NOTHING:
1126 break;
1127 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001128 if (!isUserSetupComplete()) {
1129 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1130 break;
1131 }
1132
Jeff Brown13f00f02014-10-31 14:45:50 -07001133 if (isTheaterModeEnabled()) {
1134 Slog.i(TAG, "Toggling theater mode off.");
1135 Settings.Global.putInt(mContext.getContentResolver(),
1136 Settings.Global.THEATER_MODE_ON, 0);
1137 if (!interactive) {
1138 wakeUpFromPowerKey(eventTime);
1139 }
1140 } else {
1141 Slog.i(TAG, "Toggling theater mode on.");
1142 Settings.Global.putInt(mContext.getContentResolver(),
1143 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001144
1145 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001146 mPowerManager.goToSleep(eventTime,
1147 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1148 }
1149 }
1150 break;
1151 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001152 Slog.i(TAG, "Starting brightness boost.");
1153 if (!interactive) {
1154 wakeUpFromPowerKey(eventTime);
1155 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001156 mPowerManager.boostScreenBrightness(eventTime);
1157 break;
1158 }
1159 }
1160
1161 private int getMaxMultiPressPowerCount() {
1162 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1163 return 3;
1164 }
1165 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1166 return 2;
1167 }
1168 return 1;
1169 }
1170
1171 private void powerLongPress() {
1172 final int behavior = getResolvedLongPressOnPowerBehavior();
1173 switch (behavior) {
1174 case LONG_PRESS_POWER_NOTHING:
1175 break;
1176 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1177 mPowerKeyHandled = true;
1178 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1179 performAuditoryFeedbackForAccessibilityIfNeed();
1180 }
1181 showGlobalActionsInternal();
1182 break;
1183 case LONG_PRESS_POWER_SHUT_OFF:
1184 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1185 mPowerKeyHandled = true;
1186 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1187 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1188 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1189 break;
1190 }
1191 }
1192
Nick Vaccarob593a812015-05-15 11:23:05 -07001193 private void sleepPress(long eventTime) {
1194 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1195 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1196 }
1197 }
1198
1199 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001200 switch (mShortPressOnSleepBehavior) {
1201 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001202 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001203 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1204 mPowerManager.goToSleep(eventTime,
1205 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001206 break;
1207 }
1208 }
1209
Jeff Brown13f00f02014-10-31 14:45:50 -07001210 private int getResolvedLongPressOnPowerBehavior() {
1211 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1212 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1213 }
1214 return mLongPressOnPowerBehavior;
1215 }
1216
1217 private boolean hasLongPressOnPowerBehavior() {
1218 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001219 }
1220
1221 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001222 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001223 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1224 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001225 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001226 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1227 && now <= mScreenshotChordPowerKeyTime
1228 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1229 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001230 cancelPendingPowerKeyAction();
1231
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001232 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001233 }
1234 }
1235 }
1236
Winson Chung1cea2f32012-10-08 20:42:01 -07001237 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001238 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001239 // Double the time it takes to take a screenshot from the keyguard
1240 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001241 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001242 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001243 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001244 }
1245
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001246 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001247 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001248 }
1249
Jeff Brown13f00f02014-10-31 14:45:50 -07001250 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001251 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001252 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001253 mEndCallKeyHandled = true;
1254 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1255 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001256 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001257 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001258 }
1259 };
1260
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001261 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001262 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001263 public void run() {
1264 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001265 }
1266 };
1267
Alan Viverettee34560b22014-07-10 14:50:06 -07001268 @Override
1269 public void showGlobalActions() {
1270 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1271 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1272 }
1273
1274 void showGlobalActionsInternal() {
1275 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001276 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001277 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001278 }
Jim Millerab954542014-10-10 18:21:49 -07001279 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001280 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1281 if (keyguardShowing) {
1282 // since it took two seconds of long press to bring this up,
1283 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001284 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001285 }
1286 }
1287
1288 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001289 return Settings.Global.getInt(
1290 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001291 }
1292
Maurice Lam99c6e072014-04-28 18:24:28 -07001293 boolean isUserSetupComplete() {
1294 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1295 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1296 }
1297
Jeff Brown13f00f02014-10-31 14:45:50 -07001298 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001299 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1300 getHdmiControl().turnOnTv();
1301
Jeff Brown13f00f02014-10-31 14:45:50 -07001302 // If there's a dream running then use home to escape the dream
1303 // but don't actually go home.
1304 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1305 mDreamManagerInternal.stopDream(false /*immediate*/);
1306 return;
1307 }
1308
1309 // Go home!
1310 launchHomeFromHotKey();
1311 }
1312
Jinsuk Kime601b712015-07-07 08:01:02 +09001313 /**
1314 * Creates an accessor to HDMI control service that performs the operation of
1315 * turning on TV (optional) and switching input to us. If HDMI control service
1316 * is not available or we're not a HDMI playback device, the operation is no-op.
1317 */
1318 private HdmiControl getHdmiControl() {
1319 if (null == mHdmiControl) {
1320 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1321 Context.HDMI_CONTROL_SERVICE);
1322 HdmiPlaybackClient client = null;
1323 if (manager != null) {
1324 client = manager.getPlaybackClient();
1325 }
1326 mHdmiControl = new HdmiControl(client);
1327 }
1328 return mHdmiControl;
1329 }
1330
1331 private static class HdmiControl {
1332 private final HdmiPlaybackClient mClient;
1333
1334 private HdmiControl(HdmiPlaybackClient client) {
1335 mClient = client;
1336 }
1337
1338 public void turnOnTv() {
1339 if (mClient == null) {
1340 return;
1341 }
1342 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1343 @Override
1344 public void onComplete(int result) {
1345 if (result != HdmiControlManager.RESULT_SUCCESS) {
1346 Log.w(TAG, "One touch play failed: " + result);
1347 }
1348 }
1349 });
1350 }
1351 }
1352
Jaewan Kim52632e22016-01-14 18:01:52 +09001353 private void handleLongPressOnHome(int deviceId, KeyEvent event) {
1354 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_NOTHING) {
1355 return;
1356 }
1357 mHomeConsumed = true;
1358 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001359
Jaewan Kim52632e22016-01-14 18:01:52 +09001360 switch (mLongPressOnHomeBehavior) {
1361 case LONG_PRESS_HOME_RECENT_SYSTEM_UI:
Jeff Browncaca8812013-05-09 13:34:33 -07001362 toggleRecentApps();
Jaewan Kim52632e22016-01-14 18:01:52 +09001363 break;
1364 case LONG_PRESS_HOME_ASSIST:
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001365 launchAssistAction(null, deviceId);
Jaewan Kim52632e22016-01-14 18:01:52 +09001366 break;
1367 case LONG_PRESS_HOME_PICTURE_IN_PICTURE:
Jaewan Kimc552b042016-01-18 16:08:45 +09001368 requestTvPictureInPicture(event);
Jaewan Kim52632e22016-01-14 18:01:52 +09001369 break;
1370 default:
1371 Log.w(TAG, "Not defined home long press behavior: " + mLongPressOnHomeBehavior);
1372 break;
Jim Millere6ad1a82010-08-20 19:25:39 -07001373 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001374 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001375
Jeff Browncaca8812013-05-09 13:34:33 -07001376 private void handleDoubleTapOnHome() {
1377 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1378 mHomeConsumed = true;
1379 toggleRecentApps();
1380 }
1381 }
1382
Jaewan Kimc552b042016-01-18 16:08:45 +09001383 private void requestTvPictureInPicture(KeyEvent event) {
1384 if (DEBUG_INPUT) Log.d(TAG, "requestTvPictureInPicture event=" + event);
1385 mHandler.removeMessages(MSG_REQUEST_TV_PICTURE_IN_PICTURE);
1386 Message msg = mHandler.obtainMessage(MSG_REQUEST_TV_PICTURE_IN_PICTURE);
1387 msg.setAsynchronous(true);
1388 msg.sendToTarget();
1389 }
1390
1391 private void requestTvPictureInPictureInternal() {
1392 try {
1393 IStatusBarService statusbar = getStatusBarService();
1394 if (statusbar != null) {
1395 statusbar.requestTvPictureInPicture();
1396 }
1397 } catch (RemoteException|IllegalArgumentException e) {
1398 Slog.e(TAG, "Cannot handle picture-in-picture key", e);
1399 // re-acquire status bar service next time it is needed.
1400 mStatusBarService = null;
1401 }
Jaewan Kim52632e22016-01-14 18:01:52 +09001402 }
1403
Jeff Browncaca8812013-05-09 13:34:33 -07001404 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1405 @Override
1406 public void run() {
1407 if (mHomeDoubleTapPending) {
1408 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001409 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001410 }
1411 }
1412 };
1413
Mark Renoufc1256912015-03-11 14:38:23 -04001414 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001415 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001416 }
1417
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001418 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001419 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001420 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001421 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001422 mContext = context;
1423 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001424 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001425 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001426 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001427 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Michael Wrighta4d22d72015-09-16 23:19:26 +01001428 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001429 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001430
1431 // Init display burn-in protection
1432 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1433 com.android.internal.R.bool.config_enableBurnInProtection);
1434 // Allow a system property to override this. Used by developer settings.
1435 boolean burnInProtectionDevMode =
1436 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1437 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1438 final int minHorizontal;
1439 final int maxHorizontal;
1440 final int minVertical;
1441 final int maxVertical;
1442 final int maxRadius;
1443 if (burnInProtectionDevMode) {
1444 minHorizontal = -8;
1445 maxHorizontal = 8;
1446 minVertical = -8;
1447 maxVertical = -4;
1448 maxRadius = (isRoundWindow()) ? 6 : -1;
1449 } else {
1450 Resources resources = context.getResources();
1451 minHorizontal = resources.getInteger(
1452 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1453 maxHorizontal = resources.getInteger(
1454 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1455 minVertical = resources.getInteger(
1456 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1457 maxVertical = resources.getInteger(
1458 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1459 maxRadius = resources.getInteger(
1460 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1461 }
1462 mBurnInProtectionHelper = new BurnInProtectionHelper(
1463 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001464 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001465
Jeff Brown70825162012-03-28 17:27:48 -07001466 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001467 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001468 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001469 try {
1470 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1471 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001472 mSettingsObserver = new SettingsObserver(mHandler);
1473 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001474 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001475 mUiMode = context.getResources().getInteger(
1476 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001477 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1478 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1479 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1480 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
keunyounga7710492015-09-23 11:33:58 -07001481 mEnableCarDockHomeCapture = context.getResources().getBoolean(
1482 com.android.internal.R.bool.config_enableCarDockHomeLaunch);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001483 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1484 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1485 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1486 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1487 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1488 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1489 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1490 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001491
Jeff Brown96307042012-07-27 15:51:34 -07001492 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1493 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001494 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001495 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1496 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001497 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001498 mSupportAutoRotation = mContext.getResources().getBoolean(
1499 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001500 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001501 com.android.internal.R.integer.config_lidOpenRotation);
1502 mCarDockRotation = readRotation(
1503 com.android.internal.R.integer.config_carDockRotation);
1504 mDeskDockRotation = readRotation(
1505 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001506 mUndockedHdmiRotation = readRotation(
1507 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001508 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1509 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1510 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1511 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001512 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1513 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1514 mLidNavigationAccessibility = mContext.getResources().getInteger(
1515 com.android.internal.R.integer.config_lidNavigationAccessibility);
Edward Savage-Jones7def60d2015-11-13 13:27:03 +01001516 mLidControlsScreenLock = mContext.getResources().getBoolean(
1517 com.android.internal.R.bool.config_lidControlsScreenLock);
Jeff Brownc458ce92012-04-30 14:58:40 -07001518 mLidControlsSleep = mContext.getResources().getBoolean(
1519 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001520 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1521 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001522
1523 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1524 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1525 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1526 || mContext.getResources().getBoolean(
1527 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1528 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1529 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001530 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1531 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001532 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1533 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1534 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1535 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1536 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1537 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1538
Bryce Lee55e846d2014-11-04 12:43:44 -08001539 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1540 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1541
Bryce Leed3b28402015-03-09 15:49:13 +00001542 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1543 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1544
Jeff Brown13f00f02014-10-31 14:45:50 -07001545 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1546 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1547 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1548 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1549 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1550 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1551 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1552 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001553 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1554 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001555
John Spurlock61560172015-02-06 19:46:04 -05001556 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001557
Jeff Brownf71343d2013-05-31 17:59:11 -07001558 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001559
Svetoslav8e3feb12014-02-24 13:46:47 -08001560 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1561 Context.ACCESSIBILITY_SERVICE);
1562
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001563 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001564 IntentFilter filter = new IntentFilter();
1565 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1566 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1567 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1568 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001569 filter.addAction(Intent.ACTION_DOCK_EVENT);
1570 Intent intent = context.registerReceiver(mDockReceiver, filter);
1571 if (intent != null) {
1572 // Retrieve current sticky dock event broadcast.
1573 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1574 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1575 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001576
Jeff Brown6aaf2952012-10-05 16:01:08 -07001577 // register for dream-related broadcasts
1578 filter = new IntentFilter();
1579 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1580 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1581 context.registerReceiver(mDreamReceiver, filter);
1582
Christopher Tate5e08af02012-09-21 17:17:22 -07001583 // register for multiuser-relevant broadcasts
1584 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1585 context.registerReceiver(mMultiuserReceiver, filter);
1586
John Spurlock57306e62013-04-22 09:48:49 -04001587 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001588 mSystemGestures = new SystemGesturesPointerEventListener(context,
1589 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001590 @Override
1591 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001592 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001593 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001594 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001595 }
1596 @Override
1597 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001598 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001599 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001600 }
1601 }
1602 @Override
1603 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001604 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001605 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001606 }
1607 }
1608 @Override
Michael Wrighta4d22d72015-09-16 23:19:26 +01001609 public void onFling(int duration) {
1610 if (mPowerManagerInternal != null) {
1611 mPowerManagerInternal.powerHint(
1612 PowerManagerInternal.POWER_HINT_INTERACTION, duration);
1613 }
1614 }
1615 @Override
John Spurlockad3e6cb2013-04-30 08:47:43 -04001616 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001617 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001618 }
Adrian Roos3595be42015-03-05 16:31:15 +01001619 @Override
1620 public void onDown() {
1621 mOrientationListener.onTouchStart();
1622 }
1623 @Override
1624 public void onUpOrCancel() {
1625 mOrientationListener.onTouchEnd();
1626 }
Jun Mukaid2e7e352015-07-22 17:14:02 -07001627 @Override
1628 public void onMouseHoverAtTop() {
1629 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1630 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1631 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS;
1632 mHandler.sendMessageDelayed(msg, 500);
1633 }
1634 @Override
1635 public void onMouseHoverAtBottom() {
1636 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1637 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1638 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION;
1639 mHandler.sendMessageDelayed(msg, 500);
1640 }
1641 @Override
1642 public void onMouseLeaveFromEdge() {
1643 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1644 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001645 });
John Spurlockf1a36642013-10-12 17:50:42 -04001646 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001647 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001648
Jeff Brownc2346132012-04-13 01:55:38 -07001649 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001650 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1651 com.android.internal.R.array.config_longPressVibePattern);
1652 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1653 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001654 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1655 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001656 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1657 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001658 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1659 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001660 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1661 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1662 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1663 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001664 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1665 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001666
Christopher Tatee90585f2012-03-05 18:56:25 -08001667 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1668 com.android.internal.R.bool.config_enableScreenshotChord);
Jorim Jaggi406585a2015-12-21 10:58:56 +01001669 mForceWindowDrawsStatusBarBackground = mContext.getResources().getBoolean(
1670 R.bool.config_forceWindowDrawsStatusBarBackground);
Christopher Tatee90585f2012-03-05 18:56:25 -08001671
Justin Kohd378ad72013-04-01 12:18:26 -07001672 mGlobalKeyManager = new GlobalKeyManager(mContext);
1673
Joe Onoratoea495d42011-04-06 11:41:11 -07001674 // Controls rotation and the like.
1675 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001676
1677 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001678 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001679 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1680 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001681 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001682
1683 mWindowManagerInternal.registerAppTransitionListener(
1684 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001685 }
1686
Jeff Brownf71343d2013-05-31 17:59:11 -07001687 /**
1688 * Read values from config.xml that may be overridden depending on
1689 * the configuration of the device.
1690 * eg. Disable long press on home goes to recents on sw600dp.
1691 */
1692 private void readConfigurationDependentBehaviors() {
Jaewan Kimc552b042016-01-18 16:08:45 +09001693 final Resources res = mContext.getResources();
1694
1695 mLongPressOnHomeBehavior = res.getInteger(
Jeff Brownf71343d2013-05-31 17:59:11 -07001696 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1697 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
Jaewan Kim52632e22016-01-14 18:01:52 +09001698 mLongPressOnHomeBehavior > LAST_LONG_PRESS_HOME_BEHAVIOR) {
Jeff Brownf71343d2013-05-31 17:59:11 -07001699 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1700 }
1701
Jaewan Kimc552b042016-01-18 16:08:45 +09001702 mDoubleTapOnHomeBehavior = res.getInteger(
Jeff Brownf71343d2013-05-31 17:59:11 -07001703 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1704 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1705 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1706 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1707 }
Jaewan Kim49117872016-01-19 17:24:08 +09001708
1709 mShortPressWindowBehavior = SHORT_PRESS_WINDOW_NOTHING;
1710 if (mContext.getPackageManager().hasSystemFeature(FEATURE_PICTURE_IN_PICTURE)) {
1711 mShortPressWindowBehavior = SHORT_PRESS_WINDOW_PICTURE_IN_PICTURE;
1712 }
Jeff Brownf71343d2013-05-31 17:59:11 -07001713 }
1714
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001715 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001716 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001717 // This method might be called before the policy has been fully initialized
1718 // or for other displays we don't care about.
1719 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1720 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001721 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001722 mDisplay = display;
1723
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001724 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001725 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001726 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001727 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001728 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001729 mLandscapeRotation = Surface.ROTATION_0;
1730 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001731 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001732 mPortraitRotation = Surface.ROTATION_90;
1733 mUpsideDownRotation = Surface.ROTATION_270;
1734 } else {
1735 mPortraitRotation = Surface.ROTATION_270;
1736 mUpsideDownRotation = Surface.ROTATION_90;
1737 }
1738 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001739 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001740 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001741 mPortraitRotation = Surface.ROTATION_0;
1742 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001743 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001744 mLandscapeRotation = Surface.ROTATION_270;
1745 mSeascapeRotation = Surface.ROTATION_90;
1746 } else {
1747 mLandscapeRotation = Surface.ROTATION_90;
1748 mSeascapeRotation = Surface.ROTATION_270;
1749 }
1750 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001751
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001752 mStatusBarHeight =
1753 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001754
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001755 // Height of the navigation bar when presented horizontally at bottom
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08001756 mNavigationBarHeightForRotationDefault[mPortraitRotation] =
1757 mNavigationBarHeightForRotationDefault[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001758 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08001759 mNavigationBarHeightForRotationDefault[mLandscapeRotation] =
1760 mNavigationBarHeightForRotationDefault[mSeascapeRotation] = res.getDimensionPixelSize(
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001761 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001762
1763 // Width of the navigation bar when presented vertically along one side
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08001764 mNavigationBarWidthForRotationDefault[mPortraitRotation] =
1765 mNavigationBarWidthForRotationDefault[mUpsideDownRotation] =
1766 mNavigationBarWidthForRotationDefault[mLandscapeRotation] =
1767 mNavigationBarWidthForRotationDefault[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001768 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001769
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08001770 // Height of the navigation bar when presented horizontally at bottom
1771 mNavigationBarHeightForRotationInCarMode[mPortraitRotation] =
1772 mNavigationBarHeightForRotationInCarMode[mUpsideDownRotation] =
1773 res.getDimensionPixelSize(
1774 com.android.internal.R.dimen.navigation_bar_height_car_mode);
1775 mNavigationBarHeightForRotationInCarMode[mLandscapeRotation] =
1776 mNavigationBarHeightForRotationInCarMode[mSeascapeRotation] = res.getDimensionPixelSize(
1777 com.android.internal.R.dimen.navigation_bar_height_landscape_car_mode);
1778
1779 // Width of the navigation bar when presented vertically along one side
1780 mNavigationBarWidthForRotationInCarMode[mPortraitRotation] =
1781 mNavigationBarWidthForRotationInCarMode[mUpsideDownRotation] =
1782 mNavigationBarWidthForRotationInCarMode[mLandscapeRotation] =
1783 mNavigationBarWidthForRotationInCarMode[mSeascapeRotation] =
1784 res.getDimensionPixelSize(
1785 com.android.internal.R.dimen.navigation_bar_width_car_mode);
1786
Daniel Sandler4a066c52012-04-20 14:49:13 -04001787 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001788 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001789 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001790
Devin Kimd7b12b42014-05-05 14:34:58 -07001791 // Allow the navigation bar to move on non-square small devices (phones).
1792 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001793
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001794 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001795 // Allow a system property to override this. Used by the emulator.
1796 // See also hasNavigationBar().
1797 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1798 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001799 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001800 } else if ("0".equals(navBarOverride)) {
1801 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001802 }
1803
Jeff Brown27f1d672012-10-17 18:32:34 -07001804 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1805 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001806 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001807 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001808 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001809 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001810 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001811 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001812
Chong Zhangae6119ff2014-11-11 18:54:39 -08001813 // For demo purposes, allow the rotation of the remote display to be controlled.
1814 // By default, remote display locks rotation to landscape.
1815 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1816 mDemoRotation = mPortraitRotation;
1817 } else {
1818 mDemoRotation = mLandscapeRotation;
1819 }
1820 mDemoRotationLock = SystemProperties.getBoolean(
1821 "persist.demo.rotationlock", false);
1822
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001823 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1824 // http://developer.android.com/guide/practices/screens_support.html#range
1825 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1826 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1827 // For debug purposes the next line turns this feature off with:
1828 // $ adb shell setprop config.override_forced_orient true
1829 // $ adb shell wm size reset
1830 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1831 }
1832
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001833 /**
1834 * @return whether the navigation bar can be hidden, e.g. the device has a
1835 * navigation bar and touch exploration is not enabled
1836 */
1837 private boolean canHideNavigationBar() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04001838 return mHasNavigationBar;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001839 }
1840
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001841 @Override
1842 public boolean isDefaultOrientationForced() {
1843 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001844 }
1845
Dianne Hackbornc652de82013-02-15 16:32:56 -08001846 @Override
1847 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1848 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1849 mOverscanLeft = left;
1850 mOverscanTop = top;
1851 mOverscanRight = right;
1852 mOverscanBottom = bottom;
1853 }
1854 }
1855
Dianne Hackbornc777e072010-02-12 13:07:59 -08001856 public void updateSettings() {
1857 ContentResolver resolver = mContext.getContentResolver();
1858 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001859 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001860 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001861 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001862 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1863 UserHandle.USER_CURRENT);
1864 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001865 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001866 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1867 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001868
Jeff Browna20dda42014-05-27 20:57:24 -07001869 // Configure wake gesture.
1870 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1871 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1872 UserHandle.USER_CURRENT) != 0;
1873 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1874 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1875 updateWakeGestureListenerLp();
1876 }
1877
Jeff Brown207673cd2012-06-05 17:47:11 -07001878 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001879 int userRotation = Settings.System.getIntForUser(resolver,
1880 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1881 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001882 if (mUserRotation != userRotation) {
1883 mUserRotation = userRotation;
1884 updateRotation = true;
1885 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001886 int userRotationMode = Settings.System.getIntForUser(resolver,
1887 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001888 WindowManagerPolicy.USER_ROTATION_FREE :
1889 WindowManagerPolicy.USER_ROTATION_LOCKED;
1890 if (mUserRotationMode != userRotationMode) {
1891 mUserRotationMode = userRotationMode;
1892 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001893 updateOrientationListenerLp();
1894 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001895
Dianne Hackbornc777e072010-02-12 13:07:59 -08001896 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001897 int pointerLocation = Settings.System.getIntForUser(resolver,
1898 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001899 if (mPointerLocationMode != pointerLocation) {
1900 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001901 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1902 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001903 }
1904 }
1905 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001906 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1907 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1908 String imId = Settings.Secure.getStringForUser(resolver,
1909 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001910 boolean hasSoftInput = imId != null && imId.length() > 0;
1911 if (mHasSoftInput != hasSoftInput) {
1912 mHasSoftInput = hasSoftInput;
1913 updateRotation = true;
1914 }
John Spurlockf1a36642013-10-12 17:50:42 -04001915 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001916 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001917 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001918 }
1919 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001920 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001921 }
1922 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001923 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001924 }
Jeff Brown70825162012-03-28 17:27:48 -07001925 }
1926
Jeff Browna20dda42014-05-27 20:57:24 -07001927 private void updateWakeGestureListenerLp() {
1928 if (shouldEnableWakeGestureLp()) {
1929 mWakeGestureListener.requestWakeUpTrigger();
1930 } else {
1931 mWakeGestureListener.cancelWakeUpTrigger();
1932 }
1933 }
1934
1935 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001936 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001937 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1938 && mWakeGestureListener.isSupported();
1939 }
1940
Jeff Brown70825162012-03-28 17:27:48 -07001941 private void enablePointerLocation() {
1942 if (mPointerLocationView == null) {
1943 mPointerLocationView = new PointerLocationView(mContext);
1944 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001945 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1946 WindowManager.LayoutParams.MATCH_PARENT,
1947 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001948 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001949 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1950 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1951 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1952 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001953 if (ActivityManager.isHighEndGfx()) {
1954 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1955 lp.privateFlags |=
1956 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1957 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001958 lp.format = PixelFormat.TRANSLUCENT;
1959 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001960 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001961 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001962 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001963 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001964 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001965 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001966 }
Jeff Brown70825162012-03-28 17:27:48 -07001967
1968 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001969 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001970 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1971 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001972 wm.removeView(mPointerLocationView);
1973 mPointerLocationView = null;
1974 }
1975 }
1976
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001977 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001978 try {
1979 int rotation = mContext.getResources().getInteger(resID);
1980 switch (rotation) {
1981 case 0:
1982 return Surface.ROTATION_0;
1983 case 90:
1984 return Surface.ROTATION_90;
1985 case 180:
1986 return Surface.ROTATION_180;
1987 case 270:
1988 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001989 }
1990 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001991 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001992 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001993 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001994 }
1995
1996 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001997 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001998 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001999 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08002000
2001 outAppOp[0] = AppOpsManager.OP_NONE;
2002
Wale Ogunwale74bf0652015-01-12 10:24:36 -08002003 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
2004 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
2005 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
2006 return WindowManagerGlobal.ADD_INVALID_TYPE;
2007 }
2008
2009 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
2010 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07002011 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002012 }
2013 String permission = null;
2014 switch (type) {
2015 case TYPE_TOAST:
2016 // XXX right now the app process has complete control over
2017 // this... should introduce a token to let the system
2018 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04002019 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002020 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05002021 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002022 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07002023 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07002024 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002025 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07002026 case TYPE_ACCESSIBILITY_OVERLAY:
Jason Monk8f7f3182015-11-18 16:35:14 -05002027 case TYPE_QS_DIALOG:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07002028 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002029 break;
2030 case TYPE_PHONE:
2031 case TYPE_PRIORITY_PHONE:
2032 case TYPE_SYSTEM_ALERT:
2033 case TYPE_SYSTEM_ERROR:
2034 case TYPE_SYSTEM_OVERLAY:
2035 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08002036 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002037 break;
2038 default:
2039 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
2040 }
2041 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01002042 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
2043 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01002044 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01002045 if (callingUid == Process.SYSTEM_UID) {
2046 return WindowManagerGlobal.ADD_OKAY;
2047 }
2048
Billy Lau060275f2015-07-15 22:29:19 +01002049 // check if user has enabled this operation. SecurityException will be thrown if
2050 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01002051 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
2052 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01002053 switch (mode) {
2054 case AppOpsManager.MODE_ALLOWED:
2055 case AppOpsManager.MODE_IGNORED:
2056 // although we return ADD_OKAY for MODE_IGNORED, the added window will
2057 // actually be hidden in WindowManagerService
2058 return WindowManagerGlobal.ADD_OKAY;
2059 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01002060 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01002061 default:
2062 // in the default mode, we will make a decision here based on
2063 // checkCallingPermission()
2064 if (mContext.checkCallingPermission(permission) !=
2065 PackageManager.PERMISSION_GRANTED) {
2066 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
2067 } else {
2068 return WindowManagerGlobal.ADD_OKAY;
2069 }
Billy Laucbe540f2015-06-25 01:51:44 +01002070 }
Billy Laucbe540f2015-06-25 01:51:44 +01002071 }
2072
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002073 if (mContext.checkCallingOrSelfPermission(permission)
2074 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07002075 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002076 }
2077 }
Jeff Brown98365d72012-08-19 20:30:52 -07002078 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002079 }
Craig Mautner88400d32012-09-30 12:35:45 -07002080
2081 @Override
2082 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
2083
2084 // If this switch statement is modified, modify the comment in the declarations of
2085 // the type in {@link WindowManager.LayoutParams} as well.
2086 switch (attrs.type) {
2087 default:
2088 // These are the windows that by default are shown only to the user that created
2089 // them. If this needs to be overridden, set
2090 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
2091 // {@link WindowManager.LayoutParams}. Note that permission
2092 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
2093 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
2094 return true;
2095 }
2096 break;
2097
2098 // These are the windows that by default are shown to all users. However, to
2099 // protect against spoofing, check permissions below.
2100 case TYPE_APPLICATION_STARTING:
2101 case TYPE_BOOT_PROGRESS:
2102 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07002103 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08002104 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07002105 case TYPE_KEYGUARD_DIALOG:
2106 case TYPE_MAGNIFICATION_OVERLAY:
2107 case TYPE_NAVIGATION_BAR:
2108 case TYPE_NAVIGATION_BAR_PANEL:
2109 case TYPE_PHONE:
2110 case TYPE_POINTER:
2111 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07002112 case TYPE_SEARCH_BAR:
2113 case TYPE_STATUS_BAR:
2114 case TYPE_STATUS_BAR_PANEL:
2115 case TYPE_STATUS_BAR_SUB_PANEL:
2116 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07002117 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07002118 case TYPE_PRIVATE_PRESENTATION:
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002119 case TYPE_DOCK_DIVIDER:
Craig Mautner88400d32012-09-30 12:35:45 -07002120 break;
2121 }
2122
2123 // Check if third party app has set window to system window type.
2124 return mContext.checkCallingOrSelfPermission(
2125 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
2126 != PackageManager.PERMISSION_GRANTED;
2127 }
2128
Craig Mautner967212c2013-04-13 21:10:58 -07002129 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002130 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
2131 switch (attrs.type) {
2132 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07002133 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002134 // These types of windows can't receive input events.
2135 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
2136 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07002137 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002138 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002139 case TYPE_STATUS_BAR:
2140
2141 // If the Keyguard is in a hidden state (occluded by another window), we force to
2142 // remove the wallpaper and keyguard flag so that any change in-flight after setting
2143 // the keyguard as occluded wouldn't set these flags again.
2144 // See {@link #processKeyguardSetHiddenResultLw}.
2145 if (mKeyguardHidden) {
2146 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2147 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2148 }
2149 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002150 }
Adrian Roos38502112014-04-09 21:04:11 +02002151
2152 if (attrs.type != TYPE_STATUS_BAR) {
2153 // The status bar is the only window allowed to exhibit keyguard behavior.
2154 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2155 }
Adrian Roosea562512014-05-05 13:33:03 +02002156
Jorim Jaggi4fa78922015-11-30 17:13:56 -08002157 if (ActivityManager.isHighEndGfx()) {
2158 if ((attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
2159 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
2160 }
2161 if ((attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0
Jorim Jaggi406585a2015-12-21 10:58:56 +01002162 || (mForceWindowDrawsStatusBarBackground
2163 && attrs.height == MATCH_PARENT && attrs.width == MATCH_PARENT)) {
Jorim Jaggi4fa78922015-11-30 17:13:56 -08002164 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
2165 }
Adrian Roosea562512014-05-05 13:33:03 +02002166 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002167 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002168
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002169 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07002170 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002171 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002172
Michael Wright3818c922014-09-02 13:59:07 -07002173 private void readCameraLensCoverState() {
2174 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2175 }
2176
Jeff Browndaa37532012-05-01 15:54:03 -07002177 private boolean isHidden(int accessibilityMode) {
2178 switch (accessibilityMode) {
2179 case 1:
2180 return mLidState == LID_CLOSED;
2181 case 2:
2182 return mLidState == LID_OPEN;
2183 default:
2184 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002185 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002186 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002187
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002188 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002189 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002190 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2191 int navigationPresence) {
2192 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2193
Jeff Brownf71343d2013-05-31 17:59:11 -07002194 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002195 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002196 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002197
Jeff Browndaa37532012-05-01 15:54:03 -07002198 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2199 || (keyboardPresence == PRESENCE_INTERNAL
2200 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002201 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002202 if (!mHasSoftInput) {
2203 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2204 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002205 }
2206
Jeff Browndaa37532012-05-01 15:54:03 -07002207 if (config.navigation == Configuration.NAVIGATION_NONAV
2208 || (navigationPresence == PRESENCE_INTERNAL
2209 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002210 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002211 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002212 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002213
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002214 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002215 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002216 public int windowTypeToLayerLw(int type) {
2217 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002218 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002219 }
2220 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002221 case TYPE_PRIVATE_PRESENTATION:
2222 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002223 case TYPE_WALLPAPER:
2224 // wallpaper is at the bottom, though the window manager may move it.
2225 return 2;
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002226 case TYPE_DOCK_DIVIDER:
2227 return 2;
Jason Monk8f7f3182015-11-18 16:35:14 -05002228 case TYPE_QS_DIALOG:
2229 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002230 case TYPE_PHONE:
2231 return 3;
2232 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002233 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002234 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002235 case TYPE_VOICE_INTERACTION:
2236 // voice interaction layer is almost immediately above apps.
2237 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002238 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002239 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002240 case TYPE_SYSTEM_DIALOG:
2241 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002242 case TYPE_TOAST:
2243 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002244 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002245 case TYPE_PRIORITY_PHONE:
2246 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002247 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002248 case TYPE_DREAM:
2249 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002250 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002251 case TYPE_SYSTEM_ALERT:
2252 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002253 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002254 case TYPE_INPUT_METHOD:
2255 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002256 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002257 case TYPE_INPUT_METHOD_DIALOG:
2258 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002259 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002260 case TYPE_KEYGUARD_SCRIM:
2261 // the safety window that shows behind keyguard while keyguard is starting
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002262 return 14;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002263 case TYPE_STATUS_BAR_SUB_PANEL:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002264 return 15;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002265 case TYPE_STATUS_BAR:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002266 return 16;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002267 case TYPE_STATUS_BAR_PANEL:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002268 return 17;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002269 case TYPE_KEYGUARD_DIALOG:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002270 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002271 case TYPE_VOLUME_OVERLAY:
2272 // the on-screen volume indicator and controller shown when the user
2273 // changes the device volume
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002274 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002275 case TYPE_SYSTEM_OVERLAY:
2276 // the on-screen volume indicator and controller shown when the user
2277 // changes the device volume
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002278 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002279 case TYPE_NAVIGATION_BAR:
2280 // the navigation bar, if available, shows atop most things
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002281 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002282 case TYPE_NAVIGATION_BAR_PANEL:
2283 // some panels (e.g. search) need to show on top of the navigation bar
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002284 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002285 case TYPE_SYSTEM_ERROR:
2286 // system-level error dialogs
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002287 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002288 case TYPE_MAGNIFICATION_OVERLAY:
2289 // used to highlight the magnified portion of a display
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002290 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002291 case TYPE_DISPLAY_OVERLAY:
2292 // used to simulate secondary display devices
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002293 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002294 case TYPE_DRAG:
2295 // the drag layer: input for drag-and-drop is associated with this window,
2296 // which sits above all other focusable windows
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002297 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002298 case TYPE_ACCESSIBILITY_OVERLAY:
2299 // overlay put by accessibility services to intercept user interaction
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002300 return 27;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002301 case TYPE_SECURE_SYSTEM_OVERLAY:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002302 return 28;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002303 case TYPE_BOOT_PROGRESS:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002304 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002305 case TYPE_POINTER:
2306 // the (mouse) pointer layer
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002307 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002308 }
2309 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002310 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002311 }
2312
2313 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002314 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002315 public int subWindowTypeToLayerLw(int type) {
2316 switch (type) {
2317 case TYPE_APPLICATION_PANEL:
2318 case TYPE_APPLICATION_ATTACHED_DIALOG:
2319 return APPLICATION_PANEL_SUBLAYER;
2320 case TYPE_APPLICATION_MEDIA:
2321 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002322 case TYPE_APPLICATION_MEDIA_OVERLAY:
2323 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002324 case TYPE_APPLICATION_SUB_PANEL:
2325 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002326 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2327 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002328 }
2329 Log.e(TAG, "Unknown sub-window type: " + type);
2330 return 0;
2331 }
2332
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002333 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002334 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002335 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002336 }
2337
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08002338 private int getNavigationBarWidth(int rotation, int uiMode) {
2339 if ((uiMode & UI_MODE_TYPE_MASK) == UI_MODE_TYPE_CAR) {
2340 return mNavigationBarWidthForRotationInCarMode[rotation];
2341 } else {
2342 return mNavigationBarWidthForRotationDefault[rotation];
2343 }
2344 }
2345
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002346 @Override
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08002347 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation,
2348 int uiMode) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002349 if (mHasNavigationBar) {
2350 // For a basic navigation bar, when we are in landscape mode we place
2351 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002352 if (mNavigationBarCanMove && fullWidth > fullHeight) {
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08002353 return fullWidth - getNavigationBarWidth(rotation, uiMode);
Dianne Hackborn077ee852012-04-09 16:27:07 -07002354 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002355 }
2356 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002357 }
2358
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08002359 private int getNavigationBarHeight(int rotation, int uiMode) {
2360 if ((uiMode & UI_MODE_TYPE_MASK) == UI_MODE_TYPE_CAR) {
2361 return mNavigationBarHeightForRotationInCarMode[rotation];
2362 } else {
2363 return mNavigationBarHeightForRotationDefault[rotation];
2364 }
2365 }
2366
Jose Lima9546b202014-07-02 17:21:51 -07002367 @Override
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08002368 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation,
2369 int uiMode) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002370 if (mHasNavigationBar) {
2371 // For a basic navigation bar, when we are in portrait mode we place
2372 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002373 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08002374 return fullHeight - getNavigationBarHeight(rotation, uiMode);
Dianne Hackborn077ee852012-04-09 16:27:07 -07002375 }
2376 }
2377 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002378 }
2379
Jose Lima9546b202014-07-02 17:21:51 -07002380 @Override
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08002381 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode) {
2382 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation, uiMode);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002383 }
2384
Jose Lima9546b202014-07-02 17:21:51 -07002385 @Override
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08002386 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode) {
John Spurlock80f00c12013-06-13 11:10:51 -04002387 // There is a separate status bar at the top of the display. We don't count that as part
2388 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002389 // we do want to exclude it since applications can't generally use that part
2390 // of the screen.
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08002391 return getNonDecorDisplayHeight(
2392 fullWidth, fullHeight, rotation, uiMode) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002393 }
2394
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002395 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002396 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2397 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002398 (isKeyguardHostWindow(attrs) &&
2399 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002400 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002401 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002402
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002403 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002404 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2405 return attrs.type == TYPE_STATUS_BAR;
2406 }
2407
2408 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002409 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002410 switch (attrs.type) {
2411 case TYPE_STATUS_BAR:
2412 case TYPE_NAVIGATION_BAR:
2413 case TYPE_WALLPAPER:
2414 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002415 case TYPE_KEYGUARD_SCRIM:
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002416 case TYPE_DOCK_DIVIDER:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002417 return false;
2418 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002419 // Hide only windows below the keyguard host window.
2420 return windowTypeToLayerLw(win.getBaseType())
2421 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002422 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002423 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002424
Craig Mautner7d7808f2014-09-11 18:02:38 -07002425 @Override
2426 public WindowState getWinShowWhenLockedLw() {
2427 return mWinShowWhenLocked;
2428 }
2429
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002430 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002431 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002432 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2433 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002434 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002435 if (!SHOW_STARTING_ANIMATIONS) {
2436 return null;
2437 }
2438 if (packageName == null) {
2439 return null;
2440 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002441
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002442 WindowManager wm = null;
2443 View view = null;
2444
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002445 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002446 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002447 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2448 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2449 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002450 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002451 try {
2452 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002453 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002454 } catch (PackageManager.NameNotFoundException e) {
2455 // Ignore
2456 }
2457 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002458
Jorim Jaggia16cc152015-06-01 16:55:05 -07002459 PhoneWindow win = new PhoneWindow(context);
2460 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002461
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002462 Resources r = context.getResources();
2463 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002464
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002465 win.setType(
2466 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002467
2468 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2469 // Assumes it's safe to show starting windows of launched apps while
2470 // the keyguard is being hidden. This is okay because starting windows never show
2471 // secret information.
2472 if (mKeyguardHidden) {
2473 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2474 }
2475 }
2476
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002477 // Force the window flags: this is a fake window, so it is not really
2478 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2479 // flag because we do know that the next window will take input
2480 // focus, so we want to get the IME window up on top of us right away.
2481 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002482 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002483 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2484 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2485 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002486 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002487 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2488 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2489 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002490
Adam Powell04fe6eb2013-05-31 14:39:48 -07002491 win.setDefaultIcon(icon);
2492 win.setDefaultLogo(logo);
2493
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002494 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002495 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002496
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002497 final WindowManager.LayoutParams params = win.getAttributes();
2498 params.token = appToken;
2499 params.packageName = packageName;
2500 params.windowAnimations = win.getWindowStyle().getResourceId(
2501 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002502 params.privateFlags |=
2503 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002504 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002505
2506 if (!compatInfo.supportsScreen()) {
2507 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2508 }
2509
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002510 params.setTitle("Starting " + packageName);
2511
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002512 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2513 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002514
Craig Mautner6fbda632012-07-03 09:26:39 -07002515 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002516 TAG, "Adding starting window for " + packageName
2517 + " / " + appToken + ": "
2518 + (view.getParent() != null ? view : null));
2519
2520 wm.addView(view, params);
2521
2522 // Only return the view if it was successfully added to the
2523 // window manager... which we can tell by it having a parent.
2524 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002525 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002526 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002527 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2528 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002529 } catch (RuntimeException e) {
2530 // don't crash if something else bad happens, for example a
2531 // failure loading resources because we are loading from an app
2532 // on external storage that has been unmounted.
2533 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002534 } finally {
2535 if (view != null && view.getParent() == null) {
2536 Log.w(TAG, "view not successfully added to wm, removing view");
2537 wm.removeViewImmediate(view);
2538 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002539 }
2540
2541 return null;
2542 }
2543
2544 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002545 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002546 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002547 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2548 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002549
2550 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002551 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002552 wm.removeView(window);
2553 }
2554 }
2555
2556 /**
2557 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002558 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002559 * Currently enforces that three window types are singletons:
2560 * <ul>
2561 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002562 * <li>KEYGUARD_TYPE</li>
2563 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002564 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002565 * @param win The window to be added
2566 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002567 *
Jeff Brown98365d72012-08-19 20:30:52 -07002568 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2569 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002570 */
Jose Lima9546b202014-07-02 17:21:51 -07002571 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002572 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2573 switch (attrs.type) {
2574 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002575 mContext.enforceCallingOrSelfPermission(
2576 android.Manifest.permission.STATUS_BAR_SERVICE,
2577 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002578 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002579 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002580 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002581 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002582 }
2583 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002584 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002585 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002586 case TYPE_NAVIGATION_BAR:
2587 mContext.enforceCallingOrSelfPermission(
2588 android.Manifest.permission.STATUS_BAR_SERVICE,
2589 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002590 if (mNavigationBar != null) {
2591 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002592 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002593 }
2594 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002595 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002596 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002597 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002598 break;
Jim Millere898ac52012-04-06 17:10:57 -07002599 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002600 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002601 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002602 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002603 mContext.enforceCallingOrSelfPermission(
2604 android.Manifest.permission.STATUS_BAR_SERVICE,
2605 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002606 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002607 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002608 if (mKeyguardScrim != null) {
2609 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2610 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002611 mKeyguardScrim = win;
2612 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002613 }
Jeff Brown98365d72012-08-19 20:30:52 -07002614 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002615 }
2616
2617 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002618 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002619 public void removeWindowLw(WindowState win) {
2620 if (mStatusBar == win) {
2621 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002622 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002623 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002624 } else if (mKeyguardScrim == win) {
2625 Log.v(TAG, "Removing keyguard scrim");
2626 mKeyguardScrim = null;
2627 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002628 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002629 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002630 }
2631 }
2632
2633 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002634
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002635 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002636 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002637 public int selectAnimationLw(WindowState win, int transit) {
2638 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2639 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002640 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002641 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002642 if (transit == TRANSIT_EXIT
2643 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002644 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002645 } else if (transit == TRANSIT_ENTER
2646 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002647 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002648 }
2649 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002650 if (win.getAttrs().windowAnimations != 0) {
2651 return 0;
2652 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002653 // This can be on either the bottom or the right.
2654 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002655 if (transit == TRANSIT_EXIT
2656 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002657 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002658 } else if (transit == TRANSIT_ENTER
2659 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002660 return R.anim.dock_bottom_enter;
2661 }
2662 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002663 if (transit == TRANSIT_EXIT
2664 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002665 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002666 } else if (transit == TRANSIT_ENTER
2667 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002668 return R.anim.dock_right_enter;
2669 }
2670 }
Filip Gruszczynski57f76f12015-11-04 16:10:54 -08002671 } else if (win.getAttrs().type == TYPE_DOCK_DIVIDER) {
Jorim Jaggi81ba11e2016-02-03 22:04:22 -08002672 return selectDockedDividerAnimationLw(win, transit);
Craig Mautner4b71aa12012-12-27 17:20:01 -08002673 }
2674
2675 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002676 if (win.hasAppShownWindows()) {
2677 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2678 return com.android.internal.R.anim.app_starting_exit;
2679 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002680 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002681 && transit == TRANSIT_ENTER) {
2682 // Special case: we are animating in a dream, while the keyguard
2683 // is shown. We don't want an animation on the dream, because
2684 // we need it shown immediately with the keyguard animating away
2685 // to reveal it.
2686 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002687 }
2688
2689 return 0;
2690 }
2691
Jorim Jaggi81ba11e2016-02-03 22:04:22 -08002692 private int selectDockedDividerAnimationLw(WindowState win, int transit) {
2693 int insets = mWindowManagerFuncs.getDockedDividerInsetsLw();
2694
2695 // If the divider is behind the navigation bar, don't animate.
2696 if (mNavigationBar != null
2697 && (win.getFrameLw().top + insets >= mNavigationBar.getFrameLw().top
2698 || win.getFrameLw().left + insets >= mNavigationBar.getFrameLw().left)) {
2699 return 0;
2700 }
2701 if (transit == TRANSIT_ENTER || transit == TRANSIT_SHOW) {
2702 return R.anim.fade_in;
2703 } else if (transit == TRANSIT_EXIT) {
2704 return R.anim.fade_out;
2705 } else {
2706 return 0;
2707 }
2708 }
2709
Craig Mautner3c174372013-02-21 17:54:37 -08002710 @Override
2711 public void selectRotationAnimationLw(int anim[]) {
2712 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2713 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2714 + (mTopFullscreenOpaqueWindowState == null ?
2715 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2716 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2717 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2718 case ROTATION_ANIMATION_CROSSFADE:
2719 anim[0] = R.anim.rotation_animation_xfade_exit;
2720 anim[1] = R.anim.rotation_animation_enter;
2721 break;
2722 case ROTATION_ANIMATION_JUMPCUT:
2723 anim[0] = R.anim.rotation_animation_jump_exit;
2724 anim[1] = R.anim.rotation_animation_enter;
2725 break;
2726 case ROTATION_ANIMATION_ROTATE:
2727 default:
2728 anim[0] = anim[1] = 0;
2729 break;
2730 }
2731 } else {
2732 anim[0] = anim[1] = 0;
2733 }
2734 }
2735
2736 @Override
2737 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2738 boolean forceDefault) {
2739 switch (exitAnimId) {
2740 case R.anim.rotation_animation_xfade_exit:
2741 case R.anim.rotation_animation_jump_exit:
2742 // These are the only cases that matter.
2743 if (forceDefault) {
2744 return false;
2745 }
2746 int anim[] = new int[2];
2747 selectRotationAnimationLw(anim);
2748 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2749 default:
2750 return true;
2751 }
2752 }
2753
2754 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002755 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2756 boolean goingToNotificationShade) {
2757 if (goingToNotificationShade) {
2758 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002759 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002760
2761 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2762 R.anim.lock_screen_behind_enter_wallpaper :
2763 R.anim.lock_screen_behind_enter);
2764
2765 // TODO: Use XML interpolators when we have log interpolators available in XML.
2766 final List<Animation> animations = set.getAnimations();
2767 for (int i = animations.size() - 1; i >= 0; --i) {
2768 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2769 }
2770
2771 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002772 }
2773
2774
2775 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002776 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2777 if (goingToNotificationShade) {
2778 return null;
2779 } else {
2780 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2781 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002782 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002783
2784 private static void awakenDreams() {
2785 IDreamManager dreamManager = getDreamManager();
2786 if (dreamManager != null) {
2787 try {
2788 dreamManager.awaken();
2789 } catch (RemoteException e) {
2790 // fine, stay asleep then
2791 }
2792 }
2793 }
2794
2795 static IDreamManager getDreamManager() {
2796 return IDreamManager.Stub.asInterface(
2797 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2798 }
2799
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002800 TelecomManager getTelecommService() {
2801 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002802 }
2803
Jeff Brown4d396052010-10-29 21:50:21 -07002804 static IAudioService getAudioService() {
2805 IAudioService audioService = IAudioService.Stub.asInterface(
2806 ServiceManager.checkService(Context.AUDIO_SERVICE));
2807 if (audioService == null) {
2808 Log.w(TAG, "Unable to find IAudioService interface.");
2809 }
2810 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002811 }
2812
2813 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002814 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002815 }
2816
2817 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2818 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2819 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2820 };
2821
2822 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002823 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002824 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002825 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002826 final int keyCode = event.getKeyCode();
2827 final int repeatCount = event.getRepeatCount();
2828 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002829 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002830 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2831 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002832
Jeff Brown40013652012-05-16 21:22:36 -07002833 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002834 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002835 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2836 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002837 }
2838
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002839 // If we think we might have a volume down & power key chord on the way
2840 // but we're not sure, then tell the dispatcher to wait a little while and
2841 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002842 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002843 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002844 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002845 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2846 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002847 if (now < timeoutTime) {
2848 return timeoutTime - now;
2849 }
2850 }
2851 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002852 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002853 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002854 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002855 }
2856 return -1;
2857 }
2858 }
2859
Michael Wright6a62e552014-06-03 19:19:48 -07002860 // Cancel any pending meta actions if we see any other keys being pressed between the down
2861 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002862 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002863 mPendingMetaAction = false;
2864 }
2865
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002866 // First we always handle the home key here, so applications
2867 // can never break it, although if keyguard is on, we do let
2868 // it handle it, because that gives us the correct 5 second
2869 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002870 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002871
Jeff Brown49ed71d2010-12-06 17:13:33 -08002872 // If we have released the home key, and didn't do anything else
2873 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002874 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002875 cancelPreloadRecentApps();
2876
Jeff Brown49ed71d2010-12-06 17:13:33 -08002877 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002878 if (mHomeConsumed) {
2879 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002880 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002881 }
Jeff Browncaca8812013-05-09 13:34:33 -07002882
2883 if (canceled) {
2884 Log.i(TAG, "Ignoring HOME; event canceled.");
2885 return -1;
2886 }
2887
Yorke Lee4f803242014-12-15 23:22:06 +00002888 // If an incoming call is ringing, HOME is totally disabled.
2889 // (The user is already on the InCallUI at this point,
2890 // and his ONLY options are to answer or reject the call.)
2891 TelecomManager telecomManager = getTelecommService();
2892 if (telecomManager != null && telecomManager.isRinging()) {
2893 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2894 return -1;
2895 }
2896
Jeff Browncaca8812013-05-09 13:34:33 -07002897 // Delay handling home if a double-tap is possible.
2898 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2899 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2900 mHomeDoubleTapPending = true;
2901 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2902 ViewConfiguration.getDoubleTapTimeout());
2903 return -1;
2904 }
2905
Jeff Brown13f00f02014-10-31 14:45:50 -07002906 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002907 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002908 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002909
2910 // If a system window has focus, then it doesn't make sense
2911 // right now to interact with applications.
2912 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2913 if (attrs != null) {
2914 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002915 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2916 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2917 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002918 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002919 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002920 }
2921 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2922 for (int i=0; i<typeCount; i++) {
2923 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2924 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002925 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002926 }
2927 }
2928 }
Jeff Browncaca8812013-05-09 13:34:33 -07002929
2930 // Remember that home is pressed and handle special actions.
2931 if (repeatCount == 0) {
2932 mHomePressed = true;
2933 if (mHomeDoubleTapPending) {
2934 mHomeDoubleTapPending = false;
2935 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2936 handleDoubleTapOnHome();
2937 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2938 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2939 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002940 }
Jeff Browncaca8812013-05-09 13:34:33 -07002941 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2942 if (!keyguardOn) {
Jaewan Kim52632e22016-01-14 18:01:52 +09002943 handleLongPressOnHome(event.getDeviceId(), event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002944 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002945 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002946 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002947 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002948 // Hijack modified menu keys for debugging features
2949 final int chordBug = KeyEvent.META_SHIFT_ON;
2950
2951 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002952 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002953 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002954 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2955 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002956 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002957 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002958 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002959 Intent service = new Intent();
2960 service.setClassName(mContext, "com.android.server.LoadAverageService");
2961 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002962 boolean shown = Settings.Global.getInt(
2963 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002964 if (!shown) {
2965 mContext.startService(service);
2966 } else {
2967 mContext.stopService(service);
2968 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002969 Settings.Global.putInt(
2970 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002971 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002972 }
2973 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002974 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002975 if (down) {
2976 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002977 mSearchKeyShortcutPending = true;
2978 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002979 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002980 } else {
2981 mSearchKeyShortcutPending = false;
2982 if (mConsumeSearchKeyUp) {
2983 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002984 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002985 }
2986 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002987 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002988 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002989 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002990 if (down && repeatCount == 0) {
2991 preloadRecentApps();
2992 } else if (!down) {
2993 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002994 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002995 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002996 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002997 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2998 if (down) {
2999 IStatusBarService service = getStatusBarService();
3000 if (service != null) {
3001 try {
3002 service.expandNotificationsPanel();
3003 } catch (RemoteException e) {
3004 // do nothing.
3005 }
3006 }
3007 }
Clara Bayarrif2debb12015-07-10 14:47:17 +01003008 } else if (keyCode == KeyEvent.KEYCODE_SLASH && event.isMetaPressed()) {
3009 if (down) {
3010 if (repeatCount == 0) {
Andrei Stingaceanuc22ab792016-01-07 12:39:38 +00003011 toggleKeyboardShortcutsMenu();
Clara Bayarrif2debb12015-07-10 14:47:17 +01003012 }
3013 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003014 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
3015 if (down) {
3016 if (repeatCount == 0) {
3017 mAssistKeyLongPressed = false;
3018 } else if (repeatCount == 1) {
3019 mAssistKeyLongPressed = true;
3020 if (!keyguardOn) {
3021 launchAssistLongPressAction();
3022 }
3023 }
3024 } else {
3025 if (mAssistKeyLongPressed) {
3026 mAssistKeyLongPressed = false;
3027 } else {
3028 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003029 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003030 }
3031 }
3032 }
3033 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07003034 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
3035 if (!down) {
3036 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07003037 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07003038 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
3039 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07003040 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
3041 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
3042 if (dic != null) {
3043 try {
3044 dic.exitIdle("voice-search");
3045 } catch (RemoteException e) {
3046 }
3047 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07003048 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07003049 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07003050 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003051 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07003052 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08003053 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
3054 if (down && repeatCount == 0) {
3055 mHandler.post(mScreenshotRunnable);
3056 }
3057 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08003058 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
3059 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
3060 if (down) {
3061 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
3062
3063 // Disable autobrightness if it's on
3064 int auto = Settings.System.getIntForUser(
3065 mContext.getContentResolver(),
3066 Settings.System.SCREEN_BRIGHTNESS_MODE,
3067 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
3068 UserHandle.USER_CURRENT_OR_SELF);
3069 if (auto != 0) {
3070 Settings.System.putIntForUser(mContext.getContentResolver(),
3071 Settings.System.SCREEN_BRIGHTNESS_MODE,
3072 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
3073 UserHandle.USER_CURRENT_OR_SELF);
3074 }
3075
3076 int min = mPowerManager.getMinimumScreenBrightnessSetting();
3077 int max = mPowerManager.getMaximumScreenBrightnessSetting();
3078 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
3079 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
3080 Settings.System.SCREEN_BRIGHTNESS,
3081 mPowerManager.getDefaultScreenBrightnessSetting(),
3082 UserHandle.USER_CURRENT_OR_SELF);
3083 brightness += step;
3084 // Make sure we don't go beyond the limits.
3085 brightness = Math.min(max, brightness);
3086 brightness = Math.max(min, brightness);
3087
3088 Settings.System.putIntForUser(mContext.getContentResolver(),
3089 Settings.System.SCREEN_BRIGHTNESS, brightness,
3090 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00003091 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07003092 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08003093 }
3094 return -1;
Jaewan Kim765487f2016-01-12 14:45:42 +09003095 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP
3096 || keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
3097 || keyCode == KeyEvent.KEYCODE_VOLUME_MUTE) {
3098 if (mUseTvRouting) {
3099 // On TVs volume keys never go to the foreground app.
3100 dispatchDirectAudioEvent(event);
3101 return -1;
3102 }
Michael Wrightce0c13a2014-07-30 10:49:21 -07003103 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07003104 if (down) {
3105 mPendingMetaAction = true;
3106 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003107 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07003108 }
3109 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003110 }
Jeff Browncaab4d02010-12-09 22:13:41 -08003111
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003112 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08003113 // Any printing key that is chorded with Search should be consumed
3114 // even if no shortcut was invoked. This prevents text from being
3115 // inadvertently inserted when using a keyboard that has built-in macro
3116 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003117 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08003118 final KeyCharacterMap kcm = event.getKeyCharacterMap();
3119 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003120 mConsumeSearchKeyUp = true;
3121 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08003122 if (down && repeatCount == 0 && !keyguardOn) {
3123 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
3124 if (shortcutIntent != null) {
3125 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08003126 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00003127 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08003128 } catch (ActivityNotFoundException ex) {
3129 Slog.w(TAG, "Dropping shortcut key combination because "
3130 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003131 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08003132 }
Jeff Browncaab4d02010-12-09 22:13:41 -08003133 } else {
3134 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003135 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003136 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003137 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003138 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003139 }
3140 }
3141
Jeff Brown68b909d2011-12-07 16:36:01 -08003142 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07003143 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08003144 && (metaState & KeyEvent.META_META_ON) != 0) {
3145 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07003146 if (kcm.isPrintingKey(keyCode)) {
3147 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
3148 metaState & ~(KeyEvent.META_META_ON
3149 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
3150 if (shortcutIntent != null) {
3151 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3152 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00003153 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07003154 } catch (ActivityNotFoundException ex) {
3155 Slog.w(TAG, "Dropping shortcut key combination because "
3156 + "the activity to which it is registered was not found: "
3157 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
3158 }
3159 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08003160 }
Jeff Brown68b909d2011-12-07 16:36:01 -08003161 }
3162 }
3163
Jeff Brown6651a632011-11-28 12:59:11 -08003164 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07003165 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08003166 String category = sApplicationLaunchKeyCategories.get(keyCode);
3167 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08003168 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08003169 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3170 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00003171 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08003172 } catch (ActivityNotFoundException ex) {
3173 Slog.w(TAG, "Dropping application launch key because "
3174 + "the activity to which it is registered was not found: "
3175 + "keyCode=" + keyCode + ", category=" + category, ex);
3176 }
Jeff Brown68b909d2011-12-07 16:36:01 -08003177 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08003178 }
3179 }
3180
Michael Wright61c46752014-08-21 16:57:33 -07003181 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08003182 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Michael Wrightd847ad52015-10-24 13:24:15 +01003183 if (mRecentAppsHeldModifiers == 0 && !keyguardOn && isUserSetupComplete()) {
Jeff Brown68b909d2011-12-07 16:36:01 -08003184 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07003185 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003186 mRecentAppsHeldModifiers = shiftlessModifiers;
3187 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08003188 return -1;
3189 }
3190 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07003191 } else if (!down && mRecentAppsHeldModifiers != 0
3192 && (metaState & mRecentAppsHeldModifiers) == 0) {
3193 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07003194 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08003195 }
3196
Yohei Yukawaae61f712015-12-09 13:00:10 -08003197 // Handle input method switching.
Jeff Browncf39bdf2012-05-18 14:41:19 -07003198 if (down && repeatCount == 0
3199 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3200 || (keyCode == KeyEvent.KEYCODE_SPACE
Yohei Yukawaae61f712015-12-09 13:00:10 -08003201 && (metaState & KeyEvent.META_META_MASK) != 0))) {
3202 final boolean forwardDirection = (metaState & KeyEvent.META_SHIFT_MASK) == 0;
3203 mWindowManagerFuncs.switchInputMethod(forwardDirection);
Jeff Browncf39bdf2012-05-18 14:41:19 -07003204 return -1;
3205 }
3206 if (mLanguageSwitchKeyPressed && !down
3207 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3208 || keyCode == KeyEvent.KEYCODE_SPACE)) {
3209 mLanguageSwitchKeyPressed = false;
3210 return -1;
3211 }
3212
Jeff Brown13f00f02014-10-31 14:45:50 -07003213 if (isValidGlobalKey(keyCode)
3214 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003215 return -1;
3216 }
3217
Michael Wright6a62e552014-06-03 19:19:48 -07003218 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003219 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003220 return -1;
3221 }
3222
Jeff Brown68b909d2011-12-07 16:36:01 -08003223 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003224 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003225 }
3226
Jeff Brown3915bb82010-11-05 15:02:16 -07003227 /** {@inheritDoc} */
3228 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003229 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003230 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003231 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003232 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3233 + ", flags=" + event.getFlags()
3234 + ", keyCode=" + event.getKeyCode()
3235 + ", scanCode=" + event.getScanCode()
3236 + ", metaState=" + event.getMetaState()
3237 + ", repeatCount=" + event.getRepeatCount()
3238 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003239 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003240
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003241 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003242 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3243 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003244 final int keyCode = event.getKeyCode();
3245 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003246 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3247 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003248
Jeff Brown54875002011-04-06 15:33:01 -07003249 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003250 final FallbackAction fallbackAction;
3251 if (initialDown) {
3252 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3253 } else {
3254 fallbackAction = mFallbackActions.get(keyCode);
3255 }
3256
3257 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003258 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003259 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3260 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003261 }
3262
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003263 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3264 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003265 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003266 event.getAction(), fallbackAction.keyCode,
3267 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003268 event.getDeviceId(), event.getScanCode(),
3269 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003270
3271 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3272 fallbackEvent.recycle();
3273 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003274 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003275
3276 if (initialDown) {
3277 mFallbackActions.put(keyCode, fallbackAction);
3278 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3279 mFallbackActions.remove(keyCode);
3280 fallbackAction.recycle();
3281 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003282 }
3283 }
3284
Jeff Brown40013652012-05-16 21:22:36 -07003285 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003286 if (fallbackEvent == null) {
3287 Slog.d(TAG, "No fallback.");
3288 } else {
3289 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3290 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003291 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003292 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003293 }
3294
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003295 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003296 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003297 if ((actions & ACTION_PASS_TO_USER) != 0) {
3298 long delayMillis = interceptKeyBeforeDispatching(
3299 win, fallbackEvent, policyFlags);
3300 if (delayMillis == 0) {
3301 return true;
3302 }
3303 }
3304 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003305 }
3306
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003307 private void launchAssistLongPressAction() {
3308 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3309 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3310
3311 // launch the search activity
3312 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3313 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3314 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003315 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003316 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003317 SearchManager searchManager = getSearchManager();
3318 if (searchManager != null) {
3319 searchManager.stopSearch();
3320 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003321 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003322 } catch (ActivityNotFoundException e) {
3323 Slog.w(TAG, "No activity to handle assist long press action.", e);
3324 }
3325 }
3326
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003327 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003328 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003329 if (!isUserSetupComplete()) {
3330 // Disable opening assist window during setup
3331 return;
3332 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003333 Bundle args = null;
3334 if (deviceId > Integer.MIN_VALUE) {
3335 args = new Bundle();
3336 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003337 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003338 if ((mContext.getResources().getConfiguration().uiMode
3339 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3340 // On TV, use legacy handling until assistants are implemented in the proper way.
3341 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3342 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3343 } else {
3344 try {
3345 if (hint != null) {
3346 if (args == null) {
3347 args = new Bundle();
3348 }
3349 args.putBoolean(hint, true);
3350 }
3351 IStatusBarService statusbar = getStatusBarService();
3352 if (statusbar != null) {
3353 statusbar.startAssist(args);
3354 }
3355 } catch (RemoteException e) {
3356 Slog.e(TAG, "RemoteException when starting assist", e);
3357 // re-acquire status bar service next time it is needed.
3358 mStatusBarService = null;
3359 }
3360 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003361 }
3362
Bart Sears8b1c27c2015-03-18 23:51:02 +00003363 private void startActivityAsUser(Intent intent, UserHandle handle) {
3364 if (isUserSetupComplete()) {
3365 mContext.startActivityAsUser(intent, handle);
3366 } else {
3367 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3368 }
3369 }
3370
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003371 private SearchManager getSearchManager() {
3372 if (mSearchManager == null) {
3373 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3374 }
3375 return mSearchManager;
3376 }
3377
Jeff Browncaca8812013-05-09 13:34:33 -07003378 private void preloadRecentApps() {
3379 mPreloadedRecentApps = true;
3380 try {
3381 IStatusBarService statusbar = getStatusBarService();
3382 if (statusbar != null) {
3383 statusbar.preloadRecentApps();
3384 }
3385 } catch (RemoteException e) {
3386 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3387 // re-acquire status bar service next time it is needed.
3388 mStatusBarService = null;
3389 }
3390 }
3391
3392 private void cancelPreloadRecentApps() {
3393 if (mPreloadedRecentApps) {
3394 mPreloadedRecentApps = false;
3395 try {
3396 IStatusBarService statusbar = getStatusBarService();
3397 if (statusbar != null) {
3398 statusbar.cancelPreloadRecentApps();
3399 }
3400 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003401 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003402 // re-acquire status bar service next time it is needed.
3403 mStatusBarService = null;
3404 }
3405 }
3406 }
3407
3408 private void toggleRecentApps() {
3409 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003410 try {
3411 IStatusBarService statusbar = getStatusBarService();
3412 if (statusbar != null) {
3413 statusbar.toggleRecentApps();
3414 }
3415 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003416 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3417 // re-acquire status bar service next time it is needed.
3418 mStatusBarService = null;
3419 }
3420 }
3421
Craig Mautner84984fa2014-06-19 11:19:20 -07003422 @Override
3423 public void showRecentApps() {
3424 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3425 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3426 }
3427
Winson Chung1e8d71b2014-05-16 17:05:22 -07003428 private void showRecentApps(boolean triggeredFromAltTab) {
3429 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3430 try {
3431 IStatusBarService statusbar = getStatusBarService();
3432 if (statusbar != null) {
3433 statusbar.showRecentApps(triggeredFromAltTab);
3434 }
3435 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003436 Slog.e(TAG, "RemoteException when showing recent apps", e);
3437 // re-acquire status bar service next time it is needed.
3438 mStatusBarService = null;
3439 }
3440 }
3441
Andrei Stingaceanuc22ab792016-01-07 12:39:38 +00003442 private void toggleKeyboardShortcutsMenu() {
Clara Bayarrif2debb12015-07-10 14:47:17 +01003443 try {
3444 IStatusBarService statusbar = getStatusBarService();
3445 if (statusbar != null) {
Andrei Stingaceanuc22ab792016-01-07 12:39:38 +00003446 statusbar.toggleKeyboardShortcutsMenu();
Clara Bayarrif2debb12015-07-10 14:47:17 +01003447 }
3448 } catch (RemoteException e) {
3449 Slog.e(TAG, "RemoteException when showing keyboard shortcuts menu", e);
3450 }
3451 }
3452
Winson Chungcdcd4872014-08-05 18:00:13 -07003453 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003454 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3455 try {
3456 IStatusBarService statusbar = getStatusBarService();
3457 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003458 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003459 }
3460 } catch (RemoteException e) {
3461 Slog.e(TAG, "RemoteException when closing recent apps", e);
3462 // re-acquire status bar service next time it is needed.
3463 mStatusBarService = null;
3464 }
3465 }
3466
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003467 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003468 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003469 }
3470
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003471 /**
3472 * A home key -> launch home action was detected. Take the appropriate action
3473 * given the situation with the keyguard.
3474 */
Bryce Lee662ed802015-04-10 20:11:39 +00003475 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3476 if (respectKeyguard) {
3477 if (isKeyguardShowingAndNotOccluded()) {
3478 // don't launch home if keyguard showing
3479 return;
3480 }
3481
3482 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3483 // when in keyguard restricted mode, must first verify unlock
3484 // before launching home
3485 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3486 @Override
3487 public void onKeyguardExitResult(boolean success) {
3488 if (success) {
3489 try {
3490 ActivityManagerNative.getDefault().stopAppSwitches();
3491 } catch (RemoteException e) {
3492 }
3493 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3494 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003495 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003496 }
Bryce Lee662ed802015-04-10 20:11:39 +00003497 });
3498 return;
3499 }
3500 }
3501
3502 // no keyguard stuff to worry about, just launch home!
3503 try {
3504 ActivityManagerNative.getDefault().stopAppSwitches();
3505 } catch (RemoteException e) {
3506 }
3507 if (mRecentsVisible) {
3508 // Hide Recents and notify it to launch Home
3509 if (awakenFromDreams) {
3510 awakenDreams();
3511 }
Bryce Lee662ed802015-04-10 20:11:39 +00003512 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003513 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003514 // Otherwise, just launch Home
3515 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3516 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003517 }
3518 }
3519
John Spurlock04db1762013-05-13 12:46:41 -04003520 private final Runnable mClearHideNavigationFlag = new Runnable() {
3521 @Override
3522 public void run() {
3523 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3524 // Clear flags.
3525 mForceClearedSystemUiFlags &=
3526 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3527 }
3528 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003529 }
3530 };
3531
3532 /**
3533 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3534 * to determine when the nav bar should be shown and prevent applications from
3535 * receiving those touches.
3536 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003537 final class HideNavInputEventReceiver extends InputEventReceiver {
3538 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3539 super(inputChannel, looper);
3540 }
3541
Dianne Hackborndf89e652011-10-06 22:35:11 -07003542 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003543 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003544 boolean handled = false;
3545 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003546 if (event instanceof MotionEvent
3547 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3548 final MotionEvent motionEvent = (MotionEvent)event;
3549 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003550 // When the user taps down, we re-show the nav bar.
3551 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003552 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003553 // Any user activity always causes us to show the
3554 // navigation controls, if they had been hidden.
3555 // We also clear the low profile and only content
3556 // flags so that tapping on the screen will atomically
3557 // restore all currently hidden screen decorations.
3558 int newVal = mResettingSystemUiFlags |
3559 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3560 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3561 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003562 if (mResettingSystemUiFlags != newVal) {
3563 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003564 changed = true;
3565 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003566 // We don't allow the system's nav bar to be hidden
3567 // again for 1 second, to prevent applications from
3568 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003569 newVal = mForceClearedSystemUiFlags |
3570 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003571 if (mForceClearedSystemUiFlags != newVal) {
3572 mForceClearedSystemUiFlags = newVal;
3573 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003574 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003575 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003576 }
3577 if (changed) {
3578 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3579 }
3580 }
3581 }
3582 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003583 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003584 }
3585 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003586 }
3587 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3588 new InputEventReceiver.Factory() {
3589 @Override
3590 public InputEventReceiver createInputEventReceiver(
3591 InputChannel inputChannel, Looper looper) {
3592 return new HideNavInputEventReceiver(inputChannel, looper);
3593 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003594 };
3595
3596 @Override
3597 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003598 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3599 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003600 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003601
Dianne Hackborndf89e652011-10-06 22:35:11 -07003602 // Reset any bits in mForceClearingStatusBarVisibility that
3603 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003604 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003605 // Clear any bits in the new visibility that are currently being
3606 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003607 return visibility & ~mResettingSystemUiFlags
3608 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003609 }
3610
Craig Mautner69b08182012-09-05 13:07:13 -07003611 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003612 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3613 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003614 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003615 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3616 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003617
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003618 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3619 if (useOutsets) {
3620 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3621 if (outset > 0) {
3622 if (displayRotation == Surface.ROTATION_0) {
3623 outOutsets.bottom += outset;
3624 } else if (displayRotation == Surface.ROTATION_90) {
3625 outOutsets.right += outset;
3626 } else if (displayRotation == Surface.ROTATION_180) {
3627 outOutsets.top += outset;
3628 } else if (displayRotation == Surface.ROTATION_270) {
3629 outOutsets.left += outset;
3630 }
3631 }
3632 }
3633
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003634 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003635 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003636 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003637 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003638 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003639 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3640 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3641 } else {
3642 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3643 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3644 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003645 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3646 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003647 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003648 availRight - mStableFullscreenRight,
3649 availBottom - mStableFullscreenBottom);
3650 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003651 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003652 availRight - mStableRight, availBottom - mStableBottom);
3653 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003654 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003655 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003656 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003657 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003658 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003659 availRight - mCurRight, availBottom - mCurBottom);
3660 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003661 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003662 availRight - mCurRight, availBottom - mCurBottom);
3663 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003664
3665 outStableInsets.set(mStableLeft, mStableTop,
3666 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003667 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003668 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003669 outContentInsets.setEmpty();
3670 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003671 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003672
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003673 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3674 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3675 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3676 }
3677
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003678 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003679 @Override
3680 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08003681 int displayRotation, int uiMode) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003682 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003683 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3684 if (isDefaultDisplay) {
3685 switch (displayRotation) {
3686 case Surface.ROTATION_90:
3687 overscanLeft = mOverscanTop;
3688 overscanTop = mOverscanRight;
3689 overscanRight = mOverscanBottom;
3690 overscanBottom = mOverscanLeft;
3691 break;
3692 case Surface.ROTATION_180:
3693 overscanLeft = mOverscanRight;
3694 overscanTop = mOverscanBottom;
3695 overscanRight = mOverscanLeft;
3696 overscanBottom = mOverscanTop;
3697 break;
3698 case Surface.ROTATION_270:
3699 overscanLeft = mOverscanBottom;
3700 overscanTop = mOverscanLeft;
3701 overscanRight = mOverscanTop;
3702 overscanBottom = mOverscanRight;
3703 break;
3704 default:
3705 overscanLeft = mOverscanLeft;
3706 overscanTop = mOverscanTop;
3707 overscanRight = mOverscanRight;
3708 overscanBottom = mOverscanBottom;
3709 break;
3710 }
3711 } else {
3712 overscanLeft = 0;
3713 overscanTop = 0;
3714 overscanRight = 0;
3715 overscanBottom = 0;
3716 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003717 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3718 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3719 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3720 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003721 mSystemLeft = 0;
3722 mSystemTop = 0;
3723 mSystemRight = displayWidth;
3724 mSystemBottom = displayHeight;
3725 mUnrestrictedScreenLeft = overscanLeft;
3726 mUnrestrictedScreenTop = overscanTop;
3727 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3728 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3729 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3730 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003731 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3732 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003733 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003734 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003735 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003736 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003737 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003738 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003739 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003740 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003741 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003742 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003743
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003744 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3745 final Rect pf = mTmpParentFrame;
3746 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003747 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003748 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003749 final Rect dcf = mTmpDecorFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003750 pf.left = df.left = of.left = vf.left = mDockLeft;
3751 pf.top = df.top = of.top = vf.top = mDockTop;
3752 pf.right = df.right = of.right = vf.right = mDockRight;
3753 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003754 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003755
Craig Mautner69b08182012-09-05 13:07:13 -07003756 if (isDefaultDisplay) {
3757 // For purposes of putting out fake window up to steal focus, we will
3758 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003759 final int sysui = mLastSystemUiFlags;
3760 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003761 boolean navTranslucent = (sysui
Jorim Jaggi4fa78922015-11-30 17:13:56 -08003762 & (View.NAVIGATION_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003763 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3764 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3765 boolean navAllowedHidden = immersive || immersiveSticky;
3766 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003767 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3768 if (!isKeyguardShowing) {
3769 navTranslucent &= areTranslucentBarsAllowed();
3770 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003771
Craig Mautner69b08182012-09-05 13:07:13 -07003772 // When the navigation bar isn't visible, we put up a fake
3773 // input window to catch all touch events. This way we can
3774 // detect when the user presses anywhere to bring back the nav
3775 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003776 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003777 if (mInputConsumer != null) {
3778 mInputConsumer.dismiss();
3779 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003780 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003781 } else if (mInputConsumer == null) {
3782 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3783 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003784 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003785
Craig Mautner69b08182012-09-05 13:07:13 -07003786 // For purposes of positioning and showing the nav bar, if we have
3787 // decided that it can't be hidden (because of the screen aspect ratio),
3788 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003789 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003790
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003791 boolean updateSysUiVisibility = layoutNavigationBar(displayWidth, displayHeight,
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08003792 displayRotation, uiMode, overscanRight, overscanBottom, dcf, navVisible, navTranslucent,
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003793 navAllowedHidden);
Craig Mautnereda67292013-04-28 13:50:14 -07003794 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003795 mDockLeft, mDockTop, mDockRight, mDockBottom));
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003796 updateSysUiVisibility |= layoutStatusBar(pf, df, of, vf, dcf, sysui, isKeyguardShowing);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003797 if (updateSysUiVisibility) {
3798 updateSystemUiVisibilityLw();
3799 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003800 }
3801 }
3802
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003803 private boolean layoutStatusBar(Rect pf, Rect df, Rect of, Rect vf, Rect dcf, int sysui,
3804 boolean isKeyguardShowing) {
3805 // decide where the status bar goes ahead of time
3806 if (mStatusBar != null) {
3807 // apply any navigation bar insets
3808 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3809 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3810 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3811 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3812 + mUnrestrictedScreenTop;
3813 vf.left = mStableLeft;
3814 vf.top = mStableTop;
3815 vf.right = mStableRight;
3816 vf.bottom = mStableBottom;
3817
3818 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3819
3820 // Let the status bar determine its size.
3821 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3822 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3823 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
3824
3825 // For layout, the status bar is always at the top with our fixed height.
3826 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3827
3828 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
3829 boolean statusBarTranslucent = (sysui
Jorim Jaggi4fa78922015-11-30 17:13:56 -08003830 & (View.STATUS_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSPARENT)) != 0;
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003831 if (!isKeyguardShowing) {
3832 statusBarTranslucent &= areTranslucentBarsAllowed();
3833 }
3834
3835 // If the status bar is hidden, we don't want to cause
3836 // windows behind it to scroll.
3837 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
3838 // Status bar may go away, so the screen area it occupies
3839 // is available to apps but just covering them when the
3840 // status bar is visible.
3841 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3842
3843 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3844 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3845 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3846 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3847
3848 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
3849 String.format(
3850 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3851 mDockLeft, mDockTop, mDockRight, mDockBottom,
3852 mContentLeft, mContentTop, mContentRight, mContentBottom,
3853 mCurLeft, mCurTop, mCurRight, mCurBottom));
3854 }
3855 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
3856 && !statusBarTransient && !statusBarTranslucent
3857 && !mStatusBarController.wasRecentlyTranslucent()) {
3858 // If the opaque status bar is currently requested to be visible,
3859 // and not in the process of animating on or off, then
3860 // we can tell the app that it is covered by it.
3861 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3862 }
3863 if (mStatusBarController.checkHiddenLw()) {
3864 return true;
3865 }
3866 }
3867 return false;
3868 }
3869
3870 private boolean layoutNavigationBar(int displayWidth, int displayHeight, int displayRotation,
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08003871 int uiMode, int overscanRight, int overscanBottom, Rect dcf, boolean navVisible,
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003872 boolean navTranslucent, boolean navAllowedHidden) {
3873 if (mNavigationBar != null) {
3874 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
3875 // Force the navigation bar to its appropriate place and
3876 // size. We need to do this directly, instead of relying on
3877 // it to bubble up from the nav bar, because this needs to
3878 // change atomically with screen rotations.
Jorim Jaggi737af722015-12-31 10:42:27 +01003879 mNavigationBarOnBottom = isNavigationBarOnBottom(displayWidth, displayHeight);
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003880 if (mNavigationBarOnBottom) {
3881 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
3882 int top = displayHeight - overscanBottom
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08003883 - getNavigationBarHeight(displayRotation, uiMode);
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003884 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
3885 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
3886 if (transientNavBarShowing) {
3887 mNavigationBarController.setBarShowingLw(true);
3888 } else if (navVisible) {
3889 mNavigationBarController.setBarShowingLw(true);
3890 mDockBottom = mTmpNavigationFrame.top;
3891 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3892 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
3893 } else {
3894 // We currently want to hide the navigation UI.
3895 mNavigationBarController.setBarShowingLw(false);
3896 }
3897 if (navVisible && !navTranslucent && !navAllowedHidden
3898 && !mNavigationBar.isAnimatingLw()
3899 && !mNavigationBarController.wasRecentlyTranslucent()) {
3900 // If the opaque nav bar is currently requested to be visible,
3901 // and not in the process of animating on or off, then
3902 // we can tell the app that it is covered by it.
3903 mSystemBottom = mTmpNavigationFrame.top;
3904 }
3905 } else {
3906 // Landscape screen; nav bar goes to the right.
3907 int left = displayWidth - overscanRight
Sriram Viswanathan9ebbe6a2015-11-16 17:59:22 -08003908 - getNavigationBarWidth(displayRotation, uiMode);
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003909 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
3910 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
3911 if (transientNavBarShowing) {
3912 mNavigationBarController.setBarShowingLw(true);
3913 } else if (navVisible) {
3914 mNavigationBarController.setBarShowingLw(true);
3915 mDockRight = mTmpNavigationFrame.left;
3916 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3917 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
3918 } else {
3919 // We currently want to hide the navigation UI.
3920 mNavigationBarController.setBarShowingLw(false);
3921 }
3922 if (navVisible && !navTranslucent && !navAllowedHidden
3923 && !mNavigationBar.isAnimatingLw()
3924 && !mNavigationBarController.wasRecentlyTranslucent()) {
3925 // If the nav bar is currently requested to be visible,
3926 // and not in the process of animating on or off, then
3927 // we can tell the app that it is covered by it.
3928 mSystemRight = mTmpNavigationFrame.left;
3929 }
3930 }
3931 // Make sure the content and current rectangles are updated to
3932 // account for the restrictions from the navigation bar.
3933 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3934 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3935 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3936 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3937 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3938 // And compute the final frame.
3939 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
3940 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3941 mTmpNavigationFrame, mTmpNavigationFrame);
3942 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
3943 if (mNavigationBarController.checkHiddenLw()) {
3944 return true;
3945 }
3946 }
3947 return false;
3948 }
3949
Jorim Jaggi737af722015-12-31 10:42:27 +01003950 private boolean isNavigationBarOnBottom(int displayWidth, int displayHeight) {
3951 return !mNavigationBarCanMove || displayWidth < displayHeight;
3952 }
3953
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003954 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003955 @Override
John Spurlock46646232013-09-30 22:32:42 -04003956 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003957 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3958 return mStatusBar.getSurfaceLayer();
3959 }
3960
3961 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3962 return mNavigationBar.getSurfaceLayer();
3963 }
3964
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003965 return 0;
3966 }
3967
Craig Mautner967212c2013-04-13 21:10:58 -07003968 @Override
3969 public void getContentRectLw(Rect r) {
3970 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3971 }
3972
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003973 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3974 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003975 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3976 // Here's a special case: if this attached window is a panel that is
3977 // above the dock window, and the window it is attached to is below
3978 // the dock window, then the frames we computed for the window it is
3979 // attached to can not be used because the dock is effectively part
3980 // of the underlying window and the attached window is floating on top
3981 // of the whole thing. So, we ignore the attached window and explicitly
3982 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003983 df.left = of.left = cf.left = vf.left = mDockLeft;
3984 df.top = of.top = cf.top = vf.top = mDockTop;
3985 df.right = of.right = cf.right = vf.right = mDockRight;
3986 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003987 } else {
3988 // The effective display frame of the attached window depends on
3989 // whether it is taking care of insetting its content. If not,
3990 // we need to use the parent's content frame so that the entire
3991 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003992 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003993 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003994 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003995 // Set the content frame of the attached window to the parent's decor frame
3996 // (same as content frame when IME isn't present) if specifically requested by
3997 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3998 // Otherwise, use the overscan frame.
3999 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
4000 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004001 } else {
4002 // If the window is resizing, then we want to base the content
4003 // frame on our attached content frame to resize... however,
4004 // things can be tricky if the attached window is NOT in resize
4005 // mode, in which case its content frame will be larger.
4006 // Ungh. So to deal with that, make sure the content frame
4007 // we end up using is not covering the IM dock.
4008 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004009 if (attached.isVoiceInteraction()) {
4010 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
4011 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
4012 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
4013 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
4014 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004015 if (cf.left < mContentLeft) cf.left = mContentLeft;
4016 if (cf.top < mContentTop) cf.top = mContentTop;
4017 if (cf.right > mContentRight) cf.right = mContentRight;
4018 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
4019 }
4020 }
4021 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004022 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004023 vf.set(attached.getVisibleFrameLw());
4024 }
4025 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
4026 // window should be positioned relative to its parent or the entire
4027 // screen.
4028 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
4029 ? attached.getFrameLw() : df);
4030 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004031
4032 private void applyStableConstraints(int sysui, int fl, Rect r) {
4033 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
4034 // If app is requesting a stable layout, don't let the
4035 // content insets go below the stable values.
4036 if ((fl & FLAG_FULLSCREEN) != 0) {
4037 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
4038 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
4039 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
4040 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
4041 } else {
4042 if (r.left < mStableLeft) r.left = mStableLeft;
4043 if (r.top < mStableTop) r.top = mStableTop;
4044 if (r.right > mStableRight) r.right = mStableRight;
4045 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
4046 }
4047 }
4048 }
4049
Jorim Jaggiaa806142015-05-20 18:04:16 -07004050 private boolean canReceiveInput(WindowState win) {
4051 boolean notFocusable =
4052 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
4053 boolean altFocusableIm =
4054 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
4055 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
4056 return !notFocusableForIm;
4057 }
4058
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004059 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07004060 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004061 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07004062 // We've already done the navigation bar and status bar. If the status bar can receive
4063 // input, we need to layout it again to accomodate for the IME window.
4064 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004065 return;
4066 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07004067 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07004068 final boolean isDefaultDisplay = win.isDefaultDisplay();
4069 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09004070 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
4071 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07004072 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09004073 offsetInputMethodWindowLw(mLastInputMethodWindow);
4074 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004075
John Spurlockc6d1c602014-01-17 15:22:06 -05004076 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004077 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05004078 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004079
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004080 final Rect pf = mTmpParentFrame;
4081 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004082 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004083 final Rect cf = mTmpContentFrame;
4084 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04004085 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07004086 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004087 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04004088 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07004089
4090 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04004091 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004092
Craig Mautnerf683b562012-10-02 11:10:57 -07004093 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
4094
Adrian Roosfa104232014-06-20 16:10:14 -07004095 if (isDefaultDisplay) {
4096 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
4097 } else {
4098 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
4099 }
4100
Craig Mautner69b08182012-09-05 13:07:13 -07004101 if (!isDefaultDisplay) {
4102 if (attached != null) {
4103 // If this window is attached to another, our display
4104 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004105 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07004106 } else {
4107 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004108 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4109 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4110 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004111 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004112 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004113 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07004114 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07004115 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004116 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
4117 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
4118 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04004119 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04004120 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04004121 // ...with content insets above the nav bar
4122 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004123 // IM dock windows always go to the bottom of the screen.
4124 attrs.gravity = Gravity.BOTTOM;
4125 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07004126 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10004127 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07004128 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10004129 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4130 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07004131 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10004132 // Note: In Phone landscape mode, the button bar should also be excluded.
4133 cf.right = vf.right = mStableRight;
4134 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07004135 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07004136 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02004137 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4138 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4139 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
4140 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
4141 cf.left = vf.left = mStableLeft;
4142 cf.top = vf.top = mStableTop;
4143 cf.right = vf.right = mStableRight;
4144 vf.bottom = mStableBottom;
Adrian Roosdc5b4532016-01-06 20:49:41 +01004145
4146 if (adjust == SOFT_INPUT_ADJUST_RESIZE) {
4147 cf.bottom = mContentBottom;
4148 } else {
4149 cf.bottom = mDockBottom;
4150 vf.bottom = mContentBottom;
4151 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004152 } else {
John Spurlock46646232013-09-30 22:32:42 -04004153
4154 // Default policy decor for the default display
4155 dcf.left = mSystemLeft;
4156 dcf.top = mSystemTop;
4157 dcf.right = mSystemRight;
4158 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04004159 final boolean inheritTranslucentDecor = (attrs.privateFlags
4160 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04004161 final boolean isAppWindow =
4162 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
4163 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
4164 final boolean topAtRest =
4165 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
4166 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04004167 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
4168 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02004169 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
4170 && (fl & WindowManager.LayoutParams.
Jorim Jaggi4fa78922015-11-30 17:13:56 -08004171 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0
4172 && !mForceWindowDrawsStatusBarBackground) {
John Spurlock46646232013-09-30 22:32:42 -04004173 // Ensure policy decor includes status bar
4174 dcf.top = mStableTop;
4175 }
John Spurlockbd957402013-10-03 11:38:39 -04004176 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02004177 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
4178 && (fl & WindowManager.LayoutParams.
4179 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04004180 // Ensure policy decor includes navigation bar
4181 dcf.bottom = mStableBottom;
4182 dcf.right = mStableRight;
4183 }
4184 }
4185
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004186 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
4187 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07004188 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004189 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004190 // This is the case for a normal activity window: we want it
4191 // to cover all of the screen space, and it can take care of
4192 // moving its contents to account for screen decorations that
4193 // intrude into that space.
4194 if (attached != null) {
4195 // If this window is attached to another, our display
4196 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004197 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004198 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004199 if (attrs.type == TYPE_STATUS_BAR_PANEL
4200 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08004201 // Status bar panels are the only windows who can go on top of
4202 // the status bar. They are protected by the STATUS_BAR_SERVICE
4203 // permission, so they have the same privileges as the status
4204 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004205 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004206 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004207
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004208 pf.left = df.left = of.left = hasNavBar
4209 ? mDockLeft : mUnrestrictedScreenLeft;
4210 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4211 pf.right = df.right = of.right = hasNavBar
4212 ? mRestrictedScreenLeft+mRestrictedScreenWidth
4213 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4214 pf.bottom = df.bottom = of.bottom = hasNavBar
4215 ? mRestrictedScreenTop+mRestrictedScreenHeight
4216 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004217
Craig Mautnereda67292013-04-28 13:50:14 -07004218 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004219 "Laying out status bar window: (%d,%d - %d,%d)",
4220 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04004221 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004222 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4223 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4224 // Asking to layout into the overscan region, so give it that pure
4225 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004226 pf.left = df.left = of.left = mOverscanScreenLeft;
4227 pf.top = df.top = of.top = mOverscanScreenTop;
4228 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
4229 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
4230 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004231 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004232 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004233 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4234 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004235 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08004236 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004237 // only do this for application windows to ensure no window that
4238 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08004239 pf.left = df.left = mOverscanScreenLeft;
4240 pf.top = df.top = mOverscanScreenTop;
4241 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4242 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004243 // We need to tell the app about where the frame inside the overscan
4244 // is, so it can inset its content by that amount -- it didn't ask
4245 // to actually extend itself into the overscan region.
4246 of.left = mUnrestrictedScreenLeft;
4247 of.top = mUnrestrictedScreenTop;
4248 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4249 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004250 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004251 pf.left = df.left = mRestrictedOverscanScreenLeft;
4252 pf.top = df.top = mRestrictedOverscanScreenTop;
4253 pf.right = df.right = mRestrictedOverscanScreenLeft
4254 + mRestrictedOverscanScreenWidth;
4255 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4256 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004257 // We need to tell the app about where the frame inside the overscan
4258 // is, so it can inset its content by that amount -- it didn't ask
4259 // to actually extend itself into the overscan region.
4260 of.left = mUnrestrictedScreenLeft;
4261 of.top = mUnrestrictedScreenTop;
4262 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4263 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004264 }
Craig Mautner69b08182012-09-05 13:07:13 -07004265
John Spurlock46646232013-09-30 22:32:42 -04004266 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004267 if (win.isVoiceInteraction()) {
4268 cf.left = mVoiceContentLeft;
4269 cf.top = mVoiceContentTop;
4270 cf.right = mVoiceContentRight;
4271 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004272 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004273 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4274 cf.left = mDockLeft;
4275 cf.top = mDockTop;
4276 cf.right = mDockRight;
4277 cf.bottom = mDockBottom;
4278 } else {
4279 cf.left = mContentLeft;
4280 cf.top = mContentTop;
4281 cf.right = mContentRight;
4282 cf.bottom = mContentBottom;
4283 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004284 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004285 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004286 // Full screen windows are always given a layout that is as if the
4287 // status bar and other transient decors are gone. This is to avoid
4288 // bad states when moving from a window that is not hding the
4289 // status bar to one that is.
4290 cf.left = mRestrictedScreenLeft;
4291 cf.top = mRestrictedScreenTop;
4292 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4293 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004294 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004295 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004296 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4297 vf.left = mCurLeft;
4298 vf.top = mCurTop;
4299 vf.right = mCurRight;
4300 vf.bottom = mCurBottom;
4301 } else {
4302 vf.set(cf);
4303 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004304 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004305 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4306 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4307 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004308 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4309 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004310 // A window that has requested to fill the entire screen just
4311 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004312 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004313 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4314 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004315 pf.left = df.left = of.left = cf.left = hasNavBar
4316 ? mDockLeft : mUnrestrictedScreenLeft;
4317 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4318 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004319 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004320 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004321 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004322 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004323 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004324 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004325 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4326 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004327 } else if (attrs.type == TYPE_NAVIGATION_BAR
4328 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004329 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004330 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4331 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4332 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4333 + mUnrestrictedScreenWidth;
4334 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4335 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004336 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004337 "Laying out navigation bar window: (%d,%d - %d,%d)",
4338 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004339 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4340 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004341 && ((fl & FLAG_FULLSCREEN) != 0)) {
4342 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004343 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4344 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4345 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4346 + mOverscanScreenWidth;
4347 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4348 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004349 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004350 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004351 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4352 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4353 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4354 + mOverscanScreenWidth;
4355 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4356 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004357 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004358 // The wallpaper also has Real Ultimate Power, but we want to tell
4359 // it about the overscan area.
4360 pf.left = df.left = mOverscanScreenLeft;
4361 pf.top = df.top = mOverscanScreenTop;
4362 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4363 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4364 of.left = cf.left = mUnrestrictedScreenLeft;
4365 of.top = cf.top = mUnrestrictedScreenTop;
4366 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4367 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004368 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004369 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4370 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4371 // Asking to layout into the overscan region, so give it that pure
4372 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004373 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4374 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4375 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004376 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004377 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004378 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004379 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004380 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004381 && (attrs.type == TYPE_STATUS_BAR
4382 || attrs.type == TYPE_TOAST
Jorim Jaggi81fe2d12015-12-21 14:45:18 +01004383 || attrs.type == TYPE_DOCK_DIVIDER
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004384 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004385 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4386 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004387 // Asking for layout as if the nav bar is hidden, lets the
4388 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004389 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004390 // can be above the nav bar can do this.
4391 // XXX This assumes that an app asking for this will also
4392 // ask for layout in only content. We can't currently figure out
4393 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004394 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4395 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4396 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4397 + mUnrestrictedScreenWidth;
4398 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4399 + mUnrestrictedScreenHeight;
Jorim Jaggi9f6798a2016-02-10 22:16:06 -08004400 } else if ((sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN) != 0) {
4401 pf.left = df.left = of.left = mRestrictedScreenLeft;
4402 pf.top = df.top = of.top = mRestrictedScreenTop;
4403 pf.right = df.right = of.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4404 pf.bottom = df.bottom = of.bottom = mRestrictedScreenTop
4405 + mRestrictedScreenHeight;
4406 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4407 cf.left = mDockLeft;
4408 cf.top = mDockTop;
4409 cf.right = mDockRight;
4410 cf.bottom = mDockBottom;
4411 } else {
4412 cf.left = mContentLeft;
4413 cf.top = mContentTop;
4414 cf.right = mContentRight;
4415 cf.bottom = mContentBottom;
4416 }
Joe Onorato29fc2c92010-11-24 10:26:50 -08004417 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004418 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4419 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4420 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4421 + mRestrictedScreenWidth;
4422 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4423 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004424 }
Craig Mautner69b08182012-09-05 13:07:13 -07004425
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004426 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004427
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004428 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4429 vf.left = mCurLeft;
4430 vf.top = mCurTop;
4431 vf.right = mCurRight;
4432 vf.bottom = mCurBottom;
4433 } else {
4434 vf.set(cf);
4435 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004436 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004437 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4438 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004439 // A child window should be placed inside of the same visible
4440 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004441 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004442 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004443 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4444 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004445 // Otherwise, a normal window must be placed inside the content
4446 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004447 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4448 // Status bar panels and the volume dialog are the only windows who can go on
4449 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004450 // permission, so they have the same privileges as the status
4451 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004452 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4453 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4454 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4455 + mRestrictedScreenWidth;
4456 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4457 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004458 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004459 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004460 pf.left = df.left = of.left = cf.left = mStableLeft;
4461 pf.top = df.top = of.top = cf.top = mStableTop;
4462 pf.right = df.right = of.right = cf.right = mStableRight;
4463 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004464 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004465 pf.left = mContentLeft;
4466 pf.top = mContentTop;
4467 pf.right = mContentRight;
4468 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004469 if (win.isVoiceInteraction()) {
4470 df.left = of.left = cf.left = mVoiceContentLeft;
4471 df.top = of.top = cf.top = mVoiceContentTop;
4472 df.right = of.right = cf.right = mVoiceContentRight;
4473 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4474 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004475 df.left = of.left = cf.left = mDockLeft;
4476 df.top = of.top = cf.top = mDockTop;
4477 df.right = of.right = cf.right = mDockRight;
4478 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004479 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004480 df.left = of.left = cf.left = mContentLeft;
4481 df.top = of.top = cf.top = mContentTop;
4482 df.right = of.right = cf.right = mContentRight;
4483 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004484 }
4485 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4486 vf.left = mCurLeft;
4487 vf.top = mCurTop;
4488 vf.right = mCurRight;
4489 vf.bottom = mCurBottom;
4490 } else {
4491 vf.set(cf);
4492 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004493 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004494 }
4495 }
Craig Mautner69b08182012-09-05 13:07:13 -07004496
Craig Mautnerb816bed2013-07-23 10:26:17 -07004497 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4498 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004499 df.left = df.top = -10000;
4500 df.right = df.bottom = 10000;
4501 if (attrs.type != TYPE_WALLPAPER) {
4502 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4503 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4504 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004505 }
4506
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004507 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4508 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004509 // We only want to apply outsets to certain types of windows. For example, we never want to
4510 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004511 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004512 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004513 osf = mTmpOutsetFrame;
4514 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4515 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4516 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004517 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004518 if (rotation == Surface.ROTATION_0) {
4519 osf.bottom += outset;
4520 } else if (rotation == Surface.ROTATION_90) {
4521 osf.right += outset;
4522 } else if (rotation == Surface.ROTATION_180) {
4523 osf.top -= outset;
4524 } else if (rotation == Surface.ROTATION_270) {
4525 osf.left -= outset;
4526 }
4527 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4528 + " with rotation " + rotation + ", result: " + osf);
4529 }
4530 }
4531
Craig Mautnereda67292013-04-28 13:50:14 -07004532 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004533 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004534 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004535 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004536 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004537 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004538 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004539 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004540 + " sf=" + sf.toShortString()
4541 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004542
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004543 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004544
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004545 // Dock windows carve out the bottom of the screen, so normal windows
4546 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004547 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4548 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004549 setLastInputMethodWindowLw(null, null);
4550 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004551 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004552 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4553 && !win.getGivenInsetsPendingLw()) {
4554 offsetVoiceInputWindowLw(win);
4555 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004556 }
4557
satok1bc0a492012-04-25 22:47:12 +09004558 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004559 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004560 top += win.getGivenContentInsetsLw().top;
4561 if (mContentBottom > top) {
4562 mContentBottom = top;
4563 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004564 if (mVoiceContentBottom > top) {
4565 mVoiceContentBottom = top;
4566 }
satok1bc0a492012-04-25 22:47:12 +09004567 top = win.getVisibleFrameLw().top;
4568 top += win.getGivenVisibleInsetsLw().top;
4569 if (mCurBottom > top) {
4570 mCurBottom = top;
4571 }
Craig Mautnereda67292013-04-28 13:50:14 -07004572 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004573 + mDockBottom + " mContentBottom="
4574 + mContentBottom + " mCurBottom=" + mCurBottom);
4575 }
4576
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004577 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004578 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004579 top += win.getGivenContentInsetsLw().top;
4580 if (mVoiceContentBottom > top) {
4581 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004582 }
4583 }
4584
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004585 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004586 @Override
4587 public void finishLayoutLw() {
4588 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004589 }
4590
4591 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004592 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004593 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004594 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004595 mTopFullscreenOpaqueOrDimmingWindowState = null;
Jorim Jaggi86905582016-02-09 21:36:09 -08004596 mTopDockedOpaqueWindowState = null;
4597 mTopDockedOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004598 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004599 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004600 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004601 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004602 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004603 mForcingShowNavBar = false;
4604 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004605
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004606 mHideLockScreen = false;
4607 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004608 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004609 mShowingLockscreen = false;
4610 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004611 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004612 mKeyguardSecure = isKeyguardSecure();
4613 mKeyguardSecureIncludingHidden = mKeyguardSecure
4614 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004615 }
4616
4617 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004618 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004619 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4620 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004621 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4622 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004623 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004624 if (mTopFullscreenOpaqueWindowState == null
4625 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4626 mForcingShowNavBar = true;
4627 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004628 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004629 if (attrs.type == TYPE_STATUS_BAR) {
4630 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4631 mForceStatusBarFromKeyguard = true;
Jorim Jaggie1de9f62015-09-23 14:59:50 -07004632 mShowingLockscreen = true;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004633 }
4634 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4635 mForceStatusBarTransparent = true;
4636 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004637 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004638
4639 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4640 && attrs.type < FIRST_SYSTEM_WINDOW;
4641 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4642 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
Jorim Jaggi86905582016-02-09 21:36:09 -08004643 final int stackId = win.getStackId();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004644 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004645 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004646 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004647 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004648 mForceStatusBarFromKeyguard = true;
4649 } else {
4650 mForceStatusBar = true;
4651 }
4652 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004653 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004654 // If the lockscreen was showing when the dream started then wait
4655 // for the dream to draw before hiding the lockscreen.
4656 if (!mDreamingLockscreen
4657 || (win.isVisibleLw() && win.hasDrawnLw())) {
4658 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004659 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004660 }
4661 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004662
Yohei Yukawad1a09222015-06-30 16:22:05 -07004663 final IApplicationToken appToken = win.getAppToken();
4664
4665 // For app windows that are not attached, we decide if all windows in the app they
4666 // represent should be hidden or if we should hide the lockscreen. For attached app
4667 // windows we defer the decision to the window it is attached to.
4668 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004669 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004670 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004671 mAppsToBeHidden.remove(appToken);
4672 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004673 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004674 if (dismissKeyguard && !mKeyguardSecure) {
4675 mAppsThatDismissKeyguard.add(appToken);
Selim Cinek90b5e072015-08-28 17:05:56 -07004676 } else if (win.isDrawnLw() || win.hasAppShownWindows()) {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004677 mWinShowWhenLocked = win;
4678 mHideLockScreen = true;
4679 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004680 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004681 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004682 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004683 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004684 mAppsToBeHidden.add(appToken);
4685 } else {
4686 mAppsToBeHidden.remove(appToken);
4687 }
4688 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004689 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004690 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004691 }
Jorim Jaggi86905582016-02-09 21:36:09 -08004692 if (isFullscreen(attrs) && StackId.normallyFullscreenWindows(stackId)) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004693 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4694 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004695 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4696 mTopFullscreenOpaqueOrDimmingWindowState = win;
4697 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004698 if (!mAppsThatDismissKeyguard.isEmpty() &&
4699 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4700 if (DEBUG_LAYOUT) Slog.v(TAG,
4701 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004702 mDismissKeyguard = (mWinDismissingKeyguard == win
4703 && mSecureDismissingKeyguard == mKeyguardSecure)
4704 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004705 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004706 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004707 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Selim Cinek90b5e072015-08-28 17:05:56 -07004708 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked
4709 && (win.isDrawnLw() || win.hasAppShownWindows())) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004710 if (DEBUG_LAYOUT) Slog.v(TAG,
4711 "Setting mHideLockScreen to true by win " + win);
4712 mHideLockScreen = true;
4713 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004714 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004715 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004716 mAllowLockscreenWhenOn = true;
4717 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004718 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004719
4720 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004721 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4722 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004723 win.hideLw(false);
4724 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004725 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004726 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4727 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4728 // that is being hidden in an animation - keep the
4729 // keyguard hidden until the new window shows up and
4730 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004731 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004732 mHideLockScreen = true;
4733 mWinShowWhenLocked = win;
4734 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004735 }
Jorim Jaggi86905582016-02-09 21:36:09 -08004736
4737 // Keep track of the window if it's dimming but not necessarily fullscreen.
4738 final boolean reallyVisible = win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw();
4739 if (mTopFullscreenOpaqueOrDimmingWindowState == null && reallyVisible
4740 && win.isDimming() && StackId.normallyFullscreenWindows(stackId)) {
Adrian Rooscd3884d2015-02-18 17:25:23 +01004741 mTopFullscreenOpaqueOrDimmingWindowState = win;
4742 }
Jorim Jaggi86905582016-02-09 21:36:09 -08004743
4744 // We need to keep track of the top "fullscreen" opaque window for the docked stack
4745 // separately, because both the "real fullscreen" opaque window and the one for the docked
4746 // stack can control View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR.
4747 if (mTopDockedOpaqueWindowState == null && reallyVisible && appWindow && attached == null
4748 && isFullscreen(attrs) && stackId == DOCKED_STACK_ID) {
4749 mTopDockedOpaqueWindowState = win;
4750 if (mTopDockedOpaqueOrDimmingWindowState == null) {
4751 mTopDockedOpaqueOrDimmingWindowState = win;
4752 }
4753 }
4754
4755 // Also keep track of any windows that are dimming but not necessarily fullscreen in the
4756 // docked stack.
4757 if (mTopDockedOpaqueOrDimmingWindowState == null && reallyVisible && win.isDimming()
4758 && stackId == DOCKED_STACK_ID) {
4759 mTopDockedOpaqueOrDimmingWindowState = win;
4760 }
4761 }
4762
4763 private boolean isFullscreen(WindowManager.LayoutParams attrs) {
4764 return attrs.x == 0 && attrs.y == 0
4765 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4766 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004767 }
4768
4769 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004770 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004771 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004772 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4773 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4774 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004775 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4776 // fullscreen window.
4777 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4778 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4779 mTopFullscreenOpaqueWindowState.hideLw(false);
4780 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4781 }
4782
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004783 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004784 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004785
4786 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4787 ? mTopFullscreenOpaqueWindowState.getAttrs()
4788 : null;
4789
Jeff Brownc8018eb2012-10-29 21:33:27 -07004790 // If we are not currently showing a dream then remember the current
4791 // lockscreen state. We will use this to determine whether the dream
4792 // started while the lockscreen was showing and remember this state
4793 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004794 if (!mShowingDream) {
4795 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004796 if (mDreamingSleepTokenNeeded) {
4797 mDreamingSleepTokenNeeded = false;
4798 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4799 }
4800 } else {
4801 if (!mDreamingSleepTokenNeeded) {
4802 mDreamingSleepTokenNeeded = true;
4803 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4804 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004805 }
4806
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004807 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004808 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004809 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004810 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004811 boolean shouldBeTransparent = mForceStatusBarTransparent
4812 && !mForceStatusBar
4813 && !mForceStatusBarFromKeyguard;
4814 if (!shouldBeTransparent) {
4815 mStatusBarController.setShowTransparent(false /* transparent */);
4816 } else if (!mStatusBar.isVisibleLw()) {
4817 mStatusBarController.setShowTransparent(true /* transparent */);
4818 }
4819 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004820 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004821 if (mStatusBarController.setBarShowingLw(true)) {
4822 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4823 }
Craig Mautner81defc72013-10-29 11:10:42 -07004824 // Maintain fullscreen layout until incoming animation is complete.
4825 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004826 // Transient status bar on the lockscreen is not allowed
4827 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4828 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4829 mLastSystemUiFlags, mLastSystemUiFlags);
4830 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004831 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004832 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004833 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004834 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -07004835 + " shown position: "
4836 + mTopFullscreenOpaqueWindowState.getShownPositionLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004837 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004838 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004839 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004840 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004841 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004842 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004843 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004844 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4845 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004846 if (mStatusBarController.isTransientShowing()) {
4847 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004848 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4849 }
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07004850 } else if (topIsFullscreen
4851 && !mWindowManagerInternal.isStackVisible(FREEFORM_WORKSPACE_STACK_ID)
4852 && !mWindowManagerInternal.isStackVisible(DOCKED_STACK_ID)) {
Craig Mautnereda67292013-04-28 13:50:14 -07004853 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004854 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004855 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004856 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004857 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004858 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004859 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004860 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004861 if (mStatusBarController.setBarShowingLw(true)) {
4862 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4863 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004864 }
4865 }
4866 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004867
Craig Mautner81defc72013-10-29 11:10:42 -07004868 if (mTopIsFullscreen != topIsFullscreen) {
4869 if (!topIsFullscreen) {
4870 // Force another layout when status bar becomes fully shown.
4871 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4872 }
4873 mTopIsFullscreen = topIsFullscreen;
4874 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004875
Craig Mautner39834192012-09-02 07:47:24 -07004876 // Hide the key guard if a visible window explicitly specifies that it wants to be
4877 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004878 if (mKeyguardDelegate != null && mStatusBar != null) {
4879 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4880 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004881 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004882 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004883 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004884 changes |= FINISH_LAYOUT_REDO_LAYOUT
4885 | FINISH_LAYOUT_REDO_CONFIG
4886 | FINISH_LAYOUT_REDO_WALLPAPER;
4887 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004888 if (mKeyguardDelegate.isShowing()) {
4889 mHandler.post(new Runnable() {
4890 @Override
4891 public void run() {
4892 mKeyguardDelegate.keyguardDone(false, false);
4893 }
4894 });
4895 }
4896 } else if (mHideLockScreen) {
4897 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004898 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004899 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004900 changes |= FINISH_LAYOUT_REDO_LAYOUT
4901 | FINISH_LAYOUT_REDO_CONFIG
4902 | FINISH_LAYOUT_REDO_WALLPAPER;
4903 }
4904 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004905 mKeyguardHidden = false;
4906 if (setKeyguardOccludedLw(false)) {
4907 changes |= FINISH_LAYOUT_REDO_LAYOUT
4908 | FINISH_LAYOUT_REDO_CONFIG
4909 | FINISH_LAYOUT_REDO_WALLPAPER;
4910 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004911 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4912 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004913 mHandler.post(new Runnable() {
4914 @Override
4915 public void run() {
4916 mKeyguardDelegate.dismiss();
4917 }
4918 });
4919 }
4920 } else {
4921 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004922 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004923 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004924 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004925 changes |= FINISH_LAYOUT_REDO_LAYOUT
4926 | FINISH_LAYOUT_REDO_CONFIG
4927 | FINISH_LAYOUT_REDO_WALLPAPER;
4928 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004929 }
4930 }
Joe Onorato664644d2011-01-23 17:53:23 -08004931
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004932 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004933 // If the navigation bar has been hidden or shown, we need to do another
4934 // layout pass to update that window.
4935 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4936 }
Joe Onorato664644d2011-01-23 17:53:23 -08004937
Mike Lockwood28569302010-01-28 11:54:40 -05004938 // update since mAllowLockscreenWhenOn might have changed
4939 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004940 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004941 }
4942
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004943 /**
Jim Millerab954542014-10-10 18:21:49 -07004944 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004945 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004946 * @return Whether the flags have changed and we have to redo the layout.
4947 */
Jim Millerab954542014-10-10 18:21:49 -07004948 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4949 boolean wasOccluded = mKeyguardOccluded;
4950 boolean showing = mKeyguardDelegate.isShowing();
4951 if (wasOccluded && !isOccluded && showing) {
4952 mKeyguardOccluded = false;
4953 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004954 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4955 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4956 return true;
Jim Millerab954542014-10-10 18:21:49 -07004957 } else if (!wasOccluded && isOccluded && showing) {
4958 mKeyguardOccluded = true;
4959 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004960 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4961 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4962 return true;
4963 } else {
4964 return false;
4965 }
4966 }
4967
4968 private boolean isStatusBarKeyguard() {
4969 return mStatusBar != null
4970 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4971 }
4972
Jose Lima9546b202014-07-02 17:21:51 -07004973 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004974 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004975 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004976 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004977 return false;
4978 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004979 return true;
4980 }
4981
Jose Lima9546b202014-07-02 17:21:51 -07004982 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004983 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004984 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004985 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004986 // If the navigation bar has been hidden or shown, we need to do another
4987 // layout pass to update that window.
4988 return FINISH_LAYOUT_REDO_LAYOUT;
4989 }
4990 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004991 }
4992
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004993 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004994 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004995 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4996 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004997 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4998 if (newLidState == mLidState) {
4999 return;
5000 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005001
Jeff Brownc458ce92012-04-30 14:58:40 -07005002 mLidState = newLidState;
5003 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07005004 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07005005
5006 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005007 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
5008 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07005009 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07005010 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07005011 }
5012 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005013
Michael Wright3818c922014-09-02 13:59:07 -07005014 @Override
5015 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
5016 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
5017 if (mCameraLensCoverState == lensCoverState) {
5018 return;
5019 }
5020 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
5021 lensCoverState == CAMERA_LENS_UNCOVERED) {
5022 Intent intent;
5023 final boolean keyguardActive = mKeyguardDelegate == null ? false :
5024 mKeyguardDelegate.isShowing();
5025 if (keyguardActive) {
5026 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
5027 } else {
5028 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
5029 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005030 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
5031 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00005032 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07005033 }
5034 mCameraLensCoverState = lensCoverState;
5035 }
5036
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08005037 void setHdmiPlugged(boolean plugged) {
5038 if (mHdmiPlugged != plugged) {
5039 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07005040 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08005041 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08005042 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08005043 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07005044 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08005045 }
5046 }
5047
Joe Onoratoea495d42011-04-06 11:41:11 -07005048 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07005049 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07005050 // watch for HDMI plug messages if the hdmi switch exists
5051 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
5052 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
5053
Joe Onoratoea495d42011-04-06 11:41:11 -07005054 final String filename = "/sys/class/switch/hdmi/state";
5055 FileReader reader = null;
5056 try {
5057 reader = new FileReader(filename);
5058 char[] buf = new char[15];
5059 int n = reader.read(buf);
5060 if (n > 1) {
5061 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
5062 }
5063 } catch (IOException ex) {
5064 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
5065 } catch (NumberFormatException ex) {
5066 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
5067 } finally {
5068 if (reader != null) {
5069 try {
5070 reader.close();
5071 } catch (IOException ex) {
5072 }
Joe Onoratodc100302011-01-11 17:07:41 -08005073 }
5074 }
5075 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07005076 // This dance forces the code in setHdmiPlugged to run.
5077 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
5078 mHdmiPlugged = !plugged;
5079 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08005080 }
5081
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07005082 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07005083 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07005084
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005085 final Runnable mScreenshotTimeout = new Runnable() {
5086 @Override public void run() {
5087 synchronized (mScreenshotLock) {
5088 if (mScreenshotConnection != null) {
5089 mContext.unbindService(mScreenshotConnection);
5090 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07005091 }
Winson Chung9112ec32011-06-27 13:15:32 -07005092 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005093 }
5094 };
5095
5096 // Assume this is called from the Handler thread.
5097 private void takeScreenshot() {
5098 synchronized (mScreenshotLock) {
5099 if (mScreenshotConnection != null) {
5100 return;
5101 }
5102 ComponentName cn = new ComponentName("com.android.systemui",
5103 "com.android.systemui.screenshot.TakeScreenshotService");
5104 Intent intent = new Intent();
5105 intent.setComponent(cn);
5106 ServiceConnection conn = new ServiceConnection() {
5107 @Override
5108 public void onServiceConnected(ComponentName name, IBinder service) {
5109 synchronized (mScreenshotLock) {
5110 if (mScreenshotConnection != this) {
5111 return;
5112 }
5113 Messenger messenger = new Messenger(service);
5114 Message msg = Message.obtain(null, 1);
5115 final ServiceConnection myConn = this;
5116 Handler h = new Handler(mHandler.getLooper()) {
5117 @Override
5118 public void handleMessage(Message msg) {
5119 synchronized (mScreenshotLock) {
5120 if (mScreenshotConnection == myConn) {
5121 mContext.unbindService(mScreenshotConnection);
5122 mScreenshotConnection = null;
5123 mHandler.removeCallbacks(mScreenshotTimeout);
5124 }
5125 }
5126 }
5127 };
5128 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07005129 msg.arg1 = msg.arg2 = 0;
5130 if (mStatusBar != null && mStatusBar.isVisibleLw())
5131 msg.arg1 = 1;
5132 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
5133 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005134 try {
5135 messenger.send(msg);
5136 } catch (RemoteException e) {
5137 }
5138 }
5139 }
5140 @Override
5141 public void onServiceDisconnected(ComponentName name) {}
5142 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08005143 if (mContext.bindServiceAsUser(
5144 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005145 mScreenshotConnection = conn;
5146 mHandler.postDelayed(mScreenshotTimeout, 10000);
5147 }
5148 }
Winson Chung9112ec32011-06-27 13:15:32 -07005149 }
5150
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005151 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005152 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07005153 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07005154 if (!mSystemBooted) {
5155 // If we have not yet booted, don't let key events do anything.
5156 return 0;
5157 }
5158
Jeff Brown037c33e2014-04-09 00:31:55 -07005159 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08005160 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
5161 final boolean canceled = event.isCanceled();
5162 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07005163
Jeff Brown3122e442010-10-11 23:32:49 -07005164 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07005165
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05005166 // If screen is off then we treat the case where the keyguard is open but hidden
5167 // the same as if it were open and in front.
5168 // This will prevent any keys other than the power button from waking the screen
5169 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08005170 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07005171 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07005172 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08005173 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005174
Jeff Brown40013652012-05-16 21:22:36 -07005175 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005176 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07005177 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08005178 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005179 }
5180
Jeff Brown037c33e2014-04-09 00:31:55 -07005181 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07005182 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07005183 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
5184 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07005185 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07005186 // When the device is interactive or the key is injected pass the
5187 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07005188 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005189 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07005190 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
5191 // If we're currently dozing with the screen on and the keyguard showing, pass the key
5192 // to the application but preserve its wake key status to make sure we still move
5193 // from dozing to fully interactive if we would normally go from off to fully
5194 // interactive.
5195 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07005196 } else {
5197 // When the screen is off and the key is not injected, determine whether
5198 // to wake the device but don't pass the key to the application.
5199 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08005200 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
5201 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005202 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005203 }
5204
Justin Kohd378ad72013-04-01 12:18:26 -07005205 // If the key would be handled globally, just return the result, don't worry about special
5206 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07005207 if (isValidGlobalKey(keyCode)
5208 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07005209 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005210 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07005211 }
Justin Kohd378ad72013-04-01 12:18:26 -07005212 return result;
5213 }
5214
Jeff Brownbae8e772014-06-12 19:59:45 -07005215 boolean useHapticFeedback = down
5216 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
5217 && event.getRepeatCount() == 0;
5218
Jeff Brown4d396052010-10-29 21:50:21 -07005219 // Handle special keys.
5220 switch (keyCode) {
5221 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07005222 case KeyEvent.KEYCODE_VOLUME_UP:
5223 case KeyEvent.KEYCODE_VOLUME_MUTE: {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005224 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
5225 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005226 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005227 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005228 mScreenshotChordVolumeDownKeyTriggered = true;
5229 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
5230 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005231 cancelPendingPowerKeyAction();
5232 interceptScreenshotChord();
5233 }
5234 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005235 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005236 cancelPendingScreenshotChordAction();
5237 }
5238 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
5239 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005240 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005241 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005242 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005243 cancelPendingPowerKeyAction();
5244 cancelPendingScreenshotChordAction();
5245 }
5246 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005247 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005248 cancelPendingScreenshotChordAction();
5249 }
5250 }
Jeff Brown4d396052010-10-29 21:50:21 -07005251 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005252 TelecomManager telecomManager = getTelecommService();
5253 if (telecomManager != null) {
5254 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005255 // If an incoming call is ringing, either VOLUME key means
5256 // "silence ringer". We handle these keys here, rather than
5257 // in the InCallScreen, to make sure we'll respond to them
5258 // even if the InCallScreen hasn't come to the foreground yet.
5259 // Look for the DOWN event here, to agree with the "fallback"
5260 // behavior in the InCallScreen.
5261 Log.i(TAG, "interceptKeyBeforeQueueing:"
5262 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07005263
Santos Cordon6848f722014-05-21 15:22:12 -07005264 // Silence the ringer. (It's safe to call this
5265 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005266 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07005267
Santos Cordon6848f722014-05-21 15:22:12 -07005268 // And *don't* pass this key thru to the current activity
5269 // (which is probably the InCallScreen.)
5270 result &= ~ACTION_PASS_TO_USER;
5271 break;
5272 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005273 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07005274 && (result & ACTION_PASS_TO_USER) == 0) {
5275 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07005276 // the application, just pass it to the session service.
5277
5278 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07005279 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005280 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005281 }
5282 }
Jaewan Kim765487f2016-01-12 14:45:42 +09005283 }
5284 if (mUseTvRouting) {
5285 // On TVs, defer special key handlings to
5286 // {@link interceptKeyBeforeDispatching()}.
5287 result |= ACTION_PASS_TO_USER;
5288 } else if ((result & ACTION_PASS_TO_USER) == 0) {
5289 // If we aren't passing to the user and no one else
5290 // handled it send it to the session manager to
5291 // figure out.
5292 MediaSessionLegacyHelper.getHelper(mContext)
5293 .sendVolumeKeyEvent(event, true);
Jeff Brown4d396052010-10-29 21:50:21 -07005294 }
5295 break;
5296 }
5297
5298 case KeyEvent.KEYCODE_ENDCALL: {
5299 result &= ~ACTION_PASS_TO_USER;
5300 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005301 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005302 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005303 if (telecomManager != null) {
5304 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005305 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005306 if (interactive && !hungUp) {
5307 mEndCallKeyHandled = false;
5308 mHandler.postDelayed(mEndCallLongPress,
5309 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5310 } else {
5311 mEndCallKeyHandled = true;
5312 }
Jeff Brown4d396052010-10-29 21:50:21 -07005313 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005314 if (!mEndCallKeyHandled) {
5315 mHandler.removeCallbacks(mEndCallLongPress);
5316 if (!canceled) {
5317 if ((mEndcallBehavior
5318 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5319 if (goHome()) {
5320 break;
5321 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005322 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005323 if ((mEndcallBehavior
5324 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5325 mPowerManager.goToSleep(event.getEventTime(),
5326 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5327 isWakeKey = false;
5328 }
Jeff Brown4d396052010-10-29 21:50:21 -07005329 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005330 }
Jeff Brown4d396052010-10-29 21:50:21 -07005331 }
5332 break;
5333 }
5334
5335 case KeyEvent.KEYCODE_POWER: {
5336 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005337 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005338 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005339 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005340 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005341 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005342 }
5343 break;
5344 }
5345
Jeff Brown6212a492014-03-07 13:58:47 -08005346 case KeyEvent.KEYCODE_SLEEP: {
5347 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005348 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005349 if (!mPowerManager.isInteractive()) {
5350 useHapticFeedback = false; // suppress feedback if already non-interactive
5351 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005352 if (down) {
5353 sleepPress(event.getEventTime());
5354 } else {
5355 sleepRelease(event.getEventTime());
5356 }
Jeff Brown6212a492014-03-07 13:58:47 -08005357 break;
5358 }
5359
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -07005360 case KeyEvent.KEYCODE_SOFT_SLEEP: {
5361 result &= ~ACTION_PASS_TO_USER;
5362 isWakeKey = false;
5363 if (!down) {
5364 mPowerManagerInternal.setUserInactiveOverrideFromWindowManager();
5365 }
5366 break;
5367 }
5368
Jeff Brown6212a492014-03-07 13:58:47 -08005369 case KeyEvent.KEYCODE_WAKEUP: {
5370 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005371 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005372 break;
5373 }
5374
Jeff Brown4d396052010-10-29 21:50:21 -07005375 case KeyEvent.KEYCODE_MEDIA_PLAY:
5376 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5377 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005378 case KeyEvent.KEYCODE_HEADSETHOOK:
5379 case KeyEvent.KEYCODE_MUTE:
5380 case KeyEvent.KEYCODE_MEDIA_STOP:
5381 case KeyEvent.KEYCODE_MEDIA_NEXT:
5382 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5383 case KeyEvent.KEYCODE_MEDIA_REWIND:
5384 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005385 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5386 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005387 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5388 // If the global session is active pass all media keys to it
5389 // instead of the active window.
5390 result &= ~ACTION_PASS_TO_USER;
5391 }
Jeff Brown4d396052010-10-29 21:50:21 -07005392 if ((result & ACTION_PASS_TO_USER) == 0) {
5393 // Only do this if we would otherwise not pass it to the user. In that
5394 // case, the PhoneWindow class will do the same thing, except it will
5395 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005396 // Note that we need to make a copy of the key event here because the
5397 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005398 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005399 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5400 new KeyEvent(event));
5401 msg.setAsynchronous(true);
5402 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005403 }
5404 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005405 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005406
Jeff Brown4d396052010-10-29 21:50:21 -07005407 case KeyEvent.KEYCODE_CALL: {
5408 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005409 TelecomManager telecomManager = getTelecommService();
5410 if (telecomManager != null) {
5411 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005412 Log.i(TAG, "interceptKeyBeforeQueueing:"
5413 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005414 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005415
Santos Cordon6848f722014-05-21 15:22:12 -07005416 // And *don't* pass this key thru to the current activity
5417 // (which is presumably the InCallScreen.)
5418 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005419 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005420 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005421 }
Jeff Brown4d396052010-10-29 21:50:21 -07005422 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005423 }
Michael Wright869a67c2014-08-26 19:33:06 -07005424 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5425 // Only do this if we would otherwise not pass it to the user. In that case,
5426 // interceptKeyBeforeDispatching would apply a similar but different policy in
5427 // order to invoke voice assist actions. Note that we need to make a copy of the
5428 // key event here because the original key event will be recycled when we return.
5429 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5430 mBroadcastWakeLock.acquire();
5431 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5432 keyguardActive ? 1 : 0, 0);
5433 msg.setAsynchronous(true);
5434 msg.sendToTarget();
5435 }
Jaewan Kim49117872016-01-19 17:24:08 +09005436 break;
5437 }
5438 case KeyEvent.KEYCODE_WINDOW: {
5439 if (mShortPressWindowBehavior == SHORT_PRESS_WINDOW_PICTURE_IN_PICTURE) {
5440 if (!down) {
Jaewan Kimc552b042016-01-18 16:08:45 +09005441 requestTvPictureInPicture(event);
Jaewan Kim49117872016-01-19 17:24:08 +09005442 }
5443 result &= ~ACTION_PASS_TO_USER;
5444 }
5445 break;
Michael Wright869a67c2014-08-26 19:33:06 -07005446 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005447 }
Jeff Brown26875502014-01-30 21:47:47 -08005448
Jeff Brownbae8e772014-06-12 19:59:45 -07005449 if (useHapticFeedback) {
5450 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5451 }
5452
Jeff Brown26875502014-01-30 21:47:47 -08005453 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005454 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005455 }
Bryce Lee584a4452014-10-21 15:55:55 -07005456
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005457 return result;
5458 }
5459
Jeff Brown1c2e4942012-11-06 16:32:01 -08005460 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005461 * Returns true if the key can have global actions attached to it.
5462 * We reserve all power management keys for the system since they require
5463 * very careful handling.
5464 */
5465 private static boolean isValidGlobalKey(int keyCode) {
5466 switch (keyCode) {
5467 case KeyEvent.KEYCODE_POWER:
5468 case KeyEvent.KEYCODE_WAKEUP:
5469 case KeyEvent.KEYCODE_SLEEP:
5470 return false;
5471 default:
5472 return true;
5473 }
5474 }
5475
5476 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005477 * When the screen is off we ignore some keys that might otherwise typically
5478 * be considered wake keys. We filter them out here.
5479 *
5480 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5481 * is always considered a wake key.
5482 */
5483 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5484 switch (keyCode) {
5485 // ignore volume keys unless docked
5486 case KeyEvent.KEYCODE_VOLUME_UP:
5487 case KeyEvent.KEYCODE_VOLUME_DOWN:
5488 case KeyEvent.KEYCODE_VOLUME_MUTE:
5489 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5490
5491 // ignore media and camera keys
5492 case KeyEvent.KEYCODE_MUTE:
5493 case KeyEvent.KEYCODE_HEADSETHOOK:
5494 case KeyEvent.KEYCODE_MEDIA_PLAY:
5495 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5496 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5497 case KeyEvent.KEYCODE_MEDIA_STOP:
5498 case KeyEvent.KEYCODE_MEDIA_NEXT:
5499 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5500 case KeyEvent.KEYCODE_MEDIA_REWIND:
5501 case KeyEvent.KEYCODE_MEDIA_RECORD:
5502 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005503 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005504 case KeyEvent.KEYCODE_CAMERA:
5505 return false;
5506 }
5507 return true;
5508 }
5509
5510
Jeff Brown56194eb2011-03-02 19:23:13 -08005511 /** {@inheritDoc} */
5512 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005513 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5514 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005515 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5516 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005517 return 0;
5518 }
Michael Wright70af00a2014-09-03 19:30:20 -07005519 }
Bryce Lee5c138322014-11-03 08:26:09 -08005520
Michael Wright70af00a2014-09-03 19:30:20 -07005521 if (shouldDispatchInputWhenNonInteractive()) {
5522 return ACTION_PASS_TO_USER;
5523 }
Bryce Lee5c138322014-11-03 08:26:09 -08005524
Bryce Lee812d7022014-11-10 13:33:28 -08005525 // If we have not passed the action up and we are in theater mode without dreaming,
5526 // there will be no dream to intercept the touch and wake into ambient. The device should
5527 // wake up in this case.
5528 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005529 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5530 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005531 }
5532
Jeff Brown037c33e2014-04-09 00:31:55 -07005533 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005534 }
5535
Michael Wright70af00a2014-09-03 19:30:20 -07005536 private boolean shouldDispatchInputWhenNonInteractive() {
Joe LaPennaf2b9b2d2015-11-17 22:22:37 +00005537 // Send events to keyguard while the screen is on.
5538 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
5539 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08005540 return true;
5541 }
5542
5543 // Send events to a dozing dream even if the screen is off since the dream
5544 // is in control of the state of the screen.
5545 IDreamManager dreamManager = getDreamManager();
5546
5547 try {
5548 if (dreamManager != null && dreamManager.isDreaming()) {
5549 return true;
5550 }
5551 } catch (RemoteException e) {
5552 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5553 }
5554
5555 // Otherwise, consume events since the user can't see what is being
5556 // interacted with.
5557 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005558 }
5559
RoboErik001c59c2015-01-26 15:53:51 -08005560 private void dispatchDirectAudioEvent(KeyEvent event) {
5561 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5562 return;
5563 }
5564 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005565 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5566 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005567 String pkgName = mContext.getOpPackageName();
5568 switch (keyCode) {
5569 case KeyEvent.KEYCODE_VOLUME_UP:
5570 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005571 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005572 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005573 } catch (RemoteException e) {
5574 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5575 }
5576 break;
5577 case KeyEvent.KEYCODE_VOLUME_DOWN:
5578 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005579 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005580 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005581 } catch (RemoteException e) {
5582 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5583 }
5584 break;
5585 case KeyEvent.KEYCODE_VOLUME_MUTE:
5586 try {
5587 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005588 getAudioService().adjustSuggestedStreamVolume(
5589 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005590 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005591 }
5592 } catch (RemoteException e) {
5593 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5594 }
5595 break;
5596 }
5597 }
5598
Jeff Brown40013652012-05-16 21:22:36 -07005599 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5600 if (DEBUG_INPUT) {
5601 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005602 }
5603
Jeff Brown40013652012-05-16 21:22:36 -07005604 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5605 if (DEBUG_INPUT) {
5606 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5607 }
5608
5609 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5610 mHavePendingMediaKeyRepeatWithWakeLock = false;
5611 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5612 }
5613
5614 dispatchMediaKeyWithWakeLockToAudioService(event);
5615
5616 if (event.getAction() == KeyEvent.ACTION_DOWN
5617 && event.getRepeatCount() == 0) {
5618 mHavePendingMediaKeyRepeatWithWakeLock = true;
5619
5620 Message msg = mHandler.obtainMessage(
5621 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5622 msg.setAsynchronous(true);
5623 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5624 } else {
5625 mBroadcastWakeLock.release();
5626 }
5627 }
5628
5629 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5630 mHavePendingMediaKeyRepeatWithWakeLock = false;
5631
5632 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5633 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5634 if (DEBUG_INPUT) {
5635 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5636 }
5637
5638 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5639 mBroadcastWakeLock.release();
5640 }
5641
5642 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5643 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005644 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005645 }
5646 }
5647
Michael Wright869a67c2014-08-26 19:33:06 -07005648 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005649 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5650 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5651 if (dic != null) {
5652 try {
5653 dic.exitIdle("voice-search");
5654 } catch (RemoteException e) {
5655 }
5656 }
Michael Wright869a67c2014-08-26 19:33:06 -07005657 Intent voiceIntent =
5658 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5659 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005660 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005661 mBroadcastWakeLock.release();
5662 }
5663
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005664 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005665 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005666 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005667 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5668 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5669 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005670 } else {
5671 try {
5672 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5673 ServiceManager.getService(Context.UI_MODE_SERVICE));
5674 mUiMode = uiModeService.getCurrentModeType();
5675 } catch (RemoteException e) {
5676 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005677 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005678 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005679 synchronized (mLock) {
5680 updateOrientationListenerLp();
5681 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005682 }
5683 };
5684
Jeff Brown6aaf2952012-10-05 16:01:08 -07005685 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5686 @Override
5687 public void onReceive(Context context, Intent intent) {
5688 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005689 if (mKeyguardDelegate != null) {
5690 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005691 }
5692 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005693 if (mKeyguardDelegate != null) {
5694 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005695 }
5696 }
5697 }
5698 };
5699
Christopher Tate5e08af02012-09-21 17:17:22 -07005700 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5701 @Override
5702 public void onReceive(Context context, Intent intent) {
5703 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5704 // tickle the settings observer: this first ensures that we're
5705 // observing the relevant settings for the newly-active user,
5706 // and then updates our own bookkeeping based on the now-
5707 // current user.
5708 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005709
5710 // force a re-application of focused window sysui visibility.
5711 // the window may never have been shown for this user
5712 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005713 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005714 mLastSystemUiFlags = 0;
5715 updateSystemUiVisibilityLw();
5716 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005717 }
5718 }
5719 };
5720
Adrian Roosddc8b272015-05-21 16:28:27 -07005721 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005722 @Override
5723 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005724 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5725 if (!isUserSetupComplete()) {
5726 // Swipe-up for navigation bar is disabled during setup
5727 return;
5728 }
5729 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5730 mNavigationBarController.showTransient();
5731 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005732 }
5733 };
5734
John Spurlocke1f366f2013-08-05 12:22:40 -04005735 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005736 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005737 if (!isUserSetupComplete()) {
5738 // Swipe-up for navigation bar is disabled during setup
5739 return;
5740 }
John Spurlock27735a42013-08-14 17:57:38 -04005741 boolean sb = mStatusBarController.checkShowTransientBarLw();
5742 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005743 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005744 // Don't show status bar when swiping on already visible navigation bar
5745 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005746 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005747 return;
5748 }
John Spurlock27735a42013-08-14 17:57:38 -04005749 if (sb) mStatusBarController.showTransient();
5750 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005751 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005752 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005753 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005754 }
5755 }
5756
Jeff Brown3ee549c2014-09-22 20:14:39 -07005757 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005758 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005759 public void startedGoingToSleep(int why) {
5760 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005761 if (mKeyguardDelegate != null) {
5762 mKeyguardDelegate.onStartedGoingToSleep(why);
5763 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005764 }
5765
5766 // Called on the PowerManager's Notifier thread.
5767 @Override
5768 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005769 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005770 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005771 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005772
5773 // We must get this work done here because the power manager will drop
5774 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005775 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005776 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005777 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005778 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005779 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005780 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005781 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005782 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005783 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005784 }
5785
Jeff Brown3ee549c2014-09-22 20:14:39 -07005786 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005787 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005788 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005789 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005790 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005791
Jeff Brown3ee549c2014-09-22 20:14:39 -07005792 // Since goToSleep performs these functions synchronously, we must
5793 // do the same here. We cannot post this work to a handler because
5794 // that might cause it to become reordered with respect to what
5795 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005796 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005797 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005798
Jeff Browna20dda42014-05-27 20:57:24 -07005799 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005800 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005801 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005802 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005803
Jim Miller5ecd8112013-01-09 18:50:26 -08005804 if (mKeyguardDelegate != null) {
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005805 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005806 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005807 }
5808
Jeff Brown416c49c2015-05-26 19:50:18 -07005809 // Called on the PowerManager's Notifier thread.
5810 @Override
5811 public void finishedWakingUp() {
5812 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5813 }
5814
5815 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005816 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005817 }
5818
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005819 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005820 final boolean theaterModeEnabled = isTheaterModeEnabled();
5821 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005822 return false;
5823 }
5824
Bryce Leed3896842015-06-23 17:06:51 -07005825 if (theaterModeEnabled) {
5826 Settings.Global.putInt(mContext.getContentResolver(),
5827 Settings.Global.THEATER_MODE_ON, 0);
5828 }
5829
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005830 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005831 return true;
5832 }
5833
Jeff Brown36c4db82014-09-19 12:05:31 -07005834 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005835 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005836 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005837 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005838 }
5839
Jeff Brown36c4db82014-09-19 12:05:31 -07005840 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005841 if (mKeyguardDelegate != null) {
5842 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5843 }
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005844 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005845 }
5846
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005847 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5848 // as well as enabling the orientation change logic/sensor.
5849 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5850 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005851 }
5852
5853 // Called on the DisplayManager's DisplayPowerController thread.
5854 @Override
5855 public void screenTurnedOff() {
5856 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5857
Jeff Brown48d1b142015-06-10 16:36:03 -07005858 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005859 synchronized (mLock) {
5860 mScreenOnEarly = false;
5861 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005862 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005863 mWindowManagerDrawComplete = false;
5864 mScreenOnListener = null;
5865 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005866
5867 if (mKeyguardDelegate != null) {
5868 mKeyguardDelegate.onScreenTurnedOff();
5869 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005870 }
5871 }
5872
Jeff Brown3ee549c2014-09-22 20:14:39 -07005873 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005874 @Override
5875 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005876 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005877
Jeff Brown48d1b142015-06-10 16:36:03 -07005878 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005879 synchronized (mLock) {
5880 mScreenOnEarly = true;
5881 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005882 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005883 mWindowManagerDrawComplete = false;
5884 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005885
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005886 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005887 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5888 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005889 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5890 } else {
5891 if (DEBUG_WAKEUP) Slog.d(TAG,
5892 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5893 finishKeyguardDrawn();
5894 }
5895 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005896 }
5897
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005898 // Called on the DisplayManager's DisplayPowerController thread.
5899 @Override
5900 public void screenTurnedOn() {
5901 synchronized (mLock) {
5902 if (mKeyguardDelegate != null) {
5903 mKeyguardDelegate.onScreenTurnedOn();
5904 }
5905 }
5906 }
5907
Jeff Brown36c4db82014-09-19 12:05:31 -07005908 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005909 synchronized (mLock) {
5910 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005911 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005912 }
5913
Jeff Brown36c4db82014-09-19 12:05:31 -07005914 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005915 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005916
5917 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005918 }
5919
Craig Mautner8a0da012014-05-31 15:13:37 -07005920 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005921 synchronized (mLock) {
5922 // We have just finished drawing screen content. Since the orientation listener
5923 // gets only installed when all windows are drawn, we try to install it again.
5924 updateOrientationListenerLp();
5925 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005926 final ScreenOnListener listener;
5927 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005928 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005929 if (DEBUG_WAKEUP) Slog.d(TAG,
5930 "finishScreenTurningOn: mAwake=" + mAwake
5931 + ", mScreenOnEarly=" + mScreenOnEarly
5932 + ", mScreenOnFully=" + mScreenOnFully
5933 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5934 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5935
5936 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5937 || (mAwake && !mKeyguardDrawComplete)) {
5938 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005939 }
5940
Jeff Brown3ee549c2014-09-22 20:14:39 -07005941 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5942 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005943 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005944 mScreenOnFully = true;
5945
5946 // Remember the first time we draw the keyguard so we know when we're done with
5947 // the main part of booting and can enable the screen and hide boot messages.
5948 if (!mKeyguardDrawnOnce && mAwake) {
5949 mKeyguardDrawnOnce = true;
5950 enableScreen = true;
5951 if (mBootMessageNeedsHiding) {
5952 mBootMessageNeedsHiding = false;
5953 hideBootMessages();
5954 }
5955 } else {
5956 enableScreen = false;
5957 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005958 }
5959
Jeff Brown3ee549c2014-09-22 20:14:39 -07005960 if (listener != null) {
5961 listener.onScreenOn();
5962 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005963
Jeff Brown3ee549c2014-09-22 20:14:39 -07005964 if (enableScreen) {
5965 try {
5966 mWindowManager.enableScreenIfNeeded();
5967 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005968 }
Craig Mautnera631d492014-08-05 15:16:01 -07005969 }
5970 }
5971
5972 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005973 synchronized (mLock) {
5974 if (!mKeyguardDrawnOnce) {
5975 mBootMessageNeedsHiding = true;
5976 return; // keyguard hasn't drawn the first time yet, not done booting
5977 }
Craig Mautnera631d492014-08-05 15:16:01 -07005978 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005979
5980 if (mBootMsgDialog != null) {
5981 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5982 mBootMsgDialog.dismiss();
5983 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005984 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005985 }
5986
5987 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005988 public boolean isScreenOn() {
5989 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005990 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005991
Dianne Hackborn08743722009-12-21 12:16:51 -08005992 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005993 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005994 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005995 if (mKeyguardDelegate != null) {
5996 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005997 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005998 }
5999
6000 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006001 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006002 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08006003 if (mKeyguardDelegate != null) {
6004 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006005 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006006 }
6007
Jim Millerab954542014-10-10 18:21:49 -07006008 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08006009 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07006010 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006011 }
6012
Mike Lockwood520d8bc2011-02-18 13:23:13 -05006013 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006014 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05006015 public boolean isKeyguardLocked() {
6016 return keyguardOn();
6017 }
6018
6019 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006020 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05006021 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08006022 if (mKeyguardDelegate == null) return false;
6023 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05006024 }
6025
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006026 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006027 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07006028 public boolean isKeyguardShowingOrOccluded() {
6029 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
6030 }
6031
6032 /** {@inheritDoc} */
6033 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006034 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08006035 if (mKeyguardDelegate == null) return false;
6036 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006037 }
6038
Jose Lima9546b202014-07-02 17:21:51 -07006039 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07006040 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07006041 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07006042 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05006043 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07006044 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05006045 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02006046 // ask the keyguard to prompt the user to authenticate if necessary
6047 mKeyguardDelegate.dismiss();
6048 }
6049 });
6050 }
6051 }
6052
6053 public void notifyActivityDrawnForKeyguardLw() {
6054 if (mKeyguardDelegate != null) {
6055 mHandler.post(new Runnable() {
6056 @Override
6057 public void run() {
6058 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05006059 }
6060 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07006061 }
6062 }
6063
Jorim Jaggicff0acb2014-03-31 16:35:15 +02006064 @Override
6065 public boolean isKeyguardDrawnLw() {
6066 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006067 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02006068 }
6069 }
6070
Jorim Jaggi0d674622014-05-21 01:34:15 +02006071 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02006072 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02006073 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07006074 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02006075 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02006076 }
6077 }
6078
Jorim Jaggi737af722015-12-31 10:42:27 +01006079 @Override
6080 public void getStableInsetsLw(int displayRotation, int displayWidth, int displayHeight,
6081 Rect outInsets) {
6082 outInsets.setEmpty();
6083 if (mStatusBar != null) {
6084 outInsets.top = mStatusBarHeight;
6085 }
6086 if (mNavigationBar != null) {
6087 if (isNavigationBarOnBottom(displayWidth, displayHeight)) {
6088 outInsets.bottom = getNavigationBarHeight(displayRotation, mUiMode);
6089 } else {
6090 outInsets.right = getNavigationBarWidth(displayRotation, mUiMode);
6091 }
6092 }
6093 }
6094
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006095 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01006096 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006097 }
6098
6099 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01006100 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006101 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07006102
Jeff Brown01a98dd2011-09-20 15:08:29 -07006103 @Override
6104 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006105 if (false) {
6106 Slog.v(TAG, "rotationForOrientationLw(orient="
6107 + orientation + ", last=" + lastRotation
6108 + "); user=" + mUserRotation + " "
6109 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
6110 ? "USER_ROTATION_LOCKED" : "")
6111 );
6112 }
6113
Craig Mautner46ac6fa2013-08-01 10:06:34 -07006114 if (mForceDefaultOrientation) {
6115 return Surface.ROTATION_0;
6116 }
6117
The Android Open Source Project0727d222009-03-11 12:11:58 -07006118 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07006119 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
6120 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07006121 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07006122 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006123
Jeff Browndec6cf42011-11-15 14:08:20 -08006124 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07006125 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07006126 // Ignore sensor when lid switch is open and rotation is forced.
6127 preferredRotation = mLidOpenRotation;
6128 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07006129 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07006130 // Ignore sensor when in car dock unless explicitly enabled.
6131 // This case can override the behavior of NOSENSOR, and can also
6132 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07006133 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07006134 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08006135 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6136 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
6137 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07006138 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07006139 // Ignore sensor when in desk dock unless explicitly enabled.
6140 // This case can override the behavior of NOSENSOR, and can also
6141 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07006142 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07006143 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006144 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
6145 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08006146 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006147 preferredRotation = mDemoHdmiRotation;
6148 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
6149 && mUndockedHdmiRotation >= 0) {
6150 // Ignore sensor when plugged into HDMI and an undocked orientation has
6151 // been specified in the configuration (only for legacy devices without
6152 // full multi-display support).
6153 // Note that the dock orientation overrides the HDMI orientation.
6154 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08006155 } else if (mDemoRotationLock) {
6156 // Ignore sensor when demo rotation lock is enabled.
6157 // Note that the dock orientation and HDMI rotation lock override this.
6158 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006159 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
6160 // Application just wants to remain locked in the last rotation.
6161 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08006162 } else if (!mSupportAutoRotation) {
6163 // If we don't support auto-rotation then bail out here and ignore
6164 // the sensor and any rotation lock settings.
6165 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07006166 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07006167 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006168 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
6169 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
6170 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
6171 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07006172 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
6173 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
6174 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
6175 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
6176 // Otherwise, use sensor only if requested by the application or enabled
6177 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07006178 if (mAllowAllRotations < 0) {
6179 // Can't read this during init() because the context doesn't
6180 // have display metrics at that time so we cannot determine
6181 // tablet vs. phone then.
6182 mAllowAllRotations = mContext.getResources().getBoolean(
6183 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
6184 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006185 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07006186 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006187 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
6188 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07006189 preferredRotation = sensorRotation;
6190 } else {
6191 preferredRotation = lastRotation;
6192 }
Jeff Brown207673cd2012-06-05 17:47:11 -07006193 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
6194 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
6195 // Apply rotation lock. Does not apply to NOSENSOR.
6196 // The idea is that the user rotation expresses a weak preference for the direction
6197 // of gravity and as NOSENSOR is never affected by gravity, then neither should
6198 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07006199 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08006200 } else {
6201 // No overriding preference.
6202 // We will do exactly what the application asked us to do.
6203 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07006204 }
6205
Dianne Hackborne5439f22010-10-02 16:53:50 -07006206 switch (orientation) {
6207 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08006208 // Return portrait unless overridden.
6209 if (isAnyPortrait(preferredRotation)) {
6210 return preferredRotation;
6211 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07006212 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006213
Jeff Brown01a98dd2011-09-20 15:08:29 -07006214 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08006215 // Return landscape unless overridden.
6216 if (isLandscapeOrSeascape(preferredRotation)) {
6217 return preferredRotation;
6218 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006219 return mLandscapeRotation;
6220
6221 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08006222 // Return reverse portrait unless overridden.
6223 if (isAnyPortrait(preferredRotation)) {
6224 return preferredRotation;
6225 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006226 return mUpsideDownRotation;
6227
6228 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08006229 // Return seascape unless overridden.
6230 if (isLandscapeOrSeascape(preferredRotation)) {
6231 return preferredRotation;
6232 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006233 return mSeascapeRotation;
6234
6235 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006236 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07006237 // Return either landscape rotation.
6238 if (isLandscapeOrSeascape(preferredRotation)) {
6239 return preferredRotation;
6240 }
6241 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08006242 return lastRotation;
6243 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006244 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006245
Jeff Brown01a98dd2011-09-20 15:08:29 -07006246 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006247 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07006248 // Return either portrait rotation.
6249 if (isAnyPortrait(preferredRotation)) {
6250 return preferredRotation;
6251 }
6252 if (isAnyPortrait(lastRotation)) {
6253 return lastRotation;
6254 }
6255 return mPortraitRotation;
6256
6257 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07006258 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
6259 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07006260 if (preferredRotation >= 0) {
6261 return preferredRotation;
6262 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07006263 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05006264 }
6265 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006266 }
6267
Jeff Brown01a98dd2011-09-20 15:08:29 -07006268 @Override
6269 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
6270 switch (orientation) {
6271 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
6272 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
6273 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
6274 return isAnyPortrait(rotation);
6275
6276 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
6277 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
6278 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
6279 return isLandscapeOrSeascape(rotation);
6280
6281 default:
6282 return true;
6283 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006284 }
6285
Jeff Brownc0347aa2011-09-23 17:26:09 -07006286 @Override
6287 public void setRotationLw(int rotation) {
6288 mOrientationListener.setCurrentRotation(rotation);
6289 }
6290
Jeff Brown01a98dd2011-09-20 15:08:29 -07006291 private boolean isLandscapeOrSeascape(int rotation) {
6292 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006293 }
6294
Jeff Brown01a98dd2011-09-20 15:08:29 -07006295 private boolean isAnyPortrait(int rotation) {
6296 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006297 }
6298
Jose Lima9546b202014-07-02 17:21:51 -07006299 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006300 public int getUserRotationMode() {
6301 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07006302 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
6303 WindowManagerPolicy.USER_ROTATION_FREE :
6304 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006305 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006306
6307 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07006308 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006309 public void setUserRotationMode(int mode, int rot) {
6310 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006311
6312 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006313 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006314 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006315 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006316 rot,
6317 UserHandle.USER_CURRENT);
6318 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006319 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006320 0,
6321 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006322 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006323 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006324 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006325 1,
6326 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006327 }
6328 }
6329
Jose Lima9546b202014-07-02 17:21:51 -07006330 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006331 public void setSafeMode(boolean safeMode) {
6332 mSafeMode = safeMode;
6333 performHapticFeedbackLw(null, safeMode
6334 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6335 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006336 }
Craig Mautnereda67292013-04-28 13:50:14 -07006337
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006338 static long[] getLongIntArray(Resources r, int resid) {
6339 int[] ar = r.getIntArray(resid);
6340 if (ar == null) {
6341 return null;
6342 }
6343 long[] out = new long[ar.length];
6344 for (int i=0; i<ar.length; i++) {
6345 out[i] = ar[i];
6346 }
6347 return out;
6348 }
Craig Mautnereda67292013-04-28 13:50:14 -07006349
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006350 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006351 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006352 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006353 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006354 mKeyguardDelegate.onSystemReady();
6355
Michael Wright3818c922014-09-02 13:59:07 -07006356 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006357 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006358 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006359 synchronized (mLock) {
6360 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006361 mSystemReady = true;
6362 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006363 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006364 public void run() {
6365 updateSettings();
6366 }
6367 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006368
6369 bindKeyguardNow = mDeferBindKeyguard;
6370 if (bindKeyguardNow) {
6371 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6372 mDeferBindKeyguard = false;
6373 }
6374 }
6375
6376 if (bindKeyguardNow) {
6377 mKeyguardDelegate.bindService(mContext);
6378 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006379 }
Michael Wrighta4d22d72015-09-16 23:19:26 +01006380 mSystemGestures.systemReady();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006381 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006382
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006383 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006384 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006385 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006386 boolean bindKeyguardNow = false;
6387 synchronized (mLock) {
6388 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6389 // in systemReady if not.
6390 if (mKeyguardDelegate != null) {
6391 bindKeyguardNow = true;
6392 } else {
6393 // Because mKeyguardDelegate is null, we know that the synchronized block in
6394 // systemReady didn't run yet and setting this will actually have an effect.
6395 mDeferBindKeyguard = true;
6396 }
6397 }
6398 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006399 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006400 mKeyguardDelegate.onBootCompleted();
6401 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006402 synchronized (mLock) {
6403 mSystemBooted = true;
6404 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006405 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006406 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006407 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006408 }
6409
Dianne Hackborn661cd522011-08-22 00:26:20 -07006410 ProgressDialog mBootMsgDialog = null;
6411
6412 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006413 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006414 public void showBootMessage(final CharSequence msg, final boolean always) {
6415 mHandler.post(new Runnable() {
6416 @Override public void run() {
6417 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006418 int theme;
Jaewan Kim49117872016-01-19 17:24:08 +09006419 if (mContext.getPackageManager().hasSystemFeature(FEATURE_WATCH)) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006420 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
Jaewan Kim49117872016-01-19 17:24:08 +09006421 } else if (mContext.getPackageManager().hasSystemFeature(FEATURE_TELEVISION)) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006422 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6423 } else {
6424 theme = 0;
6425 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006426
6427 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006428 // This dialog will consume all events coming in to
6429 // it, to avoid it trying to do things too early in boot.
6430 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6431 return true;
6432 }
6433 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6434 return true;
6435 }
6436 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6437 return true;
6438 }
6439 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6440 return true;
6441 }
6442 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6443 return true;
6444 }
6445 @Override public boolean dispatchPopulateAccessibilityEvent(
6446 AccessibilityEvent event) {
6447 return true;
6448 }
6449 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006450 if (mContext.getPackageManager().isUpgrade()) {
6451 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6452 } else {
6453 mBootMsgDialog.setTitle(R.string.android_start_title);
6454 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006455 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6456 mBootMsgDialog.setIndeterminate(true);
6457 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006458 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006459 mBootMsgDialog.getWindow().addFlags(
6460 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6461 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6462 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006463 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6464 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6465 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006466 mBootMsgDialog.setCancelable(false);
6467 mBootMsgDialog.show();
6468 }
6469 mBootMsgDialog.setMessage(msg);
6470 }
6471 });
6472 }
6473
6474 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006475 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006476 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006477 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006478 }
6479
Mike Lockwood28569302010-01-28 11:54:40 -05006480 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006481 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006482 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006483 // ***************************************
6484 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6485 // ***************************************
6486 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6487 // WITH ITS LOCKS HELD.
6488 //
6489 // This code must be VERY careful about the locks
6490 // it acquires.
6491 // In fact, the current code acquires way too many,
6492 // and probably has lurking deadlocks.
6493
Mike Lockwood28569302010-01-28 11:54:40 -05006494 synchronized (mScreenLockTimeout) {
6495 if (mLockScreenTimerActive) {
6496 // reset the timer
6497 mHandler.removeCallbacks(mScreenLockTimeout);
6498 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6499 }
6500 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006501 }
6502
Adam Cohenf7522022012-10-03 20:03:18 -07006503 class ScreenLockTimeout implements Runnable {
6504 Bundle options;
6505
6506 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006507 public void run() {
6508 synchronized (this) {
6509 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006510 if (mKeyguardDelegate != null) {
6511 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006512 }
Mike Lockwood28569302010-01-28 11:54:40 -05006513 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006514 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006515 }
6516 }
Mike Lockwood28569302010-01-28 11:54:40 -05006517
Adam Cohenf7522022012-10-03 20:03:18 -07006518 public void setLockOptions(Bundle options) {
6519 this.options = options;
6520 }
6521 }
6522
6523 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6524
Jose Lima9546b202014-07-02 17:21:51 -07006525 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006526 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006527 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6528 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006529 if (options != null) {
6530 // In case multiple calls are made to lockNow, we don't wipe out the options
6531 // until the runnable actually executes.
6532 mScreenLockTimeout.setLockOptions(options);
6533 }
Jim Miller93c518e2012-01-17 15:55:31 -08006534 mHandler.post(mScreenLockTimeout);
6535 }
6536
Mike Lockwood28569302010-01-28 11:54:40 -05006537 private void updateLockScreenTimeout() {
6538 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006539 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006540 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006541 if (mLockScreenTimerActive != enable) {
6542 if (enable) {
6543 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
Jim Miller2967f482016-01-07 15:05:32 -08006544 mHandler.removeCallbacks(mScreenLockTimeout); // remove any pending requests
Mike Lockwood28569302010-01-28 11:54:40 -05006545 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6546 } else {
6547 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6548 mHandler.removeCallbacks(mScreenLockTimeout);
6549 }
6550 mLockScreenTimerActive = enable;
6551 }
6552 }
6553 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006554
Jeff Brown061ea992015-04-17 19:55:47 -07006555 private void updateDreamingSleepToken(boolean acquire) {
6556 if (acquire) {
6557 if (mDreamingSleepToken == null) {
6558 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6559 }
6560 } else {
6561 if (mDreamingSleepToken != null) {
6562 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006563 mDreamingSleepToken = null;
6564 }
6565 }
6566 }
6567
6568 private void updateScreenOffSleepToken(boolean acquire) {
6569 if (acquire) {
6570 if (mScreenOffSleepToken == null) {
6571 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6572 }
6573 } else {
6574 if (mScreenOffSleepToken != null) {
6575 mScreenOffSleepToken.release();
6576 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006577 }
6578 }
6579 }
6580
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006581 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006582 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006583 public void enableScreenAfterBoot() {
6584 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006585 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006586 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006587 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006588
Jeff Brownc458ce92012-04-30 14:58:40 -07006589 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006590 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006591 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006592 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006593 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Edward Savage-Jones7def60d2015-11-13 13:27:03 +01006594 } else if (mLidState == LID_CLOSED && mLidControlsScreenLock) {
6595 mWindowManagerFuncs.lockDeviceNow();
Jeff Brownc458ce92012-04-30 14:58:40 -07006596 }
Jeff Browna20dda42014-05-27 20:57:24 -07006597
6598 synchronized (mLock) {
6599 updateWakeGestureListenerLp();
6600 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006601 }
6602
Jeff Brown4f5fa282014-06-12 19:19:15 -07006603 void updateUiMode() {
6604 if (mUiModeManager == null) {
6605 mUiModeManager = IUiModeManager.Stub.asInterface(
6606 ServiceManager.getService(Context.UI_MODE_SERVICE));
6607 }
6608 try {
6609 mUiMode = mUiModeManager.getCurrentModeType();
6610 } catch (RemoteException e) {
6611 }
6612 }
6613
Jeff Brown01a98dd2011-09-20 15:08:29 -07006614 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006615 try {
6616 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006617 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6618 } catch (RemoteException e) {
6619 // Ignore
6620 }
6621 }
6622
6623 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6624 try {
6625 //set orientation on WindowManager
6626 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006627 } catch (RemoteException e) {
6628 // Ignore
6629 }
6630 }
6631
Daniel Sandler6396c722013-04-16 20:19:09 -04006632 /**
6633 * Return an Intent to launch the currently active dock app as home. Returns
6634 * null if the standard home should be launched, which is the case if any of the following is
6635 * true:
6636 * <ul>
6637 * <li>The device is not in either car mode or desk mode
keunyounga7710492015-09-23 11:33:58 -07006638 * <li>The device is in car mode but mEnableCarDockHomeCapture is false
Daniel Sandler6396c722013-04-16 20:19:09 -04006639 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6640 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6641 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6642 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006643 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006644 */
6645 Intent createHomeDockIntent() {
6646 Intent intent = null;
6647
6648 // What home does is based on the mode, not the dock state. That
6649 // is, when in car mode you should be taken to car home regardless
6650 // of whether we are actually in a car dock.
6651 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
keunyounga7710492015-09-23 11:33:58 -07006652 if (mEnableCarDockHomeCapture) {
Daniel Sandler6396c722013-04-16 20:19:09 -04006653 intent = mCarDockIntent;
6654 }
6655 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6656 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6657 intent = mDeskDockIntent;
6658 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006659 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6660 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6661 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6662 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6663 // Always launch dock home from home when watch is docked, if it exists.
6664 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006665 }
6666
6667 if (intent == null) {
6668 return null;
6669 }
6670
6671 ActivityInfo ai = null;
6672 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6673 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006674 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006675 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006676 if (info != null) {
6677 ai = info.activityInfo;
6678 }
6679 if (ai != null
6680 && ai.metaData != null
6681 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6682 intent = new Intent(intent);
6683 intent.setClassName(ai.packageName, ai.name);
6684 return intent;
6685 }
6686
6687 return null;
6688 }
6689
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006690 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6691 if (awakenFromDreams) {
6692 awakenDreams();
6693 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006694
6695 Intent dock = createHomeDockIntent();
6696 if (dock != null) {
6697 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006698 if (fromHomeKey) {
6699 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6700 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006701 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006702 return;
6703 } catch (ActivityNotFoundException e) {
6704 }
6705 }
6706
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006707 Intent intent;
6708
6709 if (fromHomeKey) {
6710 intent = new Intent(mHomeIntent);
6711 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6712 } else {
6713 intent = mHomeIntent;
6714 }
6715
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006716 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006717 }
Craig Mautnereda67292013-04-28 13:50:14 -07006718
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006719 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006720 * goes to the home screen
6721 * @return whether it did anything
6722 */
6723 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006724 if (!isUserSetupComplete()) {
6725 Slog.i(TAG, "Not going home because user setup is in progress.");
6726 return false;
6727 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006728 if (false) {
6729 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006730 try {
6731 ActivityManagerNative.getDefault().stopAppSwitches();
6732 } catch (RemoteException e) {
6733 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006734 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006735 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006736 } else {
6737 // This code brings home to the front or, if it is already
6738 // at the front, puts the device to sleep.
6739 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006740 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6741 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6742 Log.d(TAG, "UTS-TEST-MODE");
6743 } else {
6744 ActivityManagerNative.getDefault().stopAppSwitches();
6745 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006746 Intent dock = createHomeDockIntent();
6747 if (dock != null) {
6748 int result = ActivityManagerNative.getDefault()
6749 .startActivityAsUser(null, null, dock,
6750 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6751 null, null, 0,
6752 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006753 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006754 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6755 return false;
6756 }
6757 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006758 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006759 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006760 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006761 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006762 null, null, 0,
6763 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006764 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006765 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006766 return false;
6767 }
6768 } catch (RemoteException ex) {
6769 // bummer, the activity manager, which is in this process, is dead
6770 }
6771 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006772 return true;
6773 }
Craig Mautnereda67292013-04-28 13:50:14 -07006774
6775 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006776 public void setCurrentOrientationLw(int newOrientation) {
6777 synchronized (mLock) {
6778 if (newOrientation != mCurrentAppOrientation) {
6779 mCurrentAppOrientation = newOrientation;
6780 updateOrientationListenerLp();
6781 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006782 }
6783 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006784
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006785 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6786 if (!isGlobalAccessibilityGestureEnabled()) {
6787 return;
6788 }
6789 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6790 Context.AUDIO_SERVICE);
6791 if (audioManager.isSilentMode()) {
6792 return;
6793 }
6794 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6795 Settings.System.DEFAULT_NOTIFICATION_URI);
6796 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6797 ringTone.play();
6798 }
Craig Mautnereda67292013-04-28 13:50:14 -07006799
Bryce Lee584a4452014-10-21 15:55:55 -07006800 private boolean isTheaterModeEnabled() {
6801 return Settings.Global.getInt(mContext.getContentResolver(),
6802 Settings.Global.THEATER_MODE_ON, 0) == 1;
6803 }
6804
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006805 private boolean isGlobalAccessibilityGestureEnabled() {
6806 return Settings.Global.getInt(mContext.getContentResolver(),
6807 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6808 }
6809
Craig Mautnereda67292013-04-28 13:50:14 -07006810 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006811 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006812 if (!mVibrator.hasVibrator()) {
6813 return false;
6814 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006815 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6816 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006817 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006818 return false;
6819 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006820 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006821 switch (effectId) {
6822 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006823 pattern = mLongPressVibePattern;
6824 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006825 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006826 pattern = mVirtualKeyVibePattern;
6827 break;
6828 case HapticFeedbackConstants.KEYBOARD_TAP:
6829 pattern = mKeyboardTapVibePattern;
6830 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006831 case HapticFeedbackConstants.CLOCK_TICK:
6832 pattern = mClockTickVibePattern;
6833 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006834 case HapticFeedbackConstants.CALENDAR_DATE:
6835 pattern = mCalendarDateVibePattern;
6836 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006837 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006838 pattern = mSafeModeDisabledVibePattern;
6839 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006840 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006841 pattern = mSafeModeEnabledVibePattern;
6842 break;
Mady Mellore8608912015-06-05 09:02:55 -07006843 case HapticFeedbackConstants.CONTEXT_CLICK:
6844 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006845 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006846 default:
6847 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006848 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006849 int owningUid;
6850 String owningPackage;
6851 if (win != null) {
6852 owningUid = win.getOwningUid();
6853 owningPackage = win.getOwningPackage();
6854 } else {
6855 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006856 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006857 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006858 if (pattern.length == 1) {
6859 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006860 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006861 } else {
6862 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006863 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006864 }
6865 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006866 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006867
6868 @Override
6869 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006870 }
6871
Jeff Brownc38c9be2012-10-04 13:16:19 -07006872 @Override
6873 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006874 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006875 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006876 }
6877 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006878
Dianne Hackborndf89e652011-10-06 22:35:11 -07006879 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006880 // If there is no window focused, there will be nobody to handle the events
6881 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006882 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6883 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006884 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006885 return 0;
6886 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006887 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006888 // We are updating at a point where the keyguard has gotten
6889 // focus, but we were last in a state where the top window is
6890 // hiding it. This is probably because the keyguard as been
6891 // shown while the top window was displayed, so we want to ignore
6892 // it here because this is just a very transient change and it
6893 // will quickly lose focus once it correctly gets hidden.
6894 return 0;
6895 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006896
John Spurlock1db8b682014-02-18 11:18:59 -05006897 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006898 & ~mResettingSystemUiFlags
6899 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006900 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006901 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006902 }
Thanh Hai Mai6c009f52015-09-01 16:27:32 -07006903
6904 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6905 tmpVisibility |= StatusBarManager.DISABLE_RECENT;
6906 }
6907
Jorim Jaggi86905582016-02-09 21:36:09 -08006908 final int fullscreenVisibility = updateLightStatusBarLw(0 /* vis */,
6909 mTopFullscreenOpaqueWindowState, mTopFullscreenOpaqueOrDimmingWindowState);
6910 final int dockedVisibility = updateLightStatusBarLw(0 /* vis */,
6911 mTopDockedOpaqueWindowState, mTopDockedOpaqueOrDimmingWindowState);
6912 mWindowManagerFuncs.getStackBounds(HOME_STACK_ID, mNonDockedStackBounds);
6913 mWindowManagerFuncs.getStackBounds(DOCKED_STACK_ID, mDockedStackBounds);
John Spurlock79da8332013-09-20 12:04:47 -04006914 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006915 final int diff = visibility ^ mLastSystemUiFlags;
Jorim Jaggi86905582016-02-09 21:36:09 -08006916 final int fullscreenDiff = fullscreenVisibility ^ mLastFullscreenStackSysUiFlags;
6917 final int dockedDiff = dockedVisibility ^ mLastDockedStackSysUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006918 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Jorim Jaggi86905582016-02-09 21:36:09 -08006919 if (diff == 0 && fullscreenDiff == 0 && dockedDiff == 0 && mLastFocusNeedsMenu == needsMenu
6920 && mFocusedApp == win.getAppToken()
6921 && mLastNonDockedStackBounds.equals(mNonDockedStackBounds)
6922 && mLastDockedStackBounds.equals(mDockedStackBounds)) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006923 return 0;
6924 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006925 mLastSystemUiFlags = visibility;
Jorim Jaggi86905582016-02-09 21:36:09 -08006926 mLastFullscreenStackSysUiFlags = fullscreenVisibility;
6927 mLastDockedStackSysUiFlags = dockedVisibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006928 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006929 mFocusedApp = win.getAppToken();
Jorim Jaggi86905582016-02-09 21:36:09 -08006930 final Rect fullscreenStackBounds = new Rect(mNonDockedStackBounds);
6931 final Rect dockedStackBounds = new Rect(mDockedStackBounds);
Dianne Hackborndf89e652011-10-06 22:35:11 -07006932 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006933 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006934 public void run() {
Jorim Jaggi86905582016-02-09 21:36:09 -08006935 StatusBarManagerInternal statusbar = getStatusBarManagerInternal();
6936 if (statusbar != null) {
6937 statusbar.setSystemUiVisibility(visibility, fullscreenVisibility,
6938 dockedVisibility, 0xffffffff, fullscreenStackBounds,
6939 dockedStackBounds, win.toString());
6940 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006941 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006942 }
6943 });
6944 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006945 }
6946
Jorim Jaggi86905582016-02-09 21:36:09 -08006947 private int updateLightStatusBarLw(int vis, WindowState opaque, WindowState opaqueOrDimming) {
Adrian Rooscd3884d2015-02-18 17:25:23 +01006948 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6949 ? mStatusBar
Jorim Jaggi86905582016-02-09 21:36:09 -08006950 : opaqueOrDimming;
Adrian Rooscd3884d2015-02-18 17:25:23 +01006951
6952 if (statusColorWin != null) {
Jorim Jaggi86905582016-02-09 21:36:09 -08006953 if (statusColorWin == opaque) {
Adrian Rooscd3884d2015-02-18 17:25:23 +01006954 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6955 // its light flag.
6956 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6957 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6958 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6959 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6960 // Otherwise if it's dimming, clear the light flag.
6961 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6962 }
6963 }
6964 return vis;
6965 }
6966
John Spurlock79da8332013-09-20 12:04:47 -04006967 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006968 final boolean dockedStackVisible = mWindowManagerInternal.isStackVisible(DOCKED_STACK_ID);
6969 final boolean freeformStackVisible =
6970 mWindowManagerInternal.isStackVisible(FREEFORM_WORKSPACE_STACK_ID);
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08006971 final boolean resizing = mWindowManagerInternal.isDockedDividerResizing();
6972
6973 // We need to force system bars when the docked stack is visible, when the freeform stack
6974 // is visible but also when we are resizing for the transitions when docked stack
6975 // visibility changes.
6976 final boolean forceShowSystemBars = dockedStackVisible || freeformStackVisible || resizing;
Jorim Jaggi4fa78922015-11-30 17:13:56 -08006977 final boolean forceOpaqueSystemBars = forceShowSystemBars && !mForceStatusBarFromKeyguard;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006978
John Spurlockbd957402013-10-03 11:38:39 -04006979 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006980 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6981 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006982 : mTopFullscreenOpaqueWindowState;
6983 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6984 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6985
John Spurlock27735a42013-08-14 17:57:38 -04006986 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006987 int type = win.getAttrs().type;
6988 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006989 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006990 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6991 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006992 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006993 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6994 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006995 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006996 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6997 }
John Spurlockbd957402013-10-03 11:38:39 -04006998 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006999 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04007000
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007001 if ((!areTranslucentBarsAllowed() && transWin != mStatusBar)
7002 || forceOpaqueSystemBars) {
Adrian Roosea562512014-05-05 13:33:03 +02007003 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
7004 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07007005 }
7006
Jorim Jaggi4fa78922015-11-30 17:13:56 -08007007 if (mForceWindowDrawsStatusBarBackground) {
7008 vis |= View.STATUS_BAR_TRANSPARENT;
7009 vis &= ~View.STATUS_BAR_TRANSLUCENT;
7010 }
7011
John Spurlock27735a42013-08-14 17:57:38 -04007012 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04007013 boolean immersiveSticky =
7014 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007015 final boolean hideStatusBarWM =
7016 mTopFullscreenOpaqueWindowState != null
7017 && (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04007018 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007019 final boolean hideStatusBarSysui =
John Spurlock27735a42013-08-14 17:57:38 -04007020 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007021 final boolean hideNavBarSysui =
John Spurlockf1a36642013-10-12 17:50:42 -04007022 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04007023
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007024 final boolean transientStatusBarAllowed = mStatusBar != null
7025 && (statusBarHasFocus || (!forceShowSystemBars
7026 && (hideStatusBarWM || (hideStatusBarSysui && immersiveSticky))));
John Spurlock27735a42013-08-14 17:57:38 -04007027
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007028 final boolean transientNavBarAllowed = mNavigationBar != null
7029 && !forceShowSystemBars && hideNavBarSysui && immersiveSticky;
John Spurlockf1a36642013-10-12 17:50:42 -04007030
Adrian Roosddc8b272015-05-21 16:28:27 -07007031 final long now = SystemClock.uptimeMillis();
7032 final boolean pendingPanic = mPendingPanicGestureUptime != 0
7033 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
7034 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
7035 // The user performed the panic gesture recently, we're about to hide the bars,
7036 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
7037 mPendingPanicGestureUptime = 0;
7038 mStatusBarController.showTransient();
7039 mNavigationBarController.showTransient();
7040 }
7041
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007042 final boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04007043 && !transientStatusBarAllowed && hideStatusBarSysui;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007044 final boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04007045 && !transientNavBarAllowed;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007046 if (denyTransientStatus || denyTransientNav || forceShowSystemBars) {
John Spurlock27735a42013-08-14 17:57:38 -04007047 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04007048 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08007049 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04007050 }
John Spurlock27735a42013-08-14 17:57:38 -04007051
Selim Cinekf98702e2015-05-20 22:48:40 -07007052 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
7053 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
7054 final boolean navAllowedHidden = immersive || immersiveSticky;
7055
Selim Cinekd6623612015-05-22 18:56:22 -07007056 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
7057 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07007058 // We can't hide the navbar from this window otherwise the input consumer would not get
7059 // the input events.
7060 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
7061 }
7062
John Spurlock27735a42013-08-14 17:57:38 -04007063 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
7064
7065 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04007066 boolean oldImmersiveMode = isImmersiveMode(oldVis);
7067 boolean newImmersiveMode = isImmersiveMode(vis);
7068 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04007069 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07007070 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
7071 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04007072 }
John Spurlock27735a42013-08-14 17:57:38 -04007073
John Spurlockf1a36642013-10-12 17:50:42 -04007074 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
7075
John Spurlocke1f366f2013-08-05 12:22:40 -04007076 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04007077 }
7078
John Spurlockf1a36642013-10-12 17:50:42 -04007079 private void clearClearableFlagsLw() {
7080 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
7081 if (newVal != mResettingSystemUiFlags) {
7082 mResettingSystemUiFlags = newVal;
7083 mWindowManagerFuncs.reevaluateStatusBarVisibility();
7084 }
7085 }
7086
7087 private boolean isImmersiveMode(int vis) {
7088 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04007089 return mNavigationBar != null
7090 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04007091 && (vis & flags) != 0
7092 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04007093 }
7094
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07007095 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04007096 * @return whether the navigation or status bar can be made translucent
7097 *
7098 * This should return true unless touch exploration is not enabled or
7099 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07007100 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04007101 private boolean areTranslucentBarsAllowed() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04007102 return mTranslucentDecorEnabled;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07007103 }
7104
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04007105 // Use this instead of checking config_showNavigationBar so that it can be consistently
7106 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07007107 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04007108 public boolean hasNavigationBar() {
7109 return mHasNavigationBar;
7110 }
7111
satok1bc0a492012-04-25 22:47:12 +09007112 @Override
7113 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
7114 mLastInputMethodWindow = ime;
7115 mLastInputMethodTargetWindow = target;
7116 }
7117
Craig Mautnerf1b67412012-09-19 13:18:29 -07007118 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09007119 public int getInputMethodWindowVisibleHeightLw() {
7120 return mDockBottom - mCurBottom;
7121 }
7122
7123 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07007124 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07007125 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08007126 if (mKeyguardDelegate != null) {
7127 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07007128 }
John Spurlock13451a22012-09-28 14:40:41 -04007129 if (mStatusBarService != null) {
7130 try {
7131 mStatusBarService.setCurrentUser(newUserId);
7132 } catch (RemoteException e) {
7133 // oh well
7134 }
7135 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007136 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07007137 }
7138
7139 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08007140 public boolean canMagnifyWindow(int windowType) {
7141 switch (windowType) {
7142 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
7143 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
7144 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
7145 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
7146 return false;
7147 }
7148 }
7149 return true;
7150 }
7151
7152 @Override
7153 public boolean isTopLevelWindow(int windowType) {
7154 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
7155 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
7156 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
7157 }
7158 return true;
7159 }
7160
Jim Miller4eeb4f62012-11-08 00:04:29 -08007161 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07007162 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007163 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07007164 pw.print(" mSystemReady="); pw.print(mSystemReady);
7165 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07007166 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007167 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07007168 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007169 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07007170 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
7171 || mForceClearedSystemUiFlags != 0) {
7172 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
7173 pw.print(Integer.toHexString(mLastSystemUiFlags));
7174 pw.print(" mResettingSystemUiFlags=0x");
7175 pw.print(Integer.toHexString(mResettingSystemUiFlags));
7176 pw.print(" mForceClearedSystemUiFlags=0x");
7177 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07007178 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08007179 if (mLastFocusNeedsMenu) {
7180 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
7181 pw.println(mLastFocusNeedsMenu);
7182 }
Jeff Browna20dda42014-05-27 20:57:24 -07007183 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
7184 pw.println(mWakeGestureEnabledSetting);
7185
Jeff Brownbcdfc622014-03-06 19:13:04 -08007186 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04007187 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
7188 pw.print(" mDockMode="); pw.print(mDockMode);
keunyounga7710492015-09-23 11:33:58 -07007189 pw.print(" mEnableCarDockHomeCapture="); pw.print(mEnableCarDockHomeCapture);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007190 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
7191 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
7192 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
7193 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05007194 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07007195 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007196 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
7197 pw.print(mCarDockEnablesAccelerometer);
7198 pw.print(" mDeskDockEnablesAccelerometer=");
7199 pw.println(mDeskDockEnablesAccelerometer);
7200 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
7201 pw.print(mLidKeyboardAccessibility);
7202 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Edward Savage-Jones7def60d2015-11-13 13:27:03 +01007203 pw.print(" mLidControlsScreenLock="); pw.println(mLidControlsScreenLock);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07007204 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07007205 pw.print(prefix);
7206 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
7207 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07007208 pw.print(prefix);
7209 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
7210 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07007211 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07007212 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
7213 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
7214 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
7215 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
7216 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
7217 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
7218 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08007219 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
7220 pw.print(","); pw.print(mOverscanScreenTop);
7221 pw.print(") "); pw.print(mOverscanScreenWidth);
7222 pw.print("x"); pw.println(mOverscanScreenHeight);
7223 if (mOverscanLeft != 0 || mOverscanTop != 0
7224 || mOverscanRight != 0 || mOverscanBottom != 0) {
7225 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
7226 pw.print(" top="); pw.print(mOverscanTop);
7227 pw.print(" right="); pw.print(mOverscanRight);
7228 pw.print(" bottom="); pw.println(mOverscanBottom);
7229 }
Dianne Hackborn313440842013-02-19 19:22:59 -08007230 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
7231 pw.print(mRestrictedOverscanScreenLeft);
7232 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
7233 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
7234 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007235 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
7236 pw.print(","); pw.print(mUnrestrictedScreenTop);
7237 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
7238 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
7239 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
7240 pw.print(","); pw.print(mRestrictedScreenTop);
7241 pw.print(") "); pw.print(mRestrictedScreenWidth);
7242 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07007243 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
7244 pw.print(","); pw.print(mStableFullscreenTop);
7245 pw.print(")-("); pw.print(mStableFullscreenRight);
7246 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07007247 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
7248 pw.print(","); pw.print(mStableTop);
7249 pw.print(")-("); pw.print(mStableRight);
7250 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07007251 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
7252 pw.print(","); pw.print(mSystemTop);
7253 pw.print(")-("); pw.print(mSystemRight);
7254 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007255 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
7256 pw.print(","); pw.print(mCurTop);
7257 pw.print(")-("); pw.print(mCurRight);
7258 pw.print(","); pw.print(mCurBottom); pw.println(")");
7259 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
7260 pw.print(","); pw.print(mContentTop);
7261 pw.print(")-("); pw.print(mContentRight);
7262 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07007263 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
7264 pw.print(","); pw.print(mVoiceContentTop);
7265 pw.print(")-("); pw.print(mVoiceContentRight);
7266 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007267 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
7268 pw.print(","); pw.print(mDockTop);
7269 pw.print(")-("); pw.print(mDockRight);
7270 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07007271 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
7272 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007273 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
7274 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07007275 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
7276 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007277 if (mLastInputMethodWindow != null) {
7278 pw.print(prefix); pw.print("mLastInputMethodWindow=");
7279 pw.println(mLastInputMethodWindow);
7280 }
7281 if (mLastInputMethodTargetWindow != null) {
7282 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
7283 pw.println(mLastInputMethodTargetWindow);
7284 }
7285 if (mStatusBar != null) {
7286 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08007287 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
7288 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007289 }
7290 if (mNavigationBar != null) {
7291 pw.print(prefix); pw.print("mNavigationBar=");
7292 pw.println(mNavigationBar);
7293 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007294 if (mFocusedWindow != null) {
7295 pw.print(prefix); pw.print("mFocusedWindow=");
7296 pw.println(mFocusedWindow);
7297 }
7298 if (mFocusedApp != null) {
7299 pw.print(prefix); pw.print("mFocusedApp=");
7300 pw.println(mFocusedApp);
7301 }
7302 if (mWinDismissingKeyguard != null) {
7303 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
7304 pw.println(mWinDismissingKeyguard);
7305 }
7306 if (mTopFullscreenOpaqueWindowState != null) {
7307 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
7308 pw.println(mTopFullscreenOpaqueWindowState);
7309 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01007310 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
7311 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
7312 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
7313 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08007314 if (mForcingShowNavBar) {
7315 pw.print(prefix); pw.print("mForcingShowNavBar=");
7316 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
7317 pw.println(mForcingShowNavBarLayer);
7318 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007319 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007320 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07007321 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
7322 pw.print(" mForceStatusBarFromKeyguard=");
7323 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007324 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07007325 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007326 pw.print(" mHomePressed="); pw.println(mHomePressed);
7327 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
7328 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
7329 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
7330 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
7331 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
7332 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
7333 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
7334 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
7335 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
7336 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07007337 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
7338 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
7339 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07007340
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07007341 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04007342 mStatusBarController.dump(pw, prefix);
7343 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007344 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007345
Jeff Browna20dda42014-05-27 20:57:24 -07007346 if (mWakeGestureListener != null) {
7347 mWakeGestureListener.dump(pw, prefix);
7348 }
Jeff Brown600f0032014-05-22 17:06:00 -07007349 if (mOrientationListener != null) {
7350 mOrientationListener.dump(pw, prefix);
7351 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007352 if (mBurnInProtectionHelper != null) {
7353 mBurnInProtectionHelper.dump(prefix, pw);
7354 }
Jorim Jaggi84dc08a2015-09-11 17:45:22 -07007355 if (mKeyguardDelegate != null) {
7356 mKeyguardDelegate.dump(prefix, pw);
7357 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007358 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007359}