blob: bff06506ae9b684ae01177391ddc6c802d87d7e2 [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;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004400 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004401 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4402 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4403 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4404 + mRestrictedScreenWidth;
4405 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4406 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004407 }
Craig Mautner69b08182012-09-05 13:07:13 -07004408
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004409 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004410
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004411 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4412 vf.left = mCurLeft;
4413 vf.top = mCurTop;
4414 vf.right = mCurRight;
4415 vf.bottom = mCurBottom;
4416 } else {
4417 vf.set(cf);
4418 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004419 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004420 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4421 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004422 // A child window should be placed inside of the same visible
4423 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004424 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004425 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004426 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4427 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004428 // Otherwise, a normal window must be placed inside the content
4429 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004430 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4431 // Status bar panels and the volume dialog are the only windows who can go on
4432 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004433 // permission, so they have the same privileges as the status
4434 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004435 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4436 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4437 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4438 + mRestrictedScreenWidth;
4439 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4440 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004441 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004442 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004443 pf.left = df.left = of.left = cf.left = mStableLeft;
4444 pf.top = df.top = of.top = cf.top = mStableTop;
4445 pf.right = df.right = of.right = cf.right = mStableRight;
4446 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004447 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004448 pf.left = mContentLeft;
4449 pf.top = mContentTop;
4450 pf.right = mContentRight;
4451 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004452 if (win.isVoiceInteraction()) {
4453 df.left = of.left = cf.left = mVoiceContentLeft;
4454 df.top = of.top = cf.top = mVoiceContentTop;
4455 df.right = of.right = cf.right = mVoiceContentRight;
4456 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4457 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004458 df.left = of.left = cf.left = mDockLeft;
4459 df.top = of.top = cf.top = mDockTop;
4460 df.right = of.right = cf.right = mDockRight;
4461 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004462 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004463 df.left = of.left = cf.left = mContentLeft;
4464 df.top = of.top = cf.top = mContentTop;
4465 df.right = of.right = cf.right = mContentRight;
4466 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004467 }
4468 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4469 vf.left = mCurLeft;
4470 vf.top = mCurTop;
4471 vf.right = mCurRight;
4472 vf.bottom = mCurBottom;
4473 } else {
4474 vf.set(cf);
4475 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004476 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004477 }
4478 }
Craig Mautner69b08182012-09-05 13:07:13 -07004479
Craig Mautnerb816bed2013-07-23 10:26:17 -07004480 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4481 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004482 df.left = df.top = -10000;
4483 df.right = df.bottom = 10000;
4484 if (attrs.type != TYPE_WALLPAPER) {
4485 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4486 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4487 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004488 }
4489
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004490 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4491 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004492 // We only want to apply outsets to certain types of windows. For example, we never want to
4493 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004494 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004495 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004496 osf = mTmpOutsetFrame;
4497 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4498 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4499 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004500 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004501 if (rotation == Surface.ROTATION_0) {
4502 osf.bottom += outset;
4503 } else if (rotation == Surface.ROTATION_90) {
4504 osf.right += outset;
4505 } else if (rotation == Surface.ROTATION_180) {
4506 osf.top -= outset;
4507 } else if (rotation == Surface.ROTATION_270) {
4508 osf.left -= outset;
4509 }
4510 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4511 + " with rotation " + rotation + ", result: " + osf);
4512 }
4513 }
4514
Craig Mautnereda67292013-04-28 13:50:14 -07004515 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004516 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004517 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004518 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004519 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004520 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004521 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004522 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004523 + " sf=" + sf.toShortString()
4524 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004525
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004526 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004527
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004528 // Dock windows carve out the bottom of the screen, so normal windows
4529 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004530 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4531 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004532 setLastInputMethodWindowLw(null, null);
4533 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004534 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004535 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4536 && !win.getGivenInsetsPendingLw()) {
4537 offsetVoiceInputWindowLw(win);
4538 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004539 }
4540
satok1bc0a492012-04-25 22:47:12 +09004541 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004542 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004543 top += win.getGivenContentInsetsLw().top;
4544 if (mContentBottom > top) {
4545 mContentBottom = top;
4546 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004547 if (mVoiceContentBottom > top) {
4548 mVoiceContentBottom = top;
4549 }
satok1bc0a492012-04-25 22:47:12 +09004550 top = win.getVisibleFrameLw().top;
4551 top += win.getGivenVisibleInsetsLw().top;
4552 if (mCurBottom > top) {
4553 mCurBottom = top;
4554 }
Craig Mautnereda67292013-04-28 13:50:14 -07004555 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004556 + mDockBottom + " mContentBottom="
4557 + mContentBottom + " mCurBottom=" + mCurBottom);
4558 }
4559
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004560 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004561 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004562 top += win.getGivenContentInsetsLw().top;
4563 if (mVoiceContentBottom > top) {
4564 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004565 }
4566 }
4567
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004568 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004569 @Override
4570 public void finishLayoutLw() {
4571 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004572 }
4573
4574 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004575 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004576 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004577 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004578 mTopFullscreenOpaqueOrDimmingWindowState = null;
Jorim Jaggi86905582016-02-09 21:36:09 -08004579 mTopDockedOpaqueWindowState = null;
4580 mTopDockedOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004581 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004582 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004583 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004584 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004585 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004586 mForcingShowNavBar = false;
4587 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004588
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004589 mHideLockScreen = false;
4590 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004591 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004592 mShowingLockscreen = false;
4593 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004594 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004595 mKeyguardSecure = isKeyguardSecure();
4596 mKeyguardSecureIncludingHidden = mKeyguardSecure
4597 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004598 }
4599
4600 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004601 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004602 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4603 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004604 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4605 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004606 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004607 if (mTopFullscreenOpaqueWindowState == null
4608 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4609 mForcingShowNavBar = true;
4610 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004611 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004612 if (attrs.type == TYPE_STATUS_BAR) {
4613 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4614 mForceStatusBarFromKeyguard = true;
Jorim Jaggie1de9f62015-09-23 14:59:50 -07004615 mShowingLockscreen = true;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004616 }
4617 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4618 mForceStatusBarTransparent = true;
4619 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004620 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004621
4622 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4623 && attrs.type < FIRST_SYSTEM_WINDOW;
4624 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4625 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
Jorim Jaggi86905582016-02-09 21:36:09 -08004626 final int stackId = win.getStackId();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004627 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004628 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004629 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004630 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004631 mForceStatusBarFromKeyguard = true;
4632 } else {
4633 mForceStatusBar = true;
4634 }
4635 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004636 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004637 // If the lockscreen was showing when the dream started then wait
4638 // for the dream to draw before hiding the lockscreen.
4639 if (!mDreamingLockscreen
4640 || (win.isVisibleLw() && win.hasDrawnLw())) {
4641 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004642 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004643 }
4644 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004645
Yohei Yukawad1a09222015-06-30 16:22:05 -07004646 final IApplicationToken appToken = win.getAppToken();
4647
4648 // For app windows that are not attached, we decide if all windows in the app they
4649 // represent should be hidden or if we should hide the lockscreen. For attached app
4650 // windows we defer the decision to the window it is attached to.
4651 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004652 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004653 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004654 mAppsToBeHidden.remove(appToken);
4655 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004656 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004657 if (dismissKeyguard && !mKeyguardSecure) {
4658 mAppsThatDismissKeyguard.add(appToken);
Selim Cinek90b5e072015-08-28 17:05:56 -07004659 } else if (win.isDrawnLw() || win.hasAppShownWindows()) {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004660 mWinShowWhenLocked = win;
4661 mHideLockScreen = true;
4662 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004663 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004664 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004665 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004666 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004667 mAppsToBeHidden.add(appToken);
4668 } else {
4669 mAppsToBeHidden.remove(appToken);
4670 }
4671 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004672 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004673 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004674 }
Jorim Jaggi86905582016-02-09 21:36:09 -08004675 if (isFullscreen(attrs) && StackId.normallyFullscreenWindows(stackId)) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004676 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4677 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004678 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4679 mTopFullscreenOpaqueOrDimmingWindowState = win;
4680 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004681 if (!mAppsThatDismissKeyguard.isEmpty() &&
4682 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4683 if (DEBUG_LAYOUT) Slog.v(TAG,
4684 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004685 mDismissKeyguard = (mWinDismissingKeyguard == win
4686 && mSecureDismissingKeyguard == mKeyguardSecure)
4687 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004688 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004689 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004690 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Selim Cinek90b5e072015-08-28 17:05:56 -07004691 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked
4692 && (win.isDrawnLw() || win.hasAppShownWindows())) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004693 if (DEBUG_LAYOUT) Slog.v(TAG,
4694 "Setting mHideLockScreen to true by win " + win);
4695 mHideLockScreen = true;
4696 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004697 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004698 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004699 mAllowLockscreenWhenOn = true;
4700 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004701 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004702
4703 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004704 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4705 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004706 win.hideLw(false);
4707 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004708 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004709 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4710 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4711 // that is being hidden in an animation - keep the
4712 // keyguard hidden until the new window shows up and
4713 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004714 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004715 mHideLockScreen = true;
4716 mWinShowWhenLocked = win;
4717 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004718 }
Jorim Jaggi86905582016-02-09 21:36:09 -08004719
4720 // Keep track of the window if it's dimming but not necessarily fullscreen.
4721 final boolean reallyVisible = win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw();
4722 if (mTopFullscreenOpaqueOrDimmingWindowState == null && reallyVisible
4723 && win.isDimming() && StackId.normallyFullscreenWindows(stackId)) {
Adrian Rooscd3884d2015-02-18 17:25:23 +01004724 mTopFullscreenOpaqueOrDimmingWindowState = win;
4725 }
Jorim Jaggi86905582016-02-09 21:36:09 -08004726
4727 // We need to keep track of the top "fullscreen" opaque window for the docked stack
4728 // separately, because both the "real fullscreen" opaque window and the one for the docked
4729 // stack can control View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR.
4730 if (mTopDockedOpaqueWindowState == null && reallyVisible && appWindow && attached == null
4731 && isFullscreen(attrs) && stackId == DOCKED_STACK_ID) {
4732 mTopDockedOpaqueWindowState = win;
4733 if (mTopDockedOpaqueOrDimmingWindowState == null) {
4734 mTopDockedOpaqueOrDimmingWindowState = win;
4735 }
4736 }
4737
4738 // Also keep track of any windows that are dimming but not necessarily fullscreen in the
4739 // docked stack.
4740 if (mTopDockedOpaqueOrDimmingWindowState == null && reallyVisible && win.isDimming()
4741 && stackId == DOCKED_STACK_ID) {
4742 mTopDockedOpaqueOrDimmingWindowState = win;
4743 }
4744 }
4745
4746 private boolean isFullscreen(WindowManager.LayoutParams attrs) {
4747 return attrs.x == 0 && attrs.y == 0
4748 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4749 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004750 }
4751
4752 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004753 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004754 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004755 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4756 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4757 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004758 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4759 // fullscreen window.
4760 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4761 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4762 mTopFullscreenOpaqueWindowState.hideLw(false);
4763 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4764 }
4765
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004766 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004767 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004768
4769 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4770 ? mTopFullscreenOpaqueWindowState.getAttrs()
4771 : null;
4772
Jeff Brownc8018eb2012-10-29 21:33:27 -07004773 // If we are not currently showing a dream then remember the current
4774 // lockscreen state. We will use this to determine whether the dream
4775 // started while the lockscreen was showing and remember this state
4776 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004777 if (!mShowingDream) {
4778 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004779 if (mDreamingSleepTokenNeeded) {
4780 mDreamingSleepTokenNeeded = false;
4781 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4782 }
4783 } else {
4784 if (!mDreamingSleepTokenNeeded) {
4785 mDreamingSleepTokenNeeded = true;
4786 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4787 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004788 }
4789
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004790 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004791 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004792 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004793 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004794 boolean shouldBeTransparent = mForceStatusBarTransparent
4795 && !mForceStatusBar
4796 && !mForceStatusBarFromKeyguard;
4797 if (!shouldBeTransparent) {
4798 mStatusBarController.setShowTransparent(false /* transparent */);
4799 } else if (!mStatusBar.isVisibleLw()) {
4800 mStatusBarController.setShowTransparent(true /* transparent */);
4801 }
4802 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004803 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004804 if (mStatusBarController.setBarShowingLw(true)) {
4805 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4806 }
Craig Mautner81defc72013-10-29 11:10:42 -07004807 // Maintain fullscreen layout until incoming animation is complete.
4808 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004809 // Transient status bar on the lockscreen is not allowed
4810 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4811 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4812 mLastSystemUiFlags, mLastSystemUiFlags);
4813 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004814 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004815 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004816 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004817 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -07004818 + " shown position: "
4819 + mTopFullscreenOpaqueWindowState.getShownPositionLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004820 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004821 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004822 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004823 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004824 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004825 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004826 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004827 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4828 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004829 if (mStatusBarController.isTransientShowing()) {
4830 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004831 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4832 }
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07004833 } else if (topIsFullscreen
4834 && !mWindowManagerInternal.isStackVisible(FREEFORM_WORKSPACE_STACK_ID)
4835 && !mWindowManagerInternal.isStackVisible(DOCKED_STACK_ID)) {
Craig Mautnereda67292013-04-28 13:50:14 -07004836 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004837 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004838 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004839 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004840 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004841 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004842 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004843 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004844 if (mStatusBarController.setBarShowingLw(true)) {
4845 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4846 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004847 }
4848 }
4849 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004850
Craig Mautner81defc72013-10-29 11:10:42 -07004851 if (mTopIsFullscreen != topIsFullscreen) {
4852 if (!topIsFullscreen) {
4853 // Force another layout when status bar becomes fully shown.
4854 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4855 }
4856 mTopIsFullscreen = topIsFullscreen;
4857 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004858
Craig Mautner39834192012-09-02 07:47:24 -07004859 // Hide the key guard if a visible window explicitly specifies that it wants to be
4860 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004861 if (mKeyguardDelegate != null && mStatusBar != null) {
4862 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4863 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004864 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004865 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004866 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004867 changes |= FINISH_LAYOUT_REDO_LAYOUT
4868 | FINISH_LAYOUT_REDO_CONFIG
4869 | FINISH_LAYOUT_REDO_WALLPAPER;
4870 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004871 if (mKeyguardDelegate.isShowing()) {
4872 mHandler.post(new Runnable() {
4873 @Override
4874 public void run() {
4875 mKeyguardDelegate.keyguardDone(false, false);
4876 }
4877 });
4878 }
4879 } else if (mHideLockScreen) {
4880 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004881 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004882 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004883 changes |= FINISH_LAYOUT_REDO_LAYOUT
4884 | FINISH_LAYOUT_REDO_CONFIG
4885 | FINISH_LAYOUT_REDO_WALLPAPER;
4886 }
4887 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004888 mKeyguardHidden = false;
4889 if (setKeyguardOccludedLw(false)) {
4890 changes |= FINISH_LAYOUT_REDO_LAYOUT
4891 | FINISH_LAYOUT_REDO_CONFIG
4892 | FINISH_LAYOUT_REDO_WALLPAPER;
4893 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004894 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4895 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004896 mHandler.post(new Runnable() {
4897 @Override
4898 public void run() {
4899 mKeyguardDelegate.dismiss();
4900 }
4901 });
4902 }
4903 } else {
4904 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004905 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004906 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004907 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004908 changes |= FINISH_LAYOUT_REDO_LAYOUT
4909 | FINISH_LAYOUT_REDO_CONFIG
4910 | FINISH_LAYOUT_REDO_WALLPAPER;
4911 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004912 }
4913 }
Joe Onorato664644d2011-01-23 17:53:23 -08004914
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004915 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004916 // If the navigation bar has been hidden or shown, we need to do another
4917 // layout pass to update that window.
4918 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4919 }
Joe Onorato664644d2011-01-23 17:53:23 -08004920
Mike Lockwood28569302010-01-28 11:54:40 -05004921 // update since mAllowLockscreenWhenOn might have changed
4922 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004923 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004924 }
4925
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004926 /**
Jim Millerab954542014-10-10 18:21:49 -07004927 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004928 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004929 * @return Whether the flags have changed and we have to redo the layout.
4930 */
Jim Millerab954542014-10-10 18:21:49 -07004931 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4932 boolean wasOccluded = mKeyguardOccluded;
4933 boolean showing = mKeyguardDelegate.isShowing();
4934 if (wasOccluded && !isOccluded && showing) {
4935 mKeyguardOccluded = false;
4936 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004937 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4938 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4939 return true;
Jim Millerab954542014-10-10 18:21:49 -07004940 } else if (!wasOccluded && isOccluded && showing) {
4941 mKeyguardOccluded = true;
4942 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004943 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4944 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4945 return true;
4946 } else {
4947 return false;
4948 }
4949 }
4950
4951 private boolean isStatusBarKeyguard() {
4952 return mStatusBar != null
4953 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4954 }
4955
Jose Lima9546b202014-07-02 17:21:51 -07004956 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004957 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004958 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004959 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004960 return false;
4961 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004962 return true;
4963 }
4964
Jose Lima9546b202014-07-02 17:21:51 -07004965 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004966 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004967 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004968 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004969 // If the navigation bar has been hidden or shown, we need to do another
4970 // layout pass to update that window.
4971 return FINISH_LAYOUT_REDO_LAYOUT;
4972 }
4973 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004974 }
4975
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004976 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004977 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004978 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4979 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004980 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4981 if (newLidState == mLidState) {
4982 return;
4983 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004984
Jeff Brownc458ce92012-04-30 14:58:40 -07004985 mLidState = newLidState;
4986 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004987 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004988
4989 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004990 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4991 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004992 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004993 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004994 }
4995 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004996
Michael Wright3818c922014-09-02 13:59:07 -07004997 @Override
4998 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4999 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
5000 if (mCameraLensCoverState == lensCoverState) {
5001 return;
5002 }
5003 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
5004 lensCoverState == CAMERA_LENS_UNCOVERED) {
5005 Intent intent;
5006 final boolean keyguardActive = mKeyguardDelegate == null ? false :
5007 mKeyguardDelegate.isShowing();
5008 if (keyguardActive) {
5009 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
5010 } else {
5011 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
5012 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005013 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
5014 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00005015 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07005016 }
5017 mCameraLensCoverState = lensCoverState;
5018 }
5019
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08005020 void setHdmiPlugged(boolean plugged) {
5021 if (mHdmiPlugged != plugged) {
5022 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07005023 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08005024 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08005025 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08005026 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07005027 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08005028 }
5029 }
5030
Joe Onoratoea495d42011-04-06 11:41:11 -07005031 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07005032 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07005033 // watch for HDMI plug messages if the hdmi switch exists
5034 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
5035 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
5036
Joe Onoratoea495d42011-04-06 11:41:11 -07005037 final String filename = "/sys/class/switch/hdmi/state";
5038 FileReader reader = null;
5039 try {
5040 reader = new FileReader(filename);
5041 char[] buf = new char[15];
5042 int n = reader.read(buf);
5043 if (n > 1) {
5044 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
5045 }
5046 } catch (IOException ex) {
5047 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
5048 } catch (NumberFormatException ex) {
5049 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
5050 } finally {
5051 if (reader != null) {
5052 try {
5053 reader.close();
5054 } catch (IOException ex) {
5055 }
Joe Onoratodc100302011-01-11 17:07:41 -08005056 }
5057 }
5058 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07005059 // This dance forces the code in setHdmiPlugged to run.
5060 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
5061 mHdmiPlugged = !plugged;
5062 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08005063 }
5064
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07005065 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07005066 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07005067
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005068 final Runnable mScreenshotTimeout = new Runnable() {
5069 @Override public void run() {
5070 synchronized (mScreenshotLock) {
5071 if (mScreenshotConnection != null) {
5072 mContext.unbindService(mScreenshotConnection);
5073 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07005074 }
Winson Chung9112ec32011-06-27 13:15:32 -07005075 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005076 }
5077 };
5078
5079 // Assume this is called from the Handler thread.
5080 private void takeScreenshot() {
5081 synchronized (mScreenshotLock) {
5082 if (mScreenshotConnection != null) {
5083 return;
5084 }
5085 ComponentName cn = new ComponentName("com.android.systemui",
5086 "com.android.systemui.screenshot.TakeScreenshotService");
5087 Intent intent = new Intent();
5088 intent.setComponent(cn);
5089 ServiceConnection conn = new ServiceConnection() {
5090 @Override
5091 public void onServiceConnected(ComponentName name, IBinder service) {
5092 synchronized (mScreenshotLock) {
5093 if (mScreenshotConnection != this) {
5094 return;
5095 }
5096 Messenger messenger = new Messenger(service);
5097 Message msg = Message.obtain(null, 1);
5098 final ServiceConnection myConn = this;
5099 Handler h = new Handler(mHandler.getLooper()) {
5100 @Override
5101 public void handleMessage(Message msg) {
5102 synchronized (mScreenshotLock) {
5103 if (mScreenshotConnection == myConn) {
5104 mContext.unbindService(mScreenshotConnection);
5105 mScreenshotConnection = null;
5106 mHandler.removeCallbacks(mScreenshotTimeout);
5107 }
5108 }
5109 }
5110 };
5111 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07005112 msg.arg1 = msg.arg2 = 0;
5113 if (mStatusBar != null && mStatusBar.isVisibleLw())
5114 msg.arg1 = 1;
5115 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
5116 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005117 try {
5118 messenger.send(msg);
5119 } catch (RemoteException e) {
5120 }
5121 }
5122 }
5123 @Override
5124 public void onServiceDisconnected(ComponentName name) {}
5125 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08005126 if (mContext.bindServiceAsUser(
5127 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005128 mScreenshotConnection = conn;
5129 mHandler.postDelayed(mScreenshotTimeout, 10000);
5130 }
5131 }
Winson Chung9112ec32011-06-27 13:15:32 -07005132 }
5133
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005134 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005135 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07005136 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07005137 if (!mSystemBooted) {
5138 // If we have not yet booted, don't let key events do anything.
5139 return 0;
5140 }
5141
Jeff Brown037c33e2014-04-09 00:31:55 -07005142 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08005143 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
5144 final boolean canceled = event.isCanceled();
5145 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07005146
Jeff Brown3122e442010-10-11 23:32:49 -07005147 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07005148
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05005149 // If screen is off then we treat the case where the keyguard is open but hidden
5150 // the same as if it were open and in front.
5151 // This will prevent any keys other than the power button from waking the screen
5152 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08005153 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07005154 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07005155 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08005156 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005157
Jeff Brown40013652012-05-16 21:22:36 -07005158 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005159 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07005160 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08005161 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005162 }
5163
Jeff Brown037c33e2014-04-09 00:31:55 -07005164 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07005165 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07005166 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
5167 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07005168 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07005169 // When the device is interactive or the key is injected pass the
5170 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07005171 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005172 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07005173 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
5174 // If we're currently dozing with the screen on and the keyguard showing, pass the key
5175 // to the application but preserve its wake key status to make sure we still move
5176 // from dozing to fully interactive if we would normally go from off to fully
5177 // interactive.
5178 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07005179 } else {
5180 // When the screen is off and the key is not injected, determine whether
5181 // to wake the device but don't pass the key to the application.
5182 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08005183 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
5184 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005185 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005186 }
5187
Justin Kohd378ad72013-04-01 12:18:26 -07005188 // If the key would be handled globally, just return the result, don't worry about special
5189 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07005190 if (isValidGlobalKey(keyCode)
5191 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07005192 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005193 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07005194 }
Justin Kohd378ad72013-04-01 12:18:26 -07005195 return result;
5196 }
5197
Jeff Brownbae8e772014-06-12 19:59:45 -07005198 boolean useHapticFeedback = down
5199 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
5200 && event.getRepeatCount() == 0;
5201
Jeff Brown4d396052010-10-29 21:50:21 -07005202 // Handle special keys.
5203 switch (keyCode) {
5204 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07005205 case KeyEvent.KEYCODE_VOLUME_UP:
5206 case KeyEvent.KEYCODE_VOLUME_MUTE: {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005207 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
5208 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005209 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005210 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005211 mScreenshotChordVolumeDownKeyTriggered = true;
5212 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
5213 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005214 cancelPendingPowerKeyAction();
5215 interceptScreenshotChord();
5216 }
5217 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005218 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005219 cancelPendingScreenshotChordAction();
5220 }
5221 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
5222 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005223 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005224 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005225 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005226 cancelPendingPowerKeyAction();
5227 cancelPendingScreenshotChordAction();
5228 }
5229 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005230 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005231 cancelPendingScreenshotChordAction();
5232 }
5233 }
Jeff Brown4d396052010-10-29 21:50:21 -07005234 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005235 TelecomManager telecomManager = getTelecommService();
5236 if (telecomManager != null) {
5237 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005238 // If an incoming call is ringing, either VOLUME key means
5239 // "silence ringer". We handle these keys here, rather than
5240 // in the InCallScreen, to make sure we'll respond to them
5241 // even if the InCallScreen hasn't come to the foreground yet.
5242 // Look for the DOWN event here, to agree with the "fallback"
5243 // behavior in the InCallScreen.
5244 Log.i(TAG, "interceptKeyBeforeQueueing:"
5245 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07005246
Santos Cordon6848f722014-05-21 15:22:12 -07005247 // Silence the ringer. (It's safe to call this
5248 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005249 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07005250
Santos Cordon6848f722014-05-21 15:22:12 -07005251 // And *don't* pass this key thru to the current activity
5252 // (which is probably the InCallScreen.)
5253 result &= ~ACTION_PASS_TO_USER;
5254 break;
5255 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005256 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07005257 && (result & ACTION_PASS_TO_USER) == 0) {
5258 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07005259 // the application, just pass it to the session service.
5260
5261 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07005262 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005263 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005264 }
5265 }
Jaewan Kim765487f2016-01-12 14:45:42 +09005266 }
5267 if (mUseTvRouting) {
5268 // On TVs, defer special key handlings to
5269 // {@link interceptKeyBeforeDispatching()}.
5270 result |= ACTION_PASS_TO_USER;
5271 } else if ((result & ACTION_PASS_TO_USER) == 0) {
5272 // If we aren't passing to the user and no one else
5273 // handled it send it to the session manager to
5274 // figure out.
5275 MediaSessionLegacyHelper.getHelper(mContext)
5276 .sendVolumeKeyEvent(event, true);
Jeff Brown4d396052010-10-29 21:50:21 -07005277 }
5278 break;
5279 }
5280
5281 case KeyEvent.KEYCODE_ENDCALL: {
5282 result &= ~ACTION_PASS_TO_USER;
5283 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005284 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005285 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005286 if (telecomManager != null) {
5287 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005288 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005289 if (interactive && !hungUp) {
5290 mEndCallKeyHandled = false;
5291 mHandler.postDelayed(mEndCallLongPress,
5292 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5293 } else {
5294 mEndCallKeyHandled = true;
5295 }
Jeff Brown4d396052010-10-29 21:50:21 -07005296 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005297 if (!mEndCallKeyHandled) {
5298 mHandler.removeCallbacks(mEndCallLongPress);
5299 if (!canceled) {
5300 if ((mEndcallBehavior
5301 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5302 if (goHome()) {
5303 break;
5304 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005305 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005306 if ((mEndcallBehavior
5307 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5308 mPowerManager.goToSleep(event.getEventTime(),
5309 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5310 isWakeKey = false;
5311 }
Jeff Brown4d396052010-10-29 21:50:21 -07005312 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005313 }
Jeff Brown4d396052010-10-29 21:50:21 -07005314 }
5315 break;
5316 }
5317
5318 case KeyEvent.KEYCODE_POWER: {
5319 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005320 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005321 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005322 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005323 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005324 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005325 }
5326 break;
5327 }
5328
Jeff Brown6212a492014-03-07 13:58:47 -08005329 case KeyEvent.KEYCODE_SLEEP: {
5330 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005331 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005332 if (!mPowerManager.isInteractive()) {
5333 useHapticFeedback = false; // suppress feedback if already non-interactive
5334 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005335 if (down) {
5336 sleepPress(event.getEventTime());
5337 } else {
5338 sleepRelease(event.getEventTime());
5339 }
Jeff Brown6212a492014-03-07 13:58:47 -08005340 break;
5341 }
5342
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -07005343 case KeyEvent.KEYCODE_SOFT_SLEEP: {
5344 result &= ~ACTION_PASS_TO_USER;
5345 isWakeKey = false;
5346 if (!down) {
5347 mPowerManagerInternal.setUserInactiveOverrideFromWindowManager();
5348 }
5349 break;
5350 }
5351
Jeff Brown6212a492014-03-07 13:58:47 -08005352 case KeyEvent.KEYCODE_WAKEUP: {
5353 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005354 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005355 break;
5356 }
5357
Jeff Brown4d396052010-10-29 21:50:21 -07005358 case KeyEvent.KEYCODE_MEDIA_PLAY:
5359 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5360 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005361 case KeyEvent.KEYCODE_HEADSETHOOK:
5362 case KeyEvent.KEYCODE_MUTE:
5363 case KeyEvent.KEYCODE_MEDIA_STOP:
5364 case KeyEvent.KEYCODE_MEDIA_NEXT:
5365 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5366 case KeyEvent.KEYCODE_MEDIA_REWIND:
5367 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005368 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5369 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005370 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5371 // If the global session is active pass all media keys to it
5372 // instead of the active window.
5373 result &= ~ACTION_PASS_TO_USER;
5374 }
Jeff Brown4d396052010-10-29 21:50:21 -07005375 if ((result & ACTION_PASS_TO_USER) == 0) {
5376 // Only do this if we would otherwise not pass it to the user. In that
5377 // case, the PhoneWindow class will do the same thing, except it will
5378 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005379 // Note that we need to make a copy of the key event here because the
5380 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005381 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005382 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5383 new KeyEvent(event));
5384 msg.setAsynchronous(true);
5385 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005386 }
5387 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005388 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005389
Jeff Brown4d396052010-10-29 21:50:21 -07005390 case KeyEvent.KEYCODE_CALL: {
5391 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005392 TelecomManager telecomManager = getTelecommService();
5393 if (telecomManager != null) {
5394 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005395 Log.i(TAG, "interceptKeyBeforeQueueing:"
5396 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005397 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005398
Santos Cordon6848f722014-05-21 15:22:12 -07005399 // And *don't* pass this key thru to the current activity
5400 // (which is presumably the InCallScreen.)
5401 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005402 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005403 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005404 }
Jeff Brown4d396052010-10-29 21:50:21 -07005405 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005406 }
Michael Wright869a67c2014-08-26 19:33:06 -07005407 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5408 // Only do this if we would otherwise not pass it to the user. In that case,
5409 // interceptKeyBeforeDispatching would apply a similar but different policy in
5410 // order to invoke voice assist actions. Note that we need to make a copy of the
5411 // key event here because the original key event will be recycled when we return.
5412 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5413 mBroadcastWakeLock.acquire();
5414 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5415 keyguardActive ? 1 : 0, 0);
5416 msg.setAsynchronous(true);
5417 msg.sendToTarget();
5418 }
Jaewan Kim49117872016-01-19 17:24:08 +09005419 break;
5420 }
5421 case KeyEvent.KEYCODE_WINDOW: {
5422 if (mShortPressWindowBehavior == SHORT_PRESS_WINDOW_PICTURE_IN_PICTURE) {
5423 if (!down) {
Jaewan Kimc552b042016-01-18 16:08:45 +09005424 requestTvPictureInPicture(event);
Jaewan Kim49117872016-01-19 17:24:08 +09005425 }
5426 result &= ~ACTION_PASS_TO_USER;
5427 }
5428 break;
Michael Wright869a67c2014-08-26 19:33:06 -07005429 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005430 }
Jeff Brown26875502014-01-30 21:47:47 -08005431
Jeff Brownbae8e772014-06-12 19:59:45 -07005432 if (useHapticFeedback) {
5433 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5434 }
5435
Jeff Brown26875502014-01-30 21:47:47 -08005436 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005437 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005438 }
Bryce Lee584a4452014-10-21 15:55:55 -07005439
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005440 return result;
5441 }
5442
Jeff Brown1c2e4942012-11-06 16:32:01 -08005443 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005444 * Returns true if the key can have global actions attached to it.
5445 * We reserve all power management keys for the system since they require
5446 * very careful handling.
5447 */
5448 private static boolean isValidGlobalKey(int keyCode) {
5449 switch (keyCode) {
5450 case KeyEvent.KEYCODE_POWER:
5451 case KeyEvent.KEYCODE_WAKEUP:
5452 case KeyEvent.KEYCODE_SLEEP:
5453 return false;
5454 default:
5455 return true;
5456 }
5457 }
5458
5459 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005460 * When the screen is off we ignore some keys that might otherwise typically
5461 * be considered wake keys. We filter them out here.
5462 *
5463 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5464 * is always considered a wake key.
5465 */
5466 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5467 switch (keyCode) {
5468 // ignore volume keys unless docked
5469 case KeyEvent.KEYCODE_VOLUME_UP:
5470 case KeyEvent.KEYCODE_VOLUME_DOWN:
5471 case KeyEvent.KEYCODE_VOLUME_MUTE:
5472 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5473
5474 // ignore media and camera keys
5475 case KeyEvent.KEYCODE_MUTE:
5476 case KeyEvent.KEYCODE_HEADSETHOOK:
5477 case KeyEvent.KEYCODE_MEDIA_PLAY:
5478 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5479 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5480 case KeyEvent.KEYCODE_MEDIA_STOP:
5481 case KeyEvent.KEYCODE_MEDIA_NEXT:
5482 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5483 case KeyEvent.KEYCODE_MEDIA_REWIND:
5484 case KeyEvent.KEYCODE_MEDIA_RECORD:
5485 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005486 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005487 case KeyEvent.KEYCODE_CAMERA:
5488 return false;
5489 }
5490 return true;
5491 }
5492
5493
Jeff Brown56194eb2011-03-02 19:23:13 -08005494 /** {@inheritDoc} */
5495 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005496 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5497 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005498 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5499 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005500 return 0;
5501 }
Michael Wright70af00a2014-09-03 19:30:20 -07005502 }
Bryce Lee5c138322014-11-03 08:26:09 -08005503
Michael Wright70af00a2014-09-03 19:30:20 -07005504 if (shouldDispatchInputWhenNonInteractive()) {
5505 return ACTION_PASS_TO_USER;
5506 }
Bryce Lee5c138322014-11-03 08:26:09 -08005507
Bryce Lee812d7022014-11-10 13:33:28 -08005508 // If we have not passed the action up and we are in theater mode without dreaming,
5509 // there will be no dream to intercept the touch and wake into ambient. The device should
5510 // wake up in this case.
5511 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005512 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5513 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005514 }
5515
Jeff Brown037c33e2014-04-09 00:31:55 -07005516 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005517 }
5518
Michael Wright70af00a2014-09-03 19:30:20 -07005519 private boolean shouldDispatchInputWhenNonInteractive() {
Joe LaPennaf2b9b2d2015-11-17 22:22:37 +00005520 // Send events to keyguard while the screen is on.
5521 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
5522 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08005523 return true;
5524 }
5525
5526 // Send events to a dozing dream even if the screen is off since the dream
5527 // is in control of the state of the screen.
5528 IDreamManager dreamManager = getDreamManager();
5529
5530 try {
5531 if (dreamManager != null && dreamManager.isDreaming()) {
5532 return true;
5533 }
5534 } catch (RemoteException e) {
5535 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5536 }
5537
5538 // Otherwise, consume events since the user can't see what is being
5539 // interacted with.
5540 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005541 }
5542
RoboErik001c59c2015-01-26 15:53:51 -08005543 private void dispatchDirectAudioEvent(KeyEvent event) {
5544 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5545 return;
5546 }
5547 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005548 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5549 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005550 String pkgName = mContext.getOpPackageName();
5551 switch (keyCode) {
5552 case KeyEvent.KEYCODE_VOLUME_UP:
5553 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005554 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005555 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005556 } catch (RemoteException e) {
5557 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5558 }
5559 break;
5560 case KeyEvent.KEYCODE_VOLUME_DOWN:
5561 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005562 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005563 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005564 } catch (RemoteException e) {
5565 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5566 }
5567 break;
5568 case KeyEvent.KEYCODE_VOLUME_MUTE:
5569 try {
5570 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005571 getAudioService().adjustSuggestedStreamVolume(
5572 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005573 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005574 }
5575 } catch (RemoteException e) {
5576 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5577 }
5578 break;
5579 }
5580 }
5581
Jeff Brown40013652012-05-16 21:22:36 -07005582 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5583 if (DEBUG_INPUT) {
5584 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005585 }
5586
Jeff Brown40013652012-05-16 21:22:36 -07005587 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5588 if (DEBUG_INPUT) {
5589 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5590 }
5591
5592 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5593 mHavePendingMediaKeyRepeatWithWakeLock = false;
5594 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5595 }
5596
5597 dispatchMediaKeyWithWakeLockToAudioService(event);
5598
5599 if (event.getAction() == KeyEvent.ACTION_DOWN
5600 && event.getRepeatCount() == 0) {
5601 mHavePendingMediaKeyRepeatWithWakeLock = true;
5602
5603 Message msg = mHandler.obtainMessage(
5604 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5605 msg.setAsynchronous(true);
5606 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5607 } else {
5608 mBroadcastWakeLock.release();
5609 }
5610 }
5611
5612 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5613 mHavePendingMediaKeyRepeatWithWakeLock = false;
5614
5615 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5616 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5617 if (DEBUG_INPUT) {
5618 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5619 }
5620
5621 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5622 mBroadcastWakeLock.release();
5623 }
5624
5625 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5626 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005627 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005628 }
5629 }
5630
Michael Wright869a67c2014-08-26 19:33:06 -07005631 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005632 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5633 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5634 if (dic != null) {
5635 try {
5636 dic.exitIdle("voice-search");
5637 } catch (RemoteException e) {
5638 }
5639 }
Michael Wright869a67c2014-08-26 19:33:06 -07005640 Intent voiceIntent =
5641 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5642 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005643 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005644 mBroadcastWakeLock.release();
5645 }
5646
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005647 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005648 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005649 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005650 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5651 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5652 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005653 } else {
5654 try {
5655 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5656 ServiceManager.getService(Context.UI_MODE_SERVICE));
5657 mUiMode = uiModeService.getCurrentModeType();
5658 } catch (RemoteException e) {
5659 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005660 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005661 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005662 synchronized (mLock) {
5663 updateOrientationListenerLp();
5664 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005665 }
5666 };
5667
Jeff Brown6aaf2952012-10-05 16:01:08 -07005668 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5669 @Override
5670 public void onReceive(Context context, Intent intent) {
5671 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005672 if (mKeyguardDelegate != null) {
5673 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005674 }
5675 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005676 if (mKeyguardDelegate != null) {
5677 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005678 }
5679 }
5680 }
5681 };
5682
Christopher Tate5e08af02012-09-21 17:17:22 -07005683 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5684 @Override
5685 public void onReceive(Context context, Intent intent) {
5686 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5687 // tickle the settings observer: this first ensures that we're
5688 // observing the relevant settings for the newly-active user,
5689 // and then updates our own bookkeeping based on the now-
5690 // current user.
5691 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005692
5693 // force a re-application of focused window sysui visibility.
5694 // the window may never have been shown for this user
5695 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005696 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005697 mLastSystemUiFlags = 0;
5698 updateSystemUiVisibilityLw();
5699 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005700 }
5701 }
5702 };
5703
Adrian Roosddc8b272015-05-21 16:28:27 -07005704 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005705 @Override
5706 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005707 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5708 if (!isUserSetupComplete()) {
5709 // Swipe-up for navigation bar is disabled during setup
5710 return;
5711 }
5712 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5713 mNavigationBarController.showTransient();
5714 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005715 }
5716 };
5717
John Spurlocke1f366f2013-08-05 12:22:40 -04005718 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005719 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005720 if (!isUserSetupComplete()) {
5721 // Swipe-up for navigation bar is disabled during setup
5722 return;
5723 }
John Spurlock27735a42013-08-14 17:57:38 -04005724 boolean sb = mStatusBarController.checkShowTransientBarLw();
5725 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005726 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005727 // Don't show status bar when swiping on already visible navigation bar
5728 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005729 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005730 return;
5731 }
John Spurlock27735a42013-08-14 17:57:38 -04005732 if (sb) mStatusBarController.showTransient();
5733 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005734 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005735 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005736 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005737 }
5738 }
5739
Jeff Brown3ee549c2014-09-22 20:14:39 -07005740 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005741 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005742 public void startedGoingToSleep(int why) {
5743 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005744 if (mKeyguardDelegate != null) {
5745 mKeyguardDelegate.onStartedGoingToSleep(why);
5746 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005747 }
5748
5749 // Called on the PowerManager's Notifier thread.
5750 @Override
5751 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005752 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005753 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005754 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005755
5756 // We must get this work done here because the power manager will drop
5757 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005758 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005759 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005760 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005761 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005762 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005763 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005764 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005765 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005766 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005767 }
5768
Jeff Brown3ee549c2014-09-22 20:14:39 -07005769 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005770 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005771 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005772 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005773 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005774
Jeff Brown3ee549c2014-09-22 20:14:39 -07005775 // Since goToSleep performs these functions synchronously, we must
5776 // do the same here. We cannot post this work to a handler because
5777 // that might cause it to become reordered with respect to what
5778 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005779 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005780 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005781
Jeff Browna20dda42014-05-27 20:57:24 -07005782 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005783 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005784 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005785 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005786
Jim Miller5ecd8112013-01-09 18:50:26 -08005787 if (mKeyguardDelegate != null) {
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005788 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005789 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005790 }
5791
Jeff Brown416c49c2015-05-26 19:50:18 -07005792 // Called on the PowerManager's Notifier thread.
5793 @Override
5794 public void finishedWakingUp() {
5795 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5796 }
5797
5798 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005799 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005800 }
5801
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005802 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005803 final boolean theaterModeEnabled = isTheaterModeEnabled();
5804 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005805 return false;
5806 }
5807
Bryce Leed3896842015-06-23 17:06:51 -07005808 if (theaterModeEnabled) {
5809 Settings.Global.putInt(mContext.getContentResolver(),
5810 Settings.Global.THEATER_MODE_ON, 0);
5811 }
5812
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005813 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005814 return true;
5815 }
5816
Jeff Brown36c4db82014-09-19 12:05:31 -07005817 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005818 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005819 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005820 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005821 }
5822
Jeff Brown36c4db82014-09-19 12:05:31 -07005823 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005824 if (mKeyguardDelegate != null) {
5825 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5826 }
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005827 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005828 }
5829
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005830 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5831 // as well as enabling the orientation change logic/sensor.
5832 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5833 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005834 }
5835
5836 // Called on the DisplayManager's DisplayPowerController thread.
5837 @Override
5838 public void screenTurnedOff() {
5839 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5840
Jeff Brown48d1b142015-06-10 16:36:03 -07005841 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005842 synchronized (mLock) {
5843 mScreenOnEarly = false;
5844 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005845 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005846 mWindowManagerDrawComplete = false;
5847 mScreenOnListener = null;
5848 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005849
5850 if (mKeyguardDelegate != null) {
5851 mKeyguardDelegate.onScreenTurnedOff();
5852 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005853 }
5854 }
5855
Jeff Brown3ee549c2014-09-22 20:14:39 -07005856 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005857 @Override
5858 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005859 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005860
Jeff Brown48d1b142015-06-10 16:36:03 -07005861 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005862 synchronized (mLock) {
5863 mScreenOnEarly = true;
5864 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005865 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005866 mWindowManagerDrawComplete = false;
5867 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005868
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005869 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005870 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5871 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005872 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5873 } else {
5874 if (DEBUG_WAKEUP) Slog.d(TAG,
5875 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5876 finishKeyguardDrawn();
5877 }
5878 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005879 }
5880
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005881 // Called on the DisplayManager's DisplayPowerController thread.
5882 @Override
5883 public void screenTurnedOn() {
5884 synchronized (mLock) {
5885 if (mKeyguardDelegate != null) {
5886 mKeyguardDelegate.onScreenTurnedOn();
5887 }
5888 }
5889 }
5890
Jeff Brown36c4db82014-09-19 12:05:31 -07005891 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005892 synchronized (mLock) {
5893 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005894 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005895 }
5896
Jeff Brown36c4db82014-09-19 12:05:31 -07005897 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005898 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005899
5900 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005901 }
5902
Craig Mautner8a0da012014-05-31 15:13:37 -07005903 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005904 synchronized (mLock) {
5905 // We have just finished drawing screen content. Since the orientation listener
5906 // gets only installed when all windows are drawn, we try to install it again.
5907 updateOrientationListenerLp();
5908 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005909 final ScreenOnListener listener;
5910 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005911 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005912 if (DEBUG_WAKEUP) Slog.d(TAG,
5913 "finishScreenTurningOn: mAwake=" + mAwake
5914 + ", mScreenOnEarly=" + mScreenOnEarly
5915 + ", mScreenOnFully=" + mScreenOnFully
5916 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5917 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5918
5919 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5920 || (mAwake && !mKeyguardDrawComplete)) {
5921 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005922 }
5923
Jeff Brown3ee549c2014-09-22 20:14:39 -07005924 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5925 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005926 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005927 mScreenOnFully = true;
5928
5929 // Remember the first time we draw the keyguard so we know when we're done with
5930 // the main part of booting and can enable the screen and hide boot messages.
5931 if (!mKeyguardDrawnOnce && mAwake) {
5932 mKeyguardDrawnOnce = true;
5933 enableScreen = true;
5934 if (mBootMessageNeedsHiding) {
5935 mBootMessageNeedsHiding = false;
5936 hideBootMessages();
5937 }
5938 } else {
5939 enableScreen = false;
5940 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005941 }
5942
Jeff Brown3ee549c2014-09-22 20:14:39 -07005943 if (listener != null) {
5944 listener.onScreenOn();
5945 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005946
Jeff Brown3ee549c2014-09-22 20:14:39 -07005947 if (enableScreen) {
5948 try {
5949 mWindowManager.enableScreenIfNeeded();
5950 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005951 }
Craig Mautnera631d492014-08-05 15:16:01 -07005952 }
5953 }
5954
5955 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005956 synchronized (mLock) {
5957 if (!mKeyguardDrawnOnce) {
5958 mBootMessageNeedsHiding = true;
5959 return; // keyguard hasn't drawn the first time yet, not done booting
5960 }
Craig Mautnera631d492014-08-05 15:16:01 -07005961 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005962
5963 if (mBootMsgDialog != null) {
5964 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5965 mBootMsgDialog.dismiss();
5966 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005967 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005968 }
5969
5970 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005971 public boolean isScreenOn() {
5972 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005973 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005974
Dianne Hackborn08743722009-12-21 12:16:51 -08005975 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005976 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005977 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005978 if (mKeyguardDelegate != null) {
5979 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005980 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005981 }
5982
5983 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005984 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005985 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005986 if (mKeyguardDelegate != null) {
5987 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005988 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005989 }
5990
Jim Millerab954542014-10-10 18:21:49 -07005991 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005992 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005993 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005994 }
5995
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005996 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005997 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005998 public boolean isKeyguardLocked() {
5999 return keyguardOn();
6000 }
6001
6002 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006003 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05006004 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08006005 if (mKeyguardDelegate == null) return false;
6006 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05006007 }
6008
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006009 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006010 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07006011 public boolean isKeyguardShowingOrOccluded() {
6012 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
6013 }
6014
6015 /** {@inheritDoc} */
6016 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006017 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08006018 if (mKeyguardDelegate == null) return false;
6019 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006020 }
6021
Jose Lima9546b202014-07-02 17:21:51 -07006022 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07006023 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07006024 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07006025 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05006026 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07006027 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05006028 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02006029 // ask the keyguard to prompt the user to authenticate if necessary
6030 mKeyguardDelegate.dismiss();
6031 }
6032 });
6033 }
6034 }
6035
6036 public void notifyActivityDrawnForKeyguardLw() {
6037 if (mKeyguardDelegate != null) {
6038 mHandler.post(new Runnable() {
6039 @Override
6040 public void run() {
6041 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05006042 }
6043 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07006044 }
6045 }
6046
Jorim Jaggicff0acb2014-03-31 16:35:15 +02006047 @Override
6048 public boolean isKeyguardDrawnLw() {
6049 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006050 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02006051 }
6052 }
6053
Jorim Jaggi0d674622014-05-21 01:34:15 +02006054 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02006055 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02006056 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07006057 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02006058 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02006059 }
6060 }
6061
Jorim Jaggi737af722015-12-31 10:42:27 +01006062 @Override
6063 public void getStableInsetsLw(int displayRotation, int displayWidth, int displayHeight,
6064 Rect outInsets) {
6065 outInsets.setEmpty();
6066 if (mStatusBar != null) {
6067 outInsets.top = mStatusBarHeight;
6068 }
6069 if (mNavigationBar != null) {
6070 if (isNavigationBarOnBottom(displayWidth, displayHeight)) {
6071 outInsets.bottom = getNavigationBarHeight(displayRotation, mUiMode);
6072 } else {
6073 outInsets.right = getNavigationBarWidth(displayRotation, mUiMode);
6074 }
6075 }
6076 }
6077
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006078 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01006079 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006080 }
6081
6082 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01006083 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006084 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07006085
Jeff Brown01a98dd2011-09-20 15:08:29 -07006086 @Override
6087 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006088 if (false) {
6089 Slog.v(TAG, "rotationForOrientationLw(orient="
6090 + orientation + ", last=" + lastRotation
6091 + "); user=" + mUserRotation + " "
6092 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
6093 ? "USER_ROTATION_LOCKED" : "")
6094 );
6095 }
6096
Craig Mautner46ac6fa2013-08-01 10:06:34 -07006097 if (mForceDefaultOrientation) {
6098 return Surface.ROTATION_0;
6099 }
6100
The Android Open Source Project0727d222009-03-11 12:11:58 -07006101 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07006102 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
6103 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07006104 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07006105 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006106
Jeff Browndec6cf42011-11-15 14:08:20 -08006107 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07006108 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07006109 // Ignore sensor when lid switch is open and rotation is forced.
6110 preferredRotation = mLidOpenRotation;
6111 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07006112 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07006113 // Ignore sensor when in car dock unless explicitly enabled.
6114 // This case can override the behavior of NOSENSOR, and can also
6115 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07006116 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07006117 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08006118 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6119 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
6120 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07006121 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07006122 // Ignore sensor when in desk dock unless explicitly enabled.
6123 // This case can override the behavior of NOSENSOR, and can also
6124 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07006125 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07006126 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006127 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
6128 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08006129 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006130 preferredRotation = mDemoHdmiRotation;
6131 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
6132 && mUndockedHdmiRotation >= 0) {
6133 // Ignore sensor when plugged into HDMI and an undocked orientation has
6134 // been specified in the configuration (only for legacy devices without
6135 // full multi-display support).
6136 // Note that the dock orientation overrides the HDMI orientation.
6137 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08006138 } else if (mDemoRotationLock) {
6139 // Ignore sensor when demo rotation lock is enabled.
6140 // Note that the dock orientation and HDMI rotation lock override this.
6141 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006142 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
6143 // Application just wants to remain locked in the last rotation.
6144 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08006145 } else if (!mSupportAutoRotation) {
6146 // If we don't support auto-rotation then bail out here and ignore
6147 // the sensor and any rotation lock settings.
6148 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07006149 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07006150 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006151 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
6152 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
6153 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
6154 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07006155 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
6156 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
6157 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
6158 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
6159 // Otherwise, use sensor only if requested by the application or enabled
6160 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07006161 if (mAllowAllRotations < 0) {
6162 // Can't read this during init() because the context doesn't
6163 // have display metrics at that time so we cannot determine
6164 // tablet vs. phone then.
6165 mAllowAllRotations = mContext.getResources().getBoolean(
6166 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
6167 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006168 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07006169 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006170 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
6171 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07006172 preferredRotation = sensorRotation;
6173 } else {
6174 preferredRotation = lastRotation;
6175 }
Jeff Brown207673cd2012-06-05 17:47:11 -07006176 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
6177 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
6178 // Apply rotation lock. Does not apply to NOSENSOR.
6179 // The idea is that the user rotation expresses a weak preference for the direction
6180 // of gravity and as NOSENSOR is never affected by gravity, then neither should
6181 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07006182 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08006183 } else {
6184 // No overriding preference.
6185 // We will do exactly what the application asked us to do.
6186 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07006187 }
6188
Dianne Hackborne5439f22010-10-02 16:53:50 -07006189 switch (orientation) {
6190 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08006191 // Return portrait unless overridden.
6192 if (isAnyPortrait(preferredRotation)) {
6193 return preferredRotation;
6194 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07006195 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006196
Jeff Brown01a98dd2011-09-20 15:08:29 -07006197 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08006198 // Return landscape unless overridden.
6199 if (isLandscapeOrSeascape(preferredRotation)) {
6200 return preferredRotation;
6201 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006202 return mLandscapeRotation;
6203
6204 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08006205 // Return reverse portrait unless overridden.
6206 if (isAnyPortrait(preferredRotation)) {
6207 return preferredRotation;
6208 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006209 return mUpsideDownRotation;
6210
6211 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08006212 // Return seascape unless overridden.
6213 if (isLandscapeOrSeascape(preferredRotation)) {
6214 return preferredRotation;
6215 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006216 return mSeascapeRotation;
6217
6218 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006219 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07006220 // Return either landscape rotation.
6221 if (isLandscapeOrSeascape(preferredRotation)) {
6222 return preferredRotation;
6223 }
6224 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08006225 return lastRotation;
6226 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006227 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006228
Jeff Brown01a98dd2011-09-20 15:08:29 -07006229 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006230 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07006231 // Return either portrait rotation.
6232 if (isAnyPortrait(preferredRotation)) {
6233 return preferredRotation;
6234 }
6235 if (isAnyPortrait(lastRotation)) {
6236 return lastRotation;
6237 }
6238 return mPortraitRotation;
6239
6240 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07006241 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
6242 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07006243 if (preferredRotation >= 0) {
6244 return preferredRotation;
6245 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07006246 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05006247 }
6248 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006249 }
6250
Jeff Brown01a98dd2011-09-20 15:08:29 -07006251 @Override
6252 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
6253 switch (orientation) {
6254 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
6255 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
6256 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
6257 return isAnyPortrait(rotation);
6258
6259 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
6260 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
6261 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
6262 return isLandscapeOrSeascape(rotation);
6263
6264 default:
6265 return true;
6266 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006267 }
6268
Jeff Brownc0347aa2011-09-23 17:26:09 -07006269 @Override
6270 public void setRotationLw(int rotation) {
6271 mOrientationListener.setCurrentRotation(rotation);
6272 }
6273
Jeff Brown01a98dd2011-09-20 15:08:29 -07006274 private boolean isLandscapeOrSeascape(int rotation) {
6275 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006276 }
6277
Jeff Brown01a98dd2011-09-20 15:08:29 -07006278 private boolean isAnyPortrait(int rotation) {
6279 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006280 }
6281
Jose Lima9546b202014-07-02 17:21:51 -07006282 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006283 public int getUserRotationMode() {
6284 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07006285 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
6286 WindowManagerPolicy.USER_ROTATION_FREE :
6287 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006288 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006289
6290 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07006291 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006292 public void setUserRotationMode(int mode, int rot) {
6293 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006294
6295 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006296 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006297 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006298 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006299 rot,
6300 UserHandle.USER_CURRENT);
6301 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006302 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006303 0,
6304 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006305 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006306 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006307 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006308 1,
6309 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006310 }
6311 }
6312
Jose Lima9546b202014-07-02 17:21:51 -07006313 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006314 public void setSafeMode(boolean safeMode) {
6315 mSafeMode = safeMode;
6316 performHapticFeedbackLw(null, safeMode
6317 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6318 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006319 }
Craig Mautnereda67292013-04-28 13:50:14 -07006320
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006321 static long[] getLongIntArray(Resources r, int resid) {
6322 int[] ar = r.getIntArray(resid);
6323 if (ar == null) {
6324 return null;
6325 }
6326 long[] out = new long[ar.length];
6327 for (int i=0; i<ar.length; i++) {
6328 out[i] = ar[i];
6329 }
6330 return out;
6331 }
Craig Mautnereda67292013-04-28 13:50:14 -07006332
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006333 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006334 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006335 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006336 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006337 mKeyguardDelegate.onSystemReady();
6338
Michael Wright3818c922014-09-02 13:59:07 -07006339 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006340 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006341 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006342 synchronized (mLock) {
6343 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006344 mSystemReady = true;
6345 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006346 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006347 public void run() {
6348 updateSettings();
6349 }
6350 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006351
6352 bindKeyguardNow = mDeferBindKeyguard;
6353 if (bindKeyguardNow) {
6354 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6355 mDeferBindKeyguard = false;
6356 }
6357 }
6358
6359 if (bindKeyguardNow) {
6360 mKeyguardDelegate.bindService(mContext);
6361 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006362 }
Michael Wrighta4d22d72015-09-16 23:19:26 +01006363 mSystemGestures.systemReady();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006364 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006365
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006366 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006367 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006368 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006369 boolean bindKeyguardNow = false;
6370 synchronized (mLock) {
6371 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6372 // in systemReady if not.
6373 if (mKeyguardDelegate != null) {
6374 bindKeyguardNow = true;
6375 } else {
6376 // Because mKeyguardDelegate is null, we know that the synchronized block in
6377 // systemReady didn't run yet and setting this will actually have an effect.
6378 mDeferBindKeyguard = true;
6379 }
6380 }
6381 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006382 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006383 mKeyguardDelegate.onBootCompleted();
6384 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006385 synchronized (mLock) {
6386 mSystemBooted = true;
6387 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006388 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006389 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006390 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006391 }
6392
Dianne Hackborn661cd522011-08-22 00:26:20 -07006393 ProgressDialog mBootMsgDialog = null;
6394
6395 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006396 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006397 public void showBootMessage(final CharSequence msg, final boolean always) {
6398 mHandler.post(new Runnable() {
6399 @Override public void run() {
6400 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006401 int theme;
Jaewan Kim49117872016-01-19 17:24:08 +09006402 if (mContext.getPackageManager().hasSystemFeature(FEATURE_WATCH)) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006403 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
Jaewan Kim49117872016-01-19 17:24:08 +09006404 } else if (mContext.getPackageManager().hasSystemFeature(FEATURE_TELEVISION)) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006405 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6406 } else {
6407 theme = 0;
6408 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006409
6410 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006411 // This dialog will consume all events coming in to
6412 // it, to avoid it trying to do things too early in boot.
6413 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6414 return true;
6415 }
6416 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6417 return true;
6418 }
6419 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6420 return true;
6421 }
6422 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6423 return true;
6424 }
6425 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6426 return true;
6427 }
6428 @Override public boolean dispatchPopulateAccessibilityEvent(
6429 AccessibilityEvent event) {
6430 return true;
6431 }
6432 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006433 if (mContext.getPackageManager().isUpgrade()) {
6434 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6435 } else {
6436 mBootMsgDialog.setTitle(R.string.android_start_title);
6437 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006438 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6439 mBootMsgDialog.setIndeterminate(true);
6440 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006441 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006442 mBootMsgDialog.getWindow().addFlags(
6443 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6444 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6445 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006446 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6447 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6448 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006449 mBootMsgDialog.setCancelable(false);
6450 mBootMsgDialog.show();
6451 }
6452 mBootMsgDialog.setMessage(msg);
6453 }
6454 });
6455 }
6456
6457 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006458 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006459 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006460 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006461 }
6462
Mike Lockwood28569302010-01-28 11:54:40 -05006463 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006464 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006465 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006466 // ***************************************
6467 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6468 // ***************************************
6469 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6470 // WITH ITS LOCKS HELD.
6471 //
6472 // This code must be VERY careful about the locks
6473 // it acquires.
6474 // In fact, the current code acquires way too many,
6475 // and probably has lurking deadlocks.
6476
Mike Lockwood28569302010-01-28 11:54:40 -05006477 synchronized (mScreenLockTimeout) {
6478 if (mLockScreenTimerActive) {
6479 // reset the timer
6480 mHandler.removeCallbacks(mScreenLockTimeout);
6481 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6482 }
6483 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006484 }
6485
Adam Cohenf7522022012-10-03 20:03:18 -07006486 class ScreenLockTimeout implements Runnable {
6487 Bundle options;
6488
6489 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006490 public void run() {
6491 synchronized (this) {
6492 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006493 if (mKeyguardDelegate != null) {
6494 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006495 }
Mike Lockwood28569302010-01-28 11:54:40 -05006496 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006497 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006498 }
6499 }
Mike Lockwood28569302010-01-28 11:54:40 -05006500
Adam Cohenf7522022012-10-03 20:03:18 -07006501 public void setLockOptions(Bundle options) {
6502 this.options = options;
6503 }
6504 }
6505
6506 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6507
Jose Lima9546b202014-07-02 17:21:51 -07006508 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006509 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006510 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6511 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006512 if (options != null) {
6513 // In case multiple calls are made to lockNow, we don't wipe out the options
6514 // until the runnable actually executes.
6515 mScreenLockTimeout.setLockOptions(options);
6516 }
Jim Miller93c518e2012-01-17 15:55:31 -08006517 mHandler.post(mScreenLockTimeout);
6518 }
6519
Mike Lockwood28569302010-01-28 11:54:40 -05006520 private void updateLockScreenTimeout() {
6521 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006522 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006523 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006524 if (mLockScreenTimerActive != enable) {
6525 if (enable) {
6526 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
Jim Miller2967f482016-01-07 15:05:32 -08006527 mHandler.removeCallbacks(mScreenLockTimeout); // remove any pending requests
Mike Lockwood28569302010-01-28 11:54:40 -05006528 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6529 } else {
6530 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6531 mHandler.removeCallbacks(mScreenLockTimeout);
6532 }
6533 mLockScreenTimerActive = enable;
6534 }
6535 }
6536 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006537
Jeff Brown061ea992015-04-17 19:55:47 -07006538 private void updateDreamingSleepToken(boolean acquire) {
6539 if (acquire) {
6540 if (mDreamingSleepToken == null) {
6541 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6542 }
6543 } else {
6544 if (mDreamingSleepToken != null) {
6545 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006546 mDreamingSleepToken = null;
6547 }
6548 }
6549 }
6550
6551 private void updateScreenOffSleepToken(boolean acquire) {
6552 if (acquire) {
6553 if (mScreenOffSleepToken == null) {
6554 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6555 }
6556 } else {
6557 if (mScreenOffSleepToken != null) {
6558 mScreenOffSleepToken.release();
6559 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006560 }
6561 }
6562 }
6563
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006564 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006565 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006566 public void enableScreenAfterBoot() {
6567 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006568 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006569 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006570 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006571
Jeff Brownc458ce92012-04-30 14:58:40 -07006572 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006573 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006574 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006575 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006576 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Edward Savage-Jones7def60d2015-11-13 13:27:03 +01006577 } else if (mLidState == LID_CLOSED && mLidControlsScreenLock) {
6578 mWindowManagerFuncs.lockDeviceNow();
Jeff Brownc458ce92012-04-30 14:58:40 -07006579 }
Jeff Browna20dda42014-05-27 20:57:24 -07006580
6581 synchronized (mLock) {
6582 updateWakeGestureListenerLp();
6583 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006584 }
6585
Jeff Brown4f5fa282014-06-12 19:19:15 -07006586 void updateUiMode() {
6587 if (mUiModeManager == null) {
6588 mUiModeManager = IUiModeManager.Stub.asInterface(
6589 ServiceManager.getService(Context.UI_MODE_SERVICE));
6590 }
6591 try {
6592 mUiMode = mUiModeManager.getCurrentModeType();
6593 } catch (RemoteException e) {
6594 }
6595 }
6596
Jeff Brown01a98dd2011-09-20 15:08:29 -07006597 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006598 try {
6599 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006600 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6601 } catch (RemoteException e) {
6602 // Ignore
6603 }
6604 }
6605
6606 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6607 try {
6608 //set orientation on WindowManager
6609 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006610 } catch (RemoteException e) {
6611 // Ignore
6612 }
6613 }
6614
Daniel Sandler6396c722013-04-16 20:19:09 -04006615 /**
6616 * Return an Intent to launch the currently active dock app as home. Returns
6617 * null if the standard home should be launched, which is the case if any of the following is
6618 * true:
6619 * <ul>
6620 * <li>The device is not in either car mode or desk mode
keunyounga7710492015-09-23 11:33:58 -07006621 * <li>The device is in car mode but mEnableCarDockHomeCapture is false
Daniel Sandler6396c722013-04-16 20:19:09 -04006622 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6623 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6624 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6625 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006626 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006627 */
6628 Intent createHomeDockIntent() {
6629 Intent intent = null;
6630
6631 // What home does is based on the mode, not the dock state. That
6632 // is, when in car mode you should be taken to car home regardless
6633 // of whether we are actually in a car dock.
6634 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
keunyounga7710492015-09-23 11:33:58 -07006635 if (mEnableCarDockHomeCapture) {
Daniel Sandler6396c722013-04-16 20:19:09 -04006636 intent = mCarDockIntent;
6637 }
6638 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6639 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6640 intent = mDeskDockIntent;
6641 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006642 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6643 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6644 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6645 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6646 // Always launch dock home from home when watch is docked, if it exists.
6647 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006648 }
6649
6650 if (intent == null) {
6651 return null;
6652 }
6653
6654 ActivityInfo ai = null;
6655 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6656 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006657 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006658 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006659 if (info != null) {
6660 ai = info.activityInfo;
6661 }
6662 if (ai != null
6663 && ai.metaData != null
6664 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6665 intent = new Intent(intent);
6666 intent.setClassName(ai.packageName, ai.name);
6667 return intent;
6668 }
6669
6670 return null;
6671 }
6672
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006673 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6674 if (awakenFromDreams) {
6675 awakenDreams();
6676 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006677
6678 Intent dock = createHomeDockIntent();
6679 if (dock != null) {
6680 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006681 if (fromHomeKey) {
6682 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6683 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006684 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006685 return;
6686 } catch (ActivityNotFoundException e) {
6687 }
6688 }
6689
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006690 Intent intent;
6691
6692 if (fromHomeKey) {
6693 intent = new Intent(mHomeIntent);
6694 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6695 } else {
6696 intent = mHomeIntent;
6697 }
6698
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006699 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006700 }
Craig Mautnereda67292013-04-28 13:50:14 -07006701
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006702 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006703 * goes to the home screen
6704 * @return whether it did anything
6705 */
6706 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006707 if (!isUserSetupComplete()) {
6708 Slog.i(TAG, "Not going home because user setup is in progress.");
6709 return false;
6710 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006711 if (false) {
6712 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006713 try {
6714 ActivityManagerNative.getDefault().stopAppSwitches();
6715 } catch (RemoteException e) {
6716 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006717 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006718 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006719 } else {
6720 // This code brings home to the front or, if it is already
6721 // at the front, puts the device to sleep.
6722 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006723 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6724 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6725 Log.d(TAG, "UTS-TEST-MODE");
6726 } else {
6727 ActivityManagerNative.getDefault().stopAppSwitches();
6728 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006729 Intent dock = createHomeDockIntent();
6730 if (dock != null) {
6731 int result = ActivityManagerNative.getDefault()
6732 .startActivityAsUser(null, null, dock,
6733 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6734 null, null, 0,
6735 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006736 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006737 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6738 return false;
6739 }
6740 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006741 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006742 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006743 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006744 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006745 null, null, 0,
6746 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006747 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006748 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006749 return false;
6750 }
6751 } catch (RemoteException ex) {
6752 // bummer, the activity manager, which is in this process, is dead
6753 }
6754 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006755 return true;
6756 }
Craig Mautnereda67292013-04-28 13:50:14 -07006757
6758 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006759 public void setCurrentOrientationLw(int newOrientation) {
6760 synchronized (mLock) {
6761 if (newOrientation != mCurrentAppOrientation) {
6762 mCurrentAppOrientation = newOrientation;
6763 updateOrientationListenerLp();
6764 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006765 }
6766 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006767
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006768 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6769 if (!isGlobalAccessibilityGestureEnabled()) {
6770 return;
6771 }
6772 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6773 Context.AUDIO_SERVICE);
6774 if (audioManager.isSilentMode()) {
6775 return;
6776 }
6777 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6778 Settings.System.DEFAULT_NOTIFICATION_URI);
6779 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6780 ringTone.play();
6781 }
Craig Mautnereda67292013-04-28 13:50:14 -07006782
Bryce Lee584a4452014-10-21 15:55:55 -07006783 private boolean isTheaterModeEnabled() {
6784 return Settings.Global.getInt(mContext.getContentResolver(),
6785 Settings.Global.THEATER_MODE_ON, 0) == 1;
6786 }
6787
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006788 private boolean isGlobalAccessibilityGestureEnabled() {
6789 return Settings.Global.getInt(mContext.getContentResolver(),
6790 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6791 }
6792
Craig Mautnereda67292013-04-28 13:50:14 -07006793 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006794 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006795 if (!mVibrator.hasVibrator()) {
6796 return false;
6797 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006798 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6799 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006800 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006801 return false;
6802 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006803 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006804 switch (effectId) {
6805 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006806 pattern = mLongPressVibePattern;
6807 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006808 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006809 pattern = mVirtualKeyVibePattern;
6810 break;
6811 case HapticFeedbackConstants.KEYBOARD_TAP:
6812 pattern = mKeyboardTapVibePattern;
6813 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006814 case HapticFeedbackConstants.CLOCK_TICK:
6815 pattern = mClockTickVibePattern;
6816 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006817 case HapticFeedbackConstants.CALENDAR_DATE:
6818 pattern = mCalendarDateVibePattern;
6819 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006820 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006821 pattern = mSafeModeDisabledVibePattern;
6822 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006823 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006824 pattern = mSafeModeEnabledVibePattern;
6825 break;
Mady Mellore8608912015-06-05 09:02:55 -07006826 case HapticFeedbackConstants.CONTEXT_CLICK:
6827 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006828 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006829 default:
6830 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006831 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006832 int owningUid;
6833 String owningPackage;
6834 if (win != null) {
6835 owningUid = win.getOwningUid();
6836 owningPackage = win.getOwningPackage();
6837 } else {
6838 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006839 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006840 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006841 if (pattern.length == 1) {
6842 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006843 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006844 } else {
6845 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006846 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006847 }
6848 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006849 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006850
6851 @Override
6852 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006853 }
6854
Jeff Brownc38c9be2012-10-04 13:16:19 -07006855 @Override
6856 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006857 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006858 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006859 }
6860 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006861
Dianne Hackborndf89e652011-10-06 22:35:11 -07006862 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006863 // If there is no window focused, there will be nobody to handle the events
6864 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006865 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6866 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006867 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006868 return 0;
6869 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006870 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006871 // We are updating at a point where the keyguard has gotten
6872 // focus, but we were last in a state where the top window is
6873 // hiding it. This is probably because the keyguard as been
6874 // shown while the top window was displayed, so we want to ignore
6875 // it here because this is just a very transient change and it
6876 // will quickly lose focus once it correctly gets hidden.
6877 return 0;
6878 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006879
John Spurlock1db8b682014-02-18 11:18:59 -05006880 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006881 & ~mResettingSystemUiFlags
6882 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006883 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006884 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006885 }
Thanh Hai Mai6c009f52015-09-01 16:27:32 -07006886
6887 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6888 tmpVisibility |= StatusBarManager.DISABLE_RECENT;
6889 }
6890
Jorim Jaggi86905582016-02-09 21:36:09 -08006891 final int fullscreenVisibility = updateLightStatusBarLw(0 /* vis */,
6892 mTopFullscreenOpaqueWindowState, mTopFullscreenOpaqueOrDimmingWindowState);
6893 final int dockedVisibility = updateLightStatusBarLw(0 /* vis */,
6894 mTopDockedOpaqueWindowState, mTopDockedOpaqueOrDimmingWindowState);
6895 mWindowManagerFuncs.getStackBounds(HOME_STACK_ID, mNonDockedStackBounds);
6896 mWindowManagerFuncs.getStackBounds(DOCKED_STACK_ID, mDockedStackBounds);
John Spurlock79da8332013-09-20 12:04:47 -04006897 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006898 final int diff = visibility ^ mLastSystemUiFlags;
Jorim Jaggi86905582016-02-09 21:36:09 -08006899 final int fullscreenDiff = fullscreenVisibility ^ mLastFullscreenStackSysUiFlags;
6900 final int dockedDiff = dockedVisibility ^ mLastDockedStackSysUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006901 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Jorim Jaggi86905582016-02-09 21:36:09 -08006902 if (diff == 0 && fullscreenDiff == 0 && dockedDiff == 0 && mLastFocusNeedsMenu == needsMenu
6903 && mFocusedApp == win.getAppToken()
6904 && mLastNonDockedStackBounds.equals(mNonDockedStackBounds)
6905 && mLastDockedStackBounds.equals(mDockedStackBounds)) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006906 return 0;
6907 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006908 mLastSystemUiFlags = visibility;
Jorim Jaggi86905582016-02-09 21:36:09 -08006909 mLastFullscreenStackSysUiFlags = fullscreenVisibility;
6910 mLastDockedStackSysUiFlags = dockedVisibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006911 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006912 mFocusedApp = win.getAppToken();
Jorim Jaggi86905582016-02-09 21:36:09 -08006913 final Rect fullscreenStackBounds = new Rect(mNonDockedStackBounds);
6914 final Rect dockedStackBounds = new Rect(mDockedStackBounds);
Dianne Hackborndf89e652011-10-06 22:35:11 -07006915 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006916 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006917 public void run() {
Jorim Jaggi86905582016-02-09 21:36:09 -08006918 StatusBarManagerInternal statusbar = getStatusBarManagerInternal();
6919 if (statusbar != null) {
6920 statusbar.setSystemUiVisibility(visibility, fullscreenVisibility,
6921 dockedVisibility, 0xffffffff, fullscreenStackBounds,
6922 dockedStackBounds, win.toString());
6923 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006924 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006925 }
6926 });
6927 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006928 }
6929
Jorim Jaggi86905582016-02-09 21:36:09 -08006930 private int updateLightStatusBarLw(int vis, WindowState opaque, WindowState opaqueOrDimming) {
Adrian Rooscd3884d2015-02-18 17:25:23 +01006931 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6932 ? mStatusBar
Jorim Jaggi86905582016-02-09 21:36:09 -08006933 : opaqueOrDimming;
Adrian Rooscd3884d2015-02-18 17:25:23 +01006934
6935 if (statusColorWin != null) {
Jorim Jaggi86905582016-02-09 21:36:09 -08006936 if (statusColorWin == opaque) {
Adrian Rooscd3884d2015-02-18 17:25:23 +01006937 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6938 // its light flag.
6939 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6940 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6941 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6942 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6943 // Otherwise if it's dimming, clear the light flag.
6944 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6945 }
6946 }
6947 return vis;
6948 }
6949
John Spurlock79da8332013-09-20 12:04:47 -04006950 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006951 final boolean dockedStackVisible = mWindowManagerInternal.isStackVisible(DOCKED_STACK_ID);
6952 final boolean freeformStackVisible =
6953 mWindowManagerInternal.isStackVisible(FREEFORM_WORKSPACE_STACK_ID);
Jorim Jaggi9511b0f2016-01-29 19:12:44 -08006954 final boolean resizing = mWindowManagerInternal.isDockedDividerResizing();
6955
6956 // We need to force system bars when the docked stack is visible, when the freeform stack
6957 // is visible but also when we are resizing for the transitions when docked stack
6958 // visibility changes.
6959 final boolean forceShowSystemBars = dockedStackVisible || freeformStackVisible || resizing;
Jorim Jaggi4fa78922015-11-30 17:13:56 -08006960 final boolean forceOpaqueSystemBars = forceShowSystemBars && !mForceStatusBarFromKeyguard;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006961
John Spurlockbd957402013-10-03 11:38:39 -04006962 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006963 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6964 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006965 : mTopFullscreenOpaqueWindowState;
6966 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6967 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6968
John Spurlock27735a42013-08-14 17:57:38 -04006969 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006970 int type = win.getAttrs().type;
6971 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006972 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006973 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6974 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006975 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006976 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6977 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006978 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006979 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6980 }
John Spurlockbd957402013-10-03 11:38:39 -04006981 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006982 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006983
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006984 if ((!areTranslucentBarsAllowed() && transWin != mStatusBar)
6985 || forceOpaqueSystemBars) {
Adrian Roosea562512014-05-05 13:33:03 +02006986 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6987 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006988 }
6989
Jorim Jaggi4fa78922015-11-30 17:13:56 -08006990 if (mForceWindowDrawsStatusBarBackground) {
6991 vis |= View.STATUS_BAR_TRANSPARENT;
6992 vis &= ~View.STATUS_BAR_TRANSLUCENT;
6993 }
6994
John Spurlock27735a42013-08-14 17:57:38 -04006995 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006996 boolean immersiveSticky =
6997 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006998 final boolean hideStatusBarWM =
6999 mTopFullscreenOpaqueWindowState != null
7000 && (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04007001 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007002 final boolean hideStatusBarSysui =
John Spurlock27735a42013-08-14 17:57:38 -04007003 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007004 final boolean hideNavBarSysui =
John Spurlockf1a36642013-10-12 17:50:42 -04007005 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04007006
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007007 final boolean transientStatusBarAllowed = mStatusBar != null
7008 && (statusBarHasFocus || (!forceShowSystemBars
7009 && (hideStatusBarWM || (hideStatusBarSysui && immersiveSticky))));
John Spurlock27735a42013-08-14 17:57:38 -04007010
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007011 final boolean transientNavBarAllowed = mNavigationBar != null
7012 && !forceShowSystemBars && hideNavBarSysui && immersiveSticky;
John Spurlockf1a36642013-10-12 17:50:42 -04007013
Adrian Roosddc8b272015-05-21 16:28:27 -07007014 final long now = SystemClock.uptimeMillis();
7015 final boolean pendingPanic = mPendingPanicGestureUptime != 0
7016 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
7017 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
7018 // The user performed the panic gesture recently, we're about to hide the bars,
7019 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
7020 mPendingPanicGestureUptime = 0;
7021 mStatusBarController.showTransient();
7022 mNavigationBarController.showTransient();
7023 }
7024
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007025 final boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04007026 && !transientStatusBarAllowed && hideStatusBarSysui;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007027 final boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04007028 && !transientNavBarAllowed;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07007029 if (denyTransientStatus || denyTransientNav || forceShowSystemBars) {
John Spurlock27735a42013-08-14 17:57:38 -04007030 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04007031 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08007032 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04007033 }
John Spurlock27735a42013-08-14 17:57:38 -04007034
Selim Cinekf98702e2015-05-20 22:48:40 -07007035 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
7036 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
7037 final boolean navAllowedHidden = immersive || immersiveSticky;
7038
Selim Cinekd6623612015-05-22 18:56:22 -07007039 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
7040 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07007041 // We can't hide the navbar from this window otherwise the input consumer would not get
7042 // the input events.
7043 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
7044 }
7045
John Spurlock27735a42013-08-14 17:57:38 -04007046 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
7047
7048 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04007049 boolean oldImmersiveMode = isImmersiveMode(oldVis);
7050 boolean newImmersiveMode = isImmersiveMode(vis);
7051 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04007052 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07007053 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
7054 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04007055 }
John Spurlock27735a42013-08-14 17:57:38 -04007056
John Spurlockf1a36642013-10-12 17:50:42 -04007057 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
7058
John Spurlocke1f366f2013-08-05 12:22:40 -04007059 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04007060 }
7061
John Spurlockf1a36642013-10-12 17:50:42 -04007062 private void clearClearableFlagsLw() {
7063 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
7064 if (newVal != mResettingSystemUiFlags) {
7065 mResettingSystemUiFlags = newVal;
7066 mWindowManagerFuncs.reevaluateStatusBarVisibility();
7067 }
7068 }
7069
7070 private boolean isImmersiveMode(int vis) {
7071 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04007072 return mNavigationBar != null
7073 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04007074 && (vis & flags) != 0
7075 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04007076 }
7077
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07007078 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04007079 * @return whether the navigation or status bar can be made translucent
7080 *
7081 * This should return true unless touch exploration is not enabled or
7082 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07007083 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04007084 private boolean areTranslucentBarsAllowed() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04007085 return mTranslucentDecorEnabled;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07007086 }
7087
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04007088 // Use this instead of checking config_showNavigationBar so that it can be consistently
7089 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07007090 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04007091 public boolean hasNavigationBar() {
7092 return mHasNavigationBar;
7093 }
7094
satok1bc0a492012-04-25 22:47:12 +09007095 @Override
7096 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
7097 mLastInputMethodWindow = ime;
7098 mLastInputMethodTargetWindow = target;
7099 }
7100
Craig Mautnerf1b67412012-09-19 13:18:29 -07007101 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09007102 public int getInputMethodWindowVisibleHeightLw() {
7103 return mDockBottom - mCurBottom;
7104 }
7105
7106 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07007107 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07007108 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08007109 if (mKeyguardDelegate != null) {
7110 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07007111 }
John Spurlock13451a22012-09-28 14:40:41 -04007112 if (mStatusBarService != null) {
7113 try {
7114 mStatusBarService.setCurrentUser(newUserId);
7115 } catch (RemoteException e) {
7116 // oh well
7117 }
7118 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007119 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07007120 }
7121
7122 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08007123 public boolean canMagnifyWindow(int windowType) {
7124 switch (windowType) {
7125 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
7126 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
7127 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
7128 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
7129 return false;
7130 }
7131 }
7132 return true;
7133 }
7134
7135 @Override
7136 public boolean isTopLevelWindow(int windowType) {
7137 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
7138 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
7139 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
7140 }
7141 return true;
7142 }
7143
Jim Miller4eeb4f62012-11-08 00:04:29 -08007144 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07007145 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007146 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07007147 pw.print(" mSystemReady="); pw.print(mSystemReady);
7148 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07007149 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007150 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07007151 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007152 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07007153 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
7154 || mForceClearedSystemUiFlags != 0) {
7155 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
7156 pw.print(Integer.toHexString(mLastSystemUiFlags));
7157 pw.print(" mResettingSystemUiFlags=0x");
7158 pw.print(Integer.toHexString(mResettingSystemUiFlags));
7159 pw.print(" mForceClearedSystemUiFlags=0x");
7160 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07007161 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08007162 if (mLastFocusNeedsMenu) {
7163 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
7164 pw.println(mLastFocusNeedsMenu);
7165 }
Jeff Browna20dda42014-05-27 20:57:24 -07007166 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
7167 pw.println(mWakeGestureEnabledSetting);
7168
Jeff Brownbcdfc622014-03-06 19:13:04 -08007169 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04007170 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
7171 pw.print(" mDockMode="); pw.print(mDockMode);
keunyounga7710492015-09-23 11:33:58 -07007172 pw.print(" mEnableCarDockHomeCapture="); pw.print(mEnableCarDockHomeCapture);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007173 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
7174 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
7175 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
7176 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05007177 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07007178 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007179 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
7180 pw.print(mCarDockEnablesAccelerometer);
7181 pw.print(" mDeskDockEnablesAccelerometer=");
7182 pw.println(mDeskDockEnablesAccelerometer);
7183 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
7184 pw.print(mLidKeyboardAccessibility);
7185 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Edward Savage-Jones7def60d2015-11-13 13:27:03 +01007186 pw.print(" mLidControlsScreenLock="); pw.println(mLidControlsScreenLock);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07007187 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07007188 pw.print(prefix);
7189 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
7190 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07007191 pw.print(prefix);
7192 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
7193 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07007194 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07007195 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
7196 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
7197 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
7198 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
7199 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
7200 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
7201 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08007202 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
7203 pw.print(","); pw.print(mOverscanScreenTop);
7204 pw.print(") "); pw.print(mOverscanScreenWidth);
7205 pw.print("x"); pw.println(mOverscanScreenHeight);
7206 if (mOverscanLeft != 0 || mOverscanTop != 0
7207 || mOverscanRight != 0 || mOverscanBottom != 0) {
7208 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
7209 pw.print(" top="); pw.print(mOverscanTop);
7210 pw.print(" right="); pw.print(mOverscanRight);
7211 pw.print(" bottom="); pw.println(mOverscanBottom);
7212 }
Dianne Hackborn313440842013-02-19 19:22:59 -08007213 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
7214 pw.print(mRestrictedOverscanScreenLeft);
7215 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
7216 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
7217 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007218 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
7219 pw.print(","); pw.print(mUnrestrictedScreenTop);
7220 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
7221 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
7222 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
7223 pw.print(","); pw.print(mRestrictedScreenTop);
7224 pw.print(") "); pw.print(mRestrictedScreenWidth);
7225 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07007226 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
7227 pw.print(","); pw.print(mStableFullscreenTop);
7228 pw.print(")-("); pw.print(mStableFullscreenRight);
7229 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07007230 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
7231 pw.print(","); pw.print(mStableTop);
7232 pw.print(")-("); pw.print(mStableRight);
7233 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07007234 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
7235 pw.print(","); pw.print(mSystemTop);
7236 pw.print(")-("); pw.print(mSystemRight);
7237 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007238 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
7239 pw.print(","); pw.print(mCurTop);
7240 pw.print(")-("); pw.print(mCurRight);
7241 pw.print(","); pw.print(mCurBottom); pw.println(")");
7242 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
7243 pw.print(","); pw.print(mContentTop);
7244 pw.print(")-("); pw.print(mContentRight);
7245 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07007246 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
7247 pw.print(","); pw.print(mVoiceContentTop);
7248 pw.print(")-("); pw.print(mVoiceContentRight);
7249 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007250 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
7251 pw.print(","); pw.print(mDockTop);
7252 pw.print(")-("); pw.print(mDockRight);
7253 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07007254 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
7255 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007256 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
7257 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07007258 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
7259 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007260 if (mLastInputMethodWindow != null) {
7261 pw.print(prefix); pw.print("mLastInputMethodWindow=");
7262 pw.println(mLastInputMethodWindow);
7263 }
7264 if (mLastInputMethodTargetWindow != null) {
7265 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
7266 pw.println(mLastInputMethodTargetWindow);
7267 }
7268 if (mStatusBar != null) {
7269 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08007270 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
7271 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007272 }
7273 if (mNavigationBar != null) {
7274 pw.print(prefix); pw.print("mNavigationBar=");
7275 pw.println(mNavigationBar);
7276 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007277 if (mFocusedWindow != null) {
7278 pw.print(prefix); pw.print("mFocusedWindow=");
7279 pw.println(mFocusedWindow);
7280 }
7281 if (mFocusedApp != null) {
7282 pw.print(prefix); pw.print("mFocusedApp=");
7283 pw.println(mFocusedApp);
7284 }
7285 if (mWinDismissingKeyguard != null) {
7286 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
7287 pw.println(mWinDismissingKeyguard);
7288 }
7289 if (mTopFullscreenOpaqueWindowState != null) {
7290 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
7291 pw.println(mTopFullscreenOpaqueWindowState);
7292 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01007293 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
7294 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
7295 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
7296 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08007297 if (mForcingShowNavBar) {
7298 pw.print(prefix); pw.print("mForcingShowNavBar=");
7299 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
7300 pw.println(mForcingShowNavBarLayer);
7301 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007302 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007303 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07007304 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
7305 pw.print(" mForceStatusBarFromKeyguard=");
7306 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007307 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07007308 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007309 pw.print(" mHomePressed="); pw.println(mHomePressed);
7310 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
7311 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
7312 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
7313 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
7314 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
7315 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
7316 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
7317 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
7318 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
7319 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07007320 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
7321 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
7322 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07007323
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07007324 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04007325 mStatusBarController.dump(pw, prefix);
7326 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007327 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007328
Jeff Browna20dda42014-05-27 20:57:24 -07007329 if (mWakeGestureListener != null) {
7330 mWakeGestureListener.dump(pw, prefix);
7331 }
Jeff Brown600f0032014-05-22 17:06:00 -07007332 if (mOrientationListener != null) {
7333 mOrientationListener.dump(pw, prefix);
7334 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007335 if (mBurnInProtectionHelper != null) {
7336 mBurnInProtectionHelper.dump(prefix, pw);
7337 }
Jorim Jaggi84dc08a2015-09-11 17:45:22 -07007338 if (mKeyguardDelegate != null) {
7339 mKeyguardDelegate.dump(prefix, pw);
7340 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007341 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007342}