blob: 2f8cef8fb581f4ac5cdc9cd46f1fc06843bfe53b [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
Dianne Hackborna4972e92012-03-14 10:38:05 -070019import android.app.ActivityManager;
Jeff Brown061ea992015-04-17 19:55:47 -070020import android.app.ActivityManagerInternal;
21import android.app.ActivityManagerInternal.SleepToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080022import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080023import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040024import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070025import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070026import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040027import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080028import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070029import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080030import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040031import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080032import android.content.ContentResolver;
33import android.content.Context;
34import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070035import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070036import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080037import android.content.pm.ActivityInfo;
38import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040039import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070040import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080041import android.content.res.Configuration;
42import android.content.res.Resources;
Craig Mautner8e4df6c2012-05-23 16:57:23 -070043import android.content.res.TypedArray;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080044import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080045import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080046import android.graphics.Rect;
John Spurlock7b414672014-07-18 13:02:39 -040047import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080048import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050049import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080050import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070051import android.media.Ringtone;
52import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070053import android.media.session.MediaSessionLegacyHelper;
Billy Laucbe540f2015-06-25 01:51:44 +010054import android.os.Binder;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070055import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080056import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070057import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080058import android.os.Handler;
59import android.os.IBinder;
Dianne Hackbornb6683c42015-06-18 17:40:33 -070060import android.os.IDeviceIdleController;
Jeff Brown32cbc38552011-12-01 14:01:49 -080061import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070062import android.os.Message;
63import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080064import android.os.PowerManager;
Billy Laucbe540f2015-06-25 01:51:44 +010065import android.os.Process;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080066import android.os.RemoteException;
67import android.os.ServiceManager;
68import android.os.SystemClock;
69import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080070import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070071import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080072import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070073import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080074import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070075import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040076import android.service.dreams.DreamService;
77import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070078import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070079import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070080import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080081import android.util.EventLog;
82import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070083import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080084import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070085import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080086import android.view.Gravity;
87import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080088import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080089import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070090import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070091import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080092import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080093import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080094import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080095import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080096import android.view.KeyEvent;
97import android.view.MotionEvent;
Adam Powell6711f3b2015-05-06 15:57:09 -070098import com.android.internal.policy.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080099import android.view.Surface;
100import android.view.View;
101import android.view.ViewConfiguration;
102import android.view.Window;
103import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800104import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700105import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800106import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800107import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800108import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800109import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200110import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800111import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800112import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800113import com.android.internal.statusbar.IStatusBarService;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700114import com.android.internal.util.ScreenShapeHelper;
Craig Mautnerae446592012-12-06 19:05:05 -0800115import com.android.internal.widget.PointerLocationView;
Craig Mautner8a0da012014-05-31 15:13:37 -0700116import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100117import com.android.server.policy.keyguard.KeyguardServiceDelegate;
118import com.android.server.policy.keyguard.KeyguardServiceDelegate.ShowListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800119
120import java.io.File;
121import java.io.FileReader;
122import java.io.IOException;
123import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700124import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800125import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800126
Dianne Hackbornc652de82013-02-15 16:32:56 -0800127import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700128import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
129import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
130import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700131import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
132import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
133import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800134
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800135/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700136 * WindowManagerPolicy implementation for the Android phone UI. This
137 * introduces a new method suffix, Lp, for an internal lock of the
138 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400139 * 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 -0700140 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800141 */
142public class PhoneWindowManager implements WindowManagerPolicy {
143 static final String TAG = "WindowManager";
144 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700145 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700146 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700147 static final boolean DEBUG_KEYGUARD = false;
148 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700149 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700150 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800151 static final boolean SHOW_STARTING_ANIMATIONS = true;
152 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400153
Daniel Sandler6396c722013-04-16 20:19:09 -0400154 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
155 // No longer recommended for desk docks; still useful in car docks.
156 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
157 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
158
Jeff Brown6d8fd272014-05-20 21:24:38 -0700159 static final int SHORT_PRESS_POWER_NOTHING = 0;
160 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
161 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
162 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800163 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700164
Joe Onoratod208e702010-10-08 16:22:43 -0400165 static final int LONG_PRESS_POWER_NOTHING = 0;
166 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
167 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700168 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700169
Jeff Brown13f00f02014-10-31 14:45:50 -0700170 static final int MULTI_PRESS_POWER_NOTHING = 0;
171 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
172 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
173
Michael Jurka3b1fc472011-06-13 10:54:40 -0700174 // These need to match the documentation/constant in
175 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800176 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800177 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700178 static final int LONG_PRESS_HOME_ASSIST = 2;
179
180 static final int DOUBLE_TAP_HOME_NOTHING = 0;
181 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800182
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000183 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
184 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
185
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700186 static final int APPLICATION_MEDIA_SUBLAYER = -2;
187 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800188 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800189 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700190 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700191
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800192 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
193 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
194 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500195 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700196 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800197
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700198 /**
199 * These are the system UI flags that, when changing, can cause the layout
200 * of the screen to change.
201 */
202 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400203 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400204 | View.SYSTEM_UI_FLAG_FULLSCREEN
205 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200206 | View.NAVIGATION_BAR_TRANSLUCENT
207 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700208
John Spurlock7b414672014-07-18 13:02:39 -0400209 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
210 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
211 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
212 .build();
213
Adrian Roosddc8b272015-05-21 16:28:27 -0700214 // The panic gesture may become active only after the keyguard is dismissed and the immersive
215 // app shows again. If that doesn't happen for 30s we drop the gesture.
216 private static final long PANIC_GESTURE_EXPIRATION = 30000;
217
Jim Miller5ecd8112013-01-09 18:50:26 -0800218 /**
219 * Keyguard stuff
220 */
221 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100222 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700223 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800224
Jeff Brown6651a632011-11-28 12:59:11 -0800225 /* Table of Application Launch keys. Maps from key codes to intent categories.
226 *
227 * These are special keys that are used to launch particular kinds of applications,
228 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
229 * usage page. We don't support quite that many yet...
230 */
231 static SparseArray<String> sApplicationLaunchKeyCategories;
232 static {
233 sApplicationLaunchKeyCategories = new SparseArray<String>();
234 sApplicationLaunchKeyCategories.append(
235 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
236 sApplicationLaunchKeyCategories.append(
237 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
238 sApplicationLaunchKeyCategories.append(
239 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
240 sApplicationLaunchKeyCategories.append(
241 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
242 sApplicationLaunchKeyCategories.append(
243 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
244 sApplicationLaunchKeyCategories.append(
245 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
246 }
247
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700248 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000249 static final int WAITING_FOR_DRAWN_TIMEOUT = 500;
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700250
Dianne Hackborndf89e652011-10-06 22:35:11 -0700251 /**
252 * Lock protecting internal state. Must not call out into window
253 * manager with lock held. (This lock will be acquired in places
254 * where the window manager is calling in with its own lock held.)
255 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800256 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700257
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800258 Context mContext;
259 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700260 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700261 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700262 PowerManager mPowerManager;
Jeff Brown061ea992015-04-17 19:55:47 -0700263 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700264 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400265 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700266 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700267 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800268 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700269 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800270 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000271 BurnInProtectionHelper mBurnInProtectionHelper;
Billy Laucbe540f2015-06-25 01:51:44 +0100272 AppOpsManager mAppOpsManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800273
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700274 // Vibrator pattern for haptic feedback of a long press.
275 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700276
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700277 // Vibrator pattern for haptic feedback of virtual key press.
278 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700279
Amith Yamasanic33cb712010-02-10 15:21:49 -0800280 // Vibrator pattern for a short vibration.
281 long[] mKeyboardTapVibePattern;
282
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700283 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
284 long[] mClockTickVibePattern;
285
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700286 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
287 long[] mCalendarDateVibePattern;
288
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700289 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
290 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700291
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700292 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
293 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700294
Mady Mellore8608912015-06-05 09:02:55 -0700295 // Vibrator pattern for haptic feedback of a context click.
296 long[] mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -0700297
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800298 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
299 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400300
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800301 boolean mSafeMode;
302 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700303 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400304 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400305 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700306 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400307 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
308 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
309 int[] mNavigationBarHeightForRotation = new int[4];
310 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400311
Craig Mautnera631d492014-08-05 15:16:01 -0700312 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800313 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700314 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700315 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700316 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700317 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
318 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
319 }
320 };
321 final ShowListener mKeyguardDelegateCallback = new ShowListener() {
322 @Override
323 public void onShown(IBinder windowToken) {
324 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onShown.");
325 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
326 }
327 };
328
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800329 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800330 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900331 WindowState mLastInputMethodWindow = null;
332 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800333
Jeff Brown13f00f02014-10-31 14:45:50 -0700334 // FIXME This state is shared between the input reader and handler thread.
335 // Technically it's broken and buggy but it has been like this for many years
336 // and we have not yet seen any problems. Someday we'll rewrite this logic
337 // so that only one thread is involved in handling input policy. Unfortunately
338 // it's on a critical path for power management so we can't just post the work to the
339 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
340 // to hold wakelocks during dispatch and eliminating the critical path.
341 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800342 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700343 volatile int mPowerKeyPressCounter;
344 volatile boolean mEndCallKeyHandled;
345
Winson Chungd42a6cf2014-06-03 16:24:04 -0700346 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700347 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700348 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800349
Jeff Brown2e7760e2012-04-11 15:14:55 -0700350 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700351 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700352 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800353
Dianne Hackbornc777e072010-02-12 13:07:59 -0800354 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700355 boolean mSystemBooted;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800356 boolean mHdmiPlugged;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700357 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400358 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700359 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700360 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400361 int mCarDockRotation;
362 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700363 int mUndockedHdmiRotation;
364 int mDemoHdmiRotation;
365 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800366 int mDemoRotation;
367 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400368
Jeff Browna20dda42014-05-27 20:57:24 -0700369 boolean mWakeGestureEnabledSetting;
370 MyWakeGestureListener mWakeGestureListener;
371
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700372 // Default display does not rotate, apps that require non-default orientation will have to
373 // have the orientation emulated.
374 private boolean mForceDefaultOrientation = false;
375
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400376 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
377 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700378 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400379
Jeff Brownbcdfc622014-03-06 19:13:04 -0800380 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700381 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400382 boolean mCarDockEnablesAccelerometer;
383 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700384 int mLidKeyboardAccessibility;
385 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700386 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700387 int mShortPressOnPowerBehavior;
388 int mLongPressOnPowerBehavior;
389 int mDoublePressOnPowerBehavior;
390 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000391 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700392 boolean mAwake;
393 boolean mScreenOnEarly;
394 boolean mScreenOnFully;
395 ScreenOnListener mScreenOnListener;
396 boolean mKeyguardDrawComplete;
397 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800398 boolean mOrientationSensorEnabled = false;
399 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800400 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400401 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800402 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700403
Jeff Brown70825162012-03-28 17:27:48 -0700404 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800405
406 // The last window we were told about in focusChanged.
407 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800408 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800409
Jeff Brown70825162012-03-28 17:27:48 -0700410 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800411
Dianne Hackbornc652de82013-02-15 16:32:56 -0800412 // The current size of the screen; really; extends into the overscan area of
413 // the screen and doesn't account for any system elements like the status bar.
414 int mOverscanScreenLeft, mOverscanScreenTop;
415 int mOverscanScreenWidth, mOverscanScreenHeight;
416 // The current visible size of the screen; really; (ir)regardless of whether the status
417 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800418 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
419 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800420 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
421 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
422 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700423 // The current size of the screen; these may be different than (0,0)-(dw,dh)
424 // if the status bar can't be hidden; in that case it effectively carves out
425 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800426 int mRestrictedScreenLeft, mRestrictedScreenTop;
427 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700428 // During layout, the current screen borders accounting for any currently
429 // visible system UI elements.
430 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700431 // For applications requesting stable content insets, these are them.
432 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700433 // For applications requesting stable content insets but have also set the
434 // fullscreen window flag, these are the stable dimensions without the status bar.
435 int mStableFullscreenLeft, mStableFullscreenTop;
436 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800437 // During layout, the current screen borders with all outer decoration
438 // (status bar, input method dock) accounted for.
439 int mCurLeft, mCurTop, mCurRight, mCurBottom;
440 // During layout, the frame in which content should be displayed
441 // to the user, accounting for all screen decoration except for any
442 // space they deem as available for other content. This is usually
443 // the same as mCur*, but may be larger if the screen decor has supplied
444 // content insets.
445 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700446 // During layout, the frame in which voice content should be displayed
447 // to the user, accounting for all screen decoration except for any
448 // space they deem as available for other content.
449 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800450 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800451 // windows are placed.
452 int mDockLeft, mDockTop, mDockRight, mDockBottom;
453 // During layout, the layer at which the doc window is placed.
454 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700455 // During layout, this is the layer of the status bar.
456 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700457 int mLastSystemUiFlags;
458 // Bits that we are in the process of clearing, so we want to prevent
459 // them from being set by applications until everything has been updated
460 // to have them clear.
461 int mResettingSystemUiFlags = 0;
462 // Bits that we are currently always keeping cleared.
463 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800464 // What we last reported to system UI about whether the compatibility
465 // menu needs to be displayed.
466 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700467 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
468 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700469
Selim Cinekf83e8242015-05-19 18:08:14 -0700470 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700471
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800472 static final Rect mTmpParentFrame = new Rect();
473 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800474 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800475 static final Rect mTmpContentFrame = new Rect();
476 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400477 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700478 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700479 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700480 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700481
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800482 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100483 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700484 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200485 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400486 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800487 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700488 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700489 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700490 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800491 boolean mForcingShowNavBar;
492 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700493
494 // States of keyguard dismiss.
495 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
496 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
497 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
498 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
499
500 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
501 * be done once per window. */
502 private WindowState mWinDismissingKeyguard;
503
tingna_sunge785ffa2015-05-12 13:23:15 +0800504 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
505 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
506 * lock SIM card. This variable is used to record the previous keyguard secure state for
507 * monitoring secure state change on window dismissing keyguard. */
508 private boolean mSecureDismissingKeyguard;
509
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700510 /** The window that is currently showing "over" the keyguard. If there is an app window
511 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
512 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
513 * the wallpaper. */
514 private WindowState mWinShowWhenLocked;
515
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700516 boolean mShowingLockscreen;
517 boolean mShowingDream;
518 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700519 boolean mDreamingSleepTokenNeeded;
520 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700521 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700522 boolean mKeyguardSecure;
523 boolean mKeyguardSecureIncludingHidden;
524 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800525 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700526 boolean mHomeConsumed;
527 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800528 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700529 Intent mCarDockIntent;
530 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700531 boolean mSearchKeyShortcutPending;
532 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700533 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700534 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800535
Mike Lockwood28569302010-01-28 11:54:40 -0500536 // support for activating the lock screen while the screen is on
537 boolean mAllowLockscreenWhenOn;
538 int mLockScreenTimeout;
539 boolean mLockScreenTimerActive;
540
David Brownbaf8d092010-03-08 21:52:59 -0800541 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800542 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800543
544 // Behavior of POWER button while in-call and screen on.
545 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
546 int mIncallPowerBehavior;
547
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700548 Display mDisplay;
549
Dianne Hackborn9d132642011-04-21 17:26:39 -0700550 int mLandscapeRotation = 0; // default landscape rotation
551 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
552 int mPortraitRotation = 0; // default portrait rotation
553 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700554
Dianne Hackbornc652de82013-02-15 16:32:56 -0800555 int mOverscanLeft = 0;
556 int mOverscanTop = 0;
557 int mOverscanRight = 0;
558 int mOverscanBottom = 0;
559
Joe Onorato46b0d682010-11-22 17:37:27 -0800560 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700561 private int mLongPressOnHomeBehavior;
562
563 // What we do when the user double-taps on home
564 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800565
Bryce Lee584a4452014-10-21 15:55:55 -0700566 // Allowed theater mode wake actions
567 private boolean mAllowTheaterModeWakeFromKey;
568 private boolean mAllowTheaterModeWakeFromPowerKey;
569 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800570 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700571 private boolean mAllowTheaterModeWakeFromCameraLens;
572 private boolean mAllowTheaterModeWakeFromLidSwitch;
573 private boolean mAllowTheaterModeWakeFromWakeGesture;
574
Bryce Leed3b28402015-03-09 15:49:13 +0000575 // Whether to support long press from power button in non-interactive mode
576 private boolean mSupportLongPressPowerWhenNonInteractive;
577
Bryce Lee55e846d2014-11-04 12:43:44 -0800578 // Whether to go to sleep entering theater mode from power button
579 private boolean mGoToSleepOnButtonPressTheaterMode;
580
Winson Chung9112ec32011-06-27 13:15:32 -0700581 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700582 // Time to volume and power must be pressed within this interval of each other.
583 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700584 // Increase the chord delay when taking a screenshot from the keyguard
585 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800586 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700587 private boolean mScreenshotChordVolumeDownKeyTriggered;
588 private long mScreenshotChordVolumeDownKeyTime;
589 private boolean mScreenshotChordVolumeDownKeyConsumed;
590 private boolean mScreenshotChordVolumeUpKeyTriggered;
591 private boolean mScreenshotChordPowerKeyTriggered;
592 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700593
Michael Wrightb854e242013-02-05 17:54:02 -0800594 /* The number of steps between min and max brightness */
595 private static final int BRIGHTNESS_STEPS = 10;
596
Christopher Tate5e08af02012-09-21 17:17:22 -0700597 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800598 ShortcutManager mShortcutManager;
599 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700600 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700601 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800602
Craig Mautnerd625ab22013-09-06 13:40:31 -0700603 private int mCurrentUserId;
604
Justin Kohd378ad72013-04-01 12:18:26 -0700605 // Maps global key codes to the components that will handle them.
606 private GlobalKeyManager mGlobalKeyManager;
607
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700608 // Fallback actions by key code.
609 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
610 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800611
Jorim Jaggi76a16232014-08-08 17:00:47 +0200612 private final LogDecelerateInterpolator mLogDecelerateInterpolator
613 = new LogDecelerateInterpolator(100, 0);
614
Jeff Brown70825162012-03-28 17:27:48 -0700615 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
616 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700617 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
618 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700619 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
620 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
621 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700622 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700623 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700624 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700625 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700626 private static final int MSG_POWER_DELAYED_PRESS = 13;
627 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700628 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jeff Brown70825162012-03-28 17:27:48 -0700629
630 private class PolicyHandler extends Handler {
631 @Override
632 public void handleMessage(Message msg) {
633 switch (msg.what) {
634 case MSG_ENABLE_POINTER_LOCATION:
635 enablePointerLocation();
636 break;
637 case MSG_DISABLE_POINTER_LOCATION:
638 disablePointerLocation();
639 break;
Jeff Brown40013652012-05-16 21:22:36 -0700640 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
641 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
642 break;
643 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
644 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
645 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700646 case MSG_DISPATCH_SHOW_RECENTS:
647 showRecentApps(false);
648 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700649 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
650 showGlobalActionsInternal();
651 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700652 case MSG_KEYGUARD_DRAWN_COMPLETE:
653 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700654 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700655 break;
656 case MSG_KEYGUARD_DRAWN_TIMEOUT:
657 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700658 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700659 break;
660 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
661 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700662 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700663 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700664 case MSG_HIDE_BOOT_MESSAGE:
665 handleHideBootMessage();
666 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700667 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
668 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
669 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700670 case MSG_POWER_DELAYED_PRESS:
671 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
672 finishPowerKeyPress();
673 break;
674 case MSG_POWER_LONG_PRESS:
675 powerLongPress();
676 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700677 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
678 updateDreamingSleepToken(msg.arg1 != 0);
679 break;
Jeff Brown70825162012-03-28 17:27:48 -0700680 }
681 }
682 }
683
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800684 private UEventObserver mHDMIObserver = new UEventObserver() {
685 @Override
686 public void onUEvent(UEventObserver.UEvent event) {
687 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
688 }
689 };
690
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800691 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800692 SettingsObserver(Handler handler) {
693 super(handler);
694 }
David Brownbaf8d092010-03-08 21:52:59 -0800695
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800696 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700697 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800698 ContentResolver resolver = mContext.getContentResolver();
699 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700700 Settings.System.END_BUTTON_BEHAVIOR), false, this,
701 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800702 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700703 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
704 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700705 resolver.registerContentObserver(Settings.Secure.getUriFor(
706 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
707 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800708 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700709 Settings.System.ACCELEROMETER_ROTATION), false, this,
710 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500711 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700712 Settings.System.USER_ROTATION), false, this,
713 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400714 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700715 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
716 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800717 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700718 Settings.System.POINTER_LOCATION), false, this,
719 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800720 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700721 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
722 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500723 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400724 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700725 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500726 resolver.registerContentObserver(Settings.Global.getUriFor(
727 Settings.Global.POLICY_CONTROL), false, this,
728 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800729 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800730 }
731
732 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800733 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700734 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800735 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800736 }
Craig Mautner967212c2013-04-13 21:10:58 -0700737
Jeff Browna20dda42014-05-27 20:57:24 -0700738 class MyWakeGestureListener extends WakeGestureListener {
739 MyWakeGestureListener(Context context, Handler handler) {
740 super(context, handler);
741 }
742
743 @Override
744 public void onWakeUp() {
745 synchronized (mLock) {
746 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700747 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Bryce Lee584a4452014-10-21 15:55:55 -0700748 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture);
Jeff Browna20dda42014-05-27 20:57:24 -0700749 }
750 }
751 }
752 }
753
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800754 class MyOrientationListener extends WindowOrientationListener {
Craig Mautnereee29c42013-01-17 14:44:34 -0800755 MyOrientationListener(Context context, Handler handler) {
756 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800757 }
Craig Mautner967212c2013-04-13 21:10:58 -0700758
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800759 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700760 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700761 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700762 updateRotation(false);
763 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800764 }
765 MyOrientationListener mOrientationListener;
766
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100767 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400768
John Spurlock27735a42013-08-14 17:57:38 -0400769 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400770 View.NAVIGATION_BAR_TRANSIENT,
771 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400772 View.NAVIGATION_BAR_TRANSLUCENT,
773 StatusBarManager.WINDOW_NAVIGATION_BAR,
774 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400775
John Spurlockf1a36642013-10-12 17:50:42 -0400776 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400777
Craig Mautner037aa8d2013-06-07 10:35:44 -0700778 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400779
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700780 IStatusBarService getStatusBarService() {
781 synchronized (mServiceAquireLock) {
782 if (mStatusBarService == null) {
783 mStatusBarService = IStatusBarService.Stub.asInterface(
784 ServiceManager.getService("statusbar"));
785 }
786 return mStatusBarService;
787 }
788 }
789
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700790 /*
791 * We always let the sensor be switched on by default except when
792 * the user has explicitly disabled sensor based rotation or when the
793 * screen is switched off.
794 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700795 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800796 if (mSupportAutoRotation) {
797 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
798 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
799 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
800 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
801 // If the application has explicitly requested to follow the
802 // orientation, then we need to turn the sensor on.
803 return true;
804 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800805 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700806 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800807 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
808 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
809 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400810 // enable accelerometer if we are docked in a dock that enables accelerometer
811 // orientation management,
812 return true;
813 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700814 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800815 // If the setting for using the sensor by default is enabled, then
816 // we will always leave it on. Note that the user could go to
817 // a window that forces an orientation that does not use the
818 // sensor and in theory we could turn it off... however, when next
819 // turning it on we won't have a good value for the current
820 // orientation for a little bit, which can cause orientation
821 // changes to lag, so we'd like to keep it always on. (It will
822 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700823 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800824 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800825 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800826 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700827
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800828 /*
829 * Various use cases for invoking this function
830 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700831 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800832 * if not already enabled
833 * screen turned on and current app does not have sensor orientation, disable listeners if
834 * already enabled
835 * screen turning on and current app has sensor based orientation, enable listeners if needed
836 * screen turning on and current app has nosensor based orientation, do nothing
837 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700838 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800839 if (!mOrientationListener.canDetectOrientation()) {
840 // If sensor is turned off or nonexistent for some reason
841 return;
842 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000843 // Could have been invoked due to screen turning on or off or
844 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700845 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
846 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000847 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
848 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
849 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800850 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000851 // Note: We postpone the rotating of the screen until the keyguard as well as the
852 // window manager have reported a draw complete.
853 if (mScreenOnEarly && mAwake &&
854 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700855 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800856 disable = false;
857 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700858 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800859 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700860 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800861 mOrientationSensorEnabled = true;
862 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700863 }
864 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800865 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700866 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800867 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700868 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800869 mOrientationSensorEnabled = false;
870 }
871 }
872
Jeff Brown13f00f02014-10-31 14:45:50 -0700873 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
874 // Hold a wake lock until the power key is released.
875 if (!mPowerKeyWakeLock.isHeld()) {
876 mPowerKeyWakeLock.acquire();
877 }
878
879 // Cancel multi-press detection timeout.
880 if (mPowerKeyPressCounter != 0) {
881 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
882 }
883
884 // Detect user pressing the power button in panic when an application has
885 // taken over the whole screen.
886 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800887 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700888 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700889 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700890 }
891
892 // Latch power key state to detect screenshot chord.
893 if (interactive && !mScreenshotChordPowerKeyTriggered
894 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
895 mScreenshotChordPowerKeyTriggered = true;
896 mScreenshotChordPowerKeyTime = event.getDownTime();
897 interceptScreenshotChord();
898 }
899
900 // Stop ringing or end call if configured to do so when power is pressed.
901 TelecomManager telecomManager = getTelecommService();
902 boolean hungUp = false;
903 if (telecomManager != null) {
904 if (telecomManager.isRinging()) {
905 // Pressing Power while there's a ringing incoming
906 // call should silence the ringer.
907 telecomManager.silenceRinger();
908 } else if ((mIncallPowerBehavior
909 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
910 && telecomManager.isInCall() && interactive) {
911 // Otherwise, if "Power button ends call" is enabled,
912 // the Power button will hang up any current active call.
913 hungUp = telecomManager.endCall();
914 }
915 }
916
917 // If the power key has still not yet been handled, then detect short
918 // press, long press, or multi press and decide what to do.
919 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
920 || mScreenshotChordVolumeUpKeyTriggered;
921 if (!mPowerKeyHandled) {
922 if (interactive) {
923 // When interactive, we're already awake.
924 // Wait for a long press or for the button to be released to decide what to do.
925 if (hasLongPressOnPowerBehavior()) {
926 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
927 msg.setAsynchronous(true);
928 mHandler.sendMessageDelayed(msg,
929 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
930 }
931 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800932 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800933
Bryce Leed3b28402015-03-09 15:49:13 +0000934 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
935 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
936 msg.setAsynchronous(true);
937 mHandler.sendMessageDelayed(msg,
938 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800939 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000940 } else {
941 final int maxCount = getMaxMultiPressPowerCount();
942
943 if (maxCount <= 1) {
944 mPowerKeyHandled = true;
945 } else {
946 mBeganFromNonInteractive = true;
947 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700948 }
949 }
Jeff Brown4d396052010-10-29 21:50:21 -0700950 }
951 }
952
Jeff Brown13f00f02014-10-31 14:45:50 -0700953 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
954 final boolean handled = canceled || mPowerKeyHandled;
955 mScreenshotChordPowerKeyTriggered = false;
956 cancelPendingScreenshotChordAction();
957 cancelPendingPowerKeyAction();
958
959 if (!handled) {
960 // Figure out how to handle the key now that it has been released.
961 mPowerKeyPressCounter += 1;
962
963 final int maxCount = getMaxMultiPressPowerCount();
964 final long eventTime = event.getDownTime();
965 if (mPowerKeyPressCounter < maxCount) {
966 // This could be a multi-press. Wait a little bit longer to confirm.
967 // Continue holding the wake lock.
968 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
969 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
970 msg.setAsynchronous(true);
971 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
972 return;
973 }
974
975 // No other actions. Handle it immediately.
976 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700977 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700978
979 // Done. Reset our state.
980 finishPowerKeyPress();
981 }
982
983 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -0800984 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -0700985 mPowerKeyPressCounter = 0;
986 if (mPowerKeyWakeLock.isHeld()) {
987 mPowerKeyWakeLock.release();
988 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700989 }
990
991 private void cancelPendingPowerKeyAction() {
992 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700993 mPowerKeyHandled = true;
994 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700995 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700996 }
997
998 private void powerPress(long eventTime, boolean interactive, int count) {
999 if (mScreenOnEarly && !mScreenOnFully) {
1000 Slog.i(TAG, "Suppressed redundant power key press while "
1001 + "already in the process of turning the screen on.");
1002 return;
Jeff Brownff204712011-10-25 21:27:54 -07001003 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001004
1005 if (count == 2) {
1006 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1007 } else if (count == 3) {
1008 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001009 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001010 switch (mShortPressOnPowerBehavior) {
1011 case SHORT_PRESS_POWER_NOTHING:
1012 break;
1013 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1014 mPowerManager.goToSleep(eventTime,
1015 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1016 break;
1017 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1018 mPowerManager.goToSleep(eventTime,
1019 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1020 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1021 break;
1022 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1023 mPowerManager.goToSleep(eventTime,
1024 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1025 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1026 launchHomeFromHotKey();
1027 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001028 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001029 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001030 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001031 }
1032 }
1033 }
1034
1035 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1036 switch (behavior) {
1037 case MULTI_PRESS_POWER_NOTHING:
1038 break;
1039 case MULTI_PRESS_POWER_THEATER_MODE:
1040 if (isTheaterModeEnabled()) {
1041 Slog.i(TAG, "Toggling theater mode off.");
1042 Settings.Global.putInt(mContext.getContentResolver(),
1043 Settings.Global.THEATER_MODE_ON, 0);
1044 if (!interactive) {
1045 wakeUpFromPowerKey(eventTime);
1046 }
1047 } else {
1048 Slog.i(TAG, "Toggling theater mode on.");
1049 Settings.Global.putInt(mContext.getContentResolver(),
1050 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001051
1052 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001053 mPowerManager.goToSleep(eventTime,
1054 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1055 }
1056 }
1057 break;
1058 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001059 Slog.i(TAG, "Starting brightness boost.");
1060 if (!interactive) {
1061 wakeUpFromPowerKey(eventTime);
1062 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001063 mPowerManager.boostScreenBrightness(eventTime);
1064 break;
1065 }
1066 }
1067
1068 private int getMaxMultiPressPowerCount() {
1069 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1070 return 3;
1071 }
1072 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1073 return 2;
1074 }
1075 return 1;
1076 }
1077
1078 private void powerLongPress() {
1079 final int behavior = getResolvedLongPressOnPowerBehavior();
1080 switch (behavior) {
1081 case LONG_PRESS_POWER_NOTHING:
1082 break;
1083 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1084 mPowerKeyHandled = true;
1085 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1086 performAuditoryFeedbackForAccessibilityIfNeed();
1087 }
1088 showGlobalActionsInternal();
1089 break;
1090 case LONG_PRESS_POWER_SHUT_OFF:
1091 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1092 mPowerKeyHandled = true;
1093 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1094 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1095 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1096 break;
1097 }
1098 }
1099
Nick Vaccarob593a812015-05-15 11:23:05 -07001100 private void sleepPress(long eventTime) {
1101 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1102 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1103 }
1104 }
1105
1106 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001107 switch (mShortPressOnSleepBehavior) {
1108 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001109 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001110 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1111 mPowerManager.goToSleep(eventTime,
1112 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001113 break;
1114 }
1115 }
1116
Jeff Brown13f00f02014-10-31 14:45:50 -07001117 private int getResolvedLongPressOnPowerBehavior() {
1118 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1119 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1120 }
1121 return mLongPressOnPowerBehavior;
1122 }
1123
1124 private boolean hasLongPressOnPowerBehavior() {
1125 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001126 }
1127
1128 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001129 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001130 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1131 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001132 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001133 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1134 && now <= mScreenshotChordPowerKeyTime
1135 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1136 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001137 cancelPendingPowerKeyAction();
1138
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001139 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001140 }
1141 }
1142 }
1143
Winson Chung1cea2f32012-10-08 20:42:01 -07001144 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001145 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001146 // Double the time it takes to take a screenshot from the keyguard
1147 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001148 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001149 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001150 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001151 }
1152
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001153 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001154 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001155 }
1156
Jeff Brown13f00f02014-10-31 14:45:50 -07001157 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001158 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001159 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001160 mEndCallKeyHandled = true;
1161 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1162 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001163 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001164 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001165 }
1166 };
1167
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001168 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001169 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001170 public void run() {
1171 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001172 }
1173 };
1174
Alan Viverettee34560b22014-07-10 14:50:06 -07001175 @Override
1176 public void showGlobalActions() {
1177 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1178 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1179 }
1180
1181 void showGlobalActionsInternal() {
1182 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001183 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001184 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001185 }
Jim Millerab954542014-10-10 18:21:49 -07001186 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001187 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1188 if (keyguardShowing) {
1189 // since it took two seconds of long press to bring this up,
1190 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001191 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001192 }
1193 }
1194
1195 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001196 return Settings.Global.getInt(
1197 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001198 }
1199
Maurice Lam99c6e072014-04-28 18:24:28 -07001200 boolean isUserSetupComplete() {
1201 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1202 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1203 }
1204
Jeff Brown13f00f02014-10-31 14:45:50 -07001205 private void handleShortPressOnHome() {
1206 // If there's a dream running then use home to escape the dream
1207 // but don't actually go home.
1208 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1209 mDreamManagerInternal.stopDream(false /*immediate*/);
1210 return;
1211 }
1212
1213 // Go home!
1214 launchHomeFromHotKey();
1215 }
1216
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001217 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001218 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001219 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001220 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001221
Jeff Browncaca8812013-05-09 13:34:33 -07001222 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1223 toggleRecentApps();
1224 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001225 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001226 }
1227 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001228 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001229
Jeff Browncaca8812013-05-09 13:34:33 -07001230 private void handleDoubleTapOnHome() {
1231 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1232 mHomeConsumed = true;
1233 toggleRecentApps();
1234 }
1235 }
1236
1237 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1238 @Override
1239 public void run() {
1240 if (mHomeDoubleTapPending) {
1241 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001242 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001243 }
1244 }
1245 };
1246
Mark Renoufc1256912015-03-11 14:38:23 -04001247 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001248 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001249 }
1250
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001251 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001252 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001253 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001254 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001255 mContext = context;
1256 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001257 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001258 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001259 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001260 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001261 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001262
1263 // Init display burn-in protection
1264 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1265 com.android.internal.R.bool.config_enableBurnInProtection);
1266 // Allow a system property to override this. Used by developer settings.
1267 boolean burnInProtectionDevMode =
1268 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1269 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1270 final int minHorizontal;
1271 final int maxHorizontal;
1272 final int minVertical;
1273 final int maxVertical;
1274 final int maxRadius;
1275 if (burnInProtectionDevMode) {
1276 minHorizontal = -8;
1277 maxHorizontal = 8;
1278 minVertical = -8;
1279 maxVertical = -4;
1280 maxRadius = (isRoundWindow()) ? 6 : -1;
1281 } else {
1282 Resources resources = context.getResources();
1283 minHorizontal = resources.getInteger(
1284 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1285 maxHorizontal = resources.getInteger(
1286 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1287 minVertical = resources.getInteger(
1288 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1289 maxVertical = resources.getInteger(
1290 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1291 maxRadius = resources.getInteger(
1292 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1293 }
1294 mBurnInProtectionHelper = new BurnInProtectionHelper(
1295 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001296 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001297
Jeff Brown70825162012-03-28 17:27:48 -07001298 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001299 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001300 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001301 try {
1302 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1303 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001304 mSettingsObserver = new SettingsObserver(mHandler);
1305 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001306 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001307 mUiMode = context.getResources().getInteger(
1308 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001309 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1310 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1311 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1312 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001313 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1314 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1315 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1316 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1317 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1318 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1319 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1320 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001321
Jeff Brown96307042012-07-27 15:51:34 -07001322 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1323 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001324 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001325 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1326 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001327 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001328 mSupportAutoRotation = mContext.getResources().getBoolean(
1329 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001330 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001331 com.android.internal.R.integer.config_lidOpenRotation);
1332 mCarDockRotation = readRotation(
1333 com.android.internal.R.integer.config_carDockRotation);
1334 mDeskDockRotation = readRotation(
1335 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001336 mUndockedHdmiRotation = readRotation(
1337 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001338 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1339 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1340 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1341 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001342 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1343 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1344 mLidNavigationAccessibility = mContext.getResources().getInteger(
1345 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001346 mLidControlsSleep = mContext.getResources().getBoolean(
1347 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001348 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1349 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001350
1351 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1352 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1353 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1354 || mContext.getResources().getBoolean(
1355 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1356 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1357 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001358 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1359 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001360 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1361 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1362 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1363 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1364 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1365 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1366
Bryce Lee55e846d2014-11-04 12:43:44 -08001367 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1368 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1369
Bryce Leed3b28402015-03-09 15:49:13 +00001370 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1371 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1372
Jeff Brown13f00f02014-10-31 14:45:50 -07001373 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1374 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1375 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1376 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1377 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1378 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1379 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1380 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001381 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1382 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001383
John Spurlock61560172015-02-06 19:46:04 -05001384 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001385
Jeff Brownf71343d2013-05-31 17:59:11 -07001386 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001387
Svetoslav8e3feb12014-02-24 13:46:47 -08001388 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1389 Context.ACCESSIBILITY_SERVICE);
1390
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001391 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001392 IntentFilter filter = new IntentFilter();
1393 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1394 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1395 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1396 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001397 filter.addAction(Intent.ACTION_DOCK_EVENT);
1398 Intent intent = context.registerReceiver(mDockReceiver, filter);
1399 if (intent != null) {
1400 // Retrieve current sticky dock event broadcast.
1401 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1402 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1403 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001404
Jeff Brown6aaf2952012-10-05 16:01:08 -07001405 // register for dream-related broadcasts
1406 filter = new IntentFilter();
1407 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1408 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1409 context.registerReceiver(mDreamReceiver, filter);
1410
Christopher Tate5e08af02012-09-21 17:17:22 -07001411 // register for multiuser-relevant broadcasts
1412 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1413 context.registerReceiver(mMultiuserReceiver, filter);
1414
John Spurlock57306e62013-04-22 09:48:49 -04001415 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001416 mSystemGestures = new SystemGesturesPointerEventListener(context,
1417 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001418 @Override
1419 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001420 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001421 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001422 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001423 }
1424 @Override
1425 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001426 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001427 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001428 }
1429 }
1430 @Override
1431 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001432 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001433 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001434 }
1435 }
1436 @Override
1437 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001438 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001439 }
Adrian Roos3595be42015-03-05 16:31:15 +01001440 @Override
1441 public void onDown() {
1442 mOrientationListener.onTouchStart();
1443 }
1444 @Override
1445 public void onUpOrCancel() {
1446 mOrientationListener.onTouchEnd();
1447 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001448 });
John Spurlockf1a36642013-10-12 17:50:42 -04001449 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001450 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001451
Jeff Brownc2346132012-04-13 01:55:38 -07001452 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001453 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1454 com.android.internal.R.array.config_longPressVibePattern);
1455 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1456 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001457 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1458 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001459 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1460 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001461 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1462 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001463 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1464 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1465 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1466 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001467 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1468 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001469
Christopher Tatee90585f2012-03-05 18:56:25 -08001470 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1471 com.android.internal.R.bool.config_enableScreenshotChord);
1472
Justin Kohd378ad72013-04-01 12:18:26 -07001473 mGlobalKeyManager = new GlobalKeyManager(mContext);
1474
Joe Onoratoea495d42011-04-06 11:41:11 -07001475 // Controls rotation and the like.
1476 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001477
1478 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001479 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001480 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1481 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001482 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001483
1484 mWindowManagerInternal.registerAppTransitionListener(
1485 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001486 }
1487
Jeff Brownf71343d2013-05-31 17:59:11 -07001488 /**
1489 * Read values from config.xml that may be overridden depending on
1490 * the configuration of the device.
1491 * eg. Disable long press on home goes to recents on sw600dp.
1492 */
1493 private void readConfigurationDependentBehaviors() {
1494 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1495 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1496 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1497 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1498 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1499 }
1500
1501 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1502 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1503 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1504 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1505 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1506 }
1507 }
1508
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001509 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001510 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001511 // This method might be called before the policy has been fully initialized
1512 // or for other displays we don't care about.
1513 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1514 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001515 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001516 mDisplay = display;
1517
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001518 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001519 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001520 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001521 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001522 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001523 mLandscapeRotation = Surface.ROTATION_0;
1524 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001525 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001526 mPortraitRotation = Surface.ROTATION_90;
1527 mUpsideDownRotation = Surface.ROTATION_270;
1528 } else {
1529 mPortraitRotation = Surface.ROTATION_270;
1530 mUpsideDownRotation = Surface.ROTATION_90;
1531 }
1532 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001533 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001534 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001535 mPortraitRotation = Surface.ROTATION_0;
1536 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001537 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001538 mLandscapeRotation = Surface.ROTATION_270;
1539 mSeascapeRotation = Surface.ROTATION_90;
1540 } else {
1541 mLandscapeRotation = Surface.ROTATION_90;
1542 mSeascapeRotation = Surface.ROTATION_270;
1543 }
1544 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001545
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001546 mStatusBarHeight =
1547 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001548
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001549 // Height of the navigation bar when presented horizontally at bottom
1550 mNavigationBarHeightForRotation[mPortraitRotation] =
1551 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001552 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001553 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001554 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1555 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001556
1557 // Width of the navigation bar when presented vertically along one side
1558 mNavigationBarWidthForRotation[mPortraitRotation] =
1559 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1560 mNavigationBarWidthForRotation[mLandscapeRotation] =
1561 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001562 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001563
1564 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001565 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001566 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001567
Devin Kimd7b12b42014-05-05 14:34:58 -07001568 // Allow the navigation bar to move on non-square small devices (phones).
1569 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001570
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001571 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001572 // Allow a system property to override this. Used by the emulator.
1573 // See also hasNavigationBar().
1574 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1575 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001576 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001577 } else if ("0".equals(navBarOverride)) {
1578 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001579 }
1580
Jeff Brown27f1d672012-10-17 18:32:34 -07001581 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1582 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001583 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001584 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001585 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001586 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001587 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001588 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001589
Chong Zhangae6119ff2014-11-11 18:54:39 -08001590 // For demo purposes, allow the rotation of the remote display to be controlled.
1591 // By default, remote display locks rotation to landscape.
1592 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1593 mDemoRotation = mPortraitRotation;
1594 } else {
1595 mDemoRotation = mLandscapeRotation;
1596 }
1597 mDemoRotationLock = SystemProperties.getBoolean(
1598 "persist.demo.rotationlock", false);
1599
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001600 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1601 // http://developer.android.com/guide/practices/screens_support.html#range
1602 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1603 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1604 // For debug purposes the next line turns this feature off with:
1605 // $ adb shell setprop config.override_forced_orient true
1606 // $ adb shell wm size reset
1607 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1608 }
1609
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001610 /**
1611 * @return whether the navigation bar can be hidden, e.g. the device has a
1612 * navigation bar and touch exploration is not enabled
1613 */
1614 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001615 return mHasNavigationBar
1616 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001617 }
1618
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001619 @Override
1620 public boolean isDefaultOrientationForced() {
1621 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001622 }
1623
Dianne Hackbornc652de82013-02-15 16:32:56 -08001624 @Override
1625 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1626 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1627 mOverscanLeft = left;
1628 mOverscanTop = top;
1629 mOverscanRight = right;
1630 mOverscanBottom = bottom;
1631 }
1632 }
1633
Dianne Hackbornc777e072010-02-12 13:07:59 -08001634 public void updateSettings() {
1635 ContentResolver resolver = mContext.getContentResolver();
1636 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001637 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001638 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001639 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001640 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1641 UserHandle.USER_CURRENT);
1642 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001643 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001644 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1645 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001646
Jeff Browna20dda42014-05-27 20:57:24 -07001647 // Configure wake gesture.
1648 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1649 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1650 UserHandle.USER_CURRENT) != 0;
1651 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1652 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1653 updateWakeGestureListenerLp();
1654 }
1655
Jeff Brown207673cd2012-06-05 17:47:11 -07001656 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001657 int userRotation = Settings.System.getIntForUser(resolver,
1658 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1659 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001660 if (mUserRotation != userRotation) {
1661 mUserRotation = userRotation;
1662 updateRotation = true;
1663 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001664 int userRotationMode = Settings.System.getIntForUser(resolver,
1665 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001666 WindowManagerPolicy.USER_ROTATION_FREE :
1667 WindowManagerPolicy.USER_ROTATION_LOCKED;
1668 if (mUserRotationMode != userRotationMode) {
1669 mUserRotationMode = userRotationMode;
1670 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001671 updateOrientationListenerLp();
1672 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001673
Dianne Hackbornc777e072010-02-12 13:07:59 -08001674 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001675 int pointerLocation = Settings.System.getIntForUser(resolver,
1676 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001677 if (mPointerLocationMode != pointerLocation) {
1678 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001679 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1680 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001681 }
1682 }
1683 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001684 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1685 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1686 String imId = Settings.Secure.getStringForUser(resolver,
1687 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001688 boolean hasSoftInput = imId != null && imId.length() > 0;
1689 if (mHasSoftInput != hasSoftInput) {
1690 mHasSoftInput = hasSoftInput;
1691 updateRotation = true;
1692 }
John Spurlockf1a36642013-10-12 17:50:42 -04001693 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001694 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001695 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001696 }
1697 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001698 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001699 }
1700 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001701 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001702 }
Jeff Brown70825162012-03-28 17:27:48 -07001703 }
1704
Jeff Browna20dda42014-05-27 20:57:24 -07001705 private void updateWakeGestureListenerLp() {
1706 if (shouldEnableWakeGestureLp()) {
1707 mWakeGestureListener.requestWakeUpTrigger();
1708 } else {
1709 mWakeGestureListener.cancelWakeUpTrigger();
1710 }
1711 }
1712
1713 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001714 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001715 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1716 && mWakeGestureListener.isSupported();
1717 }
1718
Jeff Brown70825162012-03-28 17:27:48 -07001719 private void enablePointerLocation() {
1720 if (mPointerLocationView == null) {
1721 mPointerLocationView = new PointerLocationView(mContext);
1722 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001723 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1724 WindowManager.LayoutParams.MATCH_PARENT,
1725 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001726 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001727 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1728 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1729 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1730 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001731 if (ActivityManager.isHighEndGfx()) {
1732 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1733 lp.privateFlags |=
1734 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1735 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001736 lp.format = PixelFormat.TRANSLUCENT;
1737 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001738 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001739 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001740 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001741 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001742 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001743 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001744 }
Jeff Brown70825162012-03-28 17:27:48 -07001745
1746 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001747 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001748 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1749 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001750 wm.removeView(mPointerLocationView);
1751 mPointerLocationView = null;
1752 }
1753 }
1754
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001755 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001756 try {
1757 int rotation = mContext.getResources().getInteger(resID);
1758 switch (rotation) {
1759 case 0:
1760 return Surface.ROTATION_0;
1761 case 90:
1762 return Surface.ROTATION_90;
1763 case 180:
1764 return Surface.ROTATION_180;
1765 case 270:
1766 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001767 }
1768 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001769 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001770 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001771 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001772 }
1773
1774 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001775 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001776 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001777 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001778
1779 outAppOp[0] = AppOpsManager.OP_NONE;
1780
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001781 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1782 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1783 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1784 return WindowManagerGlobal.ADD_INVALID_TYPE;
1785 }
1786
1787 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1788 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001789 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001790 }
1791 String permission = null;
1792 switch (type) {
1793 case TYPE_TOAST:
1794 // XXX right now the app process has complete control over
1795 // this... should introduce a token to let the system
1796 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001797 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001798 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001799 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001800 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001801 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001802 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001803 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001804 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001805 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001806 break;
1807 case TYPE_PHONE:
1808 case TYPE_PRIORITY_PHONE:
1809 case TYPE_SYSTEM_ALERT:
1810 case TYPE_SYSTEM_ERROR:
1811 case TYPE_SYSTEM_OVERLAY:
1812 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001813 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001814 break;
1815 default:
1816 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1817 }
1818 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001819 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1820 final int callingUid = Binder.getCallingUid();
1821 // check if this is a system uid first before bothering with
1822 // obtaining package name
1823 if (callingUid == Process.SYSTEM_UID) {
1824 return WindowManagerGlobal.ADD_OKAY;
1825 }
1826
1827 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1828 attrs.packageName);
1829 if (mode == AppOpsManager.MODE_DEFAULT) {
1830 if (mContext.checkCallingPermission(permission) !=
1831 PackageManager.PERMISSION_GRANTED) {
1832 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1833 }
1834 }
1835 return WindowManagerGlobal.ADD_OKAY;
1836 }
1837
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001838 if (mContext.checkCallingOrSelfPermission(permission)
1839 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001840 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001841 }
1842 }
Jeff Brown98365d72012-08-19 20:30:52 -07001843 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001844 }
Craig Mautner88400d32012-09-30 12:35:45 -07001845
1846 @Override
1847 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1848
1849 // If this switch statement is modified, modify the comment in the declarations of
1850 // the type in {@link WindowManager.LayoutParams} as well.
1851 switch (attrs.type) {
1852 default:
1853 // These are the windows that by default are shown only to the user that created
1854 // them. If this needs to be overridden, set
1855 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1856 // {@link WindowManager.LayoutParams}. Note that permission
1857 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1858 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1859 return true;
1860 }
1861 break;
1862
1863 // These are the windows that by default are shown to all users. However, to
1864 // protect against spoofing, check permissions below.
1865 case TYPE_APPLICATION_STARTING:
1866 case TYPE_BOOT_PROGRESS:
1867 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001868 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001869 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001870 case TYPE_KEYGUARD_DIALOG:
1871 case TYPE_MAGNIFICATION_OVERLAY:
1872 case TYPE_NAVIGATION_BAR:
1873 case TYPE_NAVIGATION_BAR_PANEL:
1874 case TYPE_PHONE:
1875 case TYPE_POINTER:
1876 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001877 case TYPE_SEARCH_BAR:
1878 case TYPE_STATUS_BAR:
1879 case TYPE_STATUS_BAR_PANEL:
1880 case TYPE_STATUS_BAR_SUB_PANEL:
1881 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001882 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001883 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001884 break;
1885 }
1886
1887 // Check if third party app has set window to system window type.
1888 return mContext.checkCallingOrSelfPermission(
1889 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1890 != PackageManager.PERMISSION_GRANTED;
1891 }
1892
Craig Mautner967212c2013-04-13 21:10:58 -07001893 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001894 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1895 switch (attrs.type) {
1896 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001897 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001898 // These types of windows can't receive input events.
1899 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1900 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001901 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001902 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001903 case TYPE_STATUS_BAR:
1904
1905 // If the Keyguard is in a hidden state (occluded by another window), we force to
1906 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1907 // the keyguard as occluded wouldn't set these flags again.
1908 // See {@link #processKeyguardSetHiddenResultLw}.
1909 if (mKeyguardHidden) {
1910 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1911 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1912 }
1913 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001914 }
Adrian Roos38502112014-04-09 21:04:11 +02001915
1916 if (attrs.type != TYPE_STATUS_BAR) {
1917 // The status bar is the only window allowed to exhibit keyguard behavior.
1918 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1919 }
Adrian Roosea562512014-05-05 13:33:03 +02001920
1921 if (ActivityManager.isHighEndGfx()
1922 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02001923 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02001924 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1925 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001926 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001927
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001928 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07001929 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001930 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001931
Michael Wright3818c922014-09-02 13:59:07 -07001932 private void readCameraLensCoverState() {
1933 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
1934 }
1935
Jeff Browndaa37532012-05-01 15:54:03 -07001936 private boolean isHidden(int accessibilityMode) {
1937 switch (accessibilityMode) {
1938 case 1:
1939 return mLidState == LID_CLOSED;
1940 case 2:
1941 return mLidState == LID_OPEN;
1942 default:
1943 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001944 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001945 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001946
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001947 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001948 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07001949 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
1950 int navigationPresence) {
1951 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
1952
Jeff Brownf71343d2013-05-31 17:59:11 -07001953 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001954 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07001955 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08001956
Jeff Browndaa37532012-05-01 15:54:03 -07001957 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
1958 || (keyboardPresence == PRESENCE_INTERNAL
1959 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001960 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07001961 if (!mHasSoftInput) {
1962 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
1963 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001964 }
1965
Jeff Browndaa37532012-05-01 15:54:03 -07001966 if (config.navigation == Configuration.NAVIGATION_NONAV
1967 || (navigationPresence == PRESENCE_INTERNAL
1968 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001969 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08001970 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001971 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001972
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001973 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001974 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001975 public int windowTypeToLayerLw(int type) {
1976 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001977 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001978 }
1979 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07001980 case TYPE_PRIVATE_PRESENTATION:
1981 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001982 case TYPE_WALLPAPER:
1983 // wallpaper is at the bottom, though the window manager may move it.
1984 return 2;
1985 case TYPE_PHONE:
1986 return 3;
1987 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07001988 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001989 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001990 case TYPE_VOICE_INTERACTION:
1991 // voice interaction layer is almost immediately above apps.
1992 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07001993 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001994 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07001995 case TYPE_SYSTEM_DIALOG:
1996 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001997 case TYPE_TOAST:
1998 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07001999 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002000 case TYPE_PRIORITY_PHONE:
2001 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002002 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002003 case TYPE_DREAM:
2004 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002005 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002006 case TYPE_SYSTEM_ALERT:
2007 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002008 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002009 case TYPE_INPUT_METHOD:
2010 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002011 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002012 case TYPE_INPUT_METHOD_DIALOG:
2013 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002014 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002015 case TYPE_KEYGUARD_SCRIM:
2016 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002017 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07002018 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002019 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07002020 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002021 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07002022 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002023 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002024 case TYPE_KEYGUARD_DIALOG:
2025 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002026 case TYPE_VOLUME_OVERLAY:
2027 // the on-screen volume indicator and controller shown when the user
2028 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002029 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002030 case TYPE_SYSTEM_OVERLAY:
2031 // the on-screen volume indicator and controller shown when the user
2032 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002033 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002034 case TYPE_NAVIGATION_BAR:
2035 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002036 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002037 case TYPE_NAVIGATION_BAR_PANEL:
2038 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002039 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002040 case TYPE_SYSTEM_ERROR:
2041 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002042 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002043 case TYPE_MAGNIFICATION_OVERLAY:
2044 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002045 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002046 case TYPE_DISPLAY_OVERLAY:
2047 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002048 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002049 case TYPE_DRAG:
2050 // the drag layer: input for drag-and-drop is associated with this window,
2051 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002052 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002053 case TYPE_ACCESSIBILITY_OVERLAY:
2054 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002055 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002056 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002057 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002058 case TYPE_BOOT_PROGRESS:
2059 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002060 case TYPE_POINTER:
2061 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002062 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002063 }
2064 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002065 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002066 }
2067
2068 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002069 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002070 public int subWindowTypeToLayerLw(int type) {
2071 switch (type) {
2072 case TYPE_APPLICATION_PANEL:
2073 case TYPE_APPLICATION_ATTACHED_DIALOG:
2074 return APPLICATION_PANEL_SUBLAYER;
2075 case TYPE_APPLICATION_MEDIA:
2076 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002077 case TYPE_APPLICATION_MEDIA_OVERLAY:
2078 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002079 case TYPE_APPLICATION_SUB_PANEL:
2080 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002081 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2082 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002083 }
2084 Log.e(TAG, "Unknown sub-window type: " + type);
2085 return 0;
2086 }
2087
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002088 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002089 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002090 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002091 }
2092
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002093 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002094 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002095 if (mHasNavigationBar) {
2096 // For a basic navigation bar, when we are in landscape mode we place
2097 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002098 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2099 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002100 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002101 }
2102 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002103 }
2104
Jose Lima9546b202014-07-02 17:21:51 -07002105 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002106 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002107 if (mHasNavigationBar) {
2108 // For a basic navigation bar, when we are in portrait mode we place
2109 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002110 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2111 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002112 }
2113 }
2114 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002115 }
2116
Jose Lima9546b202014-07-02 17:21:51 -07002117 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002118 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2119 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002120 }
2121
Jose Lima9546b202014-07-02 17:21:51 -07002122 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002123 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002124 // There is a separate status bar at the top of the display. We don't count that as part
2125 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002126 // we do want to exclude it since applications can't generally use that part
2127 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002128 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002129 }
2130
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002131 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002132 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2133 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002134 (isKeyguardHostWindow(attrs) &&
2135 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002136 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002137 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002138
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002139 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002140 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2141 return attrs.type == TYPE_STATUS_BAR;
2142 }
2143
2144 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002145 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002146 switch (attrs.type) {
2147 case TYPE_STATUS_BAR:
2148 case TYPE_NAVIGATION_BAR:
2149 case TYPE_WALLPAPER:
2150 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002151 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002152 return false;
2153 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002154 // Hide only windows below the keyguard host window.
2155 return windowTypeToLayerLw(win.getBaseType())
2156 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002157 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002158 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002159
Craig Mautner7d7808f2014-09-11 18:02:38 -07002160 @Override
2161 public WindowState getWinShowWhenLockedLw() {
2162 return mWinShowWhenLocked;
2163 }
2164
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002165 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002166 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002167 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2168 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002169 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002170 if (!SHOW_STARTING_ANIMATIONS) {
2171 return null;
2172 }
2173 if (packageName == null) {
2174 return null;
2175 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002176
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002177 WindowManager wm = null;
2178 View view = null;
2179
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002180 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002181 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002182 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2183 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2184 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002185 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002186 try {
2187 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002188 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002189 } catch (PackageManager.NameNotFoundException e) {
2190 // Ignore
2191 }
2192 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002193
Jorim Jaggia16cc152015-06-01 16:55:05 -07002194 PhoneWindow win = new PhoneWindow(context);
2195 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002196 final TypedArray ta = win.getWindowStyle();
2197 if (ta.getBoolean(
2198 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2199 || ta.getBoolean(
2200 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002201 return null;
2202 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002203
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002204 Resources r = context.getResources();
2205 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002206
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002207 win.setType(
2208 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002209
2210 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2211 // Assumes it's safe to show starting windows of launched apps while
2212 // the keyguard is being hidden. This is okay because starting windows never show
2213 // secret information.
2214 if (mKeyguardHidden) {
2215 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2216 }
2217 }
2218
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002219 // Force the window flags: this is a fake window, so it is not really
2220 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2221 // flag because we do know that the next window will take input
2222 // focus, so we want to get the IME window up on top of us right away.
2223 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002224 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002225 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2226 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2227 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002228 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002229 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2230 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2231 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002232
Adam Powell04fe6eb2013-05-31 14:39:48 -07002233 win.setDefaultIcon(icon);
2234 win.setDefaultLogo(logo);
2235
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002236 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002237 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002238
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002239 final WindowManager.LayoutParams params = win.getAttributes();
2240 params.token = appToken;
2241 params.packageName = packageName;
2242 params.windowAnimations = win.getWindowStyle().getResourceId(
2243 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002244 params.privateFlags |=
2245 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002246 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002247
2248 if (!compatInfo.supportsScreen()) {
2249 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2250 }
2251
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002252 params.setTitle("Starting " + packageName);
2253
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002254 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2255 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002256
2257 if (win.isFloating()) {
2258 // Whoops, there is no way to display an animation/preview
2259 // of such a thing! After all that work... let's skip it.
2260 // (Note that we must do this here because it is in
2261 // getDecorView() where the theme is evaluated... maybe
2262 // we should peek the floating attribute from the theme
2263 // earlier.)
2264 return null;
2265 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002266
Craig Mautner6fbda632012-07-03 09:26:39 -07002267 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002268 TAG, "Adding starting window for " + packageName
2269 + " / " + appToken + ": "
2270 + (view.getParent() != null ? view : null));
2271
2272 wm.addView(view, params);
2273
2274 // Only return the view if it was successfully added to the
2275 // window manager... which we can tell by it having a parent.
2276 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002277 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002278 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002279 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2280 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002281 } catch (RuntimeException e) {
2282 // don't crash if something else bad happens, for example a
2283 // failure loading resources because we are loading from an app
2284 // on external storage that has been unmounted.
2285 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002286 } finally {
2287 if (view != null && view.getParent() == null) {
2288 Log.w(TAG, "view not successfully added to wm, removing view");
2289 wm.removeViewImmediate(view);
2290 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002291 }
2292
2293 return null;
2294 }
2295
2296 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002297 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002298 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002299 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2300 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002301
2302 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002303 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002304 wm.removeView(window);
2305 }
2306 }
2307
2308 /**
2309 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002310 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002311 * Currently enforces that three window types are singletons:
2312 * <ul>
2313 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002314 * <li>KEYGUARD_TYPE</li>
2315 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002316 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002317 * @param win The window to be added
2318 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002319 *
Jeff Brown98365d72012-08-19 20:30:52 -07002320 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2321 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002322 */
Jose Lima9546b202014-07-02 17:21:51 -07002323 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002324 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2325 switch (attrs.type) {
2326 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002327 mContext.enforceCallingOrSelfPermission(
2328 android.Manifest.permission.STATUS_BAR_SERVICE,
2329 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002330 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002331 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002332 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002333 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002334 }
2335 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002336 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002337 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002338 case TYPE_NAVIGATION_BAR:
2339 mContext.enforceCallingOrSelfPermission(
2340 android.Manifest.permission.STATUS_BAR_SERVICE,
2341 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002342 if (mNavigationBar != null) {
2343 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002344 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002345 }
2346 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002347 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002348 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002349 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002350 break;
Jim Millere898ac52012-04-06 17:10:57 -07002351 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002352 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002353 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002354 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002355 mContext.enforceCallingOrSelfPermission(
2356 android.Manifest.permission.STATUS_BAR_SERVICE,
2357 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002358 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002359 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002360 if (mKeyguardScrim != null) {
2361 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2362 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002363 mKeyguardScrim = win;
2364 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002365 }
Jeff Brown98365d72012-08-19 20:30:52 -07002366 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002367 }
2368
2369 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002370 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002371 public void removeWindowLw(WindowState win) {
2372 if (mStatusBar == win) {
2373 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002374 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002375 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002376 } else if (mKeyguardScrim == win) {
2377 Log.v(TAG, "Removing keyguard scrim");
2378 mKeyguardScrim = null;
2379 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002380 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002381 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002382 }
2383 }
2384
2385 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002386
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002387 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002388 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002389 public int selectAnimationLw(WindowState win, int transit) {
2390 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2391 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002392 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002393 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002394 if (transit == TRANSIT_EXIT
2395 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002396 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002397 } else if (transit == TRANSIT_ENTER
2398 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002399 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002400 }
2401 } else if (win == mNavigationBar) {
2402 // This can be on either the bottom or the right.
2403 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002404 if (transit == TRANSIT_EXIT
2405 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002406 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002407 } else if (transit == TRANSIT_ENTER
2408 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002409 return R.anim.dock_bottom_enter;
2410 }
2411 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002412 if (transit == TRANSIT_EXIT
2413 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002414 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002415 } else if (transit == TRANSIT_ENTER
2416 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002417 return R.anim.dock_right_enter;
2418 }
2419 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002420 }
2421
2422 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002423 if (win.hasAppShownWindows()) {
2424 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2425 return com.android.internal.R.anim.app_starting_exit;
2426 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002427 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002428 && transit == TRANSIT_ENTER) {
2429 // Special case: we are animating in a dream, while the keyguard
2430 // is shown. We don't want an animation on the dream, because
2431 // we need it shown immediately with the keyguard animating away
2432 // to reveal it.
2433 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002434 }
2435
2436 return 0;
2437 }
2438
Craig Mautner3c174372013-02-21 17:54:37 -08002439 @Override
2440 public void selectRotationAnimationLw(int anim[]) {
2441 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2442 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2443 + (mTopFullscreenOpaqueWindowState == null ?
2444 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2445 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2446 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2447 case ROTATION_ANIMATION_CROSSFADE:
2448 anim[0] = R.anim.rotation_animation_xfade_exit;
2449 anim[1] = R.anim.rotation_animation_enter;
2450 break;
2451 case ROTATION_ANIMATION_JUMPCUT:
2452 anim[0] = R.anim.rotation_animation_jump_exit;
2453 anim[1] = R.anim.rotation_animation_enter;
2454 break;
2455 case ROTATION_ANIMATION_ROTATE:
2456 default:
2457 anim[0] = anim[1] = 0;
2458 break;
2459 }
2460 } else {
2461 anim[0] = anim[1] = 0;
2462 }
2463 }
2464
2465 @Override
2466 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2467 boolean forceDefault) {
2468 switch (exitAnimId) {
2469 case R.anim.rotation_animation_xfade_exit:
2470 case R.anim.rotation_animation_jump_exit:
2471 // These are the only cases that matter.
2472 if (forceDefault) {
2473 return false;
2474 }
2475 int anim[] = new int[2];
2476 selectRotationAnimationLw(anim);
2477 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2478 default:
2479 return true;
2480 }
2481 }
2482
2483 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002484 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2485 boolean goingToNotificationShade) {
2486 if (goingToNotificationShade) {
2487 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002488 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002489
2490 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2491 R.anim.lock_screen_behind_enter_wallpaper :
2492 R.anim.lock_screen_behind_enter);
2493
2494 // TODO: Use XML interpolators when we have log interpolators available in XML.
2495 final List<Animation> animations = set.getAnimations();
2496 for (int i = animations.size() - 1; i >= 0; --i) {
2497 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2498 }
2499
2500 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002501 }
2502
2503
2504 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002505 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2506 if (goingToNotificationShade) {
2507 return null;
2508 } else {
2509 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2510 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002511 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002512
2513 private static void awakenDreams() {
2514 IDreamManager dreamManager = getDreamManager();
2515 if (dreamManager != null) {
2516 try {
2517 dreamManager.awaken();
2518 } catch (RemoteException e) {
2519 // fine, stay asleep then
2520 }
2521 }
2522 }
2523
2524 static IDreamManager getDreamManager() {
2525 return IDreamManager.Stub.asInterface(
2526 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2527 }
2528
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002529 TelecomManager getTelecommService() {
2530 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002531 }
2532
Jeff Brown4d396052010-10-29 21:50:21 -07002533 static IAudioService getAudioService() {
2534 IAudioService audioService = IAudioService.Stub.asInterface(
2535 ServiceManager.checkService(Context.AUDIO_SERVICE));
2536 if (audioService == null) {
2537 Log.w(TAG, "Unable to find IAudioService interface.");
2538 }
2539 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002540 }
2541
2542 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002543 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002544 }
2545
2546 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2547 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2548 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2549 };
2550
2551 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002552 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002553 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002554 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002555 final int keyCode = event.getKeyCode();
2556 final int repeatCount = event.getRepeatCount();
2557 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002558 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002559 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2560 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002561
Jeff Brown40013652012-05-16 21:22:36 -07002562 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002563 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002564 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2565 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002566 }
2567
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002568 // If we think we might have a volume down & power key chord on the way
2569 // but we're not sure, then tell the dispatcher to wait a little while and
2570 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002571 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002572 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002573 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002574 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2575 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002576 if (now < timeoutTime) {
2577 return timeoutTime - now;
2578 }
2579 }
2580 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002581 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002582 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002583 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002584 }
2585 return -1;
2586 }
2587 }
2588
Michael Wright6a62e552014-06-03 19:19:48 -07002589 // Cancel any pending meta actions if we see any other keys being pressed between the down
2590 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002591 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002592 mPendingMetaAction = false;
2593 }
2594
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002595 // First we always handle the home key here, so applications
2596 // can never break it, although if keyguard is on, we do let
2597 // it handle it, because that gives us the correct 5 second
2598 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002599 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002600
Jeff Brown49ed71d2010-12-06 17:13:33 -08002601 // If we have released the home key, and didn't do anything else
2602 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002603 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002604 cancelPreloadRecentApps();
2605
Jeff Brown49ed71d2010-12-06 17:13:33 -08002606 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002607 if (mHomeConsumed) {
2608 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002609 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002610 }
Jeff Browncaca8812013-05-09 13:34:33 -07002611
2612 if (canceled) {
2613 Log.i(TAG, "Ignoring HOME; event canceled.");
2614 return -1;
2615 }
2616
Yorke Lee4f803242014-12-15 23:22:06 +00002617 // If an incoming call is ringing, HOME is totally disabled.
2618 // (The user is already on the InCallUI at this point,
2619 // and his ONLY options are to answer or reject the call.)
2620 TelecomManager telecomManager = getTelecommService();
2621 if (telecomManager != null && telecomManager.isRinging()) {
2622 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2623 return -1;
2624 }
2625
Jeff Browncaca8812013-05-09 13:34:33 -07002626 // Delay handling home if a double-tap is possible.
2627 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2628 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2629 mHomeDoubleTapPending = true;
2630 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2631 ViewConfiguration.getDoubleTapTimeout());
2632 return -1;
2633 }
2634
Jeff Brown13f00f02014-10-31 14:45:50 -07002635 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002636 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002637 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002638
2639 // If a system window has focus, then it doesn't make sense
2640 // right now to interact with applications.
2641 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2642 if (attrs != null) {
2643 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002644 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2645 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2646 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002647 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002648 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002649 }
2650 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2651 for (int i=0; i<typeCount; i++) {
2652 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2653 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002654 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002655 }
2656 }
2657 }
Jeff Browncaca8812013-05-09 13:34:33 -07002658
2659 // Remember that home is pressed and handle special actions.
2660 if (repeatCount == 0) {
2661 mHomePressed = true;
2662 if (mHomeDoubleTapPending) {
2663 mHomeDoubleTapPending = false;
2664 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2665 handleDoubleTapOnHome();
2666 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2667 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2668 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002669 }
Jeff Browncaca8812013-05-09 13:34:33 -07002670 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2671 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002672 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002673 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002674 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002675 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002676 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002677 // Hijack modified menu keys for debugging features
2678 final int chordBug = KeyEvent.META_SHIFT_ON;
2679
2680 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002681 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002682 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002683 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2684 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002685 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002686 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002687 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002688 Intent service = new Intent();
2689 service.setClassName(mContext, "com.android.server.LoadAverageService");
2690 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002691 boolean shown = Settings.Global.getInt(
2692 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002693 if (!shown) {
2694 mContext.startService(service);
2695 } else {
2696 mContext.stopService(service);
2697 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002698 Settings.Global.putInt(
2699 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002700 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002701 }
2702 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002703 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002704 if (down) {
2705 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002706 mSearchKeyShortcutPending = true;
2707 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002708 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002709 } else {
2710 mSearchKeyShortcutPending = false;
2711 if (mConsumeSearchKeyUp) {
2712 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002713 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002714 }
2715 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002716 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002717 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002718 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002719 if (down && repeatCount == 0) {
2720 preloadRecentApps();
2721 } else if (!down) {
2722 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002723 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002724 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002725 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002726 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2727 if (down) {
2728 IStatusBarService service = getStatusBarService();
2729 if (service != null) {
2730 try {
2731 service.expandNotificationsPanel();
2732 } catch (RemoteException e) {
2733 // do nothing.
2734 }
2735 }
2736 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002737 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2738 if (down) {
2739 if (repeatCount == 0) {
2740 mAssistKeyLongPressed = false;
2741 } else if (repeatCount == 1) {
2742 mAssistKeyLongPressed = true;
2743 if (!keyguardOn) {
2744 launchAssistLongPressAction();
2745 }
2746 }
2747 } else {
2748 if (mAssistKeyLongPressed) {
2749 mAssistKeyLongPressed = false;
2750 } else {
2751 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002752 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002753 }
2754 }
2755 }
2756 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002757 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2758 if (!down) {
2759 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002760 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002761 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2762 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002763 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2764 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2765 if (dic != null) {
2766 try {
2767 dic.exitIdle("voice-search");
2768 } catch (RemoteException e) {
2769 }
2770 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002771 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002772 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002773 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002774 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002775 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002776 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2777 if (down && repeatCount == 0) {
2778 mHandler.post(mScreenshotRunnable);
2779 }
2780 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002781 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2782 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2783 if (down) {
2784 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2785
2786 // Disable autobrightness if it's on
2787 int auto = Settings.System.getIntForUser(
2788 mContext.getContentResolver(),
2789 Settings.System.SCREEN_BRIGHTNESS_MODE,
2790 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2791 UserHandle.USER_CURRENT_OR_SELF);
2792 if (auto != 0) {
2793 Settings.System.putIntForUser(mContext.getContentResolver(),
2794 Settings.System.SCREEN_BRIGHTNESS_MODE,
2795 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2796 UserHandle.USER_CURRENT_OR_SELF);
2797 }
2798
2799 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2800 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2801 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2802 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2803 Settings.System.SCREEN_BRIGHTNESS,
2804 mPowerManager.getDefaultScreenBrightnessSetting(),
2805 UserHandle.USER_CURRENT_OR_SELF);
2806 brightness += step;
2807 // Make sure we don't go beyond the limits.
2808 brightness = Math.min(max, brightness);
2809 brightness = Math.max(min, brightness);
2810
2811 Settings.System.putIntForUser(mContext.getContentResolver(),
2812 Settings.System.SCREEN_BRIGHTNESS, brightness,
2813 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002814 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002815 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002816 }
2817 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002818 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002819 if (down) {
2820 mPendingMetaAction = true;
2821 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002822 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002823 }
2824 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002825 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002826
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002827 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002828 // Any printing key that is chorded with Search should be consumed
2829 // even if no shortcut was invoked. This prevents text from being
2830 // inadvertently inserted when using a keyboard that has built-in macro
2831 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002832 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002833 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2834 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002835 mConsumeSearchKeyUp = true;
2836 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002837 if (down && repeatCount == 0 && !keyguardOn) {
2838 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2839 if (shortcutIntent != null) {
2840 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002841 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002842 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002843 } catch (ActivityNotFoundException ex) {
2844 Slog.w(TAG, "Dropping shortcut key combination because "
2845 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002846 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002847 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002848 } else {
2849 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002850 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002851 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002852 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002853 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002854 }
2855 }
2856
Jeff Brown68b909d2011-12-07 16:36:01 -08002857 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002858 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002859 && (metaState & KeyEvent.META_META_ON) != 0) {
2860 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002861 if (kcm.isPrintingKey(keyCode)) {
2862 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2863 metaState & ~(KeyEvent.META_META_ON
2864 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2865 if (shortcutIntent != null) {
2866 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2867 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002868 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002869 } catch (ActivityNotFoundException ex) {
2870 Slog.w(TAG, "Dropping shortcut key combination because "
2871 + "the activity to which it is registered was not found: "
2872 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2873 }
2874 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002875 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002876 }
2877 }
2878
Jeff Brown6651a632011-11-28 12:59:11 -08002879 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002880 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002881 String category = sApplicationLaunchKeyCategories.get(keyCode);
2882 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002883 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002884 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2885 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002886 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002887 } catch (ActivityNotFoundException ex) {
2888 Slog.w(TAG, "Dropping application launch key because "
2889 + "the activity to which it is registered was not found: "
2890 + "keyCode=" + keyCode + ", category=" + category, ex);
2891 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002892 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002893 }
2894 }
2895
Michael Wright61c46752014-08-21 16:57:33 -07002896 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002897 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002898 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002899 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002900 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002901 mRecentAppsHeldModifiers = shiftlessModifiers;
2902 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002903 return -1;
2904 }
2905 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002906 } else if (!down && mRecentAppsHeldModifiers != 0
2907 && (metaState & mRecentAppsHeldModifiers) == 0) {
2908 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002909 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002910 }
2911
Jeff Browncf39bdf2012-05-18 14:41:19 -07002912 // Handle keyboard language switching.
2913 if (down && repeatCount == 0
2914 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2915 || (keyCode == KeyEvent.KEYCODE_SPACE
2916 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2917 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2918 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2919 return -1;
2920 }
2921 if (mLanguageSwitchKeyPressed && !down
2922 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2923 || keyCode == KeyEvent.KEYCODE_SPACE)) {
2924 mLanguageSwitchKeyPressed = false;
2925 return -1;
2926 }
2927
Jeff Brown13f00f02014-10-31 14:45:50 -07002928 if (isValidGlobalKey(keyCode)
2929 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07002930 return -1;
2931 }
2932
Michael Wright6a62e552014-06-03 19:19:48 -07002933 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07002934 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07002935 return -1;
2936 }
2937
Jeff Brown68b909d2011-12-07 16:36:01 -08002938 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002939 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002940 }
2941
Jeff Brown3915bb82010-11-05 15:02:16 -07002942 /** {@inheritDoc} */
2943 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08002944 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07002945 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07002946 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08002947 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
2948 + ", flags=" + event.getFlags()
2949 + ", keyCode=" + event.getKeyCode()
2950 + ", scanCode=" + event.getScanCode()
2951 + ", metaState=" + event.getMetaState()
2952 + ", repeatCount=" + event.getRepeatCount()
2953 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07002954 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002955
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002956 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002957 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
2958 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002959 final int keyCode = event.getKeyCode();
2960 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002961 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
2962 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002963
Jeff Brown54875002011-04-06 15:33:01 -07002964 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002965 final FallbackAction fallbackAction;
2966 if (initialDown) {
2967 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
2968 } else {
2969 fallbackAction = mFallbackActions.get(keyCode);
2970 }
2971
2972 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07002973 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002974 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
2975 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002976 }
2977
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002978 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
2979 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08002980 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002981 event.getAction(), fallbackAction.keyCode,
2982 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08002983 event.getDeviceId(), event.getScanCode(),
2984 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002985
2986 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
2987 fallbackEvent.recycle();
2988 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002989 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002990
2991 if (initialDown) {
2992 mFallbackActions.put(keyCode, fallbackAction);
2993 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2994 mFallbackActions.remove(keyCode);
2995 fallbackAction.recycle();
2996 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002997 }
2998 }
2999
Jeff Brown40013652012-05-16 21:22:36 -07003000 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003001 if (fallbackEvent == null) {
3002 Slog.d(TAG, "No fallback.");
3003 } else {
3004 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3005 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003006 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003007 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003008 }
3009
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003010 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003011 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003012 if ((actions & ACTION_PASS_TO_USER) != 0) {
3013 long delayMillis = interceptKeyBeforeDispatching(
3014 win, fallbackEvent, policyFlags);
3015 if (delayMillis == 0) {
3016 return true;
3017 }
3018 }
3019 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003020 }
3021
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003022 private void launchAssistLongPressAction() {
3023 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3024 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3025
3026 // launch the search activity
3027 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3028 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3029 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003030 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003031 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003032 SearchManager searchManager = getSearchManager();
3033 if (searchManager != null) {
3034 searchManager.stopSearch();
3035 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003036 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003037 } catch (ActivityNotFoundException e) {
3038 Slog.w(TAG, "No activity to handle assist long press action.", e);
3039 }
3040 }
3041
3042 private void launchAssistAction() {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003043 launchAssistAction(null, Integer.MIN_VALUE);
Michael Wright8ab940a2014-09-01 11:01:27 -07003044 }
3045
3046 private void launchAssistAction(String hint) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003047 launchAssistAction(hint, Integer.MIN_VALUE);
3048 }
3049
3050 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003051 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003052 Bundle args = null;
3053 if (deviceId > Integer.MIN_VALUE) {
3054 args = new Bundle();
3055 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003056 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003057 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3058 .launchAssistAction(hint, UserHandle.myUserId(), args);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003059 }
3060
Bart Sears8b1c27c2015-03-18 23:51:02 +00003061 private void startActivityAsUser(Intent intent, UserHandle handle) {
3062 if (isUserSetupComplete()) {
3063 mContext.startActivityAsUser(intent, handle);
3064 } else {
3065 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3066 }
3067 }
3068
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003069 private SearchManager getSearchManager() {
3070 if (mSearchManager == null) {
3071 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3072 }
3073 return mSearchManager;
3074 }
3075
Jeff Browncaca8812013-05-09 13:34:33 -07003076 private void preloadRecentApps() {
3077 mPreloadedRecentApps = true;
3078 try {
3079 IStatusBarService statusbar = getStatusBarService();
3080 if (statusbar != null) {
3081 statusbar.preloadRecentApps();
3082 }
3083 } catch (RemoteException e) {
3084 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3085 // re-acquire status bar service next time it is needed.
3086 mStatusBarService = null;
3087 }
3088 }
3089
3090 private void cancelPreloadRecentApps() {
3091 if (mPreloadedRecentApps) {
3092 mPreloadedRecentApps = false;
3093 try {
3094 IStatusBarService statusbar = getStatusBarService();
3095 if (statusbar != null) {
3096 statusbar.cancelPreloadRecentApps();
3097 }
3098 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003099 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003100 // re-acquire status bar service next time it is needed.
3101 mStatusBarService = null;
3102 }
3103 }
3104 }
3105
3106 private void toggleRecentApps() {
3107 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003108 try {
3109 IStatusBarService statusbar = getStatusBarService();
3110 if (statusbar != null) {
3111 statusbar.toggleRecentApps();
3112 }
3113 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003114 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3115 // re-acquire status bar service next time it is needed.
3116 mStatusBarService = null;
3117 }
3118 }
3119
Craig Mautner84984fa2014-06-19 11:19:20 -07003120 @Override
3121 public void showRecentApps() {
3122 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3123 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3124 }
3125
Winson Chung1e8d71b2014-05-16 17:05:22 -07003126 private void showRecentApps(boolean triggeredFromAltTab) {
3127 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3128 try {
3129 IStatusBarService statusbar = getStatusBarService();
3130 if (statusbar != null) {
3131 statusbar.showRecentApps(triggeredFromAltTab);
3132 }
3133 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003134 Slog.e(TAG, "RemoteException when showing recent apps", e);
3135 // re-acquire status bar service next time it is needed.
3136 mStatusBarService = null;
3137 }
3138 }
3139
Winson Chungcdcd4872014-08-05 18:00:13 -07003140 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003141 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3142 try {
3143 IStatusBarService statusbar = getStatusBarService();
3144 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003145 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003146 }
3147 } catch (RemoteException e) {
3148 Slog.e(TAG, "RemoteException when closing recent apps", e);
3149 // re-acquire status bar service next time it is needed.
3150 mStatusBarService = null;
3151 }
3152 }
3153
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003154 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003155 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003156 }
3157
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003158 /**
3159 * A home key -> launch home action was detected. Take the appropriate action
3160 * given the situation with the keyguard.
3161 */
Bryce Lee662ed802015-04-10 20:11:39 +00003162 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3163 if (respectKeyguard) {
3164 if (isKeyguardShowingAndNotOccluded()) {
3165 // don't launch home if keyguard showing
3166 return;
3167 }
3168
3169 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3170 // when in keyguard restricted mode, must first verify unlock
3171 // before launching home
3172 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3173 @Override
3174 public void onKeyguardExitResult(boolean success) {
3175 if (success) {
3176 try {
3177 ActivityManagerNative.getDefault().stopAppSwitches();
3178 } catch (RemoteException e) {
3179 }
3180 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3181 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003182 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003183 }
Bryce Lee662ed802015-04-10 20:11:39 +00003184 });
3185 return;
3186 }
3187 }
3188
3189 // no keyguard stuff to worry about, just launch home!
3190 try {
3191 ActivityManagerNative.getDefault().stopAppSwitches();
3192 } catch (RemoteException e) {
3193 }
3194 if (mRecentsVisible) {
3195 // Hide Recents and notify it to launch Home
3196 if (awakenFromDreams) {
3197 awakenDreams();
3198 }
3199 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3200 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003201 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003202 // Otherwise, just launch Home
3203 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3204 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003205 }
3206 }
3207
John Spurlock04db1762013-05-13 12:46:41 -04003208 private final Runnable mClearHideNavigationFlag = new Runnable() {
3209 @Override
3210 public void run() {
3211 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3212 // Clear flags.
3213 mForceClearedSystemUiFlags &=
3214 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3215 }
3216 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003217 }
3218 };
3219
3220 /**
3221 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3222 * to determine when the nav bar should be shown and prevent applications from
3223 * receiving those touches.
3224 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003225 final class HideNavInputEventReceiver extends InputEventReceiver {
3226 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3227 super(inputChannel, looper);
3228 }
3229
Dianne Hackborndf89e652011-10-06 22:35:11 -07003230 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003231 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003232 boolean handled = false;
3233 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003234 if (event instanceof MotionEvent
3235 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3236 final MotionEvent motionEvent = (MotionEvent)event;
3237 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003238 // When the user taps down, we re-show the nav bar.
3239 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003240 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003241 // Any user activity always causes us to show the
3242 // navigation controls, if they had been hidden.
3243 // We also clear the low profile and only content
3244 // flags so that tapping on the screen will atomically
3245 // restore all currently hidden screen decorations.
3246 int newVal = mResettingSystemUiFlags |
3247 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3248 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3249 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003250 if (mResettingSystemUiFlags != newVal) {
3251 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003252 changed = true;
3253 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003254 // We don't allow the system's nav bar to be hidden
3255 // again for 1 second, to prevent applications from
3256 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003257 newVal = mForceClearedSystemUiFlags |
3258 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003259 if (mForceClearedSystemUiFlags != newVal) {
3260 mForceClearedSystemUiFlags = newVal;
3261 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003262 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003263 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003264 }
3265 if (changed) {
3266 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3267 }
3268 }
3269 }
3270 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003271 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003272 }
3273 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003274 }
3275 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3276 new InputEventReceiver.Factory() {
3277 @Override
3278 public InputEventReceiver createInputEventReceiver(
3279 InputChannel inputChannel, Looper looper) {
3280 return new HideNavInputEventReceiver(inputChannel, looper);
3281 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003282 };
3283
3284 @Override
3285 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003286 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3287 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003288 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003289
Dianne Hackborndf89e652011-10-06 22:35:11 -07003290 // Reset any bits in mForceClearingStatusBarVisibility that
3291 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003292 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003293 // Clear any bits in the new visibility that are currently being
3294 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003295 return visibility & ~mResettingSystemUiFlags
3296 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003297 }
3298
Craig Mautner69b08182012-09-05 13:07:13 -07003299 @Override
Adrian Roos37d7a682014-11-06 18:15:16 +01003300 public void getInsetHintLw(WindowManager.LayoutParams attrs, Rect outContentInsets,
3301 Rect outStableInsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003302 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003303 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3304 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003305
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003306 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003307 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003308 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003309 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003310 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003311 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3312 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3313 } else {
3314 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3315 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3316 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003317 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3318 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003319 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003320 availRight - mStableFullscreenRight,
3321 availBottom - mStableFullscreenBottom);
3322 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003323 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003324 availRight - mStableRight, availBottom - mStableBottom);
3325 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003326 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003327 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003328 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003329 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003330 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003331 availRight - mCurRight, availBottom - mCurBottom);
3332 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003333 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003334 availRight - mCurRight, availBottom - mCurBottom);
3335 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003336
3337 outStableInsets.set(mStableLeft, mStableTop,
3338 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003339 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003340 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003341 outContentInsets.setEmpty();
3342 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003343 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003344
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003345 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003346 @Override
3347 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3348 int displayRotation) {
Dianne Hackbornc652de82013-02-15 16:32:56 -08003349 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3350 if (isDefaultDisplay) {
3351 switch (displayRotation) {
3352 case Surface.ROTATION_90:
3353 overscanLeft = mOverscanTop;
3354 overscanTop = mOverscanRight;
3355 overscanRight = mOverscanBottom;
3356 overscanBottom = mOverscanLeft;
3357 break;
3358 case Surface.ROTATION_180:
3359 overscanLeft = mOverscanRight;
3360 overscanTop = mOverscanBottom;
3361 overscanRight = mOverscanLeft;
3362 overscanBottom = mOverscanTop;
3363 break;
3364 case Surface.ROTATION_270:
3365 overscanLeft = mOverscanBottom;
3366 overscanTop = mOverscanLeft;
3367 overscanRight = mOverscanTop;
3368 overscanBottom = mOverscanRight;
3369 break;
3370 default:
3371 overscanLeft = mOverscanLeft;
3372 overscanTop = mOverscanTop;
3373 overscanRight = mOverscanRight;
3374 overscanBottom = mOverscanBottom;
3375 break;
3376 }
3377 } else {
3378 overscanLeft = 0;
3379 overscanTop = 0;
3380 overscanRight = 0;
3381 overscanBottom = 0;
3382 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003383 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3384 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3385 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3386 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003387 mSystemLeft = 0;
3388 mSystemTop = 0;
3389 mSystemRight = displayWidth;
3390 mSystemBottom = displayHeight;
3391 mUnrestrictedScreenLeft = overscanLeft;
3392 mUnrestrictedScreenTop = overscanTop;
3393 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3394 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3395 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3396 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003397 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3398 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003399 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003400 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003401 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003402 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003403 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003404 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003405 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003406 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003407 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003408 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003409
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003410 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3411 final Rect pf = mTmpParentFrame;
3412 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003413 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003414 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003415 final Rect dcf = mTmpDecorFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003416 final Rect osf = mTmpOutsetFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003417 pf.left = df.left = of.left = vf.left = mDockLeft;
3418 pf.top = df.top = of.top = vf.top = mDockTop;
3419 pf.right = df.right = of.right = vf.right = mDockRight;
3420 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003421 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003422
Craig Mautner69b08182012-09-05 13:07:13 -07003423 if (isDefaultDisplay) {
3424 // For purposes of putting out fake window up to steal focus, we will
3425 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003426 final int sysui = mLastSystemUiFlags;
3427 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003428 boolean navTranslucent = (sysui
3429 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003430 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3431 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3432 boolean navAllowedHidden = immersive || immersiveSticky;
3433 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003434 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3435 if (!isKeyguardShowing) {
3436 navTranslucent &= areTranslucentBarsAllowed();
3437 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003438
Craig Mautner69b08182012-09-05 13:07:13 -07003439 // When the navigation bar isn't visible, we put up a fake
3440 // input window to catch all touch events. This way we can
3441 // detect when the user presses anywhere to bring back the nav
3442 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003443 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003444 if (mInputConsumer != null) {
3445 mInputConsumer.dismiss();
3446 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003447 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003448 } else if (mInputConsumer == null) {
3449 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3450 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003451 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003452
Craig Mautner69b08182012-09-05 13:07:13 -07003453 // For purposes of positioning and showing the nav bar, if we have
3454 // decided that it can't be hidden (because of the screen aspect ratio),
3455 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003456 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003457
John Spurlockad3e6cb2013-04-30 08:47:43 -04003458 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003459 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003460 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003461 // Force the navigation bar to its appropriate place and
3462 // size. We need to do this directly, instead of relying on
3463 // it to bubble up from the nav bar, because this needs to
3464 // change atomically with screen rotations.
3465 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3466 if (mNavigationBarOnBottom) {
3467 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003468 int top = displayHeight - overscanBottom
3469 - mNavigationBarHeightForRotation[displayRotation];
3470 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003471 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003472 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003473 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003474 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003475 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003476 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003477 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3478 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003479 } else {
3480 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003481 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003482 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003483 if (navVisible && !navTranslucent && !navAllowedHidden
3484 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003485 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003486 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003487 // and not in the process of animating on or off, then
3488 // we can tell the app that it is covered by it.
3489 mSystemBottom = mTmpNavigationFrame.top;
3490 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003491 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003492 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003493 int left = displayWidth - overscanRight
3494 - mNavigationBarWidthForRotation[displayRotation];
3495 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003496 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003497 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003498 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003499 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003500 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003501 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003502 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3503 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003504 } else {
3505 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003506 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003507 }
John Spurlockbd957402013-10-03 11:38:39 -04003508 if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3509 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003510 // If the nav bar is currently requested to be visible,
3511 // and not in the process of animating on or off, then
3512 // we can tell the app that it is covered by it.
3513 mSystemRight = mTmpNavigationFrame.left;
3514 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003515 }
Craig Mautner69b08182012-09-05 13:07:13 -07003516 // Make sure the content and current rectangles are updated to
3517 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003518 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3519 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3520 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3521 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003522 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3523 // And compute the final frame.
3524 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003525 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003526 mTmpNavigationFrame, mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003527 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003528 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003529 updateSysUiVisibility = true;
3530 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003531 }
Craig Mautnereda67292013-04-28 13:50:14 -07003532 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003533 mDockLeft, mDockTop, mDockRight, mDockBottom));
3534
3535 // decide where the status bar goes ahead of time
3536 if (mStatusBar != null) {
3537 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003538 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3539 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3540 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3541 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3542 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003543 vf.left = mStableLeft;
3544 vf.top = mStableTop;
3545 vf.right = mStableRight;
3546 vf.bottom = mStableBottom;
3547
3548 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3549
3550 // Let the status bar determine its size.
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003551 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3552 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3553 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
Craig Mautner69b08182012-09-05 13:07:13 -07003554
3555 // For layout, the status bar is always at the top with our fixed height.
3556 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3557
John Spurlocke1f366f2013-08-05 12:22:40 -04003558 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003559 boolean statusBarTranslucent = (sysui
3560 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003561 if (!isKeyguardShowing) {
3562 statusBarTranslucent &= areTranslucentBarsAllowed();
3563 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003564
Craig Mautner69b08182012-09-05 13:07:13 -07003565 // If the status bar is hidden, we don't want to cause
3566 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003567 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003568 // Status bar may go away, so the screen area it occupies
3569 // is available to apps but just covering them when the
3570 // status bar is visible.
3571 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3572
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003573 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3574 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3575 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3576 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003577
Craig Mautnereda67292013-04-28 13:50:14 -07003578 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003579 String.format(
3580 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3581 mDockLeft, mDockTop, mDockRight, mDockBottom,
3582 mContentLeft, mContentTop, mContentRight, mContentBottom,
3583 mCurLeft, mCurTop, mCurRight, mCurBottom));
3584 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003585 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003586 && !statusBarTransient && !statusBarTranslucent
3587 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003588 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003589 // and not in the process of animating on or off, then
3590 // we can tell the app that it is covered by it.
3591 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3592 }
John Spurlock27735a42013-08-14 17:57:38 -04003593 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003594 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003595 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003596 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003597 if (updateSysUiVisibility) {
3598 updateSystemUiVisibilityLw();
3599 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003600 }
3601 }
3602
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003603 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003604 @Override
John Spurlock46646232013-09-30 22:32:42 -04003605 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003606 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3607 return mStatusBar.getSurfaceLayer();
3608 }
3609
3610 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3611 return mNavigationBar.getSurfaceLayer();
3612 }
3613
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003614 return 0;
3615 }
3616
Craig Mautner967212c2013-04-13 21:10:58 -07003617 @Override
3618 public void getContentRectLw(Rect r) {
3619 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3620 }
3621
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003622 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3623 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003624 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3625 // Here's a special case: if this attached window is a panel that is
3626 // above the dock window, and the window it is attached to is below
3627 // the dock window, then the frames we computed for the window it is
3628 // attached to can not be used because the dock is effectively part
3629 // of the underlying window and the attached window is floating on top
3630 // of the whole thing. So, we ignore the attached window and explicitly
3631 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003632 df.left = of.left = cf.left = vf.left = mDockLeft;
3633 df.top = of.top = cf.top = vf.top = mDockTop;
3634 df.right = of.right = cf.right = vf.right = mDockRight;
3635 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003636 } else {
3637 // The effective display frame of the attached window depends on
3638 // whether it is taking care of insetting its content. If not,
3639 // we need to use the parent's content frame so that the entire
3640 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003641 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003642 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003643 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003644 // Set the content frame of the attached window to the parent's decor frame
3645 // (same as content frame when IME isn't present) if specifically requested by
3646 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3647 // Otherwise, use the overscan frame.
3648 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3649 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003650 } else {
3651 // If the window is resizing, then we want to base the content
3652 // frame on our attached content frame to resize... however,
3653 // things can be tricky if the attached window is NOT in resize
3654 // mode, in which case its content frame will be larger.
3655 // Ungh. So to deal with that, make sure the content frame
3656 // we end up using is not covering the IM dock.
3657 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003658 if (attached.isVoiceInteraction()) {
3659 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3660 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3661 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3662 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3663 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003664 if (cf.left < mContentLeft) cf.left = mContentLeft;
3665 if (cf.top < mContentTop) cf.top = mContentTop;
3666 if (cf.right > mContentRight) cf.right = mContentRight;
3667 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3668 }
3669 }
3670 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003671 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003672 vf.set(attached.getVisibleFrameLw());
3673 }
3674 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3675 // window should be positioned relative to its parent or the entire
3676 // screen.
3677 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3678 ? attached.getFrameLw() : df);
3679 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003680
3681 private void applyStableConstraints(int sysui, int fl, Rect r) {
3682 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3683 // If app is requesting a stable layout, don't let the
3684 // content insets go below the stable values.
3685 if ((fl & FLAG_FULLSCREEN) != 0) {
3686 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3687 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3688 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3689 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3690 } else {
3691 if (r.left < mStableLeft) r.left = mStableLeft;
3692 if (r.top < mStableTop) r.top = mStableTop;
3693 if (r.right > mStableRight) r.right = mStableRight;
3694 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3695 }
3696 }
3697 }
3698
Jorim Jaggiaa806142015-05-20 18:04:16 -07003699 private boolean canReceiveInput(WindowState win) {
3700 boolean notFocusable =
3701 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3702 boolean altFocusableIm =
3703 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3704 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3705 return !notFocusableForIm;
3706 }
3707
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003708 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003709 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003710 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003711 // We've already done the navigation bar and status bar. If the status bar can receive
3712 // input, we need to layout it again to accomodate for the IME window.
3713 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003714 return;
3715 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003716 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003717 final boolean isDefaultDisplay = win.isDefaultDisplay();
3718 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003719 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3720 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003721 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003722 offsetInputMethodWindowLw(mLastInputMethodWindow);
3723 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003724
John Spurlockc6d1c602014-01-17 15:22:06 -05003725 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003726 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003727 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003728
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003729 final Rect pf = mTmpParentFrame;
3730 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003731 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003732 final Rect cf = mTmpContentFrame;
3733 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003734 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003735 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003736 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003737 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003738
3739 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003740 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003741
Craig Mautnerf683b562012-10-02 11:10:57 -07003742 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3743
Adrian Roosfa104232014-06-20 16:10:14 -07003744 if (isDefaultDisplay) {
3745 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3746 } else {
3747 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3748 }
3749
Craig Mautner69b08182012-09-05 13:07:13 -07003750 if (!isDefaultDisplay) {
3751 if (attached != null) {
3752 // If this window is attached to another, our display
3753 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003754 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003755 } else {
3756 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003757 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3758 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3759 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003760 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003761 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003762 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003763 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003764 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003765 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3766 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3767 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003768 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003769 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003770 // ...with content insets above the nav bar
3771 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003772 // IM dock windows always go to the bottom of the screen.
3773 attrs.gravity = Gravity.BOTTOM;
3774 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003775 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003776 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003777 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003778 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3779 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003780 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003781 // Note: In Phone landscape mode, the button bar should also be excluded.
3782 cf.right = vf.right = mStableRight;
3783 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003784 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003785 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003786 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3787 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3788 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3789 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3790 cf.left = vf.left = mStableLeft;
3791 cf.top = vf.top = mStableTop;
3792 cf.right = vf.right = mStableRight;
3793 vf.bottom = mStableBottom;
3794 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003795 } else {
John Spurlock46646232013-09-30 22:32:42 -04003796
3797 // Default policy decor for the default display
3798 dcf.left = mSystemLeft;
3799 dcf.top = mSystemTop;
3800 dcf.right = mSystemRight;
3801 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003802 final boolean inheritTranslucentDecor = (attrs.privateFlags
3803 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003804 final boolean isAppWindow =
3805 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3806 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3807 final boolean topAtRest =
3808 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3809 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003810 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3811 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003812 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3813 && (fl & WindowManager.LayoutParams.
3814 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003815 // Ensure policy decor includes status bar
3816 dcf.top = mStableTop;
3817 }
John Spurlockbd957402013-10-03 11:38:39 -04003818 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003819 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3820 && (fl & WindowManager.LayoutParams.
3821 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003822 // Ensure policy decor includes navigation bar
3823 dcf.bottom = mStableBottom;
3824 dcf.right = mStableRight;
3825 }
3826 }
3827
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003828 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3829 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003830 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003831 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003832 // This is the case for a normal activity window: we want it
3833 // to cover all of the screen space, and it can take care of
3834 // moving its contents to account for screen decorations that
3835 // intrude into that space.
3836 if (attached != null) {
3837 // If this window is attached to another, our display
3838 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003839 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003840 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003841 if (attrs.type == TYPE_STATUS_BAR_PANEL
3842 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003843 // Status bar panels are the only windows who can go on top of
3844 // the status bar. They are protected by the STATUS_BAR_SERVICE
3845 // permission, so they have the same privileges as the status
3846 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003847 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003848 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003849
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003850 pf.left = df.left = of.left = hasNavBar
3851 ? mDockLeft : mUnrestrictedScreenLeft;
3852 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3853 pf.right = df.right = of.right = hasNavBar
3854 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3855 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3856 pf.bottom = df.bottom = of.bottom = hasNavBar
3857 ? mRestrictedScreenTop+mRestrictedScreenHeight
3858 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003859
Craig Mautnereda67292013-04-28 13:50:14 -07003860 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003861 "Laying out status bar window: (%d,%d - %d,%d)",
3862 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003863 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003864 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3865 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3866 // Asking to layout into the overscan region, so give it that pure
3867 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003868 pf.left = df.left = of.left = mOverscanScreenLeft;
3869 pf.top = df.top = of.top = mOverscanScreenTop;
3870 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3871 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3872 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003873 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003874 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003875 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3876 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003877 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003878 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003879 // only do this for application windows to ensure no window that
3880 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08003881 pf.left = df.left = mOverscanScreenLeft;
3882 pf.top = df.top = mOverscanScreenTop;
3883 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3884 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003885 // We need to tell the app about where the frame inside the overscan
3886 // is, so it can inset its content by that amount -- it didn't ask
3887 // to actually extend itself into the overscan region.
3888 of.left = mUnrestrictedScreenLeft;
3889 of.top = mUnrestrictedScreenTop;
3890 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3891 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003892 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08003893 pf.left = df.left = mRestrictedOverscanScreenLeft;
3894 pf.top = df.top = mRestrictedOverscanScreenTop;
3895 pf.right = df.right = mRestrictedOverscanScreenLeft
3896 + mRestrictedOverscanScreenWidth;
3897 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
3898 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003899 // We need to tell the app about where the frame inside the overscan
3900 // is, so it can inset its content by that amount -- it didn't ask
3901 // to actually extend itself into the overscan region.
3902 of.left = mUnrestrictedScreenLeft;
3903 of.top = mUnrestrictedScreenTop;
3904 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3905 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003906 }
Craig Mautner69b08182012-09-05 13:07:13 -07003907
John Spurlock46646232013-09-30 22:32:42 -04003908 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003909 if (win.isVoiceInteraction()) {
3910 cf.left = mVoiceContentLeft;
3911 cf.top = mVoiceContentTop;
3912 cf.right = mVoiceContentRight;
3913 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003914 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003915 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
3916 cf.left = mDockLeft;
3917 cf.top = mDockTop;
3918 cf.right = mDockRight;
3919 cf.bottom = mDockBottom;
3920 } else {
3921 cf.left = mContentLeft;
3922 cf.top = mContentTop;
3923 cf.right = mContentRight;
3924 cf.bottom = mContentBottom;
3925 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003926 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003927 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003928 // Full screen windows are always given a layout that is as if the
3929 // status bar and other transient decors are gone. This is to avoid
3930 // bad states when moving from a window that is not hding the
3931 // status bar to one that is.
3932 cf.left = mRestrictedScreenLeft;
3933 cf.top = mRestrictedScreenTop;
3934 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
3935 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003936 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003937 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003938 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3939 vf.left = mCurLeft;
3940 vf.top = mCurTop;
3941 vf.right = mCurRight;
3942 vf.bottom = mCurBottom;
3943 } else {
3944 vf.set(cf);
3945 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003946 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003947 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
3948 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
3949 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07003950 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3951 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003952 // A window that has requested to fill the entire screen just
3953 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003954 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04003955 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
3956 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003957 pf.left = df.left = of.left = cf.left = hasNavBar
3958 ? mDockLeft : mUnrestrictedScreenLeft;
3959 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3960 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003961 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08003962 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003963 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003964 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003965 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003966 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04003967 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
3968 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07003969 } else if (attrs.type == TYPE_NAVIGATION_BAR
3970 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003971 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003972 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3973 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3974 pf.right = df.right = of.right = mUnrestrictedScreenLeft
3975 + mUnrestrictedScreenWidth;
3976 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
3977 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003978 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003979 "Laying out navigation bar window: (%d,%d - %d,%d)",
3980 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08003981 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
3982 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07003983 && ((fl & FLAG_FULLSCREEN) != 0)) {
3984 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003985 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3986 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3987 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3988 + mOverscanScreenWidth;
3989 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3990 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08003991 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08003992 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003993 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3994 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3995 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3996 + mOverscanScreenWidth;
3997 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3998 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04003999 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004000 // The wallpaper also has Real Ultimate Power, but we want to tell
4001 // it about the overscan area.
4002 pf.left = df.left = mOverscanScreenLeft;
4003 pf.top = df.top = mOverscanScreenTop;
4004 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4005 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4006 of.left = cf.left = mUnrestrictedScreenLeft;
4007 of.top = cf.top = mUnrestrictedScreenTop;
4008 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4009 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004010 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004011 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4012 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4013 // Asking to layout into the overscan region, so give it that pure
4014 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004015 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4016 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4017 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004018 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004019 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004020 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004021 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004022 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004023 && (attrs.type == TYPE_STATUS_BAR
4024 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004025 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004026 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4027 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004028 // Asking for layout as if the nav bar is hidden, lets the
4029 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004030 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004031 // can be above the nav bar can do this.
4032 // XXX This assumes that an app asking for this will also
4033 // ask for layout in only content. We can't currently figure out
4034 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004035 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4036 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4037 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4038 + mUnrestrictedScreenWidth;
4039 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4040 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004041 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004042 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4043 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4044 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4045 + mRestrictedScreenWidth;
4046 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4047 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004048 }
Craig Mautner69b08182012-09-05 13:07:13 -07004049
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004050 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004051
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004052 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4053 vf.left = mCurLeft;
4054 vf.top = mCurTop;
4055 vf.right = mCurRight;
4056 vf.bottom = mCurBottom;
4057 } else {
4058 vf.set(cf);
4059 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004060 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004061 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4062 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004063 // A child window should be placed inside of the same visible
4064 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004065 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004066 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004067 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4068 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004069 // Otherwise, a normal window must be placed inside the content
4070 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004071 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4072 // Status bar panels and the volume dialog are the only windows who can go on
4073 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004074 // permission, so they have the same privileges as the status
4075 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004076 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4077 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4078 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4079 + mRestrictedScreenWidth;
4080 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4081 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004082 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004083 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004084 pf.left = df.left = of.left = cf.left = mStableLeft;
4085 pf.top = df.top = of.top = cf.top = mStableTop;
4086 pf.right = df.right = of.right = cf.right = mStableRight;
4087 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004088 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004089 pf.left = mContentLeft;
4090 pf.top = mContentTop;
4091 pf.right = mContentRight;
4092 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004093 if (win.isVoiceInteraction()) {
4094 df.left = of.left = cf.left = mVoiceContentLeft;
4095 df.top = of.top = cf.top = mVoiceContentTop;
4096 df.right = of.right = cf.right = mVoiceContentRight;
4097 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4098 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004099 df.left = of.left = cf.left = mDockLeft;
4100 df.top = of.top = cf.top = mDockTop;
4101 df.right = of.right = cf.right = mDockRight;
4102 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004103 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004104 df.left = of.left = cf.left = mContentLeft;
4105 df.top = of.top = cf.top = mContentTop;
4106 df.right = of.right = cf.right = mContentRight;
4107 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004108 }
4109 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4110 vf.left = mCurLeft;
4111 vf.top = mCurTop;
4112 vf.right = mCurRight;
4113 vf.bottom = mCurBottom;
4114 } else {
4115 vf.set(cf);
4116 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004117 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004118 }
4119 }
Craig Mautner69b08182012-09-05 13:07:13 -07004120
Craig Mautnerb816bed2013-07-23 10:26:17 -07004121 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4122 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004123 df.left = df.top = -10000;
4124 df.right = df.bottom = 10000;
4125 if (attrs.type != TYPE_WALLPAPER) {
4126 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4127 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4128 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004129 }
4130
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004131 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4132 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004133 // We only want to apply outsets to certain types of windows. For example, we never want to
4134 // apply the outsets to floating dialogs, because they wouldn't make sense there.
4135 final boolean useOutsets = attrs.type == TYPE_WALLPAPER
4136 || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
4137 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
4138 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004139 osf = mTmpOutsetFrame;
4140 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4141 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4142 if (outset > 0) {
4143 int rotation = Surface.ROTATION_0;
4144 try {
4145 rotation = mWindowManager.getRotation();
4146 } catch (RemoteException e) {
4147 }
4148 if (rotation == Surface.ROTATION_0) {
4149 osf.bottom += outset;
4150 } else if (rotation == Surface.ROTATION_90) {
4151 osf.right += outset;
4152 } else if (rotation == Surface.ROTATION_180) {
4153 osf.top -= outset;
4154 } else if (rotation == Surface.ROTATION_270) {
4155 osf.left -= outset;
4156 }
4157 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4158 + " with rotation " + rotation + ", result: " + osf);
4159 }
4160 }
4161
Craig Mautnereda67292013-04-28 13:50:14 -07004162 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004163 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004164 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004165 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004166 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004167 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004168 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004169 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004170 + " sf=" + sf.toShortString()
4171 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004172
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004173 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004174
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004175 // Dock windows carve out the bottom of the screen, so normal windows
4176 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004177 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4178 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004179 setLastInputMethodWindowLw(null, null);
4180 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004181 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004182 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4183 && !win.getGivenInsetsPendingLw()) {
4184 offsetVoiceInputWindowLw(win);
4185 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004186 }
4187
satok1bc0a492012-04-25 22:47:12 +09004188 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004189 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004190 top += win.getGivenContentInsetsLw().top;
4191 if (mContentBottom > top) {
4192 mContentBottom = top;
4193 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004194 if (mVoiceContentBottom > top) {
4195 mVoiceContentBottom = top;
4196 }
satok1bc0a492012-04-25 22:47:12 +09004197 top = win.getVisibleFrameLw().top;
4198 top += win.getGivenVisibleInsetsLw().top;
4199 if (mCurBottom > top) {
4200 mCurBottom = top;
4201 }
Craig Mautnereda67292013-04-28 13:50:14 -07004202 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004203 + mDockBottom + " mContentBottom="
4204 + mContentBottom + " mCurBottom=" + mCurBottom);
4205 }
4206
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004207 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004208 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004209 top += win.getGivenContentInsetsLw().top;
4210 if (mVoiceContentBottom > top) {
4211 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004212 }
4213 }
4214
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004215 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004216 @Override
4217 public void finishLayoutLw() {
4218 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004219 }
4220
4221 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004222 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004223 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004224 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004225 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004226 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004227 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004228 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004229 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004230 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004231 mForcingShowNavBar = false;
4232 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004233
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004234 mHideLockScreen = false;
4235 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004236 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004237 mShowingLockscreen = false;
4238 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004239 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004240 mKeyguardSecure = isKeyguardSecure();
4241 mKeyguardSecureIncludingHidden = mKeyguardSecure
4242 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004243 }
4244
4245 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004246 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004247 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4248 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004249 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4250 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004251 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004252 if (mTopFullscreenOpaqueWindowState == null
4253 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4254 mForcingShowNavBar = true;
4255 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004256 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004257 if (attrs.type == TYPE_STATUS_BAR) {
4258 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4259 mForceStatusBarFromKeyguard = true;
4260 }
4261 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4262 mForceStatusBarTransparent = true;
4263 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004264 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004265
4266 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4267 && attrs.type < FIRST_SYSTEM_WINDOW;
4268 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4269 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4270
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004271 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004272 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004273 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004274 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004275 mForceStatusBarFromKeyguard = true;
4276 } else {
4277 mForceStatusBar = true;
4278 }
4279 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004280 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004281 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004282 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004283 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004284 // If the lockscreen was showing when the dream started then wait
4285 // for the dream to draw before hiding the lockscreen.
4286 if (!mDreamingLockscreen
4287 || (win.isVisibleLw() && win.hasDrawnLw())) {
4288 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004289 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004290 }
4291 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004292
Yohei Yukawad1a09222015-06-30 16:22:05 -07004293 final IApplicationToken appToken = win.getAppToken();
4294
4295 // For app windows that are not attached, we decide if all windows in the app they
4296 // represent should be hidden or if we should hide the lockscreen. For attached app
4297 // windows we defer the decision to the window it is attached to.
4298 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004299 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004300 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004301 mAppsToBeHidden.remove(appToken);
4302 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004303 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004304 if (dismissKeyguard && !mKeyguardSecure) {
4305 mAppsThatDismissKeyguard.add(appToken);
4306 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004307 mWinShowWhenLocked = win;
4308 mHideLockScreen = true;
4309 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004310 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004311 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004312 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004313 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004314 mAppsToBeHidden.add(appToken);
4315 } else {
4316 mAppsToBeHidden.remove(appToken);
4317 }
4318 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004319 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004320 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004321 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004322 if (attrs.x == 0 && attrs.y == 0
4323 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4324 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4325 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4326 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004327 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4328 mTopFullscreenOpaqueOrDimmingWindowState = win;
4329 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004330 if (!mAppsThatDismissKeyguard.isEmpty() &&
4331 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4332 if (DEBUG_LAYOUT) Slog.v(TAG,
4333 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004334 mDismissKeyguard = (mWinDismissingKeyguard == win
4335 && mSecureDismissingKeyguard == mKeyguardSecure)
4336 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004337 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004338 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004339 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004340 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4341 if (DEBUG_LAYOUT) Slog.v(TAG,
4342 "Setting mHideLockScreen to true by win " + win);
4343 mHideLockScreen = true;
4344 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004345 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004346 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004347 mAllowLockscreenWhenOn = true;
4348 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004349 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004350
4351 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004352 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4353 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004354 win.hideLw(false);
4355 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004356 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004357 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4358 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4359 // that is being hidden in an animation - keep the
4360 // keyguard hidden until the new window shows up and
4361 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004362 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004363 mHideLockScreen = true;
4364 mWinShowWhenLocked = win;
4365 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004366 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004367 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4368 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4369 && win.isDimming()) {
4370 mTopFullscreenOpaqueOrDimmingWindowState = win;
4371 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004372 }
4373
4374 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004375 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004376 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004377 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4378 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4379 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004380 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4381 // fullscreen window.
4382 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4383 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4384 mTopFullscreenOpaqueWindowState.hideLw(false);
4385 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4386 }
4387
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004388 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004389 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004390
4391 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4392 ? mTopFullscreenOpaqueWindowState.getAttrs()
4393 : null;
4394
Jeff Brownc8018eb2012-10-29 21:33:27 -07004395 // If we are not currently showing a dream then remember the current
4396 // lockscreen state. We will use this to determine whether the dream
4397 // started while the lockscreen was showing and remember this state
4398 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004399 if (!mShowingDream) {
4400 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004401 if (mDreamingSleepTokenNeeded) {
4402 mDreamingSleepTokenNeeded = false;
4403 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4404 }
4405 } else {
4406 if (!mDreamingSleepTokenNeeded) {
4407 mDreamingSleepTokenNeeded = true;
4408 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4409 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004410 }
4411
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004412 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004413 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004414 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004415 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004416 boolean shouldBeTransparent = mForceStatusBarTransparent
4417 && !mForceStatusBar
4418 && !mForceStatusBarFromKeyguard;
4419 if (!shouldBeTransparent) {
4420 mStatusBarController.setShowTransparent(false /* transparent */);
4421 } else if (!mStatusBar.isVisibleLw()) {
4422 mStatusBarController.setShowTransparent(true /* transparent */);
4423 }
4424 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004425 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004426 if (mStatusBarController.setBarShowingLw(true)) {
4427 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4428 }
Craig Mautner81defc72013-10-29 11:10:42 -07004429 // Maintain fullscreen layout until incoming animation is complete.
4430 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004431 // Transient status bar on the lockscreen is not allowed
4432 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4433 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4434 mLastSystemUiFlags, mLastSystemUiFlags);
4435 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004436 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004437 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004438 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004439 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004440 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004441 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004442 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004443 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004444 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004445 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004446 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004447 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004448 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4449 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004450 if (mStatusBarController.isTransientShowing()) {
4451 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004452 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4453 }
4454 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004455 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004456 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004457 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004458 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004459 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004460 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004461 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004462 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004463 if (mStatusBarController.setBarShowingLw(true)) {
4464 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4465 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004466 }
4467 }
4468 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004469
Craig Mautner81defc72013-10-29 11:10:42 -07004470 if (mTopIsFullscreen != topIsFullscreen) {
4471 if (!topIsFullscreen) {
4472 // Force another layout when status bar becomes fully shown.
4473 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4474 }
4475 mTopIsFullscreen = topIsFullscreen;
4476 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004477
Craig Mautner39834192012-09-02 07:47:24 -07004478 // Hide the key guard if a visible window explicitly specifies that it wants to be
4479 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004480 if (mKeyguardDelegate != null && mStatusBar != null) {
4481 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4482 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004483 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004484 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004485 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004486 changes |= FINISH_LAYOUT_REDO_LAYOUT
4487 | FINISH_LAYOUT_REDO_CONFIG
4488 | FINISH_LAYOUT_REDO_WALLPAPER;
4489 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004490 if (mKeyguardDelegate.isShowing()) {
4491 mHandler.post(new Runnable() {
4492 @Override
4493 public void run() {
4494 mKeyguardDelegate.keyguardDone(false, false);
4495 }
4496 });
4497 }
4498 } else if (mHideLockScreen) {
4499 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004500 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004501 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004502 changes |= FINISH_LAYOUT_REDO_LAYOUT
4503 | FINISH_LAYOUT_REDO_CONFIG
4504 | FINISH_LAYOUT_REDO_WALLPAPER;
4505 }
4506 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004507 mKeyguardHidden = false;
4508 if (setKeyguardOccludedLw(false)) {
4509 changes |= FINISH_LAYOUT_REDO_LAYOUT
4510 | FINISH_LAYOUT_REDO_CONFIG
4511 | FINISH_LAYOUT_REDO_WALLPAPER;
4512 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004513 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4514 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004515 mHandler.post(new Runnable() {
4516 @Override
4517 public void run() {
4518 mKeyguardDelegate.dismiss();
4519 }
4520 });
4521 }
4522 } else {
4523 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004524 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004525 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004526 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004527 changes |= FINISH_LAYOUT_REDO_LAYOUT
4528 | FINISH_LAYOUT_REDO_CONFIG
4529 | FINISH_LAYOUT_REDO_WALLPAPER;
4530 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004531 }
4532 }
Joe Onorato664644d2011-01-23 17:53:23 -08004533
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004534 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004535 // If the navigation bar has been hidden or shown, we need to do another
4536 // layout pass to update that window.
4537 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4538 }
Joe Onorato664644d2011-01-23 17:53:23 -08004539
Mike Lockwood28569302010-01-28 11:54:40 -05004540 // update since mAllowLockscreenWhenOn might have changed
4541 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004542 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004543 }
4544
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004545 /**
Jim Millerab954542014-10-10 18:21:49 -07004546 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004547 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004548 * @return Whether the flags have changed and we have to redo the layout.
4549 */
Jim Millerab954542014-10-10 18:21:49 -07004550 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4551 boolean wasOccluded = mKeyguardOccluded;
4552 boolean showing = mKeyguardDelegate.isShowing();
4553 if (wasOccluded && !isOccluded && showing) {
4554 mKeyguardOccluded = false;
4555 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004556 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4557 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4558 return true;
Jim Millerab954542014-10-10 18:21:49 -07004559 } else if (!wasOccluded && isOccluded && showing) {
4560 mKeyguardOccluded = true;
4561 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004562 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4563 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4564 return true;
4565 } else {
4566 return false;
4567 }
4568 }
4569
4570 private boolean isStatusBarKeyguard() {
4571 return mStatusBar != null
4572 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4573 }
4574
Jose Lima9546b202014-07-02 17:21:51 -07004575 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004576 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004577 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004578 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004579 return false;
4580 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004581 return true;
4582 }
4583
Jose Lima9546b202014-07-02 17:21:51 -07004584 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004585 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004586 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004587 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004588 // If the navigation bar has been hidden or shown, we need to do another
4589 // layout pass to update that window.
4590 return FINISH_LAYOUT_REDO_LAYOUT;
4591 }
4592 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004593 }
4594
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004595 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004596 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004597 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4598 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004599 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4600 if (newLidState == mLidState) {
4601 return;
4602 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004603
Jeff Brownc458ce92012-04-30 14:58:40 -07004604 mLidState = newLidState;
4605 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004606 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004607
4608 if (lidOpen) {
Bryce Lee584a4452014-10-21 15:55:55 -07004609 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch);
Jeff Brownc458ce92012-04-30 14:58:40 -07004610 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004611 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004612 }
4613 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004614
Michael Wright3818c922014-09-02 13:59:07 -07004615 @Override
4616 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4617 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4618 if (mCameraLensCoverState == lensCoverState) {
4619 return;
4620 }
4621 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4622 lensCoverState == CAMERA_LENS_UNCOVERED) {
4623 Intent intent;
4624 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4625 mKeyguardDelegate.isShowing();
4626 if (keyguardActive) {
4627 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4628 } else {
4629 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4630 }
Bryce Lee584a4452014-10-21 15:55:55 -07004631 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens);
Bart Sears8b1c27c2015-03-18 23:51:02 +00004632 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004633 }
4634 mCameraLensCoverState = lensCoverState;
4635 }
4636
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004637 void setHdmiPlugged(boolean plugged) {
4638 if (mHdmiPlugged != plugged) {
4639 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004640 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004641 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004642 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004643 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004644 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004645 }
4646 }
4647
Joe Onoratoea495d42011-04-06 11:41:11 -07004648 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004649 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004650 // watch for HDMI plug messages if the hdmi switch exists
4651 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4652 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4653
Joe Onoratoea495d42011-04-06 11:41:11 -07004654 final String filename = "/sys/class/switch/hdmi/state";
4655 FileReader reader = null;
4656 try {
4657 reader = new FileReader(filename);
4658 char[] buf = new char[15];
4659 int n = reader.read(buf);
4660 if (n > 1) {
4661 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4662 }
4663 } catch (IOException ex) {
4664 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4665 } catch (NumberFormatException ex) {
4666 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4667 } finally {
4668 if (reader != null) {
4669 try {
4670 reader.close();
4671 } catch (IOException ex) {
4672 }
Joe Onoratodc100302011-01-11 17:07:41 -08004673 }
4674 }
4675 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004676 // This dance forces the code in setHdmiPlugged to run.
4677 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4678 mHdmiPlugged = !plugged;
4679 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004680 }
4681
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004682 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004683 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004684
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004685 final Runnable mScreenshotTimeout = new Runnable() {
4686 @Override public void run() {
4687 synchronized (mScreenshotLock) {
4688 if (mScreenshotConnection != null) {
4689 mContext.unbindService(mScreenshotConnection);
4690 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004691 }
Winson Chung9112ec32011-06-27 13:15:32 -07004692 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004693 }
4694 };
4695
4696 // Assume this is called from the Handler thread.
4697 private void takeScreenshot() {
4698 synchronized (mScreenshotLock) {
4699 if (mScreenshotConnection != null) {
4700 return;
4701 }
4702 ComponentName cn = new ComponentName("com.android.systemui",
4703 "com.android.systemui.screenshot.TakeScreenshotService");
4704 Intent intent = new Intent();
4705 intent.setComponent(cn);
4706 ServiceConnection conn = new ServiceConnection() {
4707 @Override
4708 public void onServiceConnected(ComponentName name, IBinder service) {
4709 synchronized (mScreenshotLock) {
4710 if (mScreenshotConnection != this) {
4711 return;
4712 }
4713 Messenger messenger = new Messenger(service);
4714 Message msg = Message.obtain(null, 1);
4715 final ServiceConnection myConn = this;
4716 Handler h = new Handler(mHandler.getLooper()) {
4717 @Override
4718 public void handleMessage(Message msg) {
4719 synchronized (mScreenshotLock) {
4720 if (mScreenshotConnection == myConn) {
4721 mContext.unbindService(mScreenshotConnection);
4722 mScreenshotConnection = null;
4723 mHandler.removeCallbacks(mScreenshotTimeout);
4724 }
4725 }
4726 }
4727 };
4728 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004729 msg.arg1 = msg.arg2 = 0;
4730 if (mStatusBar != null && mStatusBar.isVisibleLw())
4731 msg.arg1 = 1;
4732 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4733 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004734 try {
4735 messenger.send(msg);
4736 } catch (RemoteException e) {
4737 }
4738 }
4739 }
4740 @Override
4741 public void onServiceDisconnected(ComponentName name) {}
4742 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004743 if (mContext.bindServiceAsUser(
4744 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004745 mScreenshotConnection = conn;
4746 mHandler.postDelayed(mScreenshotTimeout, 10000);
4747 }
4748 }
Winson Chung9112ec32011-06-27 13:15:32 -07004749 }
4750
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004751 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004752 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004753 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004754 if (!mSystemBooted) {
4755 // If we have not yet booted, don't let key events do anything.
4756 return 0;
4757 }
4758
Jeff Brown037c33e2014-04-09 00:31:55 -07004759 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004760 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4761 final boolean canceled = event.isCanceled();
4762 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004763
Jeff Brown3122e442010-10-11 23:32:49 -07004764 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004765
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004766 // If screen is off then we treat the case where the keyguard is open but hidden
4767 // the same as if it were open and in front.
4768 // This will prevent any keys other than the power button from waking the screen
4769 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004770 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004771 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004772 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004773 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004774
Jeff Brown40013652012-05-16 21:22:36 -07004775 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004776 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004777 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004778 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004779 }
4780
Jeff Brown037c33e2014-04-09 00:31:55 -07004781 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004782 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004783 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4784 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004785 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004786 // When the device is interactive or the key is injected pass the
4787 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004788 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004789 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004790 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4791 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4792 // to the application but preserve its wake key status to make sure we still move
4793 // from dozing to fully interactive if we would normally go from off to fully
4794 // interactive.
4795 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004796 } else {
4797 // When the screen is off and the key is not injected, determine whether
4798 // to wake the device but don't pass the key to the application.
4799 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004800 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4801 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004802 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004803 }
4804
Justin Kohd378ad72013-04-01 12:18:26 -07004805 // If the key would be handled globally, just return the result, don't worry about special
4806 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004807 if (isValidGlobalKey(keyCode)
4808 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004809 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004810 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Michael Wright85b1af62014-06-04 14:51:58 -07004811 }
Justin Kohd378ad72013-04-01 12:18:26 -07004812 return result;
4813 }
4814
Jeff Brownbae8e772014-06-12 19:59:45 -07004815 boolean useHapticFeedback = down
4816 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4817 && event.getRepeatCount() == 0;
4818
Jeff Brown4d396052010-10-29 21:50:21 -07004819 // Handle special keys.
4820 switch (keyCode) {
4821 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004822 case KeyEvent.KEYCODE_VOLUME_UP:
4823 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004824 if (mUseTvRouting) {
4825 // On TVs volume keys never go to the foreground app
4826 result &= ~ACTION_PASS_TO_USER;
4827 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004828 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4829 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004830 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004831 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004832 mScreenshotChordVolumeDownKeyTriggered = true;
4833 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4834 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004835 cancelPendingPowerKeyAction();
4836 interceptScreenshotChord();
4837 }
4838 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004839 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004840 cancelPendingScreenshotChordAction();
4841 }
4842 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4843 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004844 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004845 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004846 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004847 cancelPendingPowerKeyAction();
4848 cancelPendingScreenshotChordAction();
4849 }
4850 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004851 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004852 cancelPendingScreenshotChordAction();
4853 }
4854 }
Jeff Brown4d396052010-10-29 21:50:21 -07004855 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004856 TelecomManager telecomManager = getTelecommService();
4857 if (telecomManager != null) {
4858 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004859 // If an incoming call is ringing, either VOLUME key means
4860 // "silence ringer". We handle these keys here, rather than
4861 // in the InCallScreen, to make sure we'll respond to them
4862 // even if the InCallScreen hasn't come to the foreground yet.
4863 // Look for the DOWN event here, to agree with the "fallback"
4864 // behavior in the InCallScreen.
4865 Log.i(TAG, "interceptKeyBeforeQueueing:"
4866 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004867
Santos Cordon6848f722014-05-21 15:22:12 -07004868 // Silence the ringer. (It's safe to call this
4869 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004870 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004871
Santos Cordon6848f722014-05-21 15:22:12 -07004872 // And *don't* pass this key thru to the current activity
4873 // (which is probably the InCallScreen.)
4874 result &= ~ACTION_PASS_TO_USER;
4875 break;
4876 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004877 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004878 && (result & ACTION_PASS_TO_USER) == 0) {
4879 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004880 // the application, just pass it to the session service.
4881
4882 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004883 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07004884 break;
Jeff Brown4d396052010-10-29 21:50:21 -07004885 }
4886 }
4887
RoboErik430fc482014-06-12 15:49:20 -07004888 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08004889 if (mUseTvRouting) {
4890 dispatchDirectAudioEvent(event);
4891 } else {
4892 // If we aren't passing to the user and no one else
4893 // handled it send it to the session manager to
4894 // figure out.
4895 MediaSessionLegacyHelper.getHelper(mContext)
4896 .sendVolumeKeyEvent(event, true);
4897 }
Jeff Brown4d396052010-10-29 21:50:21 -07004898 break;
4899 }
4900 }
4901 break;
4902 }
4903
4904 case KeyEvent.KEYCODE_ENDCALL: {
4905 result &= ~ACTION_PASS_TO_USER;
4906 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004907 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07004908 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004909 if (telecomManager != null) {
4910 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07004911 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004912 if (interactive && !hungUp) {
4913 mEndCallKeyHandled = false;
4914 mHandler.postDelayed(mEndCallLongPress,
4915 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
4916 } else {
4917 mEndCallKeyHandled = true;
4918 }
Jeff Brown4d396052010-10-29 21:50:21 -07004919 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004920 if (!mEndCallKeyHandled) {
4921 mHandler.removeCallbacks(mEndCallLongPress);
4922 if (!canceled) {
4923 if ((mEndcallBehavior
4924 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
4925 if (goHome()) {
4926 break;
4927 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07004928 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004929 if ((mEndcallBehavior
4930 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
4931 mPowerManager.goToSleep(event.getEventTime(),
4932 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
4933 isWakeKey = false;
4934 }
Jeff Brown4d396052010-10-29 21:50:21 -07004935 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004936 }
Jeff Brown4d396052010-10-29 21:50:21 -07004937 }
4938 break;
4939 }
4940
4941 case KeyEvent.KEYCODE_POWER: {
4942 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07004943 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07004944 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004945 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004946 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004947 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07004948 }
4949 break;
4950 }
4951
Jeff Brown6212a492014-03-07 13:58:47 -08004952 case KeyEvent.KEYCODE_SLEEP: {
4953 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00004954 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07004955 if (!mPowerManager.isInteractive()) {
4956 useHapticFeedback = false; // suppress feedback if already non-interactive
4957 }
Nick Vaccarob593a812015-05-15 11:23:05 -07004958 if (down) {
4959 sleepPress(event.getEventTime());
4960 } else {
4961 sleepRelease(event.getEventTime());
4962 }
Jeff Brown6212a492014-03-07 13:58:47 -08004963 break;
4964 }
4965
4966 case KeyEvent.KEYCODE_WAKEUP: {
4967 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004968 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08004969 break;
4970 }
4971
Jeff Brown4d396052010-10-29 21:50:21 -07004972 case KeyEvent.KEYCODE_MEDIA_PLAY:
4973 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4974 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07004975 case KeyEvent.KEYCODE_HEADSETHOOK:
4976 case KeyEvent.KEYCODE_MUTE:
4977 case KeyEvent.KEYCODE_MEDIA_STOP:
4978 case KeyEvent.KEYCODE_MEDIA_NEXT:
4979 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4980 case KeyEvent.KEYCODE_MEDIA_REWIND:
4981 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004982 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
4983 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07004984 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
4985 // If the global session is active pass all media keys to it
4986 // instead of the active window.
4987 result &= ~ACTION_PASS_TO_USER;
4988 }
Jeff Brown4d396052010-10-29 21:50:21 -07004989 if ((result & ACTION_PASS_TO_USER) == 0) {
4990 // Only do this if we would otherwise not pass it to the user. In that
4991 // case, the PhoneWindow class will do the same thing, except it will
4992 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07004993 // Note that we need to make a copy of the key event here because the
4994 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07004995 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07004996 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
4997 new KeyEvent(event));
4998 msg.setAsynchronous(true);
4999 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005000 }
5001 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005002 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005003
Jeff Brown4d396052010-10-29 21:50:21 -07005004 case KeyEvent.KEYCODE_CALL: {
5005 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005006 TelecomManager telecomManager = getTelecommService();
5007 if (telecomManager != null) {
5008 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005009 Log.i(TAG, "interceptKeyBeforeQueueing:"
5010 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005011 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005012
Santos Cordon6848f722014-05-21 15:22:12 -07005013 // And *don't* pass this key thru to the current activity
5014 // (which is presumably the InCallScreen.)
5015 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005016 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005017 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005018 }
Jeff Brown4d396052010-10-29 21:50:21 -07005019 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005020 }
Michael Wright869a67c2014-08-26 19:33:06 -07005021 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5022 // Only do this if we would otherwise not pass it to the user. In that case,
5023 // interceptKeyBeforeDispatching would apply a similar but different policy in
5024 // order to invoke voice assist actions. Note that we need to make a copy of the
5025 // key event here because the original key event will be recycled when we return.
5026 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5027 mBroadcastWakeLock.acquire();
5028 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5029 keyguardActive ? 1 : 0, 0);
5030 msg.setAsynchronous(true);
5031 msg.sendToTarget();
5032 }
5033 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005034 }
Jeff Brown26875502014-01-30 21:47:47 -08005035
Jeff Brownbae8e772014-06-12 19:59:45 -07005036 if (useHapticFeedback) {
5037 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5038 }
5039
Jeff Brown26875502014-01-30 21:47:47 -08005040 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005041 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Jeff Brown26875502014-01-30 21:47:47 -08005042 }
Bryce Lee584a4452014-10-21 15:55:55 -07005043
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005044 return result;
5045 }
5046
Jeff Brown1c2e4942012-11-06 16:32:01 -08005047 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005048 * Returns true if the key can have global actions attached to it.
5049 * We reserve all power management keys for the system since they require
5050 * very careful handling.
5051 */
5052 private static boolean isValidGlobalKey(int keyCode) {
5053 switch (keyCode) {
5054 case KeyEvent.KEYCODE_POWER:
5055 case KeyEvent.KEYCODE_WAKEUP:
5056 case KeyEvent.KEYCODE_SLEEP:
5057 return false;
5058 default:
5059 return true;
5060 }
5061 }
5062
5063 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005064 * When the screen is off we ignore some keys that might otherwise typically
5065 * be considered wake keys. We filter them out here.
5066 *
5067 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5068 * is always considered a wake key.
5069 */
5070 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5071 switch (keyCode) {
5072 // ignore volume keys unless docked
5073 case KeyEvent.KEYCODE_VOLUME_UP:
5074 case KeyEvent.KEYCODE_VOLUME_DOWN:
5075 case KeyEvent.KEYCODE_VOLUME_MUTE:
5076 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5077
5078 // ignore media and camera keys
5079 case KeyEvent.KEYCODE_MUTE:
5080 case KeyEvent.KEYCODE_HEADSETHOOK:
5081 case KeyEvent.KEYCODE_MEDIA_PLAY:
5082 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5083 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5084 case KeyEvent.KEYCODE_MEDIA_STOP:
5085 case KeyEvent.KEYCODE_MEDIA_NEXT:
5086 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5087 case KeyEvent.KEYCODE_MEDIA_REWIND:
5088 case KeyEvent.KEYCODE_MEDIA_RECORD:
5089 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005090 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005091 case KeyEvent.KEYCODE_CAMERA:
5092 return false;
5093 }
5094 return true;
5095 }
5096
5097
Jeff Brown56194eb2011-03-02 19:23:13 -08005098 /** {@inheritDoc} */
5099 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005100 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5101 if ((policyFlags & FLAG_WAKE) != 0) {
Bryce Lee5c138322014-11-03 08:26:09 -08005102 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion)) {
5103 return 0;
5104 }
Michael Wright70af00a2014-09-03 19:30:20 -07005105 }
Bryce Lee5c138322014-11-03 08:26:09 -08005106
Michael Wright70af00a2014-09-03 19:30:20 -07005107 if (shouldDispatchInputWhenNonInteractive()) {
5108 return ACTION_PASS_TO_USER;
5109 }
Bryce Lee5c138322014-11-03 08:26:09 -08005110
Bryce Lee812d7022014-11-10 13:33:28 -08005111 // If we have not passed the action up and we are in theater mode without dreaming,
5112 // there will be no dream to intercept the touch and wake into ambient. The device should
5113 // wake up in this case.
5114 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
5115 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming);
5116 }
5117
Jeff Brown037c33e2014-04-09 00:31:55 -07005118 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005119 }
5120
Michael Wright70af00a2014-09-03 19:30:20 -07005121 private boolean shouldDispatchInputWhenNonInteractive() {
Bryce Lee5c138322014-11-03 08:26:09 -08005122 // Send events to keyguard while the screen is on.
Jim Millerab954542014-10-10 18:21:49 -07005123 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
5124 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08005125 return true;
5126 }
5127
5128 // Send events to a dozing dream even if the screen is off since the dream
5129 // is in control of the state of the screen.
5130 IDreamManager dreamManager = getDreamManager();
5131
5132 try {
5133 if (dreamManager != null && dreamManager.isDreaming()) {
5134 return true;
5135 }
5136 } catch (RemoteException e) {
5137 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5138 }
5139
5140 // Otherwise, consume events since the user can't see what is being
5141 // interacted with.
5142 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005143 }
5144
RoboErik001c59c2015-01-26 15:53:51 -08005145 private void dispatchDirectAudioEvent(KeyEvent event) {
5146 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5147 return;
5148 }
5149 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005150 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5151 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005152 String pkgName = mContext.getOpPackageName();
5153 switch (keyCode) {
5154 case KeyEvent.KEYCODE_VOLUME_UP:
5155 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005156 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005157 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005158 } catch (RemoteException e) {
5159 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5160 }
5161 break;
5162 case KeyEvent.KEYCODE_VOLUME_DOWN:
5163 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005164 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005165 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005166 } catch (RemoteException e) {
5167 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5168 }
5169 break;
5170 case KeyEvent.KEYCODE_VOLUME_MUTE:
5171 try {
5172 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005173 getAudioService().adjustSuggestedStreamVolume(
5174 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005175 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005176 }
5177 } catch (RemoteException e) {
5178 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5179 }
5180 break;
5181 }
5182 }
5183
Jeff Brown40013652012-05-16 21:22:36 -07005184 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5185 if (DEBUG_INPUT) {
5186 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005187 }
5188
Jeff Brown40013652012-05-16 21:22:36 -07005189 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5190 if (DEBUG_INPUT) {
5191 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5192 }
5193
5194 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5195 mHavePendingMediaKeyRepeatWithWakeLock = false;
5196 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5197 }
5198
5199 dispatchMediaKeyWithWakeLockToAudioService(event);
5200
5201 if (event.getAction() == KeyEvent.ACTION_DOWN
5202 && event.getRepeatCount() == 0) {
5203 mHavePendingMediaKeyRepeatWithWakeLock = true;
5204
5205 Message msg = mHandler.obtainMessage(
5206 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5207 msg.setAsynchronous(true);
5208 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5209 } else {
5210 mBroadcastWakeLock.release();
5211 }
5212 }
5213
5214 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5215 mHavePendingMediaKeyRepeatWithWakeLock = false;
5216
5217 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5218 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5219 if (DEBUG_INPUT) {
5220 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5221 }
5222
5223 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5224 mBroadcastWakeLock.release();
5225 }
5226
5227 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5228 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005229 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005230 }
5231 }
5232
Michael Wright869a67c2014-08-26 19:33:06 -07005233 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005234 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5235 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5236 if (dic != null) {
5237 try {
5238 dic.exitIdle("voice-search");
5239 } catch (RemoteException e) {
5240 }
5241 }
Michael Wright869a67c2014-08-26 19:33:06 -07005242 Intent voiceIntent =
5243 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5244 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005245 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005246 mBroadcastWakeLock.release();
5247 }
5248
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005249 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005250 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005251 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005252 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5253 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5254 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005255 } else {
5256 try {
5257 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5258 ServiceManager.getService(Context.UI_MODE_SERVICE));
5259 mUiMode = uiModeService.getCurrentModeType();
5260 } catch (RemoteException e) {
5261 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005262 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005263 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005264 synchronized (mLock) {
5265 updateOrientationListenerLp();
5266 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005267 }
5268 };
5269
Jeff Brown6aaf2952012-10-05 16:01:08 -07005270 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5271 @Override
5272 public void onReceive(Context context, Intent intent) {
5273 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005274 if (mKeyguardDelegate != null) {
5275 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005276 }
5277 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005278 if (mKeyguardDelegate != null) {
5279 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005280 }
5281 }
5282 }
5283 };
5284
Christopher Tate5e08af02012-09-21 17:17:22 -07005285 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5286 @Override
5287 public void onReceive(Context context, Intent intent) {
5288 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5289 // tickle the settings observer: this first ensures that we're
5290 // observing the relevant settings for the newly-active user,
5291 // and then updates our own bookkeeping based on the now-
5292 // current user.
5293 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005294
5295 // force a re-application of focused window sysui visibility.
5296 // the window may never have been shown for this user
5297 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005298 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005299 mLastSystemUiFlags = 0;
5300 updateSystemUiVisibilityLw();
5301 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005302 }
5303 }
5304 };
5305
Adrian Roosddc8b272015-05-21 16:28:27 -07005306 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005307 @Override
5308 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005309 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5310 if (!isUserSetupComplete()) {
5311 // Swipe-up for navigation bar is disabled during setup
5312 return;
5313 }
5314 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5315 mNavigationBarController.showTransient();
5316 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005317 }
5318 };
5319
John Spurlocke1f366f2013-08-05 12:22:40 -04005320 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005321 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005322 if (!isUserSetupComplete()) {
5323 // Swipe-up for navigation bar is disabled during setup
5324 return;
5325 }
John Spurlock27735a42013-08-14 17:57:38 -04005326 boolean sb = mStatusBarController.checkShowTransientBarLw();
5327 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005328 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005329 // Don't show status bar when swiping on already visible navigation bar
5330 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005331 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005332 return;
5333 }
John Spurlock27735a42013-08-14 17:57:38 -04005334 if (sb) mStatusBarController.showTransient();
5335 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005336 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005337 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005338 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005339 }
5340 }
5341
Jeff Brown3ee549c2014-09-22 20:14:39 -07005342 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005343 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005344 public void startedGoingToSleep(int why) {
5345 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005346 if (mKeyguardDelegate != null) {
5347 mKeyguardDelegate.onStartedGoingToSleep(why);
5348 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005349 }
5350
5351 // Called on the PowerManager's Notifier thread.
5352 @Override
5353 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005354 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005355 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Jeff Brown3ee549c2014-09-22 20:14:39 -07005356
5357 // We must get this work done here because the power manager will drop
5358 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005359 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005360 mAwake = false;
5361 mKeyguardDrawComplete = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005362 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005363 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005364 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005365 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005366 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005367 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005368 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005369 }
5370
Jeff Brown3ee549c2014-09-22 20:14:39 -07005371 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005372 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005373 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005374 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005375 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005376
Jeff Brown3ee549c2014-09-22 20:14:39 -07005377 // Since goToSleep performs these functions synchronously, we must
5378 // do the same here. We cannot post this work to a handler because
5379 // that might cause it to become reordered with respect to what
5380 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005381 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005382 mAwake = true;
5383 mKeyguardDrawComplete = false;
5384 if (mKeyguardDelegate != null) {
5385 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5386 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
5387 }
5388
Jeff Browna20dda42014-05-27 20:57:24 -07005389 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005390 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005391 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005392 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005393
Jim Miller5ecd8112013-01-09 18:50:26 -08005394 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005395 mKeyguardDelegate.onStartedWakingUp(mKeyguardDelegateCallback);
Jeff Brown36c4db82014-09-19 12:05:31 -07005396 // ... eventually calls finishKeyguardDrawn
Jeff Brownc38c9be2012-10-04 13:16:19 -07005397 } else {
Craig Mautner8a0da012014-05-31 15:13:37 -07005398 if (DEBUG_WAKEUP) Slog.d(TAG, "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
Jeff Brown36c4db82014-09-19 12:05:31 -07005399 finishKeyguardDrawn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005400 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005401 }
5402
Jeff Brown416c49c2015-05-26 19:50:18 -07005403 // Called on the PowerManager's Notifier thread.
5404 @Override
5405 public void finishedWakingUp() {
5406 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5407 }
5408
5409 private void wakeUpFromPowerKey(long eventTime) {
5410 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey);
5411 }
5412
5413 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode) {
Bryce Leed3896842015-06-23 17:06:51 -07005414 final boolean theaterModeEnabled = isTheaterModeEnabled();
5415 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005416 return false;
5417 }
5418
Bryce Leed3896842015-06-23 17:06:51 -07005419 if (theaterModeEnabled) {
5420 Settings.Global.putInt(mContext.getContentResolver(),
5421 Settings.Global.THEATER_MODE_ON, 0);
5422 }
5423
Jeff Brown416c49c2015-05-26 19:50:18 -07005424 mPowerManager.wakeUp(wakeTime);
5425 return true;
5426 }
5427
Jeff Brown36c4db82014-09-19 12:05:31 -07005428 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005429 synchronized (mLock) {
5430 if (!mAwake || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005431 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005432 }
5433
Jeff Brown36c4db82014-09-19 12:05:31 -07005434 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005435 if (mKeyguardDelegate != null) {
5436 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5437 }
5438 }
5439
5440 finishScreenTurningOn();
5441 }
5442
5443 // Called on the DisplayManager's DisplayPowerController thread.
5444 @Override
5445 public void screenTurnedOff() {
5446 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5447
Jeff Brown48d1b142015-06-10 16:36:03 -07005448 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005449 synchronized (mLock) {
5450 mScreenOnEarly = false;
5451 mScreenOnFully = false;
5452 mWindowManagerDrawComplete = false;
5453 mScreenOnListener = null;
5454 updateOrientationListenerLp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005455 }
5456 }
5457
Jeff Brown3ee549c2014-09-22 20:14:39 -07005458 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005459 @Override
5460 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005461 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005462
Jeff Brown48d1b142015-06-10 16:36:03 -07005463 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005464 synchronized (mLock) {
5465 mScreenOnEarly = true;
5466 mScreenOnFully = false;
5467 mWindowManagerDrawComplete = false;
5468 mScreenOnListener = screenOnListener;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005469 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005470
Craig Mautnerc3daedd2014-09-13 11:17:23 -07005471 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5472 WAITING_FOR_DRAWN_TIMEOUT);
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005473 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5474 // as well as enabling the orientation change logic/sensor.
Jeff Brown36c4db82014-09-19 12:05:31 -07005475 }
5476
Jeff Brown36c4db82014-09-19 12:05:31 -07005477 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005478 synchronized (mLock) {
5479 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005480 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005481 }
5482
Jeff Brown36c4db82014-09-19 12:05:31 -07005483 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005484 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005485
5486 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005487 }
5488
Craig Mautner8a0da012014-05-31 15:13:37 -07005489 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005490 synchronized (mLock) {
5491 // We have just finished drawing screen content. Since the orientation listener
5492 // gets only installed when all windows are drawn, we try to install it again.
5493 updateOrientationListenerLp();
5494 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005495 final ScreenOnListener listener;
5496 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005497 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005498 if (DEBUG_WAKEUP) Slog.d(TAG,
5499 "finishScreenTurningOn: mAwake=" + mAwake
5500 + ", mScreenOnEarly=" + mScreenOnEarly
5501 + ", mScreenOnFully=" + mScreenOnFully
5502 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5503 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5504
5505 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5506 || (mAwake && !mKeyguardDrawComplete)) {
5507 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005508 }
5509
Jeff Brown3ee549c2014-09-22 20:14:39 -07005510 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5511 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005512 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005513 mScreenOnFully = true;
5514
5515 // Remember the first time we draw the keyguard so we know when we're done with
5516 // the main part of booting and can enable the screen and hide boot messages.
5517 if (!mKeyguardDrawnOnce && mAwake) {
5518 mKeyguardDrawnOnce = true;
5519 enableScreen = true;
5520 if (mBootMessageNeedsHiding) {
5521 mBootMessageNeedsHiding = false;
5522 hideBootMessages();
5523 }
5524 } else {
5525 enableScreen = false;
5526 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005527 }
5528
Jeff Brown3ee549c2014-09-22 20:14:39 -07005529 if (listener != null) {
5530 listener.onScreenOn();
5531 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005532
Jeff Brown3ee549c2014-09-22 20:14:39 -07005533 if (enableScreen) {
5534 try {
5535 mWindowManager.enableScreenIfNeeded();
5536 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005537 }
Craig Mautnera631d492014-08-05 15:16:01 -07005538 }
5539 }
5540
5541 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005542 synchronized (mLock) {
5543 if (!mKeyguardDrawnOnce) {
5544 mBootMessageNeedsHiding = true;
5545 return; // keyguard hasn't drawn the first time yet, not done booting
5546 }
Craig Mautnera631d492014-08-05 15:16:01 -07005547 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005548
5549 if (mBootMsgDialog != null) {
5550 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5551 mBootMsgDialog.dismiss();
5552 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005553 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005554 }
5555
5556 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005557 public boolean isScreenOn() {
5558 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005559 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005560
Dianne Hackborn08743722009-12-21 12:16:51 -08005561 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005562 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005563 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005564 if (mKeyguardDelegate != null) {
5565 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005566 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005567 }
5568
5569 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005570 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005571 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005572 if (mKeyguardDelegate != null) {
5573 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005574 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005575 }
5576
Jim Millerab954542014-10-10 18:21:49 -07005577 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005578 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005579 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005580 }
5581
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005582 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005583 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005584 public boolean isKeyguardLocked() {
5585 return keyguardOn();
5586 }
5587
5588 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005589 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005590 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005591 if (mKeyguardDelegate == null) return false;
5592 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005593 }
5594
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005595 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005596 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005597 public boolean isKeyguardShowingOrOccluded() {
5598 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5599 }
5600
5601 /** {@inheritDoc} */
5602 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005603 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005604 if (mKeyguardDelegate == null) return false;
5605 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005606 }
5607
Jose Lima9546b202014-07-02 17:21:51 -07005608 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005609 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005610 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005611 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005612 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005613 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005614 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005615 // ask the keyguard to prompt the user to authenticate if necessary
5616 mKeyguardDelegate.dismiss();
5617 }
5618 });
5619 }
5620 }
5621
5622 public void notifyActivityDrawnForKeyguardLw() {
5623 if (mKeyguardDelegate != null) {
5624 mHandler.post(new Runnable() {
5625 @Override
5626 public void run() {
5627 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005628 }
5629 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005630 }
5631 }
5632
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005633 @Override
5634 public boolean isKeyguardDrawnLw() {
5635 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005636 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005637 }
5638 }
5639
Jorim Jaggi0d674622014-05-21 01:34:15 +02005640 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005641 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005642 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005643 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005644 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005645 }
5646 }
5647
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005648 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005649 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005650 }
5651
5652 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005653 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005654 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005655
Jeff Brown01a98dd2011-09-20 15:08:29 -07005656 @Override
5657 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005658 if (false) {
5659 Slog.v(TAG, "rotationForOrientationLw(orient="
5660 + orientation + ", last=" + lastRotation
5661 + "); user=" + mUserRotation + " "
5662 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5663 ? "USER_ROTATION_LOCKED" : "")
5664 );
5665 }
5666
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005667 if (mForceDefaultOrientation) {
5668 return Surface.ROTATION_0;
5669 }
5670
The Android Open Source Project0727d222009-03-11 12:11:58 -07005671 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005672 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5673 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005674 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005675 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005676
Jeff Browndec6cf42011-11-15 14:08:20 -08005677 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005678 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005679 // Ignore sensor when lid switch is open and rotation is forced.
5680 preferredRotation = mLidOpenRotation;
5681 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005682 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005683 // Ignore sensor when in car dock unless explicitly enabled.
5684 // This case can override the behavior of NOSENSOR, and can also
5685 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005686 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005687 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005688 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5689 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5690 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005691 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005692 // Ignore sensor when in desk dock unless explicitly enabled.
5693 // This case can override the behavior of NOSENSOR, and can also
5694 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005695 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005696 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005697 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5698 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005699 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005700 preferredRotation = mDemoHdmiRotation;
5701 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5702 && mUndockedHdmiRotation >= 0) {
5703 // Ignore sensor when plugged into HDMI and an undocked orientation has
5704 // been specified in the configuration (only for legacy devices without
5705 // full multi-display support).
5706 // Note that the dock orientation overrides the HDMI orientation.
5707 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005708 } else if (mDemoRotationLock) {
5709 // Ignore sensor when demo rotation lock is enabled.
5710 // Note that the dock orientation and HDMI rotation lock override this.
5711 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005712 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5713 // Application just wants to remain locked in the last rotation.
5714 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005715 } else if (!mSupportAutoRotation) {
5716 // If we don't support auto-rotation then bail out here and ignore
5717 // the sensor and any rotation lock settings.
5718 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005719 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005720 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005721 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5722 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5723 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5724 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005725 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5726 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5727 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5728 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5729 // Otherwise, use sensor only if requested by the application or enabled
5730 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005731 if (mAllowAllRotations < 0) {
5732 // Can't read this during init() because the context doesn't
5733 // have display metrics at that time so we cannot determine
5734 // tablet vs. phone then.
5735 mAllowAllRotations = mContext.getResources().getBoolean(
5736 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5737 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005738 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005739 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005740 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5741 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005742 preferredRotation = sensorRotation;
5743 } else {
5744 preferredRotation = lastRotation;
5745 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005746 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5747 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5748 // Apply rotation lock. Does not apply to NOSENSOR.
5749 // The idea is that the user rotation expresses a weak preference for the direction
5750 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5751 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005752 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005753 } else {
5754 // No overriding preference.
5755 // We will do exactly what the application asked us to do.
5756 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005757 }
5758
Dianne Hackborne5439f22010-10-02 16:53:50 -07005759 switch (orientation) {
5760 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005761 // Return portrait unless overridden.
5762 if (isAnyPortrait(preferredRotation)) {
5763 return preferredRotation;
5764 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005765 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005766
Jeff Brown01a98dd2011-09-20 15:08:29 -07005767 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005768 // Return landscape unless overridden.
5769 if (isLandscapeOrSeascape(preferredRotation)) {
5770 return preferredRotation;
5771 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005772 return mLandscapeRotation;
5773
5774 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005775 // Return reverse portrait unless overridden.
5776 if (isAnyPortrait(preferredRotation)) {
5777 return preferredRotation;
5778 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005779 return mUpsideDownRotation;
5780
5781 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005782 // Return seascape unless overridden.
5783 if (isLandscapeOrSeascape(preferredRotation)) {
5784 return preferredRotation;
5785 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005786 return mSeascapeRotation;
5787
5788 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005789 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005790 // Return either landscape rotation.
5791 if (isLandscapeOrSeascape(preferredRotation)) {
5792 return preferredRotation;
5793 }
5794 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005795 return lastRotation;
5796 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005797 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005798
Jeff Brown01a98dd2011-09-20 15:08:29 -07005799 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005800 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005801 // Return either portrait rotation.
5802 if (isAnyPortrait(preferredRotation)) {
5803 return preferredRotation;
5804 }
5805 if (isAnyPortrait(lastRotation)) {
5806 return lastRotation;
5807 }
5808 return mPortraitRotation;
5809
5810 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005811 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5812 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005813 if (preferredRotation >= 0) {
5814 return preferredRotation;
5815 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005816 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005817 }
5818 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005819 }
5820
Jeff Brown01a98dd2011-09-20 15:08:29 -07005821 @Override
5822 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5823 switch (orientation) {
5824 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5825 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5826 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5827 return isAnyPortrait(rotation);
5828
5829 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5830 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5831 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5832 return isLandscapeOrSeascape(rotation);
5833
5834 default:
5835 return true;
5836 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005837 }
5838
Jeff Brownc0347aa2011-09-23 17:26:09 -07005839 @Override
5840 public void setRotationLw(int rotation) {
5841 mOrientationListener.setCurrentRotation(rotation);
5842 }
5843
Jeff Brown01a98dd2011-09-20 15:08:29 -07005844 private boolean isLandscapeOrSeascape(int rotation) {
5845 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005846 }
5847
Jeff Brown01a98dd2011-09-20 15:08:29 -07005848 private boolean isAnyPortrait(int rotation) {
5849 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005850 }
5851
Jose Lima9546b202014-07-02 17:21:51 -07005852 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005853 public int getUserRotationMode() {
5854 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005855 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5856 WindowManagerPolicy.USER_ROTATION_FREE :
5857 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005858 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005859
5860 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005861 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005862 public void setUserRotationMode(int mode, int rot) {
5863 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005864
5865 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005866 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07005867 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005868 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005869 rot,
5870 UserHandle.USER_CURRENT);
5871 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005872 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005873 0,
5874 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005875 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07005876 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005877 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005878 1,
5879 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005880 }
5881 }
5882
Jose Lima9546b202014-07-02 17:21:51 -07005883 @Override
Jeff Brownac143512012-04-05 18:57:33 -07005884 public void setSafeMode(boolean safeMode) {
5885 mSafeMode = safeMode;
5886 performHapticFeedbackLw(null, safeMode
5887 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
5888 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005889 }
Craig Mautnereda67292013-04-28 13:50:14 -07005890
Dianne Hackborn181ceb52009-08-27 22:16:40 -07005891 static long[] getLongIntArray(Resources r, int resid) {
5892 int[] ar = r.getIntArray(resid);
5893 if (ar == null) {
5894 return null;
5895 }
5896 long[] out = new long[ar.length];
5897 for (int i=0; i<ar.length; i++) {
5898 out[i] = ar[i];
5899 }
5900 return out;
5901 }
Craig Mautnereda67292013-04-28 13:50:14 -07005902
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005903 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005904 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005905 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07005906 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08005907 mKeyguardDelegate.onSystemReady();
5908
Michael Wright3818c922014-09-02 13:59:07 -07005909 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07005910 updateUiMode();
Dianne Hackbornb1a79802009-09-29 15:18:31 -07005911 synchronized (mLock) {
5912 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08005913 mSystemReady = true;
5914 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07005915 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08005916 public void run() {
5917 updateSettings();
5918 }
5919 });
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005920 }
5921 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005922
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005923 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005924 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005925 public void systemBooted() {
Jim Millere5f910a2013-10-16 18:15:46 -07005926 if (mKeyguardDelegate != null) {
Jason Monk5eeebf52014-09-26 12:36:51 -04005927 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07005928 mKeyguardDelegate.onBootCompleted();
5929 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005930 synchronized (mLock) {
5931 mSystemBooted = true;
5932 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005933 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005934 screenTurningOn(null);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005935 }
5936
Dianne Hackborn661cd522011-08-22 00:26:20 -07005937 ProgressDialog mBootMsgDialog = null;
5938
5939 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005940 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005941 public void showBootMessage(final CharSequence msg, final boolean always) {
5942 mHandler.post(new Runnable() {
5943 @Override public void run() {
5944 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07005945 int theme;
5946 if (mContext.getPackageManager().hasSystemFeature(
5947 PackageManager.FEATURE_WATCH)) {
5948 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
5949 } else if (mContext.getPackageManager().hasSystemFeature(
5950 PackageManager.FEATURE_TELEVISION)) {
5951 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
5952 } else {
5953 theme = 0;
5954 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07005955
5956 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07005957 // This dialog will consume all events coming in to
5958 // it, to avoid it trying to do things too early in boot.
5959 @Override public boolean dispatchKeyEvent(KeyEvent event) {
5960 return true;
5961 }
5962 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
5963 return true;
5964 }
5965 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
5966 return true;
5967 }
5968 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
5969 return true;
5970 }
5971 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
5972 return true;
5973 }
5974 @Override public boolean dispatchPopulateAccessibilityEvent(
5975 AccessibilityEvent event) {
5976 return true;
5977 }
5978 };
Jeff Hao9f60c082014-10-28 18:51:07 -07005979 if (mContext.getPackageManager().isUpgrade()) {
5980 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
5981 } else {
5982 mBootMsgDialog.setTitle(R.string.android_start_title);
5983 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005984 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
5985 mBootMsgDialog.setIndeterminate(true);
5986 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07005987 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005988 mBootMsgDialog.getWindow().addFlags(
5989 WindowManager.LayoutParams.FLAG_DIM_BEHIND
5990 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
5991 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08005992 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
5993 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
5994 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005995 mBootMsgDialog.setCancelable(false);
5996 mBootMsgDialog.show();
5997 }
5998 mBootMsgDialog.setMessage(msg);
5999 }
6000 });
6001 }
6002
6003 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006004 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006005 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006006 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006007 }
6008
Mike Lockwood28569302010-01-28 11:54:40 -05006009 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006010 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006011 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006012 // ***************************************
6013 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6014 // ***************************************
6015 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6016 // WITH ITS LOCKS HELD.
6017 //
6018 // This code must be VERY careful about the locks
6019 // it acquires.
6020 // In fact, the current code acquires way too many,
6021 // and probably has lurking deadlocks.
6022
Mike Lockwood28569302010-01-28 11:54:40 -05006023 synchronized (mScreenLockTimeout) {
6024 if (mLockScreenTimerActive) {
6025 // reset the timer
6026 mHandler.removeCallbacks(mScreenLockTimeout);
6027 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6028 }
6029 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006030 }
6031
Adam Cohenf7522022012-10-03 20:03:18 -07006032 class ScreenLockTimeout implements Runnable {
6033 Bundle options;
6034
6035 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006036 public void run() {
6037 synchronized (this) {
6038 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006039 if (mKeyguardDelegate != null) {
6040 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006041 }
Mike Lockwood28569302010-01-28 11:54:40 -05006042 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006043 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006044 }
6045 }
Mike Lockwood28569302010-01-28 11:54:40 -05006046
Adam Cohenf7522022012-10-03 20:03:18 -07006047 public void setLockOptions(Bundle options) {
6048 this.options = options;
6049 }
6050 }
6051
6052 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6053
Jose Lima9546b202014-07-02 17:21:51 -07006054 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006055 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006056 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6057 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006058 if (options != null) {
6059 // In case multiple calls are made to lockNow, we don't wipe out the options
6060 // until the runnable actually executes.
6061 mScreenLockTimeout.setLockOptions(options);
6062 }
Jim Miller93c518e2012-01-17 15:55:31 -08006063 mHandler.post(mScreenLockTimeout);
6064 }
6065
Mike Lockwood28569302010-01-28 11:54:40 -05006066 private void updateLockScreenTimeout() {
6067 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006068 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006069 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006070 if (mLockScreenTimerActive != enable) {
6071 if (enable) {
6072 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6073 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6074 } else {
6075 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6076 mHandler.removeCallbacks(mScreenLockTimeout);
6077 }
6078 mLockScreenTimerActive = enable;
6079 }
6080 }
6081 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006082
Jeff Brown061ea992015-04-17 19:55:47 -07006083 private void updateDreamingSleepToken(boolean acquire) {
6084 if (acquire) {
6085 if (mDreamingSleepToken == null) {
6086 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6087 }
6088 } else {
6089 if (mDreamingSleepToken != null) {
6090 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006091 mDreamingSleepToken = null;
6092 }
6093 }
6094 }
6095
6096 private void updateScreenOffSleepToken(boolean acquire) {
6097 if (acquire) {
6098 if (mScreenOffSleepToken == null) {
6099 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6100 }
6101 } else {
6102 if (mScreenOffSleepToken != null) {
6103 mScreenOffSleepToken.release();
6104 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006105 }
6106 }
6107 }
6108
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006109 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006110 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006111 public void enableScreenAfterBoot() {
6112 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006113 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006114 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006115 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006116
Jeff Brownc458ce92012-04-30 14:58:40 -07006117 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006118 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006119 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006120 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006121 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006122 }
Jeff Browna20dda42014-05-27 20:57:24 -07006123
6124 synchronized (mLock) {
6125 updateWakeGestureListenerLp();
6126 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006127 }
6128
Jeff Brown4f5fa282014-06-12 19:19:15 -07006129 void updateUiMode() {
6130 if (mUiModeManager == null) {
6131 mUiModeManager = IUiModeManager.Stub.asInterface(
6132 ServiceManager.getService(Context.UI_MODE_SERVICE));
6133 }
6134 try {
6135 mUiMode = mUiModeManager.getCurrentModeType();
6136 } catch (RemoteException e) {
6137 }
6138 }
6139
Jeff Brown01a98dd2011-09-20 15:08:29 -07006140 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006141 try {
6142 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006143 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6144 } catch (RemoteException e) {
6145 // Ignore
6146 }
6147 }
6148
6149 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6150 try {
6151 //set orientation on WindowManager
6152 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006153 } catch (RemoteException e) {
6154 // Ignore
6155 }
6156 }
6157
Daniel Sandler6396c722013-04-16 20:19:09 -04006158 /**
6159 * Return an Intent to launch the currently active dock app as home. Returns
6160 * null if the standard home should be launched, which is the case if any of the following is
6161 * true:
6162 * <ul>
6163 * <li>The device is not in either car mode or desk mode
6164 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6165 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6166 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6167 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6168 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006169 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006170 */
6171 Intent createHomeDockIntent() {
6172 Intent intent = null;
6173
6174 // What home does is based on the mode, not the dock state. That
6175 // is, when in car mode you should be taken to car home regardless
6176 // of whether we are actually in a car dock.
6177 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6178 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6179 intent = mCarDockIntent;
6180 }
6181 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6182 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6183 intent = mDeskDockIntent;
6184 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006185 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6186 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6187 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6188 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6189 // Always launch dock home from home when watch is docked, if it exists.
6190 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006191 }
6192
6193 if (intent == null) {
6194 return null;
6195 }
6196
6197 ActivityInfo ai = null;
6198 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6199 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006200 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006201 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006202 if (info != null) {
6203 ai = info.activityInfo;
6204 }
6205 if (ai != null
6206 && ai.metaData != null
6207 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6208 intent = new Intent(intent);
6209 intent.setClassName(ai.packageName, ai.name);
6210 return intent;
6211 }
6212
6213 return null;
6214 }
6215
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006216 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6217 if (awakenFromDreams) {
6218 awakenDreams();
6219 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006220
6221 Intent dock = createHomeDockIntent();
6222 if (dock != null) {
6223 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006224 if (fromHomeKey) {
6225 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6226 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006227 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006228 return;
6229 } catch (ActivityNotFoundException e) {
6230 }
6231 }
6232
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006233 Intent intent;
6234
6235 if (fromHomeKey) {
6236 intent = new Intent(mHomeIntent);
6237 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6238 } else {
6239 intent = mHomeIntent;
6240 }
6241
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006242 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006243 }
Craig Mautnereda67292013-04-28 13:50:14 -07006244
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006245 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006246 * goes to the home screen
6247 * @return whether it did anything
6248 */
6249 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006250 if (!isUserSetupComplete()) {
6251 Slog.i(TAG, "Not going home because user setup is in progress.");
6252 return false;
6253 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006254 if (false) {
6255 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006256 try {
6257 ActivityManagerNative.getDefault().stopAppSwitches();
6258 } catch (RemoteException e) {
6259 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006260 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006261 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006262 } else {
6263 // This code brings home to the front or, if it is already
6264 // at the front, puts the device to sleep.
6265 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006266 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6267 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6268 Log.d(TAG, "UTS-TEST-MODE");
6269 } else {
6270 ActivityManagerNative.getDefault().stopAppSwitches();
6271 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006272 Intent dock = createHomeDockIntent();
6273 if (dock != null) {
6274 int result = ActivityManagerNative.getDefault()
6275 .startActivityAsUser(null, null, dock,
6276 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6277 null, null, 0,
6278 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006279 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006280 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6281 return false;
6282 }
6283 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006284 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006285 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006286 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006287 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006288 null, null, 0,
6289 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006290 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006291 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006292 return false;
6293 }
6294 } catch (RemoteException ex) {
6295 // bummer, the activity manager, which is in this process, is dead
6296 }
6297 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006298 return true;
6299 }
Craig Mautnereda67292013-04-28 13:50:14 -07006300
6301 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006302 public void setCurrentOrientationLw(int newOrientation) {
6303 synchronized (mLock) {
6304 if (newOrientation != mCurrentAppOrientation) {
6305 mCurrentAppOrientation = newOrientation;
6306 updateOrientationListenerLp();
6307 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006308 }
6309 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006310
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006311 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6312 if (!isGlobalAccessibilityGestureEnabled()) {
6313 return;
6314 }
6315 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6316 Context.AUDIO_SERVICE);
6317 if (audioManager.isSilentMode()) {
6318 return;
6319 }
6320 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6321 Settings.System.DEFAULT_NOTIFICATION_URI);
6322 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6323 ringTone.play();
6324 }
Craig Mautnereda67292013-04-28 13:50:14 -07006325
Bryce Lee584a4452014-10-21 15:55:55 -07006326 private boolean isTheaterModeEnabled() {
6327 return Settings.Global.getInt(mContext.getContentResolver(),
6328 Settings.Global.THEATER_MODE_ON, 0) == 1;
6329 }
6330
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006331 private boolean isGlobalAccessibilityGestureEnabled() {
6332 return Settings.Global.getInt(mContext.getContentResolver(),
6333 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6334 }
6335
Craig Mautnereda67292013-04-28 13:50:14 -07006336 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006337 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006338 if (!mVibrator.hasVibrator()) {
6339 return false;
6340 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006341 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6342 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006343 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006344 return false;
6345 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006346 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006347 switch (effectId) {
6348 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006349 pattern = mLongPressVibePattern;
6350 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006351 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006352 pattern = mVirtualKeyVibePattern;
6353 break;
6354 case HapticFeedbackConstants.KEYBOARD_TAP:
6355 pattern = mKeyboardTapVibePattern;
6356 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006357 case HapticFeedbackConstants.CLOCK_TICK:
6358 pattern = mClockTickVibePattern;
6359 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006360 case HapticFeedbackConstants.CALENDAR_DATE:
6361 pattern = mCalendarDateVibePattern;
6362 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006363 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006364 pattern = mSafeModeDisabledVibePattern;
6365 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006366 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006367 pattern = mSafeModeEnabledVibePattern;
6368 break;
Mady Mellore8608912015-06-05 09:02:55 -07006369 case HapticFeedbackConstants.CONTEXT_CLICK:
6370 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006371 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006372 default:
6373 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006374 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006375 int owningUid;
6376 String owningPackage;
6377 if (win != null) {
6378 owningUid = win.getOwningUid();
6379 owningPackage = win.getOwningPackage();
6380 } else {
6381 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006382 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006383 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006384 if (pattern.length == 1) {
6385 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006386 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006387 } else {
6388 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006389 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006390 }
6391 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006392 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006393
6394 @Override
6395 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006396 }
6397
Jeff Brownc38c9be2012-10-04 13:16:19 -07006398 @Override
6399 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006400 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006401 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006402 }
6403 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006404
Dianne Hackborndf89e652011-10-06 22:35:11 -07006405 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006406 // If there is no window focused, there will be nobody to handle the events
6407 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006408 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6409 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006410 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006411 return 0;
6412 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006413 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006414 // We are updating at a point where the keyguard has gotten
6415 // focus, but we were last in a state where the top window is
6416 // hiding it. This is probably because the keyguard as been
6417 // shown while the top window was displayed, so we want to ignore
6418 // it here because this is just a very transient change and it
6419 // will quickly lose focus once it correctly gets hidden.
6420 return 0;
6421 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006422
John Spurlock1db8b682014-02-18 11:18:59 -05006423 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006424 & ~mResettingSystemUiFlags
6425 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006426 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006427 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006428 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006429 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006430 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006431 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006432 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006433 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006434 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006435 return 0;
6436 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006437 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006438 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006439 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006440 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006441 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006442 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006443 try {
6444 IStatusBarService statusbar = getStatusBarService();
6445 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006446 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006447 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006448 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006449 } catch (RemoteException e) {
6450 // re-acquire status bar service next time it is needed.
6451 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006452 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006453 }
6454 });
6455 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006456 }
6457
Adrian Rooscd3884d2015-02-18 17:25:23 +01006458 private int updateLightStatusBarLw(int vis) {
6459 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6460 ? mStatusBar
6461 : mTopFullscreenOpaqueOrDimmingWindowState;
6462
6463 if (statusColorWin != null) {
6464 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6465 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6466 // its light flag.
6467 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6468 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6469 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6470 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6471 // Otherwise if it's dimming, clear the light flag.
6472 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6473 }
6474 }
6475 return vis;
6476 }
6477
John Spurlock79da8332013-09-20 12:04:47 -04006478 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006479 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006480 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6481 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006482 : mTopFullscreenOpaqueWindowState;
6483 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6484 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6485
John Spurlock27735a42013-08-14 17:57:38 -04006486 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006487 int type = win.getAttrs().type;
6488 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006489 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006490 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6491 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006492 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006493 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6494 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006495 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006496 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6497 }
John Spurlockbd957402013-10-03 11:38:39 -04006498 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006499 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006500
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006501 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006502 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6503 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006504 }
6505
John Spurlock27735a42013-08-14 17:57:38 -04006506 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006507 boolean immersiveSticky =
6508 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006509 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006510 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006511 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006512 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6513 boolean hideStatusBarSysui =
6514 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006515 boolean hideNavBarSysui =
6516 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006517
John Spurlock27735a42013-08-14 17:57:38 -04006518 boolean transientStatusBarAllowed =
6519 mStatusBar != null && (
6520 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006521 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006522 || statusBarHasFocus);
6523
John Spurlockf1a36642013-10-12 17:50:42 -04006524 boolean transientNavBarAllowed =
6525 mNavigationBar != null &&
6526 hideNavBarSysui && immersiveSticky;
6527
Adrian Roosddc8b272015-05-21 16:28:27 -07006528 final long now = SystemClock.uptimeMillis();
6529 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6530 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6531 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6532 // The user performed the panic gesture recently, we're about to hide the bars,
6533 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6534 mPendingPanicGestureUptime = 0;
6535 mStatusBarController.showTransient();
6536 mNavigationBarController.showTransient();
6537 }
6538
John Spurlockf25706f2013-11-07 18:02:43 -05006539 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006540 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006541 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006542 && !transientNavBarAllowed;
6543 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006544 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006545 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006546 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006547 }
John Spurlock27735a42013-08-14 17:57:38 -04006548
Selim Cinekf98702e2015-05-20 22:48:40 -07006549 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6550 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6551 final boolean navAllowedHidden = immersive || immersiveSticky;
6552
Selim Cinekd6623612015-05-22 18:56:22 -07006553 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6554 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006555 // We can't hide the navbar from this window otherwise the input consumer would not get
6556 // the input events.
6557 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6558 }
6559
John Spurlock27735a42013-08-14 17:57:38 -04006560 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6561
6562 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006563 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6564 boolean newImmersiveMode = isImmersiveMode(vis);
6565 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006566 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006567 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6568 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006569 }
John Spurlock27735a42013-08-14 17:57:38 -04006570
John Spurlockf1a36642013-10-12 17:50:42 -04006571 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6572
John Spurlocke1f366f2013-08-05 12:22:40 -04006573 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006574 }
6575
John Spurlockf1a36642013-10-12 17:50:42 -04006576 private void clearClearableFlagsLw() {
6577 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6578 if (newVal != mResettingSystemUiFlags) {
6579 mResettingSystemUiFlags = newVal;
6580 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6581 }
6582 }
6583
6584 private boolean isImmersiveMode(int vis) {
6585 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006586 return mNavigationBar != null
6587 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006588 && (vis & flags) != 0
6589 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006590 }
6591
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006592 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006593 * @return whether the navigation or status bar can be made translucent
6594 *
6595 * This should return true unless touch exploration is not enabled or
6596 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006597 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006598 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006599 return mTranslucentDecorEnabled
6600 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006601 }
6602
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006603 // Use this instead of checking config_showNavigationBar so that it can be consistently
6604 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006605 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006606 public boolean hasNavigationBar() {
6607 return mHasNavigationBar;
6608 }
6609
satok1bc0a492012-04-25 22:47:12 +09006610 @Override
6611 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6612 mLastInputMethodWindow = ime;
6613 mLastInputMethodTargetWindow = target;
6614 }
6615
Craig Mautnerf1b67412012-09-19 13:18:29 -07006616 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006617 public int getInputMethodWindowVisibleHeightLw() {
6618 return mDockBottom - mCurBottom;
6619 }
6620
6621 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006622 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006623 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006624 if (mKeyguardDelegate != null) {
6625 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006626 }
John Spurlock13451a22012-09-28 14:40:41 -04006627 if (mStatusBarService != null) {
6628 try {
6629 mStatusBarService.setCurrentUser(newUserId);
6630 } catch (RemoteException e) {
6631 // oh well
6632 }
6633 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006634 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006635 }
6636
6637 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006638 public boolean canMagnifyWindow(int windowType) {
6639 switch (windowType) {
6640 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6641 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6642 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6643 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6644 return false;
6645 }
6646 }
6647 return true;
6648 }
6649
6650 @Override
6651 public boolean isTopLevelWindow(int windowType) {
6652 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6653 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6654 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6655 }
6656 return true;
6657 }
6658
Jim Miller4eeb4f62012-11-08 00:04:29 -08006659 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006660 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006661 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006662 pw.print(" mSystemReady="); pw.print(mSystemReady);
6663 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006664 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006665 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006666 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006667 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006668 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6669 || mForceClearedSystemUiFlags != 0) {
6670 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6671 pw.print(Integer.toHexString(mLastSystemUiFlags));
6672 pw.print(" mResettingSystemUiFlags=0x");
6673 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6674 pw.print(" mForceClearedSystemUiFlags=0x");
6675 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006676 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006677 if (mLastFocusNeedsMenu) {
6678 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6679 pw.println(mLastFocusNeedsMenu);
6680 }
Jeff Browna20dda42014-05-27 20:57:24 -07006681 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6682 pw.println(mWakeGestureEnabledSetting);
6683
Jeff Brownbcdfc622014-03-06 19:13:04 -08006684 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006685 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6686 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006687 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6688 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6689 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6690 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006691 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006692 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006693 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6694 pw.print(mCarDockEnablesAccelerometer);
6695 pw.print(" mDeskDockEnablesAccelerometer=");
6696 pw.println(mDeskDockEnablesAccelerometer);
6697 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6698 pw.print(mLidKeyboardAccessibility);
6699 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006700 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006701 pw.print(prefix);
6702 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6703 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006704 pw.print(prefix);
6705 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6706 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006707 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006708 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6709 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6710 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6711 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6712 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6713 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6714 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006715 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6716 pw.print(","); pw.print(mOverscanScreenTop);
6717 pw.print(") "); pw.print(mOverscanScreenWidth);
6718 pw.print("x"); pw.println(mOverscanScreenHeight);
6719 if (mOverscanLeft != 0 || mOverscanTop != 0
6720 || mOverscanRight != 0 || mOverscanBottom != 0) {
6721 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6722 pw.print(" top="); pw.print(mOverscanTop);
6723 pw.print(" right="); pw.print(mOverscanRight);
6724 pw.print(" bottom="); pw.println(mOverscanBottom);
6725 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006726 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6727 pw.print(mRestrictedOverscanScreenLeft);
6728 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6729 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6730 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006731 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6732 pw.print(","); pw.print(mUnrestrictedScreenTop);
6733 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6734 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6735 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6736 pw.print(","); pw.print(mRestrictedScreenTop);
6737 pw.print(") "); pw.print(mRestrictedScreenWidth);
6738 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006739 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6740 pw.print(","); pw.print(mStableFullscreenTop);
6741 pw.print(")-("); pw.print(mStableFullscreenRight);
6742 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006743 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6744 pw.print(","); pw.print(mStableTop);
6745 pw.print(")-("); pw.print(mStableRight);
6746 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006747 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6748 pw.print(","); pw.print(mSystemTop);
6749 pw.print(")-("); pw.print(mSystemRight);
6750 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006751 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6752 pw.print(","); pw.print(mCurTop);
6753 pw.print(")-("); pw.print(mCurRight);
6754 pw.print(","); pw.print(mCurBottom); pw.println(")");
6755 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6756 pw.print(","); pw.print(mContentTop);
6757 pw.print(")-("); pw.print(mContentRight);
6758 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006759 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6760 pw.print(","); pw.print(mVoiceContentTop);
6761 pw.print(")-("); pw.print(mVoiceContentRight);
6762 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006763 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6764 pw.print(","); pw.print(mDockTop);
6765 pw.print(")-("); pw.print(mDockRight);
6766 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006767 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6768 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006769 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6770 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006771 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6772 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006773 if (mLastInputMethodWindow != null) {
6774 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6775 pw.println(mLastInputMethodWindow);
6776 }
6777 if (mLastInputMethodTargetWindow != null) {
6778 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6779 pw.println(mLastInputMethodTargetWindow);
6780 }
6781 if (mStatusBar != null) {
6782 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006783 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6784 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006785 }
6786 if (mNavigationBar != null) {
6787 pw.print(prefix); pw.print("mNavigationBar=");
6788 pw.println(mNavigationBar);
6789 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006790 if (mFocusedWindow != null) {
6791 pw.print(prefix); pw.print("mFocusedWindow=");
6792 pw.println(mFocusedWindow);
6793 }
6794 if (mFocusedApp != null) {
6795 pw.print(prefix); pw.print("mFocusedApp=");
6796 pw.println(mFocusedApp);
6797 }
6798 if (mWinDismissingKeyguard != null) {
6799 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6800 pw.println(mWinDismissingKeyguard);
6801 }
6802 if (mTopFullscreenOpaqueWindowState != null) {
6803 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6804 pw.println(mTopFullscreenOpaqueWindowState);
6805 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006806 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6807 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6808 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6809 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006810 if (mForcingShowNavBar) {
6811 pw.print(prefix); pw.print("mForcingShowNavBar=");
6812 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6813 pw.println(mForcingShowNavBarLayer);
6814 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006815 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006816 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006817 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6818 pw.print(" mForceStatusBarFromKeyguard=");
6819 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006820 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006821 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006822 pw.print(" mHomePressed="); pw.println(mHomePressed);
6823 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6824 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6825 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6826 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6827 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6828 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6829 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6830 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6831 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6832 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006833 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6834 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6835 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006836
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006837 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006838 mStatusBarController.dump(pw, prefix);
6839 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05006840 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07006841
Jeff Browna20dda42014-05-27 20:57:24 -07006842 if (mWakeGestureListener != null) {
6843 mWakeGestureListener.dump(pw, prefix);
6844 }
Jeff Brown600f0032014-05-22 17:06:00 -07006845 if (mOrientationListener != null) {
6846 mOrientationListener.dump(pw, prefix);
6847 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00006848 if (mBurnInProtectionHelper != null) {
6849 mBurnInProtectionHelper.dump(prefix, pw);
6850 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006851 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006852}