blob: d488fa45a5b2a735337e8954c5a31401e1fcff05 [file] [log] [blame]
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001/*
Jeff Brown37df39a92015-02-25 15:42:31 -08002 * Copyright (C) 2006 The Android Open Source Project
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jorim Jaggib10e33f2015-02-04 21:57:40 +010017package com.android.server.policy;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080018
Wale Ogunwale3797c222015-10-27 14:21:58 -070019import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
20import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -070021import static android.view.WindowManager.LayoutParams.*;
22import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
23import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
24import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
25import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
26import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
27import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
28
Dianne Hackborna4972e92012-03-14 10:38:05 -070029import android.app.ActivityManager;
Jeff Brown061ea992015-04-17 19:55:47 -070030import android.app.ActivityManagerInternal;
31import android.app.ActivityManagerInternal.SleepToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080032import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080033import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040034import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070035import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070036import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040037import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080038import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070039import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080040import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040041import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080042import android.content.ContentResolver;
43import android.content.Context;
44import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070045import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070046import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080047import android.content.pm.ActivityInfo;
48import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040049import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070050import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080051import android.content.res.Configuration;
52import android.content.res.Resources;
53import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080054import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080055import android.graphics.Rect;
Jinsuk Kime601b712015-07-07 08:01:02 +090056import android.hardware.hdmi.HdmiControlManager;
57import android.hardware.hdmi.HdmiPlaybackClient;
58import android.hardware.hdmi.HdmiPlaybackClient.OneTouchPlayCallback;
John Spurlock7b414672014-07-18 13:02:39 -040059import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080060import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050061import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080062import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070063import android.media.Ringtone;
64import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070065import android.media.session.MediaSessionLegacyHelper;
Billy Laucbe540f2015-06-25 01:51:44 +010066import android.os.Binder;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070067import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080068import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070069import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080070import android.os.Handler;
71import android.os.IBinder;
Dianne Hackbornb6683c42015-06-18 17:40:33 -070072import android.os.IDeviceIdleController;
Jeff Brown32cbc38552011-12-01 14:01:49 -080073import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070074import android.os.Message;
75import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080076import android.os.PowerManager;
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -070077import android.os.PowerManagerInternal;
Billy Laucbe540f2015-06-25 01:51:44 +010078import android.os.Process;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080079import android.os.RemoteException;
80import android.os.ServiceManager;
81import android.os.SystemClock;
82import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080083import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070084import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080085import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070086import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080087import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070088import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040089import android.service.dreams.DreamService;
90import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070091import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070092import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070093import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080094import android.util.EventLog;
95import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070096import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080097import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070098import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080099import android.view.Gravity;
100import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800101import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800102import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -0700103import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -0700104import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -0800105import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800106import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -0800107import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -0800108import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800109import android.view.KeyEvent;
110import android.view.MotionEvent;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800111import android.view.Surface;
112import android.view.View;
113import android.view.ViewConfiguration;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800114import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800115import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700116import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800117import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800118import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800119import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800120import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200121import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800122import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800123import com.android.internal.R;
Jason Monk8f7f3182015-11-18 16:35:14 -0500124import com.android.internal.logging.MetricsLogger;
125import com.android.internal.policy.PhoneWindow;
Craig Mautnerae446592012-12-06 19:05:05 -0800126import com.android.internal.statusbar.IStatusBarService;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700127import com.android.internal.util.ScreenShapeHelper;
Craig Mautnerae446592012-12-06 19:05:05 -0800128import com.android.internal.widget.PointerLocationView;
Adrian Roos5941c982015-09-03 15:59:49 -0700129import com.android.server.GestureLauncherService;
Craig Mautner8a0da012014-05-31 15:13:37 -0700130import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100131import com.android.server.policy.keyguard.KeyguardServiceDelegate;
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700132import com.android.server.policy.keyguard.KeyguardServiceDelegate.DrawnListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800133
134import java.io.File;
135import java.io.FileReader;
136import java.io.IOException;
137import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700138import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800139import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800140
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800141/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700142 * WindowManagerPolicy implementation for the Android phone UI. This
143 * introduces a new method suffix, Lp, for an internal lock of the
144 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400145 * 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 -0700146 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800147 */
148public class PhoneWindowManager implements WindowManagerPolicy {
149 static final String TAG = "WindowManager";
150 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700151 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700152 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700153 static final boolean DEBUG_KEYGUARD = false;
154 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700155 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700156 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800157 static final boolean SHOW_STARTING_ANIMATIONS = true;
158 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400159
Daniel Sandler6396c722013-04-16 20:19:09 -0400160 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
keunyounga7710492015-09-23 11:33:58 -0700161 // No longer recommended for desk docks;
Daniel Sandler6396c722013-04-16 20:19:09 -0400162 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
163
Jeff Brown6d8fd272014-05-20 21:24:38 -0700164 static final int SHORT_PRESS_POWER_NOTHING = 0;
165 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
166 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
167 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800168 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700169
Joe Onoratod208e702010-10-08 16:22:43 -0400170 static final int LONG_PRESS_POWER_NOTHING = 0;
171 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
172 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700173 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700174
Jeff Brown13f00f02014-10-31 14:45:50 -0700175 static final int MULTI_PRESS_POWER_NOTHING = 0;
176 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
177 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
178
Michael Jurka3b1fc472011-06-13 10:54:40 -0700179 // These need to match the documentation/constant in
180 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800181 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800182 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700183 static final int LONG_PRESS_HOME_ASSIST = 2;
184
185 static final int DOUBLE_TAP_HOME_NOTHING = 0;
186 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800187
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000188 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
189 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
190
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700191 static final int APPLICATION_MEDIA_SUBLAYER = -2;
192 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800193 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800194 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700195 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700196
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800197 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
198 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
199 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500200 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700201 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800202
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700203 /**
204 * These are the system UI flags that, when changing, can cause the layout
205 * of the screen to change.
206 */
207 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400208 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400209 | View.SYSTEM_UI_FLAG_FULLSCREEN
210 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200211 | View.NAVIGATION_BAR_TRANSLUCENT
Jorim Jaggi4fa78922015-11-30 17:13:56 -0800212 | View.STATUS_BAR_TRANSPARENT
213 | View.NAVIGATION_BAR_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700214
John Spurlock7b414672014-07-18 13:02:39 -0400215 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
216 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
217 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
218 .build();
219
Adrian Roosddc8b272015-05-21 16:28:27 -0700220 // The panic gesture may become active only after the keyguard is dismissed and the immersive
221 // app shows again. If that doesn't happen for 30s we drop the gesture.
222 private static final long PANIC_GESTURE_EXPIRATION = 30000;
223
Jim Miller5ecd8112013-01-09 18:50:26 -0800224 /**
225 * Keyguard stuff
226 */
227 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100228 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700229 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800230
Jeff Brown6651a632011-11-28 12:59:11 -0800231 /* Table of Application Launch keys. Maps from key codes to intent categories.
232 *
233 * These are special keys that are used to launch particular kinds of applications,
234 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
235 * usage page. We don't support quite that many yet...
236 */
237 static SparseArray<String> sApplicationLaunchKeyCategories;
238 static {
239 sApplicationLaunchKeyCategories = new SparseArray<String>();
240 sApplicationLaunchKeyCategories.append(
241 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
242 sApplicationLaunchKeyCategories.append(
243 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
244 sApplicationLaunchKeyCategories.append(
245 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
246 sApplicationLaunchKeyCategories.append(
247 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
248 sApplicationLaunchKeyCategories.append(
249 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
250 sApplicationLaunchKeyCategories.append(
251 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
252 }
253
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700254 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
Jorim Jaggi0d210f62015-07-10 14:24:44 -0700255 static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700256
Dianne Hackborndf89e652011-10-06 22:35:11 -0700257 /**
258 * Lock protecting internal state. Must not call out into window
259 * manager with lock held. (This lock will be acquired in places
260 * where the window manager is calling in with its own lock held.)
261 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800262 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700263
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800264 Context mContext;
265 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700266 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700267 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700268 PowerManager mPowerManager;
Jeff Brown061ea992015-04-17 19:55:47 -0700269 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700270 DreamManagerInternal mDreamManagerInternal;
Michael Wrighta4d22d72015-09-16 23:19:26 +0100271 PowerManagerInternal mPowerManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400272 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700273 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700274 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800275 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700276 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800277 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000278 BurnInProtectionHelper mBurnInProtectionHelper;
Billy Laucbe540f2015-06-25 01:51:44 +0100279 AppOpsManager mAppOpsManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800280
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700281 // Vibrator pattern for haptic feedback of a long press.
282 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700283
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700284 // Vibrator pattern for haptic feedback of virtual key press.
285 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700286
Amith Yamasanic33cb712010-02-10 15:21:49 -0800287 // Vibrator pattern for a short vibration.
288 long[] mKeyboardTapVibePattern;
289
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700290 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
291 long[] mClockTickVibePattern;
292
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700293 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
294 long[] mCalendarDateVibePattern;
295
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700296 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
297 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700298
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700299 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
300 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700301
Mady Mellore8608912015-06-05 09:02:55 -0700302 // Vibrator pattern for haptic feedback of a context click.
303 long[] mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -0700304
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800305 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
306 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400307
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800308 boolean mSafeMode;
309 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700310 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400311 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400312 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700313 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400314 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
315 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
316 int[] mNavigationBarHeightForRotation = new int[4];
317 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400318
keunyounga7710492015-09-23 11:33:58 -0700319 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
320 // This is for car dock and this is updated from resource.
321 private boolean mEnableCarDockHomeCapture = true;
322
Craig Mautnera631d492014-08-05 15:16:01 -0700323 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800324 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700325 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700326 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700327 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700328 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
329 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
330 }
331 };
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700332 final DrawnListener mKeyguardDrawnCallback = new DrawnListener() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700333 @Override
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700334 public void onDrawn() {
335 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onDrawn.");
Craig Mautner8a0da012014-05-31 15:13:37 -0700336 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
337 }
338 };
339
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800340 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800341 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900342 WindowState mLastInputMethodWindow = null;
343 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800344
Jeff Brown13f00f02014-10-31 14:45:50 -0700345 // FIXME This state is shared between the input reader and handler thread.
346 // Technically it's broken and buggy but it has been like this for many years
347 // and we have not yet seen any problems. Someday we'll rewrite this logic
348 // so that only one thread is involved in handling input policy. Unfortunately
349 // it's on a critical path for power management so we can't just post the work to the
350 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
351 // to hold wakelocks during dispatch and eliminating the critical path.
352 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800353 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700354 volatile int mPowerKeyPressCounter;
355 volatile boolean mEndCallKeyHandled;
356
Winson Chungd42a6cf2014-06-03 16:24:04 -0700357 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700358 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700359 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800360
Jeff Brown2e7760e2012-04-11 15:14:55 -0700361 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700362 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700363 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800364
Dianne Hackbornc777e072010-02-12 13:07:59 -0800365 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700366 boolean mSystemBooted;
Adrian Roos3542f7d2015-07-13 15:57:53 -0700367 private boolean mDeferBindKeyguard;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800368 boolean mHdmiPlugged;
Jinsuk Kime601b712015-07-07 08:01:02 +0900369 HdmiControl mHdmiControl;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700370 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400371 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700372 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700373 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400374 int mCarDockRotation;
375 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700376 int mUndockedHdmiRotation;
377 int mDemoHdmiRotation;
378 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800379 int mDemoRotation;
380 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400381
Jeff Browna20dda42014-05-27 20:57:24 -0700382 boolean mWakeGestureEnabledSetting;
383 MyWakeGestureListener mWakeGestureListener;
384
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700385 // Default display does not rotate, apps that require non-default orientation will have to
386 // have the orientation emulated.
387 private boolean mForceDefaultOrientation = false;
388
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400389 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
390 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700391 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400392
Jeff Brownbcdfc622014-03-06 19:13:04 -0800393 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700394 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400395 boolean mCarDockEnablesAccelerometer;
396 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700397 int mLidKeyboardAccessibility;
398 int mLidNavigationAccessibility;
Edward Savage-Jones7def60d2015-11-13 13:27:03 +0100399 boolean mLidControlsScreenLock;
Jeff Brownc458ce92012-04-30 14:58:40 -0700400 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700401 int mShortPressOnPowerBehavior;
402 int mLongPressOnPowerBehavior;
403 int mDoublePressOnPowerBehavior;
404 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000405 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700406 boolean mAwake;
407 boolean mScreenOnEarly;
408 boolean mScreenOnFully;
409 ScreenOnListener mScreenOnListener;
410 boolean mKeyguardDrawComplete;
411 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800412 boolean mOrientationSensorEnabled = false;
413 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800414 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400415 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800416 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700417
Jeff Brown70825162012-03-28 17:27:48 -0700418 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800419
420 // The last window we were told about in focusChanged.
421 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800422 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800423
Jeff Brown70825162012-03-28 17:27:48 -0700424 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800425
Dianne Hackbornc652de82013-02-15 16:32:56 -0800426 // The current size of the screen; really; extends into the overscan area of
427 // the screen and doesn't account for any system elements like the status bar.
428 int mOverscanScreenLeft, mOverscanScreenTop;
429 int mOverscanScreenWidth, mOverscanScreenHeight;
430 // The current visible size of the screen; really; (ir)regardless of whether the status
431 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800432 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
433 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800434 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
435 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
436 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700437 // The current size of the screen; these may be different than (0,0)-(dw,dh)
438 // if the status bar can't be hidden; in that case it effectively carves out
439 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800440 int mRestrictedScreenLeft, mRestrictedScreenTop;
441 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700442 // During layout, the current screen borders accounting for any currently
443 // visible system UI elements.
444 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700445 // For applications requesting stable content insets, these are them.
446 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700447 // For applications requesting stable content insets but have also set the
448 // fullscreen window flag, these are the stable dimensions without the status bar.
449 int mStableFullscreenLeft, mStableFullscreenTop;
450 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800451 // During layout, the current screen borders with all outer decoration
452 // (status bar, input method dock) accounted for.
453 int mCurLeft, mCurTop, mCurRight, mCurBottom;
454 // During layout, the frame in which content should be displayed
455 // to the user, accounting for all screen decoration except for any
456 // space they deem as available for other content. This is usually
457 // the same as mCur*, but may be larger if the screen decor has supplied
458 // content insets.
459 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700460 // During layout, the frame in which voice content should be displayed
461 // to the user, accounting for all screen decoration except for any
462 // space they deem as available for other content.
463 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800464 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800465 // windows are placed.
466 int mDockLeft, mDockTop, mDockRight, mDockBottom;
467 // During layout, the layer at which the doc window is placed.
468 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700469 // During layout, this is the layer of the status bar.
470 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700471 int mLastSystemUiFlags;
472 // Bits that we are in the process of clearing, so we want to prevent
473 // them from being set by applications until everything has been updated
474 // to have them clear.
475 int mResettingSystemUiFlags = 0;
476 // Bits that we are currently always keeping cleared.
477 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800478 // What we last reported to system UI about whether the compatibility
479 // menu needs to be displayed.
480 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700481 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
482 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700483
Selim Cinekf83e8242015-05-19 18:08:14 -0700484 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700485
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800486 static final Rect mTmpParentFrame = new Rect();
487 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800488 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800489 static final Rect mTmpContentFrame = new Rect();
490 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400491 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700492 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700493 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700494 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700495
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800496 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100497 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700498 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200499 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400500 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800501 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700502 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700503 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700504 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800505 boolean mForcingShowNavBar;
506 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700507
508 // States of keyguard dismiss.
509 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
510 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
511 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
512 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
513
514 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
515 * be done once per window. */
516 private WindowState mWinDismissingKeyguard;
517
tingna_sunge785ffa2015-05-12 13:23:15 +0800518 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
519 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
520 * lock SIM card. This variable is used to record the previous keyguard secure state for
521 * monitoring secure state change on window dismissing keyguard. */
522 private boolean mSecureDismissingKeyguard;
523
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700524 /** The window that is currently showing "over" the keyguard. If there is an app window
525 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
526 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
527 * the wallpaper. */
528 private WindowState mWinShowWhenLocked;
529
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700530 boolean mShowingLockscreen;
531 boolean mShowingDream;
532 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700533 boolean mDreamingSleepTokenNeeded;
534 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700535 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700536 boolean mKeyguardSecure;
537 boolean mKeyguardSecureIncludingHidden;
538 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800539 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700540 boolean mHomeConsumed;
541 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800542 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700543 Intent mCarDockIntent;
544 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700545 boolean mSearchKeyShortcutPending;
546 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700547 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700548 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800549
Mike Lockwood28569302010-01-28 11:54:40 -0500550 // support for activating the lock screen while the screen is on
551 boolean mAllowLockscreenWhenOn;
552 int mLockScreenTimeout;
553 boolean mLockScreenTimerActive;
554
David Brownbaf8d092010-03-08 21:52:59 -0800555 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800556 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800557
558 // Behavior of POWER button while in-call and screen on.
559 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
560 int mIncallPowerBehavior;
561
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700562 Display mDisplay;
563
Filip Gruszczynski2987f612015-06-30 15:03:30 -0700564 private int mDisplayRotation;
565
Dianne Hackborn9d132642011-04-21 17:26:39 -0700566 int mLandscapeRotation = 0; // default landscape rotation
567 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
568 int mPortraitRotation = 0; // default portrait rotation
569 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700570
Dianne Hackbornc652de82013-02-15 16:32:56 -0800571 int mOverscanLeft = 0;
572 int mOverscanTop = 0;
573 int mOverscanRight = 0;
574 int mOverscanBottom = 0;
575
Joe Onorato46b0d682010-11-22 17:37:27 -0800576 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700577 private int mLongPressOnHomeBehavior;
578
579 // What we do when the user double-taps on home
580 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800581
Bryce Lee584a4452014-10-21 15:55:55 -0700582 // Allowed theater mode wake actions
583 private boolean mAllowTheaterModeWakeFromKey;
584 private boolean mAllowTheaterModeWakeFromPowerKey;
585 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800586 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700587 private boolean mAllowTheaterModeWakeFromCameraLens;
588 private boolean mAllowTheaterModeWakeFromLidSwitch;
589 private boolean mAllowTheaterModeWakeFromWakeGesture;
590
Bryce Leed3b28402015-03-09 15:49:13 +0000591 // Whether to support long press from power button in non-interactive mode
592 private boolean mSupportLongPressPowerWhenNonInteractive;
593
Bryce Lee55e846d2014-11-04 12:43:44 -0800594 // Whether to go to sleep entering theater mode from power button
595 private boolean mGoToSleepOnButtonPressTheaterMode;
596
Winson Chung9112ec32011-06-27 13:15:32 -0700597 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700598 // Time to volume and power must be pressed within this interval of each other.
599 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700600 // Increase the chord delay when taking a screenshot from the keyguard
601 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800602 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700603 private boolean mScreenshotChordVolumeDownKeyTriggered;
604 private long mScreenshotChordVolumeDownKeyTime;
605 private boolean mScreenshotChordVolumeDownKeyConsumed;
606 private boolean mScreenshotChordVolumeUpKeyTriggered;
607 private boolean mScreenshotChordPowerKeyTriggered;
608 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700609
Michael Wrightb854e242013-02-05 17:54:02 -0800610 /* The number of steps between min and max brightness */
611 private static final int BRIGHTNESS_STEPS = 10;
612
Christopher Tate5e08af02012-09-21 17:17:22 -0700613 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800614 ShortcutManager mShortcutManager;
615 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700616 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700617 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800618
Craig Mautnerd625ab22013-09-06 13:40:31 -0700619 private int mCurrentUserId;
620
Justin Kohd378ad72013-04-01 12:18:26 -0700621 // Maps global key codes to the components that will handle them.
622 private GlobalKeyManager mGlobalKeyManager;
623
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700624 // Fallback actions by key code.
625 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
626 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800627
Jorim Jaggi76a16232014-08-08 17:00:47 +0200628 private final LogDecelerateInterpolator mLogDecelerateInterpolator
629 = new LogDecelerateInterpolator(100, 0);
630
Jorim Jaggi4fa78922015-11-30 17:13:56 -0800631 private boolean mForceWindowDrawsStatusBarBackground;
632
Jeff Brown70825162012-03-28 17:27:48 -0700633 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
634 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700635 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
636 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700637 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
638 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
639 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700640 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700641 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700642 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700643 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700644 private static final int MSG_POWER_DELAYED_PRESS = 13;
645 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700646 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700647 private static final int MSG_REQUEST_TRANSIENT_BARS = 16;
648
649 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS = 0;
650 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION = 1;
Jeff Brown70825162012-03-28 17:27:48 -0700651
652 private class PolicyHandler extends Handler {
653 @Override
654 public void handleMessage(Message msg) {
655 switch (msg.what) {
656 case MSG_ENABLE_POINTER_LOCATION:
657 enablePointerLocation();
658 break;
659 case MSG_DISABLE_POINTER_LOCATION:
660 disablePointerLocation();
661 break;
Jeff Brown40013652012-05-16 21:22:36 -0700662 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
663 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
664 break;
665 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
666 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
667 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700668 case MSG_DISPATCH_SHOW_RECENTS:
669 showRecentApps(false);
670 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700671 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
672 showGlobalActionsInternal();
673 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700674 case MSG_KEYGUARD_DRAWN_COMPLETE:
675 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700676 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700677 break;
678 case MSG_KEYGUARD_DRAWN_TIMEOUT:
679 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700680 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700681 break;
682 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
683 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700684 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700685 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700686 case MSG_HIDE_BOOT_MESSAGE:
687 handleHideBootMessage();
688 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700689 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
690 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
691 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700692 case MSG_POWER_DELAYED_PRESS:
693 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
694 finishPowerKeyPress();
695 break;
696 case MSG_POWER_LONG_PRESS:
697 powerLongPress();
698 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700699 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
700 updateDreamingSleepToken(msg.arg1 != 0);
701 break;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700702 case MSG_REQUEST_TRANSIENT_BARS:
703 WindowState targetBar = (msg.arg1 == MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS) ?
704 mStatusBar : mNavigationBar;
705 if (targetBar != null) {
706 requestTransientBars(targetBar);
707 }
708 break;
Jeff Brown70825162012-03-28 17:27:48 -0700709 }
710 }
711 }
712
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800713 private UEventObserver mHDMIObserver = new UEventObserver() {
714 @Override
715 public void onUEvent(UEventObserver.UEvent event) {
716 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
717 }
718 };
719
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800720 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800721 SettingsObserver(Handler handler) {
722 super(handler);
723 }
David Brownbaf8d092010-03-08 21:52:59 -0800724
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800725 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700726 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800727 ContentResolver resolver = mContext.getContentResolver();
728 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700729 Settings.System.END_BUTTON_BEHAVIOR), false, this,
730 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800731 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700732 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
733 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700734 resolver.registerContentObserver(Settings.Secure.getUriFor(
735 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
736 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800737 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700738 Settings.System.ACCELEROMETER_ROTATION), false, this,
739 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500740 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700741 Settings.System.USER_ROTATION), false, this,
742 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400743 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700744 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
745 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800746 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700747 Settings.System.POINTER_LOCATION), false, this,
748 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800749 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700750 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
751 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500752 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400753 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700754 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500755 resolver.registerContentObserver(Settings.Global.getUriFor(
756 Settings.Global.POLICY_CONTROL), false, this,
757 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800758 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800759 }
760
761 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800762 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700763 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800764 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800765 }
Craig Mautner967212c2013-04-13 21:10:58 -0700766
Jeff Browna20dda42014-05-27 20:57:24 -0700767 class MyWakeGestureListener extends WakeGestureListener {
768 MyWakeGestureListener(Context context, Handler handler) {
769 super(context, handler);
770 }
771
772 @Override
773 public void onWakeUp() {
774 synchronized (mLock) {
775 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700776 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700777 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture,
778 "android.policy:GESTURE");
Jeff Browna20dda42014-05-27 20:57:24 -0700779 }
780 }
781 }
782 }
783
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800784 class MyOrientationListener extends WindowOrientationListener {
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700785 private final Runnable mUpdateRotationRunnable = new Runnable() {
786 @Override
787 public void run() {
Tim Murray1f407642015-10-01 17:07:12 -0700788 // send interaction hint to improve redraw performance
789 mPowerManagerInternal.powerHint(PowerManagerInternal.POWER_HINT_INTERACTION, 0);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700790 updateRotation(false);
791 }
792 };
793
Craig Mautnereee29c42013-01-17 14:44:34 -0800794 MyOrientationListener(Context context, Handler handler) {
795 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800796 }
Craig Mautner967212c2013-04-13 21:10:58 -0700797
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800798 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700799 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700800 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700801 mHandler.post(mUpdateRotationRunnable);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700802 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800803 }
804 MyOrientationListener mOrientationListener;
805
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100806 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400807
John Spurlock27735a42013-08-14 17:57:38 -0400808 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400809 View.NAVIGATION_BAR_TRANSIENT,
810 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400811 View.NAVIGATION_BAR_TRANSLUCENT,
812 StatusBarManager.WINDOW_NAVIGATION_BAR,
Jorim Jaggi4fa78922015-11-30 17:13:56 -0800813 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION,
814 View.NAVIGATION_BAR_TRANSPARENT);
John Spurlock5b9145b2013-08-20 15:13:47 -0400815
John Spurlockf1a36642013-10-12 17:50:42 -0400816 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400817
Craig Mautner037aa8d2013-06-07 10:35:44 -0700818 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400819
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700820 IStatusBarService getStatusBarService() {
821 synchronized (mServiceAquireLock) {
822 if (mStatusBarService == null) {
823 mStatusBarService = IStatusBarService.Stub.asInterface(
824 ServiceManager.getService("statusbar"));
825 }
826 return mStatusBarService;
827 }
828 }
829
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700830 /*
831 * We always let the sensor be switched on by default except when
832 * the user has explicitly disabled sensor based rotation or when the
833 * screen is switched off.
834 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700835 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800836 if (mSupportAutoRotation) {
837 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
838 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
839 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
840 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
841 // If the application has explicitly requested to follow the
842 // orientation, then we need to turn the sensor on.
843 return true;
844 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800845 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700846 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800847 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
848 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
849 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400850 // enable accelerometer if we are docked in a dock that enables accelerometer
851 // orientation management,
852 return true;
853 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700854 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800855 // If the setting for using the sensor by default is enabled, then
856 // we will always leave it on. Note that the user could go to
857 // a window that forces an orientation that does not use the
858 // sensor and in theory we could turn it off... however, when next
859 // turning it on we won't have a good value for the current
860 // orientation for a little bit, which can cause orientation
861 // changes to lag, so we'd like to keep it always on. (It will
862 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700863 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800864 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800865 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800866 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700867
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800868 /*
869 * Various use cases for invoking this function
870 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700871 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800872 * if not already enabled
873 * screen turned on and current app does not have sensor orientation, disable listeners if
874 * already enabled
875 * screen turning on and current app has sensor based orientation, enable listeners if needed
876 * screen turning on and current app has nosensor based orientation, do nothing
877 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700878 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800879 if (!mOrientationListener.canDetectOrientation()) {
880 // If sensor is turned off or nonexistent for some reason
881 return;
882 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000883 // Could have been invoked due to screen turning on or off or
884 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700885 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
886 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000887 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
888 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
889 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800890 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000891 // Note: We postpone the rotating of the screen until the keyguard as well as the
892 // window manager have reported a draw complete.
893 if (mScreenOnEarly && mAwake &&
894 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700895 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800896 disable = false;
897 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700898 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800899 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700900 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800901 mOrientationSensorEnabled = true;
902 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700903 }
904 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800905 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700906 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800907 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700908 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800909 mOrientationSensorEnabled = false;
910 }
911 }
912
Jeff Brown13f00f02014-10-31 14:45:50 -0700913 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
914 // Hold a wake lock until the power key is released.
915 if (!mPowerKeyWakeLock.isHeld()) {
916 mPowerKeyWakeLock.acquire();
917 }
918
919 // Cancel multi-press detection timeout.
920 if (mPowerKeyPressCounter != 0) {
921 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
922 }
923
924 // Detect user pressing the power button in panic when an application has
925 // taken over the whole screen.
926 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800927 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700928 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700929 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700930 }
931
932 // Latch power key state to detect screenshot chord.
933 if (interactive && !mScreenshotChordPowerKeyTriggered
934 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
935 mScreenshotChordPowerKeyTriggered = true;
936 mScreenshotChordPowerKeyTime = event.getDownTime();
937 interceptScreenshotChord();
938 }
939
940 // Stop ringing or end call if configured to do so when power is pressed.
941 TelecomManager telecomManager = getTelecommService();
942 boolean hungUp = false;
943 if (telecomManager != null) {
944 if (telecomManager.isRinging()) {
945 // Pressing Power while there's a ringing incoming
946 // call should silence the ringer.
947 telecomManager.silenceRinger();
948 } else if ((mIncallPowerBehavior
949 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
950 && telecomManager.isInCall() && interactive) {
951 // Otherwise, if "Power button ends call" is enabled,
952 // the Power button will hang up any current active call.
953 hungUp = telecomManager.endCall();
954 }
955 }
956
Adrian Roos5941c982015-09-03 15:59:49 -0700957 GestureLauncherService gestureService = LocalServices.getService(
958 GestureLauncherService.class);
959 boolean gesturedServiceIntercepted = false;
960 if (gestureService != null) {
961 gesturedServiceIntercepted = gestureService.interceptPowerKeyDown(event, interactive);
962 }
963
Jeff Brown13f00f02014-10-31 14:45:50 -0700964 // If the power key has still not yet been handled, then detect short
965 // press, long press, or multi press and decide what to do.
966 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
Adrian Roos5941c982015-09-03 15:59:49 -0700967 || mScreenshotChordVolumeUpKeyTriggered || gesturedServiceIntercepted;
Jeff Brown13f00f02014-10-31 14:45:50 -0700968 if (!mPowerKeyHandled) {
969 if (interactive) {
970 // When interactive, we're already awake.
971 // Wait for a long press or for the button to be released to decide what to do.
972 if (hasLongPressOnPowerBehavior()) {
973 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
974 msg.setAsynchronous(true);
975 mHandler.sendMessageDelayed(msg,
976 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
977 }
978 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800979 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800980
Bryce Leed3b28402015-03-09 15:49:13 +0000981 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
982 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
983 msg.setAsynchronous(true);
984 mHandler.sendMessageDelayed(msg,
985 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800986 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000987 } else {
988 final int maxCount = getMaxMultiPressPowerCount();
989
990 if (maxCount <= 1) {
991 mPowerKeyHandled = true;
992 } else {
993 mBeganFromNonInteractive = true;
994 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700995 }
996 }
Jeff Brown4d396052010-10-29 21:50:21 -0700997 }
998 }
999
Jeff Brown13f00f02014-10-31 14:45:50 -07001000 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
1001 final boolean handled = canceled || mPowerKeyHandled;
1002 mScreenshotChordPowerKeyTriggered = false;
1003 cancelPendingScreenshotChordAction();
1004 cancelPendingPowerKeyAction();
1005
1006 if (!handled) {
1007 // Figure out how to handle the key now that it has been released.
1008 mPowerKeyPressCounter += 1;
1009
1010 final int maxCount = getMaxMultiPressPowerCount();
1011 final long eventTime = event.getDownTime();
1012 if (mPowerKeyPressCounter < maxCount) {
1013 // This could be a multi-press. Wait a little bit longer to confirm.
1014 // Continue holding the wake lock.
1015 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
1016 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
1017 msg.setAsynchronous(true);
1018 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
1019 return;
1020 }
1021
1022 // No other actions. Handle it immediately.
1023 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -07001024 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001025
1026 // Done. Reset our state.
1027 finishPowerKeyPress();
1028 }
1029
1030 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -08001031 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001032 mPowerKeyPressCounter = 0;
1033 if (mPowerKeyWakeLock.isHeld()) {
1034 mPowerKeyWakeLock.release();
1035 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001036 }
1037
1038 private void cancelPendingPowerKeyAction() {
1039 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001040 mPowerKeyHandled = true;
1041 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001042 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001043 }
1044
1045 private void powerPress(long eventTime, boolean interactive, int count) {
1046 if (mScreenOnEarly && !mScreenOnFully) {
1047 Slog.i(TAG, "Suppressed redundant power key press while "
1048 + "already in the process of turning the screen on.");
1049 return;
Jeff Brownff204712011-10-25 21:27:54 -07001050 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001051
1052 if (count == 2) {
1053 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1054 } else if (count == 3) {
1055 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001056 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001057 switch (mShortPressOnPowerBehavior) {
1058 case SHORT_PRESS_POWER_NOTHING:
1059 break;
1060 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1061 mPowerManager.goToSleep(eventTime,
1062 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1063 break;
1064 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1065 mPowerManager.goToSleep(eventTime,
1066 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1067 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1068 break;
1069 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1070 mPowerManager.goToSleep(eventTime,
1071 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1072 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1073 launchHomeFromHotKey();
1074 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001075 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001076 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001077 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001078 }
1079 }
1080 }
1081
1082 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1083 switch (behavior) {
1084 case MULTI_PRESS_POWER_NOTHING:
1085 break;
1086 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001087 if (!isUserSetupComplete()) {
1088 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1089 break;
1090 }
1091
Jeff Brown13f00f02014-10-31 14:45:50 -07001092 if (isTheaterModeEnabled()) {
1093 Slog.i(TAG, "Toggling theater mode off.");
1094 Settings.Global.putInt(mContext.getContentResolver(),
1095 Settings.Global.THEATER_MODE_ON, 0);
1096 if (!interactive) {
1097 wakeUpFromPowerKey(eventTime);
1098 }
1099 } else {
1100 Slog.i(TAG, "Toggling theater mode on.");
1101 Settings.Global.putInt(mContext.getContentResolver(),
1102 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001103
1104 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001105 mPowerManager.goToSleep(eventTime,
1106 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1107 }
1108 }
1109 break;
1110 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001111 Slog.i(TAG, "Starting brightness boost.");
1112 if (!interactive) {
1113 wakeUpFromPowerKey(eventTime);
1114 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001115 mPowerManager.boostScreenBrightness(eventTime);
1116 break;
1117 }
1118 }
1119
1120 private int getMaxMultiPressPowerCount() {
1121 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1122 return 3;
1123 }
1124 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1125 return 2;
1126 }
1127 return 1;
1128 }
1129
1130 private void powerLongPress() {
1131 final int behavior = getResolvedLongPressOnPowerBehavior();
1132 switch (behavior) {
1133 case LONG_PRESS_POWER_NOTHING:
1134 break;
1135 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1136 mPowerKeyHandled = true;
1137 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1138 performAuditoryFeedbackForAccessibilityIfNeed();
1139 }
1140 showGlobalActionsInternal();
1141 break;
1142 case LONG_PRESS_POWER_SHUT_OFF:
1143 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1144 mPowerKeyHandled = true;
1145 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1146 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1147 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1148 break;
1149 }
1150 }
1151
Nick Vaccarob593a812015-05-15 11:23:05 -07001152 private void sleepPress(long eventTime) {
1153 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1154 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1155 }
1156 }
1157
1158 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001159 switch (mShortPressOnSleepBehavior) {
1160 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001161 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001162 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1163 mPowerManager.goToSleep(eventTime,
1164 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001165 break;
1166 }
1167 }
1168
Jeff Brown13f00f02014-10-31 14:45:50 -07001169 private int getResolvedLongPressOnPowerBehavior() {
1170 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1171 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1172 }
1173 return mLongPressOnPowerBehavior;
1174 }
1175
1176 private boolean hasLongPressOnPowerBehavior() {
1177 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001178 }
1179
1180 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001181 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001182 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1183 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001184 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001185 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1186 && now <= mScreenshotChordPowerKeyTime
1187 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1188 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001189 cancelPendingPowerKeyAction();
1190
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001191 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001192 }
1193 }
1194 }
1195
Winson Chung1cea2f32012-10-08 20:42:01 -07001196 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001197 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001198 // Double the time it takes to take a screenshot from the keyguard
1199 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001200 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001201 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001202 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001203 }
1204
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001205 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001206 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001207 }
1208
Jeff Brown13f00f02014-10-31 14:45:50 -07001209 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001210 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001211 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001212 mEndCallKeyHandled = true;
1213 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1214 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001215 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001216 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001217 }
1218 };
1219
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001220 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001221 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001222 public void run() {
1223 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001224 }
1225 };
1226
Alan Viverettee34560b22014-07-10 14:50:06 -07001227 @Override
1228 public void showGlobalActions() {
1229 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1230 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1231 }
1232
1233 void showGlobalActionsInternal() {
1234 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001235 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001236 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001237 }
Jim Millerab954542014-10-10 18:21:49 -07001238 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001239 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1240 if (keyguardShowing) {
1241 // since it took two seconds of long press to bring this up,
1242 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001243 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001244 }
1245 }
1246
1247 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001248 return Settings.Global.getInt(
1249 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001250 }
1251
Maurice Lam99c6e072014-04-28 18:24:28 -07001252 boolean isUserSetupComplete() {
1253 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1254 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1255 }
1256
Jeff Brown13f00f02014-10-31 14:45:50 -07001257 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001258 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1259 getHdmiControl().turnOnTv();
1260
Jeff Brown13f00f02014-10-31 14:45:50 -07001261 // If there's a dream running then use home to escape the dream
1262 // but don't actually go home.
1263 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1264 mDreamManagerInternal.stopDream(false /*immediate*/);
1265 return;
1266 }
1267
1268 // Go home!
1269 launchHomeFromHotKey();
1270 }
1271
Jinsuk Kime601b712015-07-07 08:01:02 +09001272 /**
1273 * Creates an accessor to HDMI control service that performs the operation of
1274 * turning on TV (optional) and switching input to us. If HDMI control service
1275 * is not available or we're not a HDMI playback device, the operation is no-op.
1276 */
1277 private HdmiControl getHdmiControl() {
1278 if (null == mHdmiControl) {
1279 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1280 Context.HDMI_CONTROL_SERVICE);
1281 HdmiPlaybackClient client = null;
1282 if (manager != null) {
1283 client = manager.getPlaybackClient();
1284 }
1285 mHdmiControl = new HdmiControl(client);
1286 }
1287 return mHdmiControl;
1288 }
1289
1290 private static class HdmiControl {
1291 private final HdmiPlaybackClient mClient;
1292
1293 private HdmiControl(HdmiPlaybackClient client) {
1294 mClient = client;
1295 }
1296
1297 public void turnOnTv() {
1298 if (mClient == null) {
1299 return;
1300 }
1301 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1302 @Override
1303 public void onComplete(int result) {
1304 if (result != HdmiControlManager.RESULT_SUCCESS) {
1305 Log.w(TAG, "One touch play failed: " + result);
1306 }
1307 }
1308 });
1309 }
1310 }
1311
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001312 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001313 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001314 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001315 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001316
Jeff Browncaca8812013-05-09 13:34:33 -07001317 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1318 toggleRecentApps();
1319 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001320 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001321 }
1322 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001323 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001324
Jeff Browncaca8812013-05-09 13:34:33 -07001325 private void handleDoubleTapOnHome() {
1326 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1327 mHomeConsumed = true;
1328 toggleRecentApps();
1329 }
1330 }
1331
1332 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1333 @Override
1334 public void run() {
1335 if (mHomeDoubleTapPending) {
1336 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001337 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001338 }
1339 }
1340 };
1341
Mark Renoufc1256912015-03-11 14:38:23 -04001342 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001343 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001344 }
1345
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001346 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001347 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001348 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001349 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001350 mContext = context;
1351 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001352 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001353 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001354 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001355 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Michael Wrighta4d22d72015-09-16 23:19:26 +01001356 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001357 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001358
1359 // Init display burn-in protection
1360 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1361 com.android.internal.R.bool.config_enableBurnInProtection);
1362 // Allow a system property to override this. Used by developer settings.
1363 boolean burnInProtectionDevMode =
1364 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1365 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1366 final int minHorizontal;
1367 final int maxHorizontal;
1368 final int minVertical;
1369 final int maxVertical;
1370 final int maxRadius;
1371 if (burnInProtectionDevMode) {
1372 minHorizontal = -8;
1373 maxHorizontal = 8;
1374 minVertical = -8;
1375 maxVertical = -4;
1376 maxRadius = (isRoundWindow()) ? 6 : -1;
1377 } else {
1378 Resources resources = context.getResources();
1379 minHorizontal = resources.getInteger(
1380 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1381 maxHorizontal = resources.getInteger(
1382 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1383 minVertical = resources.getInteger(
1384 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1385 maxVertical = resources.getInteger(
1386 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1387 maxRadius = resources.getInteger(
1388 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1389 }
1390 mBurnInProtectionHelper = new BurnInProtectionHelper(
1391 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001392 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001393
Jeff Brown70825162012-03-28 17:27:48 -07001394 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001395 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001396 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001397 try {
1398 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1399 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001400 mSettingsObserver = new SettingsObserver(mHandler);
1401 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001402 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001403 mUiMode = context.getResources().getInteger(
1404 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001405 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1406 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1407 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1408 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
keunyounga7710492015-09-23 11:33:58 -07001409 mEnableCarDockHomeCapture = context.getResources().getBoolean(
1410 com.android.internal.R.bool.config_enableCarDockHomeLaunch);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001411 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1412 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1413 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1414 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1415 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1416 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1417 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1418 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001419
Jeff Brown96307042012-07-27 15:51:34 -07001420 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1421 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001422 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001423 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1424 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001425 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001426 mSupportAutoRotation = mContext.getResources().getBoolean(
1427 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001428 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001429 com.android.internal.R.integer.config_lidOpenRotation);
1430 mCarDockRotation = readRotation(
1431 com.android.internal.R.integer.config_carDockRotation);
1432 mDeskDockRotation = readRotation(
1433 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001434 mUndockedHdmiRotation = readRotation(
1435 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001436 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1437 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1438 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1439 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001440 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1441 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1442 mLidNavigationAccessibility = mContext.getResources().getInteger(
1443 com.android.internal.R.integer.config_lidNavigationAccessibility);
Edward Savage-Jones7def60d2015-11-13 13:27:03 +01001444 mLidControlsScreenLock = mContext.getResources().getBoolean(
1445 com.android.internal.R.bool.config_lidControlsScreenLock);
Jeff Brownc458ce92012-04-30 14:58:40 -07001446 mLidControlsSleep = mContext.getResources().getBoolean(
1447 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001448 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1449 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001450
1451 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1452 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1453 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1454 || mContext.getResources().getBoolean(
1455 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1456 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1457 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001458 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1459 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001460 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1461 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1462 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1463 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1464 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1465 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1466
Bryce Lee55e846d2014-11-04 12:43:44 -08001467 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1468 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1469
Bryce Leed3b28402015-03-09 15:49:13 +00001470 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1471 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1472
Jeff Brown13f00f02014-10-31 14:45:50 -07001473 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1474 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1475 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1476 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1477 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1478 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1479 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1480 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001481 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1482 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001483
John Spurlock61560172015-02-06 19:46:04 -05001484 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001485
Jeff Brownf71343d2013-05-31 17:59:11 -07001486 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001487
Svetoslav8e3feb12014-02-24 13:46:47 -08001488 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1489 Context.ACCESSIBILITY_SERVICE);
1490
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001491 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001492 IntentFilter filter = new IntentFilter();
1493 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1494 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1495 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1496 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001497 filter.addAction(Intent.ACTION_DOCK_EVENT);
1498 Intent intent = context.registerReceiver(mDockReceiver, filter);
1499 if (intent != null) {
1500 // Retrieve current sticky dock event broadcast.
1501 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1502 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1503 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001504
Jeff Brown6aaf2952012-10-05 16:01:08 -07001505 // register for dream-related broadcasts
1506 filter = new IntentFilter();
1507 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1508 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1509 context.registerReceiver(mDreamReceiver, filter);
1510
Christopher Tate5e08af02012-09-21 17:17:22 -07001511 // register for multiuser-relevant broadcasts
1512 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1513 context.registerReceiver(mMultiuserReceiver, filter);
1514
John Spurlock57306e62013-04-22 09:48:49 -04001515 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001516 mSystemGestures = new SystemGesturesPointerEventListener(context,
1517 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001518 @Override
1519 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001520 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001521 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001522 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001523 }
1524 @Override
1525 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001526 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001527 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001528 }
1529 }
1530 @Override
1531 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001532 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001533 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001534 }
1535 }
1536 @Override
Michael Wrighta4d22d72015-09-16 23:19:26 +01001537 public void onFling(int duration) {
1538 if (mPowerManagerInternal != null) {
1539 mPowerManagerInternal.powerHint(
1540 PowerManagerInternal.POWER_HINT_INTERACTION, duration);
1541 }
1542 }
1543 @Override
John Spurlockad3e6cb2013-04-30 08:47:43 -04001544 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001545 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001546 }
Adrian Roos3595be42015-03-05 16:31:15 +01001547 @Override
1548 public void onDown() {
1549 mOrientationListener.onTouchStart();
1550 }
1551 @Override
1552 public void onUpOrCancel() {
1553 mOrientationListener.onTouchEnd();
1554 }
Jun Mukaid2e7e352015-07-22 17:14:02 -07001555 @Override
1556 public void onMouseHoverAtTop() {
1557 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1558 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1559 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS;
1560 mHandler.sendMessageDelayed(msg, 500);
1561 }
1562 @Override
1563 public void onMouseHoverAtBottom() {
1564 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1565 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1566 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION;
1567 mHandler.sendMessageDelayed(msg, 500);
1568 }
1569 @Override
1570 public void onMouseLeaveFromEdge() {
1571 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1572 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001573 });
John Spurlockf1a36642013-10-12 17:50:42 -04001574 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001575 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001576
Jeff Brownc2346132012-04-13 01:55:38 -07001577 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001578 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1579 com.android.internal.R.array.config_longPressVibePattern);
1580 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1581 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001582 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1583 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001584 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1585 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001586 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1587 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001588 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1589 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1590 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1591 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001592 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1593 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001594
Christopher Tatee90585f2012-03-05 18:56:25 -08001595 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1596 com.android.internal.R.bool.config_enableScreenshotChord);
Jorim Jaggi406585a2015-12-21 10:58:56 +01001597 mForceWindowDrawsStatusBarBackground = mContext.getResources().getBoolean(
1598 R.bool.config_forceWindowDrawsStatusBarBackground);
Christopher Tatee90585f2012-03-05 18:56:25 -08001599
Justin Kohd378ad72013-04-01 12:18:26 -07001600 mGlobalKeyManager = new GlobalKeyManager(mContext);
1601
Joe Onoratoea495d42011-04-06 11:41:11 -07001602 // Controls rotation and the like.
1603 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001604
1605 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001606 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001607 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1608 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001609 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001610
1611 mWindowManagerInternal.registerAppTransitionListener(
1612 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001613 }
1614
Jeff Brownf71343d2013-05-31 17:59:11 -07001615 /**
1616 * Read values from config.xml that may be overridden depending on
1617 * the configuration of the device.
1618 * eg. Disable long press on home goes to recents on sw600dp.
1619 */
1620 private void readConfigurationDependentBehaviors() {
1621 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1622 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1623 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1624 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1625 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1626 }
1627
1628 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1629 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1630 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1631 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1632 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1633 }
1634 }
1635
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001636 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001637 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001638 // This method might be called before the policy has been fully initialized
1639 // or for other displays we don't care about.
1640 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1641 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001642 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001643 mDisplay = display;
1644
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001645 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001646 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001647 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001648 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001649 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001650 mLandscapeRotation = Surface.ROTATION_0;
1651 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001652 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001653 mPortraitRotation = Surface.ROTATION_90;
1654 mUpsideDownRotation = Surface.ROTATION_270;
1655 } else {
1656 mPortraitRotation = Surface.ROTATION_270;
1657 mUpsideDownRotation = Surface.ROTATION_90;
1658 }
1659 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001660 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001661 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001662 mPortraitRotation = Surface.ROTATION_0;
1663 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001664 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001665 mLandscapeRotation = Surface.ROTATION_270;
1666 mSeascapeRotation = Surface.ROTATION_90;
1667 } else {
1668 mLandscapeRotation = Surface.ROTATION_90;
1669 mSeascapeRotation = Surface.ROTATION_270;
1670 }
1671 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001672
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001673 mStatusBarHeight =
1674 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001675
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001676 // Height of the navigation bar when presented horizontally at bottom
1677 mNavigationBarHeightForRotation[mPortraitRotation] =
1678 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001679 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001680 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001681 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1682 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001683
1684 // Width of the navigation bar when presented vertically along one side
1685 mNavigationBarWidthForRotation[mPortraitRotation] =
1686 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1687 mNavigationBarWidthForRotation[mLandscapeRotation] =
1688 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001689 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001690
1691 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001692 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001693 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001694
Devin Kimd7b12b42014-05-05 14:34:58 -07001695 // Allow the navigation bar to move on non-square small devices (phones).
1696 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001697
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001698 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001699 // Allow a system property to override this. Used by the emulator.
1700 // See also hasNavigationBar().
1701 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1702 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001703 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001704 } else if ("0".equals(navBarOverride)) {
1705 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001706 }
1707
Jeff Brown27f1d672012-10-17 18:32:34 -07001708 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1709 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001710 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001711 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001712 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001713 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001714 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001715 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001716
Chong Zhangae6119ff2014-11-11 18:54:39 -08001717 // For demo purposes, allow the rotation of the remote display to be controlled.
1718 // By default, remote display locks rotation to landscape.
1719 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1720 mDemoRotation = mPortraitRotation;
1721 } else {
1722 mDemoRotation = mLandscapeRotation;
1723 }
1724 mDemoRotationLock = SystemProperties.getBoolean(
1725 "persist.demo.rotationlock", false);
1726
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001727 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1728 // http://developer.android.com/guide/practices/screens_support.html#range
1729 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1730 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1731 // For debug purposes the next line turns this feature off with:
1732 // $ adb shell setprop config.override_forced_orient true
1733 // $ adb shell wm size reset
1734 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1735 }
1736
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001737 /**
1738 * @return whether the navigation bar can be hidden, e.g. the device has a
1739 * navigation bar and touch exploration is not enabled
1740 */
1741 private boolean canHideNavigationBar() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04001742 return mHasNavigationBar;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001743 }
1744
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001745 @Override
1746 public boolean isDefaultOrientationForced() {
1747 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001748 }
1749
Dianne Hackbornc652de82013-02-15 16:32:56 -08001750 @Override
1751 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1752 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1753 mOverscanLeft = left;
1754 mOverscanTop = top;
1755 mOverscanRight = right;
1756 mOverscanBottom = bottom;
1757 }
1758 }
1759
Dianne Hackbornc777e072010-02-12 13:07:59 -08001760 public void updateSettings() {
1761 ContentResolver resolver = mContext.getContentResolver();
1762 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001763 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001764 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001765 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001766 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1767 UserHandle.USER_CURRENT);
1768 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001769 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001770 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1771 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001772
Jeff Browna20dda42014-05-27 20:57:24 -07001773 // Configure wake gesture.
1774 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1775 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1776 UserHandle.USER_CURRENT) != 0;
1777 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1778 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1779 updateWakeGestureListenerLp();
1780 }
1781
Jeff Brown207673cd2012-06-05 17:47:11 -07001782 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001783 int userRotation = Settings.System.getIntForUser(resolver,
1784 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1785 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001786 if (mUserRotation != userRotation) {
1787 mUserRotation = userRotation;
1788 updateRotation = true;
1789 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001790 int userRotationMode = Settings.System.getIntForUser(resolver,
1791 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001792 WindowManagerPolicy.USER_ROTATION_FREE :
1793 WindowManagerPolicy.USER_ROTATION_LOCKED;
1794 if (mUserRotationMode != userRotationMode) {
1795 mUserRotationMode = userRotationMode;
1796 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001797 updateOrientationListenerLp();
1798 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001799
Dianne Hackbornc777e072010-02-12 13:07:59 -08001800 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001801 int pointerLocation = Settings.System.getIntForUser(resolver,
1802 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001803 if (mPointerLocationMode != pointerLocation) {
1804 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001805 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1806 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001807 }
1808 }
1809 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001810 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1811 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1812 String imId = Settings.Secure.getStringForUser(resolver,
1813 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001814 boolean hasSoftInput = imId != null && imId.length() > 0;
1815 if (mHasSoftInput != hasSoftInput) {
1816 mHasSoftInput = hasSoftInput;
1817 updateRotation = true;
1818 }
John Spurlockf1a36642013-10-12 17:50:42 -04001819 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001820 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001821 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001822 }
1823 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001824 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001825 }
1826 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001827 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001828 }
Jeff Brown70825162012-03-28 17:27:48 -07001829 }
1830
Jeff Browna20dda42014-05-27 20:57:24 -07001831 private void updateWakeGestureListenerLp() {
1832 if (shouldEnableWakeGestureLp()) {
1833 mWakeGestureListener.requestWakeUpTrigger();
1834 } else {
1835 mWakeGestureListener.cancelWakeUpTrigger();
1836 }
1837 }
1838
1839 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001840 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001841 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1842 && mWakeGestureListener.isSupported();
1843 }
1844
Jeff Brown70825162012-03-28 17:27:48 -07001845 private void enablePointerLocation() {
1846 if (mPointerLocationView == null) {
1847 mPointerLocationView = new PointerLocationView(mContext);
1848 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001849 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1850 WindowManager.LayoutParams.MATCH_PARENT,
1851 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001852 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001853 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1854 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1855 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1856 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001857 if (ActivityManager.isHighEndGfx()) {
1858 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1859 lp.privateFlags |=
1860 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1861 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001862 lp.format = PixelFormat.TRANSLUCENT;
1863 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001864 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001865 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001866 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001867 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001868 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001869 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001870 }
Jeff Brown70825162012-03-28 17:27:48 -07001871
1872 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001873 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001874 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1875 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001876 wm.removeView(mPointerLocationView);
1877 mPointerLocationView = null;
1878 }
1879 }
1880
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001881 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001882 try {
1883 int rotation = mContext.getResources().getInteger(resID);
1884 switch (rotation) {
1885 case 0:
1886 return Surface.ROTATION_0;
1887 case 90:
1888 return Surface.ROTATION_90;
1889 case 180:
1890 return Surface.ROTATION_180;
1891 case 270:
1892 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001893 }
1894 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001895 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001896 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001897 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001898 }
1899
1900 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001901 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001902 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001903 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001904
1905 outAppOp[0] = AppOpsManager.OP_NONE;
1906
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001907 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1908 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1909 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1910 return WindowManagerGlobal.ADD_INVALID_TYPE;
1911 }
1912
1913 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1914 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001915 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001916 }
1917 String permission = null;
1918 switch (type) {
1919 case TYPE_TOAST:
1920 // XXX right now the app process has complete control over
1921 // this... should introduce a token to let the system
1922 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001923 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001924 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001925 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001926 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001927 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001928 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001929 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001930 case TYPE_ACCESSIBILITY_OVERLAY:
Jason Monk8f7f3182015-11-18 16:35:14 -05001931 case TYPE_QS_DIALOG:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001932 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001933 break;
1934 case TYPE_PHONE:
1935 case TYPE_PRIORITY_PHONE:
1936 case TYPE_SYSTEM_ALERT:
1937 case TYPE_SYSTEM_ERROR:
1938 case TYPE_SYSTEM_OVERLAY:
1939 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001940 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001941 break;
1942 default:
1943 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1944 }
1945 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001946 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1947 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01001948 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01001949 if (callingUid == Process.SYSTEM_UID) {
1950 return WindowManagerGlobal.ADD_OKAY;
1951 }
1952
Billy Lau060275f2015-07-15 22:29:19 +01001953 // check if user has enabled this operation. SecurityException will be thrown if
1954 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01001955 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1956 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01001957 switch (mode) {
1958 case AppOpsManager.MODE_ALLOWED:
1959 case AppOpsManager.MODE_IGNORED:
1960 // although we return ADD_OKAY for MODE_IGNORED, the added window will
1961 // actually be hidden in WindowManagerService
1962 return WindowManagerGlobal.ADD_OKAY;
1963 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01001964 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01001965 default:
1966 // in the default mode, we will make a decision here based on
1967 // checkCallingPermission()
1968 if (mContext.checkCallingPermission(permission) !=
1969 PackageManager.PERMISSION_GRANTED) {
1970 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1971 } else {
1972 return WindowManagerGlobal.ADD_OKAY;
1973 }
Billy Laucbe540f2015-06-25 01:51:44 +01001974 }
Billy Laucbe540f2015-06-25 01:51:44 +01001975 }
1976
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001977 if (mContext.checkCallingOrSelfPermission(permission)
1978 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001979 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001980 }
1981 }
Jeff Brown98365d72012-08-19 20:30:52 -07001982 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001983 }
Craig Mautner88400d32012-09-30 12:35:45 -07001984
1985 @Override
1986 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1987
1988 // If this switch statement is modified, modify the comment in the declarations of
1989 // the type in {@link WindowManager.LayoutParams} as well.
1990 switch (attrs.type) {
1991 default:
1992 // These are the windows that by default are shown only to the user that created
1993 // them. If this needs to be overridden, set
1994 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1995 // {@link WindowManager.LayoutParams}. Note that permission
1996 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1997 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1998 return true;
1999 }
2000 break;
2001
2002 // These are the windows that by default are shown to all users. However, to
2003 // protect against spoofing, check permissions below.
2004 case TYPE_APPLICATION_STARTING:
2005 case TYPE_BOOT_PROGRESS:
2006 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07002007 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08002008 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07002009 case TYPE_KEYGUARD_DIALOG:
2010 case TYPE_MAGNIFICATION_OVERLAY:
2011 case TYPE_NAVIGATION_BAR:
2012 case TYPE_NAVIGATION_BAR_PANEL:
2013 case TYPE_PHONE:
2014 case TYPE_POINTER:
2015 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07002016 case TYPE_SEARCH_BAR:
2017 case TYPE_STATUS_BAR:
2018 case TYPE_STATUS_BAR_PANEL:
2019 case TYPE_STATUS_BAR_SUB_PANEL:
2020 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07002021 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07002022 case TYPE_PRIVATE_PRESENTATION:
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002023 case TYPE_DOCK_DIVIDER:
Craig Mautner88400d32012-09-30 12:35:45 -07002024 break;
2025 }
2026
2027 // Check if third party app has set window to system window type.
2028 return mContext.checkCallingOrSelfPermission(
2029 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
2030 != PackageManager.PERMISSION_GRANTED;
2031 }
2032
Craig Mautner967212c2013-04-13 21:10:58 -07002033 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002034 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
2035 switch (attrs.type) {
2036 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07002037 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002038 // These types of windows can't receive input events.
2039 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
2040 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07002041 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002042 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002043 case TYPE_STATUS_BAR:
2044
2045 // If the Keyguard is in a hidden state (occluded by another window), we force to
2046 // remove the wallpaper and keyguard flag so that any change in-flight after setting
2047 // the keyguard as occluded wouldn't set these flags again.
2048 // See {@link #processKeyguardSetHiddenResultLw}.
2049 if (mKeyguardHidden) {
2050 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2051 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2052 }
2053 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002054 }
Adrian Roos38502112014-04-09 21:04:11 +02002055
2056 if (attrs.type != TYPE_STATUS_BAR) {
2057 // The status bar is the only window allowed to exhibit keyguard behavior.
2058 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2059 }
Adrian Roosea562512014-05-05 13:33:03 +02002060
Jorim Jaggi4fa78922015-11-30 17:13:56 -08002061 if (ActivityManager.isHighEndGfx()) {
2062 if ((attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
2063 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
2064 }
2065 if ((attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0
Jorim Jaggi406585a2015-12-21 10:58:56 +01002066 || (mForceWindowDrawsStatusBarBackground
2067 && attrs.height == MATCH_PARENT && attrs.width == MATCH_PARENT)) {
Jorim Jaggi4fa78922015-11-30 17:13:56 -08002068 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
2069 }
Adrian Roosea562512014-05-05 13:33:03 +02002070 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002071 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002072
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002073 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07002074 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002075 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002076
Michael Wright3818c922014-09-02 13:59:07 -07002077 private void readCameraLensCoverState() {
2078 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2079 }
2080
Jeff Browndaa37532012-05-01 15:54:03 -07002081 private boolean isHidden(int accessibilityMode) {
2082 switch (accessibilityMode) {
2083 case 1:
2084 return mLidState == LID_CLOSED;
2085 case 2:
2086 return mLidState == LID_OPEN;
2087 default:
2088 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002089 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002090 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002091
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002092 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002093 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002094 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2095 int navigationPresence) {
2096 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2097
Jeff Brownf71343d2013-05-31 17:59:11 -07002098 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002099 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002100 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002101
Jeff Browndaa37532012-05-01 15:54:03 -07002102 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2103 || (keyboardPresence == PRESENCE_INTERNAL
2104 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002105 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002106 if (!mHasSoftInput) {
2107 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2108 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002109 }
2110
Jeff Browndaa37532012-05-01 15:54:03 -07002111 if (config.navigation == Configuration.NAVIGATION_NONAV
2112 || (navigationPresence == PRESENCE_INTERNAL
2113 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002114 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002115 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002116 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002117
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002118 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002119 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002120 public int windowTypeToLayerLw(int type) {
2121 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002122 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002123 }
2124 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002125 case TYPE_PRIVATE_PRESENTATION:
2126 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002127 case TYPE_WALLPAPER:
2128 // wallpaper is at the bottom, though the window manager may move it.
2129 return 2;
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002130 case TYPE_DOCK_DIVIDER:
2131 return 2;
Jason Monk8f7f3182015-11-18 16:35:14 -05002132 case TYPE_QS_DIALOG:
2133 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002134 case TYPE_PHONE:
2135 return 3;
2136 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002137 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002138 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002139 case TYPE_VOICE_INTERACTION:
2140 // voice interaction layer is almost immediately above apps.
2141 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002142 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002143 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002144 case TYPE_SYSTEM_DIALOG:
2145 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002146 case TYPE_TOAST:
2147 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002148 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002149 case TYPE_PRIORITY_PHONE:
2150 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002151 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002152 case TYPE_DREAM:
2153 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002154 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002155 case TYPE_SYSTEM_ALERT:
2156 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002157 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002158 case TYPE_INPUT_METHOD:
2159 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002160 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002161 case TYPE_INPUT_METHOD_DIALOG:
2162 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002163 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002164 case TYPE_KEYGUARD_SCRIM:
2165 // the safety window that shows behind keyguard while keyguard is starting
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002166 return 14;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002167 case TYPE_STATUS_BAR_SUB_PANEL:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002168 return 15;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002169 case TYPE_STATUS_BAR:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002170 return 16;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002171 case TYPE_STATUS_BAR_PANEL:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002172 return 17;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002173 case TYPE_KEYGUARD_DIALOG:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002174 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002175 case TYPE_VOLUME_OVERLAY:
2176 // the on-screen volume indicator and controller shown when the user
2177 // changes the device volume
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002178 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002179 case TYPE_SYSTEM_OVERLAY:
2180 // the on-screen volume indicator and controller shown when the user
2181 // changes the device volume
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002182 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002183 case TYPE_NAVIGATION_BAR:
2184 // the navigation bar, if available, shows atop most things
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002185 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002186 case TYPE_NAVIGATION_BAR_PANEL:
2187 // some panels (e.g. search) need to show on top of the navigation bar
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002188 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002189 case TYPE_SYSTEM_ERROR:
2190 // system-level error dialogs
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002191 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002192 case TYPE_MAGNIFICATION_OVERLAY:
2193 // used to highlight the magnified portion of a display
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002194 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002195 case TYPE_DISPLAY_OVERLAY:
2196 // used to simulate secondary display devices
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002197 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002198 case TYPE_DRAG:
2199 // the drag layer: input for drag-and-drop is associated with this window,
2200 // which sits above all other focusable windows
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002201 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002202 case TYPE_ACCESSIBILITY_OVERLAY:
2203 // overlay put by accessibility services to intercept user interaction
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002204 return 27;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002205 case TYPE_SECURE_SYSTEM_OVERLAY:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002206 return 28;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002207 case TYPE_BOOT_PROGRESS:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002208 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002209 case TYPE_POINTER:
2210 // the (mouse) pointer layer
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002211 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002212 }
2213 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002214 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002215 }
2216
2217 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002218 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002219 public int subWindowTypeToLayerLw(int type) {
2220 switch (type) {
2221 case TYPE_APPLICATION_PANEL:
2222 case TYPE_APPLICATION_ATTACHED_DIALOG:
2223 return APPLICATION_PANEL_SUBLAYER;
2224 case TYPE_APPLICATION_MEDIA:
2225 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002226 case TYPE_APPLICATION_MEDIA_OVERLAY:
2227 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002228 case TYPE_APPLICATION_SUB_PANEL:
2229 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002230 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2231 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002232 }
2233 Log.e(TAG, "Unknown sub-window type: " + type);
2234 return 0;
2235 }
2236
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002237 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002238 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002239 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002240 }
2241
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002242 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002243 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002244 if (mHasNavigationBar) {
2245 // For a basic navigation bar, when we are in landscape mode we place
2246 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002247 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2248 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002249 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002250 }
2251 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002252 }
2253
Jose Lima9546b202014-07-02 17:21:51 -07002254 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002255 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002256 if (mHasNavigationBar) {
2257 // For a basic navigation bar, when we are in portrait mode we place
2258 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002259 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2260 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002261 }
2262 }
2263 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002264 }
2265
Jose Lima9546b202014-07-02 17:21:51 -07002266 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002267 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2268 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002269 }
2270
Jose Lima9546b202014-07-02 17:21:51 -07002271 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002272 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002273 // There is a separate status bar at the top of the display. We don't count that as part
2274 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002275 // we do want to exclude it since applications can't generally use that part
2276 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002277 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002278 }
2279
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002280 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002281 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2282 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002283 (isKeyguardHostWindow(attrs) &&
2284 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002285 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002286 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002287
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002288 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002289 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2290 return attrs.type == TYPE_STATUS_BAR;
2291 }
2292
2293 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002294 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002295 switch (attrs.type) {
2296 case TYPE_STATUS_BAR:
2297 case TYPE_NAVIGATION_BAR:
2298 case TYPE_WALLPAPER:
2299 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002300 case TYPE_KEYGUARD_SCRIM:
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002301 case TYPE_DOCK_DIVIDER:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002302 return false;
2303 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002304 // Hide only windows below the keyguard host window.
2305 return windowTypeToLayerLw(win.getBaseType())
2306 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002307 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002308 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002309
Craig Mautner7d7808f2014-09-11 18:02:38 -07002310 @Override
2311 public WindowState getWinShowWhenLockedLw() {
2312 return mWinShowWhenLocked;
2313 }
2314
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002315 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002316 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002317 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2318 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002319 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002320 if (!SHOW_STARTING_ANIMATIONS) {
2321 return null;
2322 }
2323 if (packageName == null) {
2324 return null;
2325 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002326
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002327 WindowManager wm = null;
2328 View view = null;
2329
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002330 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002331 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002332 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2333 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2334 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002335 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002336 try {
2337 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002338 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002339 } catch (PackageManager.NameNotFoundException e) {
2340 // Ignore
2341 }
2342 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002343
Jorim Jaggia16cc152015-06-01 16:55:05 -07002344 PhoneWindow win = new PhoneWindow(context);
2345 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002346
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002347 Resources r = context.getResources();
2348 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002349
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002350 win.setType(
2351 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002352
2353 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2354 // Assumes it's safe to show starting windows of launched apps while
2355 // the keyguard is being hidden. This is okay because starting windows never show
2356 // secret information.
2357 if (mKeyguardHidden) {
2358 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2359 }
2360 }
2361
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002362 // Force the window flags: this is a fake window, so it is not really
2363 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2364 // flag because we do know that the next window will take input
2365 // focus, so we want to get the IME window up on top of us right away.
2366 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002367 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002368 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2369 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2370 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002371 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002372 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2373 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2374 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002375
Adam Powell04fe6eb2013-05-31 14:39:48 -07002376 win.setDefaultIcon(icon);
2377 win.setDefaultLogo(logo);
2378
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002379 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002380 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002381
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002382 final WindowManager.LayoutParams params = win.getAttributes();
2383 params.token = appToken;
2384 params.packageName = packageName;
2385 params.windowAnimations = win.getWindowStyle().getResourceId(
2386 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002387 params.privateFlags |=
2388 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002389 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002390
2391 if (!compatInfo.supportsScreen()) {
2392 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2393 }
2394
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002395 params.setTitle("Starting " + packageName);
2396
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002397 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2398 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002399
Craig Mautner6fbda632012-07-03 09:26:39 -07002400 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002401 TAG, "Adding starting window for " + packageName
2402 + " / " + appToken + ": "
2403 + (view.getParent() != null ? view : null));
2404
2405 wm.addView(view, params);
2406
2407 // Only return the view if it was successfully added to the
2408 // window manager... which we can tell by it having a parent.
2409 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002410 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002411 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002412 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2413 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002414 } catch (RuntimeException e) {
2415 // don't crash if something else bad happens, for example a
2416 // failure loading resources because we are loading from an app
2417 // on external storage that has been unmounted.
2418 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002419 } finally {
2420 if (view != null && view.getParent() == null) {
2421 Log.w(TAG, "view not successfully added to wm, removing view");
2422 wm.removeViewImmediate(view);
2423 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002424 }
2425
2426 return null;
2427 }
2428
2429 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002430 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002431 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002432 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2433 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002434
2435 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002436 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002437 wm.removeView(window);
2438 }
2439 }
2440
2441 /**
2442 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002443 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002444 * Currently enforces that three window types are singletons:
2445 * <ul>
2446 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002447 * <li>KEYGUARD_TYPE</li>
2448 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002449 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002450 * @param win The window to be added
2451 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002452 *
Jeff Brown98365d72012-08-19 20:30:52 -07002453 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2454 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002455 */
Jose Lima9546b202014-07-02 17:21:51 -07002456 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002457 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2458 switch (attrs.type) {
2459 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002460 mContext.enforceCallingOrSelfPermission(
2461 android.Manifest.permission.STATUS_BAR_SERVICE,
2462 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002463 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002464 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002465 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002466 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002467 }
2468 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002469 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002470 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002471 case TYPE_NAVIGATION_BAR:
2472 mContext.enforceCallingOrSelfPermission(
2473 android.Manifest.permission.STATUS_BAR_SERVICE,
2474 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002475 if (mNavigationBar != null) {
2476 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002477 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002478 }
2479 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002480 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002481 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002482 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002483 break;
Jim Millere898ac52012-04-06 17:10:57 -07002484 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002485 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002486 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002487 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002488 mContext.enforceCallingOrSelfPermission(
2489 android.Manifest.permission.STATUS_BAR_SERVICE,
2490 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002491 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002492 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002493 if (mKeyguardScrim != null) {
2494 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2495 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002496 mKeyguardScrim = win;
2497 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002498 }
Jeff Brown98365d72012-08-19 20:30:52 -07002499 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002500 }
2501
2502 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002503 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002504 public void removeWindowLw(WindowState win) {
2505 if (mStatusBar == win) {
2506 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002507 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002508 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002509 } else if (mKeyguardScrim == win) {
2510 Log.v(TAG, "Removing keyguard scrim");
2511 mKeyguardScrim = null;
2512 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002513 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002514 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002515 }
2516 }
2517
2518 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002519
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002520 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002521 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002522 public int selectAnimationLw(WindowState win, int transit) {
2523 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2524 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002525 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002526 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002527 if (transit == TRANSIT_EXIT
2528 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002529 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002530 } else if (transit == TRANSIT_ENTER
2531 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002532 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002533 }
2534 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002535 if (win.getAttrs().windowAnimations != 0) {
2536 return 0;
2537 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002538 // This can be on either the bottom or the right.
2539 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002540 if (transit == TRANSIT_EXIT
2541 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002542 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002543 } else if (transit == TRANSIT_ENTER
2544 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002545 return R.anim.dock_bottom_enter;
2546 }
2547 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002548 if (transit == TRANSIT_EXIT
2549 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002550 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002551 } else if (transit == TRANSIT_ENTER
2552 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002553 return R.anim.dock_right_enter;
2554 }
2555 }
Filip Gruszczynski57f76f12015-11-04 16:10:54 -08002556 } else if (win.getAttrs().type == TYPE_DOCK_DIVIDER) {
Filip Gruszczynski64cdc142015-11-29 21:10:07 -08002557 if (transit == TRANSIT_ENTER || transit == TRANSIT_SHOW) {
Filip Gruszczynski57f76f12015-11-04 16:10:54 -08002558 return R.anim.fade_in;
2559 } else if (transit == TRANSIT_EXIT) {
2560 return R.anim.fade_out;
2561 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002562 }
2563
2564 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002565 if (win.hasAppShownWindows()) {
2566 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2567 return com.android.internal.R.anim.app_starting_exit;
2568 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002569 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002570 && transit == TRANSIT_ENTER) {
2571 // Special case: we are animating in a dream, while the keyguard
2572 // is shown. We don't want an animation on the dream, because
2573 // we need it shown immediately with the keyguard animating away
2574 // to reveal it.
2575 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002576 }
2577
2578 return 0;
2579 }
2580
Craig Mautner3c174372013-02-21 17:54:37 -08002581 @Override
2582 public void selectRotationAnimationLw(int anim[]) {
2583 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2584 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2585 + (mTopFullscreenOpaqueWindowState == null ?
2586 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2587 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2588 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2589 case ROTATION_ANIMATION_CROSSFADE:
2590 anim[0] = R.anim.rotation_animation_xfade_exit;
2591 anim[1] = R.anim.rotation_animation_enter;
2592 break;
2593 case ROTATION_ANIMATION_JUMPCUT:
2594 anim[0] = R.anim.rotation_animation_jump_exit;
2595 anim[1] = R.anim.rotation_animation_enter;
2596 break;
2597 case ROTATION_ANIMATION_ROTATE:
2598 default:
2599 anim[0] = anim[1] = 0;
2600 break;
2601 }
2602 } else {
2603 anim[0] = anim[1] = 0;
2604 }
2605 }
2606
2607 @Override
2608 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2609 boolean forceDefault) {
2610 switch (exitAnimId) {
2611 case R.anim.rotation_animation_xfade_exit:
2612 case R.anim.rotation_animation_jump_exit:
2613 // These are the only cases that matter.
2614 if (forceDefault) {
2615 return false;
2616 }
2617 int anim[] = new int[2];
2618 selectRotationAnimationLw(anim);
2619 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2620 default:
2621 return true;
2622 }
2623 }
2624
2625 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002626 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2627 boolean goingToNotificationShade) {
2628 if (goingToNotificationShade) {
2629 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002630 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002631
2632 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2633 R.anim.lock_screen_behind_enter_wallpaper :
2634 R.anim.lock_screen_behind_enter);
2635
2636 // TODO: Use XML interpolators when we have log interpolators available in XML.
2637 final List<Animation> animations = set.getAnimations();
2638 for (int i = animations.size() - 1; i >= 0; --i) {
2639 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2640 }
2641
2642 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002643 }
2644
2645
2646 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002647 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2648 if (goingToNotificationShade) {
2649 return null;
2650 } else {
2651 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2652 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002653 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002654
2655 private static void awakenDreams() {
2656 IDreamManager dreamManager = getDreamManager();
2657 if (dreamManager != null) {
2658 try {
2659 dreamManager.awaken();
2660 } catch (RemoteException e) {
2661 // fine, stay asleep then
2662 }
2663 }
2664 }
2665
2666 static IDreamManager getDreamManager() {
2667 return IDreamManager.Stub.asInterface(
2668 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2669 }
2670
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002671 TelecomManager getTelecommService() {
2672 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002673 }
2674
Jeff Brown4d396052010-10-29 21:50:21 -07002675 static IAudioService getAudioService() {
2676 IAudioService audioService = IAudioService.Stub.asInterface(
2677 ServiceManager.checkService(Context.AUDIO_SERVICE));
2678 if (audioService == null) {
2679 Log.w(TAG, "Unable to find IAudioService interface.");
2680 }
2681 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002682 }
2683
2684 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002685 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002686 }
2687
2688 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2689 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2690 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2691 };
2692
2693 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002694 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002695 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002696 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002697 final int keyCode = event.getKeyCode();
2698 final int repeatCount = event.getRepeatCount();
2699 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002700 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002701 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2702 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002703
Jeff Brown40013652012-05-16 21:22:36 -07002704 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002705 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002706 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2707 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002708 }
2709
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002710 // If we think we might have a volume down & power key chord on the way
2711 // but we're not sure, then tell the dispatcher to wait a little while and
2712 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002713 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002714 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002715 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002716 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2717 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002718 if (now < timeoutTime) {
2719 return timeoutTime - now;
2720 }
2721 }
2722 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002723 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002724 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002725 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002726 }
2727 return -1;
2728 }
2729 }
2730
Michael Wright6a62e552014-06-03 19:19:48 -07002731 // Cancel any pending meta actions if we see any other keys being pressed between the down
2732 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002733 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002734 mPendingMetaAction = false;
2735 }
2736
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002737 // First we always handle the home key here, so applications
2738 // can never break it, although if keyguard is on, we do let
2739 // it handle it, because that gives us the correct 5 second
2740 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002741 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002742
Jeff Brown49ed71d2010-12-06 17:13:33 -08002743 // If we have released the home key, and didn't do anything else
2744 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002745 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002746 cancelPreloadRecentApps();
2747
Jeff Brown49ed71d2010-12-06 17:13:33 -08002748 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002749 if (mHomeConsumed) {
2750 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002751 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002752 }
Jeff Browncaca8812013-05-09 13:34:33 -07002753
2754 if (canceled) {
2755 Log.i(TAG, "Ignoring HOME; event canceled.");
2756 return -1;
2757 }
2758
Yorke Lee4f803242014-12-15 23:22:06 +00002759 // If an incoming call is ringing, HOME is totally disabled.
2760 // (The user is already on the InCallUI at this point,
2761 // and his ONLY options are to answer or reject the call.)
2762 TelecomManager telecomManager = getTelecommService();
2763 if (telecomManager != null && telecomManager.isRinging()) {
2764 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2765 return -1;
2766 }
2767
Jeff Browncaca8812013-05-09 13:34:33 -07002768 // Delay handling home if a double-tap is possible.
2769 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2770 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2771 mHomeDoubleTapPending = true;
2772 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2773 ViewConfiguration.getDoubleTapTimeout());
2774 return -1;
2775 }
2776
Jeff Brown13f00f02014-10-31 14:45:50 -07002777 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002778 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002779 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002780
2781 // If a system window has focus, then it doesn't make sense
2782 // right now to interact with applications.
2783 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2784 if (attrs != null) {
2785 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002786 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2787 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2788 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002789 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002790 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002791 }
2792 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2793 for (int i=0; i<typeCount; i++) {
2794 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2795 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002796 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002797 }
2798 }
2799 }
Jeff Browncaca8812013-05-09 13:34:33 -07002800
2801 // Remember that home is pressed and handle special actions.
2802 if (repeatCount == 0) {
2803 mHomePressed = true;
2804 if (mHomeDoubleTapPending) {
2805 mHomeDoubleTapPending = false;
2806 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2807 handleDoubleTapOnHome();
2808 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2809 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2810 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002811 }
Jeff Browncaca8812013-05-09 13:34:33 -07002812 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2813 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002814 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002815 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002816 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002817 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002818 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002819 // Hijack modified menu keys for debugging features
2820 final int chordBug = KeyEvent.META_SHIFT_ON;
2821
2822 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002823 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002824 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002825 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2826 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002827 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002828 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002829 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002830 Intent service = new Intent();
2831 service.setClassName(mContext, "com.android.server.LoadAverageService");
2832 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002833 boolean shown = Settings.Global.getInt(
2834 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002835 if (!shown) {
2836 mContext.startService(service);
2837 } else {
2838 mContext.stopService(service);
2839 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002840 Settings.Global.putInt(
2841 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002842 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002843 }
2844 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002845 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002846 if (down) {
2847 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002848 mSearchKeyShortcutPending = true;
2849 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002850 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002851 } else {
2852 mSearchKeyShortcutPending = false;
2853 if (mConsumeSearchKeyUp) {
2854 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002855 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002856 }
2857 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002858 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002859 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002860 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002861 if (down && repeatCount == 0) {
2862 preloadRecentApps();
2863 } else if (!down) {
2864 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002865 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002866 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002867 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002868 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2869 if (down) {
2870 IStatusBarService service = getStatusBarService();
2871 if (service != null) {
2872 try {
2873 service.expandNotificationsPanel();
2874 } catch (RemoteException e) {
2875 // do nothing.
2876 }
2877 }
2878 }
Clara Bayarrif2debb12015-07-10 14:47:17 +01002879 } else if (keyCode == KeyEvent.KEYCODE_SLASH && event.isMetaPressed()) {
2880 if (down) {
2881 if (repeatCount == 0) {
2882 showKeyboardShortcutsMenu();
2883 }
2884 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002885 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2886 if (down) {
2887 if (repeatCount == 0) {
2888 mAssistKeyLongPressed = false;
2889 } else if (repeatCount == 1) {
2890 mAssistKeyLongPressed = true;
2891 if (!keyguardOn) {
2892 launchAssistLongPressAction();
2893 }
2894 }
2895 } else {
2896 if (mAssistKeyLongPressed) {
2897 mAssistKeyLongPressed = false;
2898 } else {
2899 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002900 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002901 }
2902 }
2903 }
2904 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002905 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2906 if (!down) {
2907 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002908 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002909 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2910 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002911 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2912 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2913 if (dic != null) {
2914 try {
2915 dic.exitIdle("voice-search");
2916 } catch (RemoteException e) {
2917 }
2918 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002919 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002920 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002921 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002922 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002923 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002924 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2925 if (down && repeatCount == 0) {
2926 mHandler.post(mScreenshotRunnable);
2927 }
2928 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002929 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2930 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2931 if (down) {
2932 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2933
2934 // Disable autobrightness if it's on
2935 int auto = Settings.System.getIntForUser(
2936 mContext.getContentResolver(),
2937 Settings.System.SCREEN_BRIGHTNESS_MODE,
2938 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2939 UserHandle.USER_CURRENT_OR_SELF);
2940 if (auto != 0) {
2941 Settings.System.putIntForUser(mContext.getContentResolver(),
2942 Settings.System.SCREEN_BRIGHTNESS_MODE,
2943 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2944 UserHandle.USER_CURRENT_OR_SELF);
2945 }
2946
2947 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2948 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2949 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2950 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2951 Settings.System.SCREEN_BRIGHTNESS,
2952 mPowerManager.getDefaultScreenBrightnessSetting(),
2953 UserHandle.USER_CURRENT_OR_SELF);
2954 brightness += step;
2955 // Make sure we don't go beyond the limits.
2956 brightness = Math.min(max, brightness);
2957 brightness = Math.max(min, brightness);
2958
2959 Settings.System.putIntForUser(mContext.getContentResolver(),
2960 Settings.System.SCREEN_BRIGHTNESS, brightness,
2961 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002962 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002963 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002964 }
2965 return -1;
Jaewan Kim765487f2016-01-12 14:45:42 +09002966 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP
2967 || keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
2968 || keyCode == KeyEvent.KEYCODE_VOLUME_MUTE) {
2969 if (mUseTvRouting) {
2970 // On TVs volume keys never go to the foreground app.
2971 dispatchDirectAudioEvent(event);
2972 return -1;
2973 }
Michael Wrightce0c13a2014-07-30 10:49:21 -07002974 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002975 if (down) {
2976 mPendingMetaAction = true;
2977 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002978 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002979 }
2980 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002981 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002982
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002983 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002984 // Any printing key that is chorded with Search should be consumed
2985 // even if no shortcut was invoked. This prevents text from being
2986 // inadvertently inserted when using a keyboard that has built-in macro
2987 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002988 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002989 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2990 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002991 mConsumeSearchKeyUp = true;
2992 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002993 if (down && repeatCount == 0 && !keyguardOn) {
2994 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2995 if (shortcutIntent != null) {
2996 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002997 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002998 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002999 } catch (ActivityNotFoundException ex) {
3000 Slog.w(TAG, "Dropping shortcut key combination because "
3001 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003002 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08003003 }
Jeff Browncaab4d02010-12-09 22:13:41 -08003004 } else {
3005 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003006 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003007 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003008 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003009 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003010 }
3011 }
3012
Jeff Brown68b909d2011-12-07 16:36:01 -08003013 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07003014 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08003015 && (metaState & KeyEvent.META_META_ON) != 0) {
3016 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07003017 if (kcm.isPrintingKey(keyCode)) {
3018 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
3019 metaState & ~(KeyEvent.META_META_ON
3020 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
3021 if (shortcutIntent != null) {
3022 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3023 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00003024 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07003025 } catch (ActivityNotFoundException ex) {
3026 Slog.w(TAG, "Dropping shortcut key combination because "
3027 + "the activity to which it is registered was not found: "
3028 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
3029 }
3030 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08003031 }
Jeff Brown68b909d2011-12-07 16:36:01 -08003032 }
3033 }
3034
Jeff Brown6651a632011-11-28 12:59:11 -08003035 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07003036 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08003037 String category = sApplicationLaunchKeyCategories.get(keyCode);
3038 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08003039 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08003040 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3041 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00003042 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08003043 } catch (ActivityNotFoundException ex) {
3044 Slog.w(TAG, "Dropping application launch key because "
3045 + "the activity to which it is registered was not found: "
3046 + "keyCode=" + keyCode + ", category=" + category, ex);
3047 }
Jeff Brown68b909d2011-12-07 16:36:01 -08003048 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08003049 }
3050 }
3051
Michael Wright61c46752014-08-21 16:57:33 -07003052 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08003053 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Michael Wrightd847ad52015-10-24 13:24:15 +01003054 if (mRecentAppsHeldModifiers == 0 && !keyguardOn && isUserSetupComplete()) {
Jeff Brown68b909d2011-12-07 16:36:01 -08003055 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07003056 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003057 mRecentAppsHeldModifiers = shiftlessModifiers;
3058 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08003059 return -1;
3060 }
3061 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07003062 } else if (!down && mRecentAppsHeldModifiers != 0
3063 && (metaState & mRecentAppsHeldModifiers) == 0) {
3064 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07003065 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08003066 }
3067
Yohei Yukawaae61f712015-12-09 13:00:10 -08003068 // Handle keyboard layout switching.
3069 // TODO: Deprecate this behavior when we fully migrate to IME subtype-based layout rotation.
3070 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_SPACE
3071 && ((metaState & KeyEvent.META_CTRL_MASK) != 0)) {
3072 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
3073 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
3074 return -1;
3075 }
3076
3077 // Handle input method switching.
Jeff Browncf39bdf2012-05-18 14:41:19 -07003078 if (down && repeatCount == 0
3079 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3080 || (keyCode == KeyEvent.KEYCODE_SPACE
Yohei Yukawaae61f712015-12-09 13:00:10 -08003081 && (metaState & KeyEvent.META_META_MASK) != 0))) {
3082 final boolean forwardDirection = (metaState & KeyEvent.META_SHIFT_MASK) == 0;
3083 mWindowManagerFuncs.switchInputMethod(forwardDirection);
Jeff Browncf39bdf2012-05-18 14:41:19 -07003084 return -1;
3085 }
3086 if (mLanguageSwitchKeyPressed && !down
3087 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3088 || keyCode == KeyEvent.KEYCODE_SPACE)) {
3089 mLanguageSwitchKeyPressed = false;
3090 return -1;
3091 }
3092
Jeff Brown13f00f02014-10-31 14:45:50 -07003093 if (isValidGlobalKey(keyCode)
3094 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003095 return -1;
3096 }
3097
Michael Wright6a62e552014-06-03 19:19:48 -07003098 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003099 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003100 return -1;
3101 }
3102
Jeff Brown68b909d2011-12-07 16:36:01 -08003103 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003104 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003105 }
3106
Jeff Brown3915bb82010-11-05 15:02:16 -07003107 /** {@inheritDoc} */
3108 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003109 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003110 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003111 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003112 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3113 + ", flags=" + event.getFlags()
3114 + ", keyCode=" + event.getKeyCode()
3115 + ", scanCode=" + event.getScanCode()
3116 + ", metaState=" + event.getMetaState()
3117 + ", repeatCount=" + event.getRepeatCount()
3118 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003119 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003120
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003121 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003122 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3123 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003124 final int keyCode = event.getKeyCode();
3125 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003126 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3127 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003128
Jeff Brown54875002011-04-06 15:33:01 -07003129 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003130 final FallbackAction fallbackAction;
3131 if (initialDown) {
3132 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3133 } else {
3134 fallbackAction = mFallbackActions.get(keyCode);
3135 }
3136
3137 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003138 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003139 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3140 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003141 }
3142
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003143 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3144 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003145 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003146 event.getAction(), fallbackAction.keyCode,
3147 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003148 event.getDeviceId(), event.getScanCode(),
3149 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003150
3151 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3152 fallbackEvent.recycle();
3153 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003154 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003155
3156 if (initialDown) {
3157 mFallbackActions.put(keyCode, fallbackAction);
3158 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3159 mFallbackActions.remove(keyCode);
3160 fallbackAction.recycle();
3161 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003162 }
3163 }
3164
Jeff Brown40013652012-05-16 21:22:36 -07003165 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003166 if (fallbackEvent == null) {
3167 Slog.d(TAG, "No fallback.");
3168 } else {
3169 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3170 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003171 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003172 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003173 }
3174
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003175 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003176 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003177 if ((actions & ACTION_PASS_TO_USER) != 0) {
3178 long delayMillis = interceptKeyBeforeDispatching(
3179 win, fallbackEvent, policyFlags);
3180 if (delayMillis == 0) {
3181 return true;
3182 }
3183 }
3184 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003185 }
3186
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003187 private void launchAssistLongPressAction() {
3188 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3189 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3190
3191 // launch the search activity
3192 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3193 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3194 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003195 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003196 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003197 SearchManager searchManager = getSearchManager();
3198 if (searchManager != null) {
3199 searchManager.stopSearch();
3200 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003201 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003202 } catch (ActivityNotFoundException e) {
3203 Slog.w(TAG, "No activity to handle assist long press action.", e);
3204 }
3205 }
3206
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003207 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003208 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003209 if (!isUserSetupComplete()) {
3210 // Disable opening assist window during setup
3211 return;
3212 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003213 Bundle args = null;
3214 if (deviceId > Integer.MIN_VALUE) {
3215 args = new Bundle();
3216 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003217 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003218 if ((mContext.getResources().getConfiguration().uiMode
3219 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3220 // On TV, use legacy handling until assistants are implemented in the proper way.
3221 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3222 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3223 } else {
3224 try {
3225 if (hint != null) {
3226 if (args == null) {
3227 args = new Bundle();
3228 }
3229 args.putBoolean(hint, true);
3230 }
3231 IStatusBarService statusbar = getStatusBarService();
3232 if (statusbar != null) {
3233 statusbar.startAssist(args);
3234 }
3235 } catch (RemoteException e) {
3236 Slog.e(TAG, "RemoteException when starting assist", e);
3237 // re-acquire status bar service next time it is needed.
3238 mStatusBarService = null;
3239 }
3240 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003241 }
3242
Bart Sears8b1c27c2015-03-18 23:51:02 +00003243 private void startActivityAsUser(Intent intent, UserHandle handle) {
3244 if (isUserSetupComplete()) {
3245 mContext.startActivityAsUser(intent, handle);
3246 } else {
3247 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3248 }
3249 }
3250
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003251 private SearchManager getSearchManager() {
3252 if (mSearchManager == null) {
3253 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3254 }
3255 return mSearchManager;
3256 }
3257
Jeff Browncaca8812013-05-09 13:34:33 -07003258 private void preloadRecentApps() {
3259 mPreloadedRecentApps = true;
3260 try {
3261 IStatusBarService statusbar = getStatusBarService();
3262 if (statusbar != null) {
3263 statusbar.preloadRecentApps();
3264 }
3265 } catch (RemoteException e) {
3266 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3267 // re-acquire status bar service next time it is needed.
3268 mStatusBarService = null;
3269 }
3270 }
3271
3272 private void cancelPreloadRecentApps() {
3273 if (mPreloadedRecentApps) {
3274 mPreloadedRecentApps = false;
3275 try {
3276 IStatusBarService statusbar = getStatusBarService();
3277 if (statusbar != null) {
3278 statusbar.cancelPreloadRecentApps();
3279 }
3280 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003281 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003282 // re-acquire status bar service next time it is needed.
3283 mStatusBarService = null;
3284 }
3285 }
3286 }
3287
3288 private void toggleRecentApps() {
3289 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003290 try {
3291 IStatusBarService statusbar = getStatusBarService();
3292 if (statusbar != null) {
3293 statusbar.toggleRecentApps();
3294 }
3295 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003296 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3297 // re-acquire status bar service next time it is needed.
3298 mStatusBarService = null;
3299 }
3300 }
3301
Craig Mautner84984fa2014-06-19 11:19:20 -07003302 @Override
3303 public void showRecentApps() {
3304 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3305 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3306 }
3307
Winson Chung1e8d71b2014-05-16 17:05:22 -07003308 private void showRecentApps(boolean triggeredFromAltTab) {
3309 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3310 try {
3311 IStatusBarService statusbar = getStatusBarService();
3312 if (statusbar != null) {
3313 statusbar.showRecentApps(triggeredFromAltTab);
3314 }
3315 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003316 Slog.e(TAG, "RemoteException when showing recent apps", e);
3317 // re-acquire status bar service next time it is needed.
3318 mStatusBarService = null;
3319 }
3320 }
3321
Clara Bayarrif2debb12015-07-10 14:47:17 +01003322 private void showKeyboardShortcutsMenu() {
3323 try {
3324 IStatusBarService statusbar = getStatusBarService();
3325 if (statusbar != null) {
3326 statusbar.showKeyboardShortcutsMenu();
3327 }
3328 } catch (RemoteException e) {
3329 Slog.e(TAG, "RemoteException when showing keyboard shortcuts menu", e);
3330 }
3331 }
3332
Winson Chungcdcd4872014-08-05 18:00:13 -07003333 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003334 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3335 try {
3336 IStatusBarService statusbar = getStatusBarService();
3337 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003338 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003339 }
3340 } catch (RemoteException e) {
3341 Slog.e(TAG, "RemoteException when closing recent apps", e);
3342 // re-acquire status bar service next time it is needed.
3343 mStatusBarService = null;
3344 }
3345 }
3346
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003347 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003348 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003349 }
3350
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003351 /**
3352 * A home key -> launch home action was detected. Take the appropriate action
3353 * given the situation with the keyguard.
3354 */
Bryce Lee662ed802015-04-10 20:11:39 +00003355 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3356 if (respectKeyguard) {
3357 if (isKeyguardShowingAndNotOccluded()) {
3358 // don't launch home if keyguard showing
3359 return;
3360 }
3361
3362 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3363 // when in keyguard restricted mode, must first verify unlock
3364 // before launching home
3365 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3366 @Override
3367 public void onKeyguardExitResult(boolean success) {
3368 if (success) {
3369 try {
3370 ActivityManagerNative.getDefault().stopAppSwitches();
3371 } catch (RemoteException e) {
3372 }
3373 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3374 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003375 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003376 }
Bryce Lee662ed802015-04-10 20:11:39 +00003377 });
3378 return;
3379 }
3380 }
3381
3382 // no keyguard stuff to worry about, just launch home!
3383 try {
3384 ActivityManagerNative.getDefault().stopAppSwitches();
3385 } catch (RemoteException e) {
3386 }
3387 if (mRecentsVisible) {
3388 // Hide Recents and notify it to launch Home
3389 if (awakenFromDreams) {
3390 awakenDreams();
3391 }
Bryce Lee662ed802015-04-10 20:11:39 +00003392 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003393 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003394 // Otherwise, just launch Home
3395 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3396 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003397 }
3398 }
3399
John Spurlock04db1762013-05-13 12:46:41 -04003400 private final Runnable mClearHideNavigationFlag = new Runnable() {
3401 @Override
3402 public void run() {
3403 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3404 // Clear flags.
3405 mForceClearedSystemUiFlags &=
3406 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3407 }
3408 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003409 }
3410 };
3411
3412 /**
3413 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3414 * to determine when the nav bar should be shown and prevent applications from
3415 * receiving those touches.
3416 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003417 final class HideNavInputEventReceiver extends InputEventReceiver {
3418 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3419 super(inputChannel, looper);
3420 }
3421
Dianne Hackborndf89e652011-10-06 22:35:11 -07003422 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003423 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003424 boolean handled = false;
3425 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003426 if (event instanceof MotionEvent
3427 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3428 final MotionEvent motionEvent = (MotionEvent)event;
3429 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003430 // When the user taps down, we re-show the nav bar.
3431 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003432 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003433 // Any user activity always causes us to show the
3434 // navigation controls, if they had been hidden.
3435 // We also clear the low profile and only content
3436 // flags so that tapping on the screen will atomically
3437 // restore all currently hidden screen decorations.
3438 int newVal = mResettingSystemUiFlags |
3439 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3440 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3441 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003442 if (mResettingSystemUiFlags != newVal) {
3443 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003444 changed = true;
3445 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003446 // We don't allow the system's nav bar to be hidden
3447 // again for 1 second, to prevent applications from
3448 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003449 newVal = mForceClearedSystemUiFlags |
3450 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003451 if (mForceClearedSystemUiFlags != newVal) {
3452 mForceClearedSystemUiFlags = newVal;
3453 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003454 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003455 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003456 }
3457 if (changed) {
3458 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3459 }
3460 }
3461 }
3462 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003463 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003464 }
3465 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003466 }
3467 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3468 new InputEventReceiver.Factory() {
3469 @Override
3470 public InputEventReceiver createInputEventReceiver(
3471 InputChannel inputChannel, Looper looper) {
3472 return new HideNavInputEventReceiver(inputChannel, looper);
3473 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003474 };
3475
3476 @Override
3477 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003478 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3479 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003480 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003481
Dianne Hackborndf89e652011-10-06 22:35:11 -07003482 // Reset any bits in mForceClearingStatusBarVisibility that
3483 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003484 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003485 // Clear any bits in the new visibility that are currently being
3486 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003487 return visibility & ~mResettingSystemUiFlags
3488 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003489 }
3490
Craig Mautner69b08182012-09-05 13:07:13 -07003491 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003492 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3493 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003494 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003495 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3496 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003497
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003498 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3499 if (useOutsets) {
3500 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3501 if (outset > 0) {
3502 if (displayRotation == Surface.ROTATION_0) {
3503 outOutsets.bottom += outset;
3504 } else if (displayRotation == Surface.ROTATION_90) {
3505 outOutsets.right += outset;
3506 } else if (displayRotation == Surface.ROTATION_180) {
3507 outOutsets.top += outset;
3508 } else if (displayRotation == Surface.ROTATION_270) {
3509 outOutsets.left += outset;
3510 }
3511 }
3512 }
3513
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003514 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003515 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003516 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003517 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003518 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003519 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3520 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3521 } else {
3522 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3523 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3524 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003525 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3526 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003527 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003528 availRight - mStableFullscreenRight,
3529 availBottom - mStableFullscreenBottom);
3530 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003531 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003532 availRight - mStableRight, availBottom - mStableBottom);
3533 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003534 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003535 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003536 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003537 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003538 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003539 availRight - mCurRight, availBottom - mCurBottom);
3540 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003541 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003542 availRight - mCurRight, availBottom - mCurBottom);
3543 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003544
3545 outStableInsets.set(mStableLeft, mStableTop,
3546 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003547 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003548 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003549 outContentInsets.setEmpty();
3550 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003551 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003552
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003553 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3554 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3555 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3556 }
3557
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003558 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003559 @Override
3560 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3561 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003562 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003563 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3564 if (isDefaultDisplay) {
3565 switch (displayRotation) {
3566 case Surface.ROTATION_90:
3567 overscanLeft = mOverscanTop;
3568 overscanTop = mOverscanRight;
3569 overscanRight = mOverscanBottom;
3570 overscanBottom = mOverscanLeft;
3571 break;
3572 case Surface.ROTATION_180:
3573 overscanLeft = mOverscanRight;
3574 overscanTop = mOverscanBottom;
3575 overscanRight = mOverscanLeft;
3576 overscanBottom = mOverscanTop;
3577 break;
3578 case Surface.ROTATION_270:
3579 overscanLeft = mOverscanBottom;
3580 overscanTop = mOverscanLeft;
3581 overscanRight = mOverscanTop;
3582 overscanBottom = mOverscanRight;
3583 break;
3584 default:
3585 overscanLeft = mOverscanLeft;
3586 overscanTop = mOverscanTop;
3587 overscanRight = mOverscanRight;
3588 overscanBottom = mOverscanBottom;
3589 break;
3590 }
3591 } else {
3592 overscanLeft = 0;
3593 overscanTop = 0;
3594 overscanRight = 0;
3595 overscanBottom = 0;
3596 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003597 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3598 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3599 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3600 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003601 mSystemLeft = 0;
3602 mSystemTop = 0;
3603 mSystemRight = displayWidth;
3604 mSystemBottom = displayHeight;
3605 mUnrestrictedScreenLeft = overscanLeft;
3606 mUnrestrictedScreenTop = overscanTop;
3607 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3608 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3609 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3610 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003611 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3612 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003613 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003614 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003615 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003616 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003617 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003618 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003619 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003620 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003621 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003622 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003623
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003624 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3625 final Rect pf = mTmpParentFrame;
3626 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003627 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003628 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003629 final Rect dcf = mTmpDecorFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003630 pf.left = df.left = of.left = vf.left = mDockLeft;
3631 pf.top = df.top = of.top = vf.top = mDockTop;
3632 pf.right = df.right = of.right = vf.right = mDockRight;
3633 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003634 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003635
Craig Mautner69b08182012-09-05 13:07:13 -07003636 if (isDefaultDisplay) {
3637 // For purposes of putting out fake window up to steal focus, we will
3638 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003639 final int sysui = mLastSystemUiFlags;
3640 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003641 boolean navTranslucent = (sysui
Jorim Jaggi4fa78922015-11-30 17:13:56 -08003642 & (View.NAVIGATION_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003643 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3644 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3645 boolean navAllowedHidden = immersive || immersiveSticky;
3646 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003647 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3648 if (!isKeyguardShowing) {
3649 navTranslucent &= areTranslucentBarsAllowed();
3650 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003651
Craig Mautner69b08182012-09-05 13:07:13 -07003652 // When the navigation bar isn't visible, we put up a fake
3653 // input window to catch all touch events. This way we can
3654 // detect when the user presses anywhere to bring back the nav
3655 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003656 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003657 if (mInputConsumer != null) {
3658 mInputConsumer.dismiss();
3659 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003660 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003661 } else if (mInputConsumer == null) {
3662 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3663 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003664 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003665
Craig Mautner69b08182012-09-05 13:07:13 -07003666 // For purposes of positioning and showing the nav bar, if we have
3667 // decided that it can't be hidden (because of the screen aspect ratio),
3668 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003669 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003670
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003671 boolean updateSysUiVisibility = layoutNavigationBar(displayWidth, displayHeight,
3672 displayRotation, overscanRight, overscanBottom, dcf, navVisible, navTranslucent,
3673 navAllowedHidden);
Craig Mautnereda67292013-04-28 13:50:14 -07003674 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003675 mDockLeft, mDockTop, mDockRight, mDockBottom));
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003676 updateSysUiVisibility |= layoutStatusBar(pf, df, of, vf, dcf, sysui, isKeyguardShowing);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003677 if (updateSysUiVisibility) {
3678 updateSystemUiVisibilityLw();
3679 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003680 }
3681 }
3682
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003683 private boolean layoutStatusBar(Rect pf, Rect df, Rect of, Rect vf, Rect dcf, int sysui,
3684 boolean isKeyguardShowing) {
3685 // decide where the status bar goes ahead of time
3686 if (mStatusBar != null) {
3687 // apply any navigation bar insets
3688 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3689 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3690 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3691 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3692 + mUnrestrictedScreenTop;
3693 vf.left = mStableLeft;
3694 vf.top = mStableTop;
3695 vf.right = mStableRight;
3696 vf.bottom = mStableBottom;
3697
3698 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3699
3700 // Let the status bar determine its size.
3701 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3702 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3703 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
3704
3705 // For layout, the status bar is always at the top with our fixed height.
3706 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3707
3708 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
3709 boolean statusBarTranslucent = (sysui
Jorim Jaggi4fa78922015-11-30 17:13:56 -08003710 & (View.STATUS_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSPARENT)) != 0;
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003711 if (!isKeyguardShowing) {
3712 statusBarTranslucent &= areTranslucentBarsAllowed();
3713 }
3714
3715 // If the status bar is hidden, we don't want to cause
3716 // windows behind it to scroll.
3717 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
3718 // Status bar may go away, so the screen area it occupies
3719 // is available to apps but just covering them when the
3720 // status bar is visible.
3721 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3722
3723 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3724 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3725 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3726 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3727
3728 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
3729 String.format(
3730 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3731 mDockLeft, mDockTop, mDockRight, mDockBottom,
3732 mContentLeft, mContentTop, mContentRight, mContentBottom,
3733 mCurLeft, mCurTop, mCurRight, mCurBottom));
3734 }
3735 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
3736 && !statusBarTransient && !statusBarTranslucent
3737 && !mStatusBarController.wasRecentlyTranslucent()) {
3738 // If the opaque status bar is currently requested to be visible,
3739 // and not in the process of animating on or off, then
3740 // we can tell the app that it is covered by it.
3741 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3742 }
3743 if (mStatusBarController.checkHiddenLw()) {
3744 return true;
3745 }
3746 }
3747 return false;
3748 }
3749
3750 private boolean layoutNavigationBar(int displayWidth, int displayHeight, int displayRotation,
3751 int overscanRight, int overscanBottom, Rect dcf, boolean navVisible,
3752 boolean navTranslucent, boolean navAllowedHidden) {
3753 if (mNavigationBar != null) {
3754 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
3755 // Force the navigation bar to its appropriate place and
3756 // size. We need to do this directly, instead of relying on
3757 // it to bubble up from the nav bar, because this needs to
3758 // change atomically with screen rotations.
3759 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3760 if (mNavigationBarOnBottom) {
3761 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
3762 int top = displayHeight - overscanBottom
3763 - mNavigationBarHeightForRotation[displayRotation];
3764 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
3765 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
3766 if (transientNavBarShowing) {
3767 mNavigationBarController.setBarShowingLw(true);
3768 } else if (navVisible) {
3769 mNavigationBarController.setBarShowingLw(true);
3770 mDockBottom = mTmpNavigationFrame.top;
3771 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3772 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
3773 } else {
3774 // We currently want to hide the navigation UI.
3775 mNavigationBarController.setBarShowingLw(false);
3776 }
3777 if (navVisible && !navTranslucent && !navAllowedHidden
3778 && !mNavigationBar.isAnimatingLw()
3779 && !mNavigationBarController.wasRecentlyTranslucent()) {
3780 // If the opaque nav bar is currently requested to be visible,
3781 // and not in the process of animating on or off, then
3782 // we can tell the app that it is covered by it.
3783 mSystemBottom = mTmpNavigationFrame.top;
3784 }
3785 } else {
3786 // Landscape screen; nav bar goes to the right.
3787 int left = displayWidth - overscanRight
3788 - mNavigationBarWidthForRotation[displayRotation];
3789 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
3790 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
3791 if (transientNavBarShowing) {
3792 mNavigationBarController.setBarShowingLw(true);
3793 } else if (navVisible) {
3794 mNavigationBarController.setBarShowingLw(true);
3795 mDockRight = mTmpNavigationFrame.left;
3796 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3797 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
3798 } else {
3799 // We currently want to hide the navigation UI.
3800 mNavigationBarController.setBarShowingLw(false);
3801 }
3802 if (navVisible && !navTranslucent && !navAllowedHidden
3803 && !mNavigationBar.isAnimatingLw()
3804 && !mNavigationBarController.wasRecentlyTranslucent()) {
3805 // If the nav bar is currently requested to be visible,
3806 // and not in the process of animating on or off, then
3807 // we can tell the app that it is covered by it.
3808 mSystemRight = mTmpNavigationFrame.left;
3809 }
3810 }
3811 // Make sure the content and current rectangles are updated to
3812 // account for the restrictions from the navigation bar.
3813 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3814 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3815 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3816 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3817 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3818 // And compute the final frame.
3819 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
3820 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3821 mTmpNavigationFrame, mTmpNavigationFrame);
3822 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
3823 if (mNavigationBarController.checkHiddenLw()) {
3824 return true;
3825 }
3826 }
3827 return false;
3828 }
3829
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003830 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003831 @Override
John Spurlock46646232013-09-30 22:32:42 -04003832 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003833 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3834 return mStatusBar.getSurfaceLayer();
3835 }
3836
3837 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3838 return mNavigationBar.getSurfaceLayer();
3839 }
3840
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003841 return 0;
3842 }
3843
Craig Mautner967212c2013-04-13 21:10:58 -07003844 @Override
3845 public void getContentRectLw(Rect r) {
3846 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3847 }
3848
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003849 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3850 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003851 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3852 // Here's a special case: if this attached window is a panel that is
3853 // above the dock window, and the window it is attached to is below
3854 // the dock window, then the frames we computed for the window it is
3855 // attached to can not be used because the dock is effectively part
3856 // of the underlying window and the attached window is floating on top
3857 // of the whole thing. So, we ignore the attached window and explicitly
3858 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003859 df.left = of.left = cf.left = vf.left = mDockLeft;
3860 df.top = of.top = cf.top = vf.top = mDockTop;
3861 df.right = of.right = cf.right = vf.right = mDockRight;
3862 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003863 } else {
3864 // The effective display frame of the attached window depends on
3865 // whether it is taking care of insetting its content. If not,
3866 // we need to use the parent's content frame so that the entire
3867 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003868 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003869 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003870 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003871 // Set the content frame of the attached window to the parent's decor frame
3872 // (same as content frame when IME isn't present) if specifically requested by
3873 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3874 // Otherwise, use the overscan frame.
3875 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3876 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003877 } else {
3878 // If the window is resizing, then we want to base the content
3879 // frame on our attached content frame to resize... however,
3880 // things can be tricky if the attached window is NOT in resize
3881 // mode, in which case its content frame will be larger.
3882 // Ungh. So to deal with that, make sure the content frame
3883 // we end up using is not covering the IM dock.
3884 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003885 if (attached.isVoiceInteraction()) {
3886 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3887 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3888 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3889 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3890 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003891 if (cf.left < mContentLeft) cf.left = mContentLeft;
3892 if (cf.top < mContentTop) cf.top = mContentTop;
3893 if (cf.right > mContentRight) cf.right = mContentRight;
3894 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3895 }
3896 }
3897 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003898 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003899 vf.set(attached.getVisibleFrameLw());
3900 }
3901 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3902 // window should be positioned relative to its parent or the entire
3903 // screen.
3904 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3905 ? attached.getFrameLw() : df);
3906 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003907
3908 private void applyStableConstraints(int sysui, int fl, Rect r) {
3909 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3910 // If app is requesting a stable layout, don't let the
3911 // content insets go below the stable values.
3912 if ((fl & FLAG_FULLSCREEN) != 0) {
3913 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3914 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3915 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3916 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3917 } else {
3918 if (r.left < mStableLeft) r.left = mStableLeft;
3919 if (r.top < mStableTop) r.top = mStableTop;
3920 if (r.right > mStableRight) r.right = mStableRight;
3921 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3922 }
3923 }
3924 }
3925
Jorim Jaggiaa806142015-05-20 18:04:16 -07003926 private boolean canReceiveInput(WindowState win) {
3927 boolean notFocusable =
3928 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3929 boolean altFocusableIm =
3930 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3931 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3932 return !notFocusableForIm;
3933 }
3934
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003935 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003936 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003937 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003938 // We've already done the navigation bar and status bar. If the status bar can receive
3939 // input, we need to layout it again to accomodate for the IME window.
3940 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003941 return;
3942 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003943 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003944 final boolean isDefaultDisplay = win.isDefaultDisplay();
3945 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003946 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3947 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003948 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003949 offsetInputMethodWindowLw(mLastInputMethodWindow);
3950 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003951
John Spurlockc6d1c602014-01-17 15:22:06 -05003952 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003953 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003954 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003955
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003956 final Rect pf = mTmpParentFrame;
3957 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003958 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003959 final Rect cf = mTmpContentFrame;
3960 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003961 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003962 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003963 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003964 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003965
3966 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003967 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003968
Craig Mautnerf683b562012-10-02 11:10:57 -07003969 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3970
Adrian Roosfa104232014-06-20 16:10:14 -07003971 if (isDefaultDisplay) {
3972 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3973 } else {
3974 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3975 }
3976
Craig Mautner69b08182012-09-05 13:07:13 -07003977 if (!isDefaultDisplay) {
3978 if (attached != null) {
3979 // If this window is attached to another, our display
3980 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003981 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003982 } else {
3983 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003984 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3985 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3986 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003987 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003988 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003989 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003990 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003991 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003992 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3993 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3994 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003995 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003996 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003997 // ...with content insets above the nav bar
3998 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003999 // IM dock windows always go to the bottom of the screen.
4000 attrs.gravity = Gravity.BOTTOM;
4001 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07004002 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10004003 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07004004 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10004005 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4006 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07004007 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10004008 // Note: In Phone landscape mode, the button bar should also be excluded.
4009 cf.right = vf.right = mStableRight;
4010 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07004011 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07004012 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02004013 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4014 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4015 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
4016 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
4017 cf.left = vf.left = mStableLeft;
4018 cf.top = vf.top = mStableTop;
4019 cf.right = vf.right = mStableRight;
4020 vf.bottom = mStableBottom;
4021 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004022 } else {
John Spurlock46646232013-09-30 22:32:42 -04004023
4024 // Default policy decor for the default display
4025 dcf.left = mSystemLeft;
4026 dcf.top = mSystemTop;
4027 dcf.right = mSystemRight;
4028 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04004029 final boolean inheritTranslucentDecor = (attrs.privateFlags
4030 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04004031 final boolean isAppWindow =
4032 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
4033 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
4034 final boolean topAtRest =
4035 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
4036 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04004037 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
4038 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02004039 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
4040 && (fl & WindowManager.LayoutParams.
Jorim Jaggi4fa78922015-11-30 17:13:56 -08004041 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0
4042 && !mForceWindowDrawsStatusBarBackground) {
John Spurlock46646232013-09-30 22:32:42 -04004043 // Ensure policy decor includes status bar
4044 dcf.top = mStableTop;
4045 }
John Spurlockbd957402013-10-03 11:38:39 -04004046 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02004047 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
4048 && (fl & WindowManager.LayoutParams.
4049 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04004050 // Ensure policy decor includes navigation bar
4051 dcf.bottom = mStableBottom;
4052 dcf.right = mStableRight;
4053 }
4054 }
4055
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004056 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
4057 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07004058 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004059 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004060 // This is the case for a normal activity window: we want it
4061 // to cover all of the screen space, and it can take care of
4062 // moving its contents to account for screen decorations that
4063 // intrude into that space.
4064 if (attached != null) {
4065 // If this window is attached to another, our display
4066 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004067 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004068 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004069 if (attrs.type == TYPE_STATUS_BAR_PANEL
4070 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08004071 // Status bar panels are the only windows who can go on top of
4072 // the status bar. They are protected by the STATUS_BAR_SERVICE
4073 // permission, so they have the same privileges as the status
4074 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004075 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004076 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004077
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004078 pf.left = df.left = of.left = hasNavBar
4079 ? mDockLeft : mUnrestrictedScreenLeft;
4080 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4081 pf.right = df.right = of.right = hasNavBar
4082 ? mRestrictedScreenLeft+mRestrictedScreenWidth
4083 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4084 pf.bottom = df.bottom = of.bottom = hasNavBar
4085 ? mRestrictedScreenTop+mRestrictedScreenHeight
4086 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004087
Craig Mautnereda67292013-04-28 13:50:14 -07004088 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004089 "Laying out status bar window: (%d,%d - %d,%d)",
4090 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04004091 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004092 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4093 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4094 // Asking to layout into the overscan region, so give it that pure
4095 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004096 pf.left = df.left = of.left = mOverscanScreenLeft;
4097 pf.top = df.top = of.top = mOverscanScreenTop;
4098 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
4099 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
4100 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004101 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004102 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004103 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4104 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004105 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08004106 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004107 // only do this for application windows to ensure no window that
4108 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08004109 pf.left = df.left = mOverscanScreenLeft;
4110 pf.top = df.top = mOverscanScreenTop;
4111 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4112 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004113 // We need to tell the app about where the frame inside the overscan
4114 // is, so it can inset its content by that amount -- it didn't ask
4115 // to actually extend itself into the overscan region.
4116 of.left = mUnrestrictedScreenLeft;
4117 of.top = mUnrestrictedScreenTop;
4118 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4119 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004120 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004121 pf.left = df.left = mRestrictedOverscanScreenLeft;
4122 pf.top = df.top = mRestrictedOverscanScreenTop;
4123 pf.right = df.right = mRestrictedOverscanScreenLeft
4124 + mRestrictedOverscanScreenWidth;
4125 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4126 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004127 // We need to tell the app about where the frame inside the overscan
4128 // is, so it can inset its content by that amount -- it didn't ask
4129 // to actually extend itself into the overscan region.
4130 of.left = mUnrestrictedScreenLeft;
4131 of.top = mUnrestrictedScreenTop;
4132 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4133 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004134 }
Craig Mautner69b08182012-09-05 13:07:13 -07004135
John Spurlock46646232013-09-30 22:32:42 -04004136 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004137 if (win.isVoiceInteraction()) {
4138 cf.left = mVoiceContentLeft;
4139 cf.top = mVoiceContentTop;
4140 cf.right = mVoiceContentRight;
4141 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004142 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004143 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4144 cf.left = mDockLeft;
4145 cf.top = mDockTop;
4146 cf.right = mDockRight;
4147 cf.bottom = mDockBottom;
4148 } else {
4149 cf.left = mContentLeft;
4150 cf.top = mContentTop;
4151 cf.right = mContentRight;
4152 cf.bottom = mContentBottom;
4153 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004154 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004155 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004156 // Full screen windows are always given a layout that is as if the
4157 // status bar and other transient decors are gone. This is to avoid
4158 // bad states when moving from a window that is not hding the
4159 // status bar to one that is.
4160 cf.left = mRestrictedScreenLeft;
4161 cf.top = mRestrictedScreenTop;
4162 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4163 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004164 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004165 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004166 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4167 vf.left = mCurLeft;
4168 vf.top = mCurTop;
4169 vf.right = mCurRight;
4170 vf.bottom = mCurBottom;
4171 } else {
4172 vf.set(cf);
4173 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004174 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004175 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4176 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4177 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004178 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4179 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004180 // A window that has requested to fill the entire screen just
4181 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004182 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004183 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4184 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004185 pf.left = df.left = of.left = cf.left = hasNavBar
4186 ? mDockLeft : mUnrestrictedScreenLeft;
4187 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4188 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004189 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004190 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004191 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004192 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004193 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004194 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004195 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4196 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004197 } else if (attrs.type == TYPE_NAVIGATION_BAR
4198 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004199 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004200 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4201 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4202 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4203 + mUnrestrictedScreenWidth;
4204 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4205 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004206 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004207 "Laying out navigation bar window: (%d,%d - %d,%d)",
4208 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004209 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4210 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004211 && ((fl & FLAG_FULLSCREEN) != 0)) {
4212 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004213 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4214 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4215 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4216 + mOverscanScreenWidth;
4217 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4218 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004219 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004220 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004221 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4222 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4223 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4224 + mOverscanScreenWidth;
4225 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4226 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004227 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004228 // The wallpaper also has Real Ultimate Power, but we want to tell
4229 // it about the overscan area.
4230 pf.left = df.left = mOverscanScreenLeft;
4231 pf.top = df.top = mOverscanScreenTop;
4232 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4233 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4234 of.left = cf.left = mUnrestrictedScreenLeft;
4235 of.top = cf.top = mUnrestrictedScreenTop;
4236 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4237 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004238 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004239 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4240 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4241 // Asking to layout into the overscan region, so give it that pure
4242 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004243 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4244 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4245 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004246 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004247 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004248 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004249 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004250 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004251 && (attrs.type == TYPE_STATUS_BAR
4252 || attrs.type == TYPE_TOAST
Jorim Jaggi81fe2d12015-12-21 14:45:18 +01004253 || attrs.type == TYPE_DOCK_DIVIDER
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004254 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004255 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4256 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004257 // Asking for layout as if the nav bar is hidden, lets the
4258 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004259 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004260 // can be above the nav bar can do this.
4261 // XXX This assumes that an app asking for this will also
4262 // ask for layout in only content. We can't currently figure out
4263 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004264 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4265 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4266 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4267 + mUnrestrictedScreenWidth;
4268 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4269 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004270 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004271 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4272 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4273 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4274 + mRestrictedScreenWidth;
4275 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4276 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004277 }
Craig Mautner69b08182012-09-05 13:07:13 -07004278
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004279 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004280
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004281 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4282 vf.left = mCurLeft;
4283 vf.top = mCurTop;
4284 vf.right = mCurRight;
4285 vf.bottom = mCurBottom;
4286 } else {
4287 vf.set(cf);
4288 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004289 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004290 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4291 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004292 // A child window should be placed inside of the same visible
4293 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004294 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004295 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004296 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4297 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004298 // Otherwise, a normal window must be placed inside the content
4299 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004300 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4301 // Status bar panels and the volume dialog are the only windows who can go on
4302 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004303 // permission, so they have the same privileges as the status
4304 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004305 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4306 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4307 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4308 + mRestrictedScreenWidth;
4309 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4310 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004311 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004312 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004313 pf.left = df.left = of.left = cf.left = mStableLeft;
4314 pf.top = df.top = of.top = cf.top = mStableTop;
4315 pf.right = df.right = of.right = cf.right = mStableRight;
4316 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004317 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004318 pf.left = mContentLeft;
4319 pf.top = mContentTop;
4320 pf.right = mContentRight;
4321 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004322 if (win.isVoiceInteraction()) {
4323 df.left = of.left = cf.left = mVoiceContentLeft;
4324 df.top = of.top = cf.top = mVoiceContentTop;
4325 df.right = of.right = cf.right = mVoiceContentRight;
4326 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4327 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004328 df.left = of.left = cf.left = mDockLeft;
4329 df.top = of.top = cf.top = mDockTop;
4330 df.right = of.right = cf.right = mDockRight;
4331 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004332 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004333 df.left = of.left = cf.left = mContentLeft;
4334 df.top = of.top = cf.top = mContentTop;
4335 df.right = of.right = cf.right = mContentRight;
4336 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004337 }
4338 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4339 vf.left = mCurLeft;
4340 vf.top = mCurTop;
4341 vf.right = mCurRight;
4342 vf.bottom = mCurBottom;
4343 } else {
4344 vf.set(cf);
4345 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004346 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004347 }
4348 }
Craig Mautner69b08182012-09-05 13:07:13 -07004349
Craig Mautnerb816bed2013-07-23 10:26:17 -07004350 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4351 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004352 df.left = df.top = -10000;
4353 df.right = df.bottom = 10000;
4354 if (attrs.type != TYPE_WALLPAPER) {
4355 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4356 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4357 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004358 }
4359
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004360 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4361 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004362 // We only want to apply outsets to certain types of windows. For example, we never want to
4363 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004364 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004365 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004366 osf = mTmpOutsetFrame;
4367 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4368 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4369 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004370 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004371 if (rotation == Surface.ROTATION_0) {
4372 osf.bottom += outset;
4373 } else if (rotation == Surface.ROTATION_90) {
4374 osf.right += outset;
4375 } else if (rotation == Surface.ROTATION_180) {
4376 osf.top -= outset;
4377 } else if (rotation == Surface.ROTATION_270) {
4378 osf.left -= outset;
4379 }
4380 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4381 + " with rotation " + rotation + ", result: " + osf);
4382 }
4383 }
4384
Craig Mautnereda67292013-04-28 13:50:14 -07004385 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004386 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004387 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004388 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004389 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004390 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004391 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004392 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004393 + " sf=" + sf.toShortString()
4394 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004395
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004396 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004397
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004398 // Dock windows carve out the bottom of the screen, so normal windows
4399 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004400 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4401 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004402 setLastInputMethodWindowLw(null, null);
4403 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004404 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004405 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4406 && !win.getGivenInsetsPendingLw()) {
4407 offsetVoiceInputWindowLw(win);
4408 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004409 }
4410
satok1bc0a492012-04-25 22:47:12 +09004411 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004412 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004413 top += win.getGivenContentInsetsLw().top;
4414 if (mContentBottom > top) {
4415 mContentBottom = top;
4416 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004417 if (mVoiceContentBottom > top) {
4418 mVoiceContentBottom = top;
4419 }
satok1bc0a492012-04-25 22:47:12 +09004420 top = win.getVisibleFrameLw().top;
4421 top += win.getGivenVisibleInsetsLw().top;
4422 if (mCurBottom > top) {
4423 mCurBottom = top;
4424 }
Craig Mautnereda67292013-04-28 13:50:14 -07004425 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004426 + mDockBottom + " mContentBottom="
4427 + mContentBottom + " mCurBottom=" + mCurBottom);
4428 }
4429
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004430 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004431 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004432 top += win.getGivenContentInsetsLw().top;
4433 if (mVoiceContentBottom > top) {
4434 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004435 }
4436 }
4437
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004438 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004439 @Override
4440 public void finishLayoutLw() {
4441 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004442 }
4443
4444 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004445 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004446 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004447 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004448 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004449 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004450 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004451 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004452 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004453 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004454 mForcingShowNavBar = false;
4455 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004456
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004457 mHideLockScreen = false;
4458 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004459 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004460 mShowingLockscreen = false;
4461 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004462 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004463 mKeyguardSecure = isKeyguardSecure();
4464 mKeyguardSecureIncludingHidden = mKeyguardSecure
4465 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004466 }
4467
4468 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004469 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004470 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4471 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004472 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4473 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004474 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004475 if (mTopFullscreenOpaqueWindowState == null
4476 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4477 mForcingShowNavBar = true;
4478 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004479 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004480 if (attrs.type == TYPE_STATUS_BAR) {
4481 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4482 mForceStatusBarFromKeyguard = true;
Jorim Jaggie1de9f62015-09-23 14:59:50 -07004483 mShowingLockscreen = true;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004484 }
4485 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4486 mForceStatusBarTransparent = true;
4487 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004488 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004489
4490 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4491 && attrs.type < FIRST_SYSTEM_WINDOW;
4492 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4493 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4494
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004495 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004496 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004497 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004498 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004499 mForceStatusBarFromKeyguard = true;
4500 } else {
4501 mForceStatusBar = true;
4502 }
4503 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004504 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004505 // If the lockscreen was showing when the dream started then wait
4506 // for the dream to draw before hiding the lockscreen.
4507 if (!mDreamingLockscreen
4508 || (win.isVisibleLw() && win.hasDrawnLw())) {
4509 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004510 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004511 }
4512 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004513
Yohei Yukawad1a09222015-06-30 16:22:05 -07004514 final IApplicationToken appToken = win.getAppToken();
4515
4516 // For app windows that are not attached, we decide if all windows in the app they
4517 // represent should be hidden or if we should hide the lockscreen. For attached app
4518 // windows we defer the decision to the window it is attached to.
4519 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004520 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004521 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004522 mAppsToBeHidden.remove(appToken);
4523 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004524 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004525 if (dismissKeyguard && !mKeyguardSecure) {
4526 mAppsThatDismissKeyguard.add(appToken);
Selim Cinek90b5e072015-08-28 17:05:56 -07004527 } else if (win.isDrawnLw() || win.hasAppShownWindows()) {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004528 mWinShowWhenLocked = win;
4529 mHideLockScreen = true;
4530 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004531 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004532 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004533 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004534 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004535 mAppsToBeHidden.add(appToken);
4536 } else {
4537 mAppsToBeHidden.remove(appToken);
4538 }
4539 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004540 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004541 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004542 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004543 if (attrs.x == 0 && attrs.y == 0
4544 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4545 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4546 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4547 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004548 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4549 mTopFullscreenOpaqueOrDimmingWindowState = win;
4550 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004551 if (!mAppsThatDismissKeyguard.isEmpty() &&
4552 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4553 if (DEBUG_LAYOUT) Slog.v(TAG,
4554 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004555 mDismissKeyguard = (mWinDismissingKeyguard == win
4556 && mSecureDismissingKeyguard == mKeyguardSecure)
4557 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004558 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004559 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004560 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Selim Cinek90b5e072015-08-28 17:05:56 -07004561 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked
4562 && (win.isDrawnLw() || win.hasAppShownWindows())) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004563 if (DEBUG_LAYOUT) Slog.v(TAG,
4564 "Setting mHideLockScreen to true by win " + win);
4565 mHideLockScreen = true;
4566 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004567 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004568 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004569 mAllowLockscreenWhenOn = true;
4570 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004571 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004572
4573 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004574 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4575 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004576 win.hideLw(false);
4577 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004578 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004579 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4580 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4581 // that is being hidden in an animation - keep the
4582 // keyguard hidden until the new window shows up and
4583 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004584 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004585 mHideLockScreen = true;
4586 mWinShowWhenLocked = win;
4587 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004588 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004589 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4590 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4591 && win.isDimming()) {
4592 mTopFullscreenOpaqueOrDimmingWindowState = win;
4593 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004594 }
4595
4596 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004597 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004598 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004599 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4600 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4601 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004602 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4603 // fullscreen window.
4604 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4605 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4606 mTopFullscreenOpaqueWindowState.hideLw(false);
4607 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4608 }
4609
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004610 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004611 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004612
4613 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4614 ? mTopFullscreenOpaqueWindowState.getAttrs()
4615 : null;
4616
Jeff Brownc8018eb2012-10-29 21:33:27 -07004617 // If we are not currently showing a dream then remember the current
4618 // lockscreen state. We will use this to determine whether the dream
4619 // started while the lockscreen was showing and remember this state
4620 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004621 if (!mShowingDream) {
4622 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004623 if (mDreamingSleepTokenNeeded) {
4624 mDreamingSleepTokenNeeded = false;
4625 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4626 }
4627 } else {
4628 if (!mDreamingSleepTokenNeeded) {
4629 mDreamingSleepTokenNeeded = true;
4630 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4631 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004632 }
4633
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004634 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004635 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004636 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004637 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004638 boolean shouldBeTransparent = mForceStatusBarTransparent
4639 && !mForceStatusBar
4640 && !mForceStatusBarFromKeyguard;
4641 if (!shouldBeTransparent) {
4642 mStatusBarController.setShowTransparent(false /* transparent */);
4643 } else if (!mStatusBar.isVisibleLw()) {
4644 mStatusBarController.setShowTransparent(true /* transparent */);
4645 }
4646 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004647 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004648 if (mStatusBarController.setBarShowingLw(true)) {
4649 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4650 }
Craig Mautner81defc72013-10-29 11:10:42 -07004651 // Maintain fullscreen layout until incoming animation is complete.
4652 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004653 // Transient status bar on the lockscreen is not allowed
4654 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4655 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4656 mLastSystemUiFlags, mLastSystemUiFlags);
4657 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004658 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004659 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004660 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004661 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -07004662 + " shown position: "
4663 + mTopFullscreenOpaqueWindowState.getShownPositionLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004664 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004665 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004666 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004667 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004668 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004669 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004670 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004671 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4672 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004673 if (mStatusBarController.isTransientShowing()) {
4674 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004675 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4676 }
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07004677 } else if (topIsFullscreen
4678 && !mWindowManagerInternal.isStackVisible(FREEFORM_WORKSPACE_STACK_ID)
4679 && !mWindowManagerInternal.isStackVisible(DOCKED_STACK_ID)) {
Craig Mautnereda67292013-04-28 13:50:14 -07004680 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004681 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004682 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004683 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004684 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004685 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004686 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004687 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004688 if (mStatusBarController.setBarShowingLw(true)) {
4689 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4690 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004691 }
4692 }
4693 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004694
Craig Mautner81defc72013-10-29 11:10:42 -07004695 if (mTopIsFullscreen != topIsFullscreen) {
4696 if (!topIsFullscreen) {
4697 // Force another layout when status bar becomes fully shown.
4698 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4699 }
4700 mTopIsFullscreen = topIsFullscreen;
4701 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004702
Craig Mautner39834192012-09-02 07:47:24 -07004703 // Hide the key guard if a visible window explicitly specifies that it wants to be
4704 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004705 if (mKeyguardDelegate != null && mStatusBar != null) {
4706 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4707 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004708 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004709 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004710 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004711 changes |= FINISH_LAYOUT_REDO_LAYOUT
4712 | FINISH_LAYOUT_REDO_CONFIG
4713 | FINISH_LAYOUT_REDO_WALLPAPER;
4714 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004715 if (mKeyguardDelegate.isShowing()) {
4716 mHandler.post(new Runnable() {
4717 @Override
4718 public void run() {
4719 mKeyguardDelegate.keyguardDone(false, false);
4720 }
4721 });
4722 }
4723 } else if (mHideLockScreen) {
4724 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004725 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004726 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004727 changes |= FINISH_LAYOUT_REDO_LAYOUT
4728 | FINISH_LAYOUT_REDO_CONFIG
4729 | FINISH_LAYOUT_REDO_WALLPAPER;
4730 }
4731 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004732 mKeyguardHidden = false;
4733 if (setKeyguardOccludedLw(false)) {
4734 changes |= FINISH_LAYOUT_REDO_LAYOUT
4735 | FINISH_LAYOUT_REDO_CONFIG
4736 | FINISH_LAYOUT_REDO_WALLPAPER;
4737 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004738 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4739 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004740 mHandler.post(new Runnable() {
4741 @Override
4742 public void run() {
4743 mKeyguardDelegate.dismiss();
4744 }
4745 });
4746 }
4747 } else {
4748 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004749 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004750 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004751 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004752 changes |= FINISH_LAYOUT_REDO_LAYOUT
4753 | FINISH_LAYOUT_REDO_CONFIG
4754 | FINISH_LAYOUT_REDO_WALLPAPER;
4755 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004756 }
4757 }
Joe Onorato664644d2011-01-23 17:53:23 -08004758
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004759 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004760 // If the navigation bar has been hidden or shown, we need to do another
4761 // layout pass to update that window.
4762 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4763 }
Joe Onorato664644d2011-01-23 17:53:23 -08004764
Mike Lockwood28569302010-01-28 11:54:40 -05004765 // update since mAllowLockscreenWhenOn might have changed
4766 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004767 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004768 }
4769
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004770 /**
Jim Millerab954542014-10-10 18:21:49 -07004771 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004772 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004773 * @return Whether the flags have changed and we have to redo the layout.
4774 */
Jim Millerab954542014-10-10 18:21:49 -07004775 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4776 boolean wasOccluded = mKeyguardOccluded;
4777 boolean showing = mKeyguardDelegate.isShowing();
4778 if (wasOccluded && !isOccluded && showing) {
4779 mKeyguardOccluded = false;
4780 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004781 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4782 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4783 return true;
Jim Millerab954542014-10-10 18:21:49 -07004784 } else if (!wasOccluded && isOccluded && showing) {
4785 mKeyguardOccluded = true;
4786 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004787 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4788 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4789 return true;
4790 } else {
4791 return false;
4792 }
4793 }
4794
4795 private boolean isStatusBarKeyguard() {
4796 return mStatusBar != null
4797 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4798 }
4799
Jose Lima9546b202014-07-02 17:21:51 -07004800 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004801 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004802 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004803 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004804 return false;
4805 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004806 return true;
4807 }
4808
Jose Lima9546b202014-07-02 17:21:51 -07004809 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004810 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004811 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004812 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004813 // If the navigation bar has been hidden or shown, we need to do another
4814 // layout pass to update that window.
4815 return FINISH_LAYOUT_REDO_LAYOUT;
4816 }
4817 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004818 }
4819
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004820 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004821 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004822 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4823 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004824 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4825 if (newLidState == mLidState) {
4826 return;
4827 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004828
Jeff Brownc458ce92012-04-30 14:58:40 -07004829 mLidState = newLidState;
4830 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004831 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004832
4833 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004834 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4835 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004836 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004837 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004838 }
4839 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004840
Michael Wright3818c922014-09-02 13:59:07 -07004841 @Override
4842 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4843 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4844 if (mCameraLensCoverState == lensCoverState) {
4845 return;
4846 }
4847 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4848 lensCoverState == CAMERA_LENS_UNCOVERED) {
4849 Intent intent;
4850 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4851 mKeyguardDelegate.isShowing();
4852 if (keyguardActive) {
4853 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4854 } else {
4855 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4856 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004857 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4858 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004859 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004860 }
4861 mCameraLensCoverState = lensCoverState;
4862 }
4863
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004864 void setHdmiPlugged(boolean plugged) {
4865 if (mHdmiPlugged != plugged) {
4866 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004867 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004868 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004869 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004870 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004871 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004872 }
4873 }
4874
Joe Onoratoea495d42011-04-06 11:41:11 -07004875 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004876 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004877 // watch for HDMI plug messages if the hdmi switch exists
4878 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4879 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4880
Joe Onoratoea495d42011-04-06 11:41:11 -07004881 final String filename = "/sys/class/switch/hdmi/state";
4882 FileReader reader = null;
4883 try {
4884 reader = new FileReader(filename);
4885 char[] buf = new char[15];
4886 int n = reader.read(buf);
4887 if (n > 1) {
4888 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4889 }
4890 } catch (IOException ex) {
4891 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4892 } catch (NumberFormatException ex) {
4893 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4894 } finally {
4895 if (reader != null) {
4896 try {
4897 reader.close();
4898 } catch (IOException ex) {
4899 }
Joe Onoratodc100302011-01-11 17:07:41 -08004900 }
4901 }
4902 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004903 // This dance forces the code in setHdmiPlugged to run.
4904 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4905 mHdmiPlugged = !plugged;
4906 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004907 }
4908
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004909 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004910 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004911
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004912 final Runnable mScreenshotTimeout = new Runnable() {
4913 @Override public void run() {
4914 synchronized (mScreenshotLock) {
4915 if (mScreenshotConnection != null) {
4916 mContext.unbindService(mScreenshotConnection);
4917 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004918 }
Winson Chung9112ec32011-06-27 13:15:32 -07004919 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004920 }
4921 };
4922
4923 // Assume this is called from the Handler thread.
4924 private void takeScreenshot() {
4925 synchronized (mScreenshotLock) {
4926 if (mScreenshotConnection != null) {
4927 return;
4928 }
4929 ComponentName cn = new ComponentName("com.android.systemui",
4930 "com.android.systemui.screenshot.TakeScreenshotService");
4931 Intent intent = new Intent();
4932 intent.setComponent(cn);
4933 ServiceConnection conn = new ServiceConnection() {
4934 @Override
4935 public void onServiceConnected(ComponentName name, IBinder service) {
4936 synchronized (mScreenshotLock) {
4937 if (mScreenshotConnection != this) {
4938 return;
4939 }
4940 Messenger messenger = new Messenger(service);
4941 Message msg = Message.obtain(null, 1);
4942 final ServiceConnection myConn = this;
4943 Handler h = new Handler(mHandler.getLooper()) {
4944 @Override
4945 public void handleMessage(Message msg) {
4946 synchronized (mScreenshotLock) {
4947 if (mScreenshotConnection == myConn) {
4948 mContext.unbindService(mScreenshotConnection);
4949 mScreenshotConnection = null;
4950 mHandler.removeCallbacks(mScreenshotTimeout);
4951 }
4952 }
4953 }
4954 };
4955 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004956 msg.arg1 = msg.arg2 = 0;
4957 if (mStatusBar != null && mStatusBar.isVisibleLw())
4958 msg.arg1 = 1;
4959 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4960 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004961 try {
4962 messenger.send(msg);
4963 } catch (RemoteException e) {
4964 }
4965 }
4966 }
4967 @Override
4968 public void onServiceDisconnected(ComponentName name) {}
4969 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004970 if (mContext.bindServiceAsUser(
4971 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004972 mScreenshotConnection = conn;
4973 mHandler.postDelayed(mScreenshotTimeout, 10000);
4974 }
4975 }
Winson Chung9112ec32011-06-27 13:15:32 -07004976 }
4977
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004978 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004979 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004980 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004981 if (!mSystemBooted) {
4982 // If we have not yet booted, don't let key events do anything.
4983 return 0;
4984 }
4985
Jeff Brown037c33e2014-04-09 00:31:55 -07004986 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004987 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4988 final boolean canceled = event.isCanceled();
4989 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004990
Jeff Brown3122e442010-10-11 23:32:49 -07004991 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004992
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004993 // If screen is off then we treat the case where the keyguard is open but hidden
4994 // the same as if it were open and in front.
4995 // This will prevent any keys other than the power button from waking the screen
4996 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004997 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004998 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004999 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08005000 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005001
Jeff Brown40013652012-05-16 21:22:36 -07005002 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005003 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07005004 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08005005 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005006 }
5007
Jeff Brown037c33e2014-04-09 00:31:55 -07005008 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07005009 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07005010 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
5011 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07005012 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07005013 // When the device is interactive or the key is injected pass the
5014 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07005015 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005016 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07005017 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
5018 // If we're currently dozing with the screen on and the keyguard showing, pass the key
5019 // to the application but preserve its wake key status to make sure we still move
5020 // from dozing to fully interactive if we would normally go from off to fully
5021 // interactive.
5022 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07005023 } else {
5024 // When the screen is off and the key is not injected, determine whether
5025 // to wake the device but don't pass the key to the application.
5026 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08005027 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
5028 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005029 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005030 }
5031
Justin Kohd378ad72013-04-01 12:18:26 -07005032 // If the key would be handled globally, just return the result, don't worry about special
5033 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07005034 if (isValidGlobalKey(keyCode)
5035 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07005036 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005037 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07005038 }
Justin Kohd378ad72013-04-01 12:18:26 -07005039 return result;
5040 }
5041
Jeff Brownbae8e772014-06-12 19:59:45 -07005042 boolean useHapticFeedback = down
5043 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
5044 && event.getRepeatCount() == 0;
5045
Jeff Brown4d396052010-10-29 21:50:21 -07005046 // Handle special keys.
5047 switch (keyCode) {
5048 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07005049 case KeyEvent.KEYCODE_VOLUME_UP:
5050 case KeyEvent.KEYCODE_VOLUME_MUTE: {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005051 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
5052 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005053 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005054 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005055 mScreenshotChordVolumeDownKeyTriggered = true;
5056 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
5057 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005058 cancelPendingPowerKeyAction();
5059 interceptScreenshotChord();
5060 }
5061 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005062 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005063 cancelPendingScreenshotChordAction();
5064 }
5065 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
5066 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005067 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005068 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005069 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005070 cancelPendingPowerKeyAction();
5071 cancelPendingScreenshotChordAction();
5072 }
5073 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005074 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005075 cancelPendingScreenshotChordAction();
5076 }
5077 }
Jeff Brown4d396052010-10-29 21:50:21 -07005078 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005079 TelecomManager telecomManager = getTelecommService();
5080 if (telecomManager != null) {
5081 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005082 // If an incoming call is ringing, either VOLUME key means
5083 // "silence ringer". We handle these keys here, rather than
5084 // in the InCallScreen, to make sure we'll respond to them
5085 // even if the InCallScreen hasn't come to the foreground yet.
5086 // Look for the DOWN event here, to agree with the "fallback"
5087 // behavior in the InCallScreen.
5088 Log.i(TAG, "interceptKeyBeforeQueueing:"
5089 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07005090
Santos Cordon6848f722014-05-21 15:22:12 -07005091 // Silence the ringer. (It's safe to call this
5092 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005093 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07005094
Santos Cordon6848f722014-05-21 15:22:12 -07005095 // And *don't* pass this key thru to the current activity
5096 // (which is probably the InCallScreen.)
5097 result &= ~ACTION_PASS_TO_USER;
5098 break;
5099 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005100 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07005101 && (result & ACTION_PASS_TO_USER) == 0) {
5102 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07005103 // the application, just pass it to the session service.
5104
5105 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07005106 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005107 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005108 }
5109 }
Jaewan Kim765487f2016-01-12 14:45:42 +09005110 }
5111 if (mUseTvRouting) {
5112 // On TVs, defer special key handlings to
5113 // {@link interceptKeyBeforeDispatching()}.
5114 result |= ACTION_PASS_TO_USER;
5115 } else if ((result & ACTION_PASS_TO_USER) == 0) {
5116 // If we aren't passing to the user and no one else
5117 // handled it send it to the session manager to
5118 // figure out.
5119 MediaSessionLegacyHelper.getHelper(mContext)
5120 .sendVolumeKeyEvent(event, true);
Jeff Brown4d396052010-10-29 21:50:21 -07005121 }
5122 break;
5123 }
5124
5125 case KeyEvent.KEYCODE_ENDCALL: {
5126 result &= ~ACTION_PASS_TO_USER;
5127 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005128 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005129 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005130 if (telecomManager != null) {
5131 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005132 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005133 if (interactive && !hungUp) {
5134 mEndCallKeyHandled = false;
5135 mHandler.postDelayed(mEndCallLongPress,
5136 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5137 } else {
5138 mEndCallKeyHandled = true;
5139 }
Jeff Brown4d396052010-10-29 21:50:21 -07005140 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005141 if (!mEndCallKeyHandled) {
5142 mHandler.removeCallbacks(mEndCallLongPress);
5143 if (!canceled) {
5144 if ((mEndcallBehavior
5145 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5146 if (goHome()) {
5147 break;
5148 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005149 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005150 if ((mEndcallBehavior
5151 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5152 mPowerManager.goToSleep(event.getEventTime(),
5153 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5154 isWakeKey = false;
5155 }
Jeff Brown4d396052010-10-29 21:50:21 -07005156 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005157 }
Jeff Brown4d396052010-10-29 21:50:21 -07005158 }
5159 break;
5160 }
5161
5162 case KeyEvent.KEYCODE_POWER: {
5163 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005164 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005165 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005166 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005167 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005168 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005169 }
5170 break;
5171 }
5172
Jeff Brown6212a492014-03-07 13:58:47 -08005173 case KeyEvent.KEYCODE_SLEEP: {
5174 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005175 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005176 if (!mPowerManager.isInteractive()) {
5177 useHapticFeedback = false; // suppress feedback if already non-interactive
5178 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005179 if (down) {
5180 sleepPress(event.getEventTime());
5181 } else {
5182 sleepRelease(event.getEventTime());
5183 }
Jeff Brown6212a492014-03-07 13:58:47 -08005184 break;
5185 }
5186
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -07005187 case KeyEvent.KEYCODE_SOFT_SLEEP: {
5188 result &= ~ACTION_PASS_TO_USER;
5189 isWakeKey = false;
5190 if (!down) {
5191 mPowerManagerInternal.setUserInactiveOverrideFromWindowManager();
5192 }
5193 break;
5194 }
5195
Jeff Brown6212a492014-03-07 13:58:47 -08005196 case KeyEvent.KEYCODE_WAKEUP: {
5197 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005198 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005199 break;
5200 }
5201
Jeff Brown4d396052010-10-29 21:50:21 -07005202 case KeyEvent.KEYCODE_MEDIA_PLAY:
5203 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5204 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005205 case KeyEvent.KEYCODE_HEADSETHOOK:
5206 case KeyEvent.KEYCODE_MUTE:
5207 case KeyEvent.KEYCODE_MEDIA_STOP:
5208 case KeyEvent.KEYCODE_MEDIA_NEXT:
5209 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5210 case KeyEvent.KEYCODE_MEDIA_REWIND:
5211 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005212 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5213 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005214 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5215 // If the global session is active pass all media keys to it
5216 // instead of the active window.
5217 result &= ~ACTION_PASS_TO_USER;
5218 }
Jeff Brown4d396052010-10-29 21:50:21 -07005219 if ((result & ACTION_PASS_TO_USER) == 0) {
5220 // Only do this if we would otherwise not pass it to the user. In that
5221 // case, the PhoneWindow class will do the same thing, except it will
5222 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005223 // Note that we need to make a copy of the key event here because the
5224 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005225 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005226 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5227 new KeyEvent(event));
5228 msg.setAsynchronous(true);
5229 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005230 }
5231 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005232 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005233
Jeff Brown4d396052010-10-29 21:50:21 -07005234 case KeyEvent.KEYCODE_CALL: {
5235 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005236 TelecomManager telecomManager = getTelecommService();
5237 if (telecomManager != null) {
5238 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005239 Log.i(TAG, "interceptKeyBeforeQueueing:"
5240 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005241 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005242
Santos Cordon6848f722014-05-21 15:22:12 -07005243 // And *don't* pass this key thru to the current activity
5244 // (which is presumably the InCallScreen.)
5245 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005246 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005247 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005248 }
Jeff Brown4d396052010-10-29 21:50:21 -07005249 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005250 }
Michael Wright869a67c2014-08-26 19:33:06 -07005251 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5252 // Only do this if we would otherwise not pass it to the user. In that case,
5253 // interceptKeyBeforeDispatching would apply a similar but different policy in
5254 // order to invoke voice assist actions. Note that we need to make a copy of the
5255 // key event here because the original key event will be recycled when we return.
5256 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5257 mBroadcastWakeLock.acquire();
5258 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5259 keyguardActive ? 1 : 0, 0);
5260 msg.setAsynchronous(true);
5261 msg.sendToTarget();
5262 }
5263 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005264 }
Jeff Brown26875502014-01-30 21:47:47 -08005265
Jeff Brownbae8e772014-06-12 19:59:45 -07005266 if (useHapticFeedback) {
5267 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5268 }
5269
Jeff Brown26875502014-01-30 21:47:47 -08005270 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005271 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005272 }
Bryce Lee584a4452014-10-21 15:55:55 -07005273
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005274 return result;
5275 }
5276
Jeff Brown1c2e4942012-11-06 16:32:01 -08005277 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005278 * Returns true if the key can have global actions attached to it.
5279 * We reserve all power management keys for the system since they require
5280 * very careful handling.
5281 */
5282 private static boolean isValidGlobalKey(int keyCode) {
5283 switch (keyCode) {
5284 case KeyEvent.KEYCODE_POWER:
5285 case KeyEvent.KEYCODE_WAKEUP:
5286 case KeyEvent.KEYCODE_SLEEP:
5287 return false;
5288 default:
5289 return true;
5290 }
5291 }
5292
5293 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005294 * When the screen is off we ignore some keys that might otherwise typically
5295 * be considered wake keys. We filter them out here.
5296 *
5297 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5298 * is always considered a wake key.
5299 */
5300 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5301 switch (keyCode) {
5302 // ignore volume keys unless docked
5303 case KeyEvent.KEYCODE_VOLUME_UP:
5304 case KeyEvent.KEYCODE_VOLUME_DOWN:
5305 case KeyEvent.KEYCODE_VOLUME_MUTE:
5306 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5307
5308 // ignore media and camera keys
5309 case KeyEvent.KEYCODE_MUTE:
5310 case KeyEvent.KEYCODE_HEADSETHOOK:
5311 case KeyEvent.KEYCODE_MEDIA_PLAY:
5312 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5313 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5314 case KeyEvent.KEYCODE_MEDIA_STOP:
5315 case KeyEvent.KEYCODE_MEDIA_NEXT:
5316 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5317 case KeyEvent.KEYCODE_MEDIA_REWIND:
5318 case KeyEvent.KEYCODE_MEDIA_RECORD:
5319 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005320 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005321 case KeyEvent.KEYCODE_CAMERA:
5322 return false;
5323 }
5324 return true;
5325 }
5326
5327
Jeff Brown56194eb2011-03-02 19:23:13 -08005328 /** {@inheritDoc} */
5329 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005330 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5331 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005332 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5333 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005334 return 0;
5335 }
Michael Wright70af00a2014-09-03 19:30:20 -07005336 }
Bryce Lee5c138322014-11-03 08:26:09 -08005337
Michael Wright70af00a2014-09-03 19:30:20 -07005338 if (shouldDispatchInputWhenNonInteractive()) {
5339 return ACTION_PASS_TO_USER;
5340 }
Bryce Lee5c138322014-11-03 08:26:09 -08005341
Bryce Lee812d7022014-11-10 13:33:28 -08005342 // If we have not passed the action up and we are in theater mode without dreaming,
5343 // there will be no dream to intercept the touch and wake into ambient. The device should
5344 // wake up in this case.
5345 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005346 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5347 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005348 }
5349
Jeff Brown037c33e2014-04-09 00:31:55 -07005350 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005351 }
5352
Michael Wright70af00a2014-09-03 19:30:20 -07005353 private boolean shouldDispatchInputWhenNonInteractive() {
Joe LaPennaf2b9b2d2015-11-17 22:22:37 +00005354 // Send events to keyguard while the screen is on.
5355 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
5356 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08005357 return true;
5358 }
5359
5360 // Send events to a dozing dream even if the screen is off since the dream
5361 // is in control of the state of the screen.
5362 IDreamManager dreamManager = getDreamManager();
5363
5364 try {
5365 if (dreamManager != null && dreamManager.isDreaming()) {
5366 return true;
5367 }
5368 } catch (RemoteException e) {
5369 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5370 }
5371
5372 // Otherwise, consume events since the user can't see what is being
5373 // interacted with.
5374 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005375 }
5376
RoboErik001c59c2015-01-26 15:53:51 -08005377 private void dispatchDirectAudioEvent(KeyEvent event) {
5378 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5379 return;
5380 }
5381 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005382 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5383 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005384 String pkgName = mContext.getOpPackageName();
5385 switch (keyCode) {
5386 case KeyEvent.KEYCODE_VOLUME_UP:
5387 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005388 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005389 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005390 } catch (RemoteException e) {
5391 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5392 }
5393 break;
5394 case KeyEvent.KEYCODE_VOLUME_DOWN:
5395 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005396 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005397 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005398 } catch (RemoteException e) {
5399 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5400 }
5401 break;
5402 case KeyEvent.KEYCODE_VOLUME_MUTE:
5403 try {
5404 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005405 getAudioService().adjustSuggestedStreamVolume(
5406 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005407 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005408 }
5409 } catch (RemoteException e) {
5410 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5411 }
5412 break;
5413 }
5414 }
5415
Jeff Brown40013652012-05-16 21:22:36 -07005416 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5417 if (DEBUG_INPUT) {
5418 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005419 }
5420
Jeff Brown40013652012-05-16 21:22:36 -07005421 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5422 if (DEBUG_INPUT) {
5423 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5424 }
5425
5426 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5427 mHavePendingMediaKeyRepeatWithWakeLock = false;
5428 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5429 }
5430
5431 dispatchMediaKeyWithWakeLockToAudioService(event);
5432
5433 if (event.getAction() == KeyEvent.ACTION_DOWN
5434 && event.getRepeatCount() == 0) {
5435 mHavePendingMediaKeyRepeatWithWakeLock = true;
5436
5437 Message msg = mHandler.obtainMessage(
5438 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5439 msg.setAsynchronous(true);
5440 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5441 } else {
5442 mBroadcastWakeLock.release();
5443 }
5444 }
5445
5446 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5447 mHavePendingMediaKeyRepeatWithWakeLock = false;
5448
5449 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5450 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5451 if (DEBUG_INPUT) {
5452 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5453 }
5454
5455 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5456 mBroadcastWakeLock.release();
5457 }
5458
5459 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5460 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005461 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005462 }
5463 }
5464
Michael Wright869a67c2014-08-26 19:33:06 -07005465 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005466 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5467 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5468 if (dic != null) {
5469 try {
5470 dic.exitIdle("voice-search");
5471 } catch (RemoteException e) {
5472 }
5473 }
Michael Wright869a67c2014-08-26 19:33:06 -07005474 Intent voiceIntent =
5475 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5476 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005477 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005478 mBroadcastWakeLock.release();
5479 }
5480
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005481 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005482 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005483 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005484 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5485 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5486 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005487 } else {
5488 try {
5489 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5490 ServiceManager.getService(Context.UI_MODE_SERVICE));
5491 mUiMode = uiModeService.getCurrentModeType();
5492 } catch (RemoteException e) {
5493 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005494 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005495 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005496 synchronized (mLock) {
5497 updateOrientationListenerLp();
5498 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005499 }
5500 };
5501
Jeff Brown6aaf2952012-10-05 16:01:08 -07005502 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5503 @Override
5504 public void onReceive(Context context, Intent intent) {
5505 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005506 if (mKeyguardDelegate != null) {
5507 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005508 }
5509 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005510 if (mKeyguardDelegate != null) {
5511 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005512 }
5513 }
5514 }
5515 };
5516
Christopher Tate5e08af02012-09-21 17:17:22 -07005517 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5518 @Override
5519 public void onReceive(Context context, Intent intent) {
5520 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5521 // tickle the settings observer: this first ensures that we're
5522 // observing the relevant settings for the newly-active user,
5523 // and then updates our own bookkeeping based on the now-
5524 // current user.
5525 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005526
5527 // force a re-application of focused window sysui visibility.
5528 // the window may never have been shown for this user
5529 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005530 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005531 mLastSystemUiFlags = 0;
5532 updateSystemUiVisibilityLw();
5533 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005534 }
5535 }
5536 };
5537
Adrian Roosddc8b272015-05-21 16:28:27 -07005538 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005539 @Override
5540 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005541 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5542 if (!isUserSetupComplete()) {
5543 // Swipe-up for navigation bar is disabled during setup
5544 return;
5545 }
5546 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5547 mNavigationBarController.showTransient();
5548 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005549 }
5550 };
5551
John Spurlocke1f366f2013-08-05 12:22:40 -04005552 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005553 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005554 if (!isUserSetupComplete()) {
5555 // Swipe-up for navigation bar is disabled during setup
5556 return;
5557 }
John Spurlock27735a42013-08-14 17:57:38 -04005558 boolean sb = mStatusBarController.checkShowTransientBarLw();
5559 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005560 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005561 // Don't show status bar when swiping on already visible navigation bar
5562 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005563 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005564 return;
5565 }
John Spurlock27735a42013-08-14 17:57:38 -04005566 if (sb) mStatusBarController.showTransient();
5567 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005568 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005569 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005570 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005571 }
5572 }
5573
Jeff Brown3ee549c2014-09-22 20:14:39 -07005574 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005575 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005576 public void startedGoingToSleep(int why) {
5577 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005578 if (mKeyguardDelegate != null) {
5579 mKeyguardDelegate.onStartedGoingToSleep(why);
5580 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005581 }
5582
5583 // Called on the PowerManager's Notifier thread.
5584 @Override
5585 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005586 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005587 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005588 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005589
5590 // We must get this work done here because the power manager will drop
5591 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005592 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005593 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005594 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005595 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005596 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005597 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005598 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005599 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005600 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005601 }
5602
Jeff Brown3ee549c2014-09-22 20:14:39 -07005603 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005604 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005605 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005606 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005607 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005608
Jeff Brown3ee549c2014-09-22 20:14:39 -07005609 // Since goToSleep performs these functions synchronously, we must
5610 // do the same here. We cannot post this work to a handler because
5611 // that might cause it to become reordered with respect to what
5612 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005613 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005614 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005615
Jeff Browna20dda42014-05-27 20:57:24 -07005616 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005617 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005618 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005619 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005620
Jim Miller5ecd8112013-01-09 18:50:26 -08005621 if (mKeyguardDelegate != null) {
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005622 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005623 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005624 }
5625
Jeff Brown416c49c2015-05-26 19:50:18 -07005626 // Called on the PowerManager's Notifier thread.
5627 @Override
5628 public void finishedWakingUp() {
5629 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5630 }
5631
5632 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005633 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005634 }
5635
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005636 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005637 final boolean theaterModeEnabled = isTheaterModeEnabled();
5638 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005639 return false;
5640 }
5641
Bryce Leed3896842015-06-23 17:06:51 -07005642 if (theaterModeEnabled) {
5643 Settings.Global.putInt(mContext.getContentResolver(),
5644 Settings.Global.THEATER_MODE_ON, 0);
5645 }
5646
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005647 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005648 return true;
5649 }
5650
Jeff Brown36c4db82014-09-19 12:05:31 -07005651 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005652 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005653 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005654 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005655 }
5656
Jeff Brown36c4db82014-09-19 12:05:31 -07005657 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005658 if (mKeyguardDelegate != null) {
5659 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5660 }
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005661 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005662 }
5663
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005664 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5665 // as well as enabling the orientation change logic/sensor.
5666 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5667 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005668 }
5669
5670 // Called on the DisplayManager's DisplayPowerController thread.
5671 @Override
5672 public void screenTurnedOff() {
5673 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5674
Jeff Brown48d1b142015-06-10 16:36:03 -07005675 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005676 synchronized (mLock) {
5677 mScreenOnEarly = false;
5678 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005679 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005680 mWindowManagerDrawComplete = false;
5681 mScreenOnListener = null;
5682 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005683
5684 if (mKeyguardDelegate != null) {
5685 mKeyguardDelegate.onScreenTurnedOff();
5686 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005687 }
5688 }
5689
Jeff Brown3ee549c2014-09-22 20:14:39 -07005690 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005691 @Override
5692 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005693 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005694
Jeff Brown48d1b142015-06-10 16:36:03 -07005695 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005696 synchronized (mLock) {
5697 mScreenOnEarly = true;
5698 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005699 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005700 mWindowManagerDrawComplete = false;
5701 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005702
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005703 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005704 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5705 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005706 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5707 } else {
5708 if (DEBUG_WAKEUP) Slog.d(TAG,
5709 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5710 finishKeyguardDrawn();
5711 }
5712 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005713 }
5714
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005715 // Called on the DisplayManager's DisplayPowerController thread.
5716 @Override
5717 public void screenTurnedOn() {
5718 synchronized (mLock) {
5719 if (mKeyguardDelegate != null) {
5720 mKeyguardDelegate.onScreenTurnedOn();
5721 }
5722 }
5723 }
5724
Jeff Brown36c4db82014-09-19 12:05:31 -07005725 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005726 synchronized (mLock) {
5727 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005728 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005729 }
5730
Jeff Brown36c4db82014-09-19 12:05:31 -07005731 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005732 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005733
5734 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005735 }
5736
Craig Mautner8a0da012014-05-31 15:13:37 -07005737 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005738 synchronized (mLock) {
5739 // We have just finished drawing screen content. Since the orientation listener
5740 // gets only installed when all windows are drawn, we try to install it again.
5741 updateOrientationListenerLp();
5742 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005743 final ScreenOnListener listener;
5744 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005745 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005746 if (DEBUG_WAKEUP) Slog.d(TAG,
5747 "finishScreenTurningOn: mAwake=" + mAwake
5748 + ", mScreenOnEarly=" + mScreenOnEarly
5749 + ", mScreenOnFully=" + mScreenOnFully
5750 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5751 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5752
5753 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5754 || (mAwake && !mKeyguardDrawComplete)) {
5755 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005756 }
5757
Jeff Brown3ee549c2014-09-22 20:14:39 -07005758 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5759 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005760 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005761 mScreenOnFully = true;
5762
5763 // Remember the first time we draw the keyguard so we know when we're done with
5764 // the main part of booting and can enable the screen and hide boot messages.
5765 if (!mKeyguardDrawnOnce && mAwake) {
5766 mKeyguardDrawnOnce = true;
5767 enableScreen = true;
5768 if (mBootMessageNeedsHiding) {
5769 mBootMessageNeedsHiding = false;
5770 hideBootMessages();
5771 }
5772 } else {
5773 enableScreen = false;
5774 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005775 }
5776
Jeff Brown3ee549c2014-09-22 20:14:39 -07005777 if (listener != null) {
5778 listener.onScreenOn();
5779 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005780
Jeff Brown3ee549c2014-09-22 20:14:39 -07005781 if (enableScreen) {
5782 try {
5783 mWindowManager.enableScreenIfNeeded();
5784 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005785 }
Craig Mautnera631d492014-08-05 15:16:01 -07005786 }
5787 }
5788
5789 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005790 synchronized (mLock) {
5791 if (!mKeyguardDrawnOnce) {
5792 mBootMessageNeedsHiding = true;
5793 return; // keyguard hasn't drawn the first time yet, not done booting
5794 }
Craig Mautnera631d492014-08-05 15:16:01 -07005795 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005796
5797 if (mBootMsgDialog != null) {
5798 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5799 mBootMsgDialog.dismiss();
5800 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005801 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005802 }
5803
5804 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005805 public boolean isScreenOn() {
5806 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005807 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005808
Dianne Hackborn08743722009-12-21 12:16:51 -08005809 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005810 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005811 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005812 if (mKeyguardDelegate != null) {
5813 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005814 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005815 }
5816
5817 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005818 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005819 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005820 if (mKeyguardDelegate != null) {
5821 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005822 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005823 }
5824
Jim Millerab954542014-10-10 18:21:49 -07005825 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005826 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005827 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005828 }
5829
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005830 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005831 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005832 public boolean isKeyguardLocked() {
5833 return keyguardOn();
5834 }
5835
5836 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005837 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005838 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005839 if (mKeyguardDelegate == null) return false;
5840 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005841 }
5842
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005843 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005844 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005845 public boolean isKeyguardShowingOrOccluded() {
5846 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5847 }
5848
5849 /** {@inheritDoc} */
5850 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005851 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005852 if (mKeyguardDelegate == null) return false;
5853 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005854 }
5855
Jose Lima9546b202014-07-02 17:21:51 -07005856 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005857 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005858 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005859 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005860 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005861 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005862 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005863 // ask the keyguard to prompt the user to authenticate if necessary
5864 mKeyguardDelegate.dismiss();
5865 }
5866 });
5867 }
5868 }
5869
5870 public void notifyActivityDrawnForKeyguardLw() {
5871 if (mKeyguardDelegate != null) {
5872 mHandler.post(new Runnable() {
5873 @Override
5874 public void run() {
5875 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005876 }
5877 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005878 }
5879 }
5880
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005881 @Override
5882 public boolean isKeyguardDrawnLw() {
5883 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005884 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005885 }
5886 }
5887
Jorim Jaggi0d674622014-05-21 01:34:15 +02005888 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005889 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005890 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005891 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005892 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005893 }
5894 }
5895
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005896 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005897 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005898 }
5899
5900 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005901 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005902 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005903
Jeff Brown01a98dd2011-09-20 15:08:29 -07005904 @Override
5905 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005906 if (false) {
5907 Slog.v(TAG, "rotationForOrientationLw(orient="
5908 + orientation + ", last=" + lastRotation
5909 + "); user=" + mUserRotation + " "
5910 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5911 ? "USER_ROTATION_LOCKED" : "")
5912 );
5913 }
5914
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005915 if (mForceDefaultOrientation) {
5916 return Surface.ROTATION_0;
5917 }
5918
The Android Open Source Project0727d222009-03-11 12:11:58 -07005919 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005920 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5921 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005922 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005923 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005924
Jeff Browndec6cf42011-11-15 14:08:20 -08005925 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005926 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005927 // Ignore sensor when lid switch is open and rotation is forced.
5928 preferredRotation = mLidOpenRotation;
5929 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005930 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005931 // Ignore sensor when in car dock unless explicitly enabled.
5932 // This case can override the behavior of NOSENSOR, and can also
5933 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005934 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005935 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005936 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5937 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5938 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005939 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005940 // Ignore sensor when in desk dock unless explicitly enabled.
5941 // This case can override the behavior of NOSENSOR, and can also
5942 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005943 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005944 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005945 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5946 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005947 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005948 preferredRotation = mDemoHdmiRotation;
5949 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5950 && mUndockedHdmiRotation >= 0) {
5951 // Ignore sensor when plugged into HDMI and an undocked orientation has
5952 // been specified in the configuration (only for legacy devices without
5953 // full multi-display support).
5954 // Note that the dock orientation overrides the HDMI orientation.
5955 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005956 } else if (mDemoRotationLock) {
5957 // Ignore sensor when demo rotation lock is enabled.
5958 // Note that the dock orientation and HDMI rotation lock override this.
5959 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005960 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5961 // Application just wants to remain locked in the last rotation.
5962 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005963 } else if (!mSupportAutoRotation) {
5964 // If we don't support auto-rotation then bail out here and ignore
5965 // the sensor and any rotation lock settings.
5966 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005967 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005968 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005969 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5970 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5971 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5972 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005973 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5974 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5975 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5976 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5977 // Otherwise, use sensor only if requested by the application or enabled
5978 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005979 if (mAllowAllRotations < 0) {
5980 // Can't read this during init() because the context doesn't
5981 // have display metrics at that time so we cannot determine
5982 // tablet vs. phone then.
5983 mAllowAllRotations = mContext.getResources().getBoolean(
5984 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5985 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005986 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005987 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005988 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5989 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005990 preferredRotation = sensorRotation;
5991 } else {
5992 preferredRotation = lastRotation;
5993 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005994 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5995 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5996 // Apply rotation lock. Does not apply to NOSENSOR.
5997 // The idea is that the user rotation expresses a weak preference for the direction
5998 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5999 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07006000 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08006001 } else {
6002 // No overriding preference.
6003 // We will do exactly what the application asked us to do.
6004 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07006005 }
6006
Dianne Hackborne5439f22010-10-02 16:53:50 -07006007 switch (orientation) {
6008 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08006009 // Return portrait unless overridden.
6010 if (isAnyPortrait(preferredRotation)) {
6011 return preferredRotation;
6012 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07006013 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006014
Jeff Brown01a98dd2011-09-20 15:08:29 -07006015 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08006016 // Return landscape unless overridden.
6017 if (isLandscapeOrSeascape(preferredRotation)) {
6018 return preferredRotation;
6019 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006020 return mLandscapeRotation;
6021
6022 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08006023 // Return reverse portrait unless overridden.
6024 if (isAnyPortrait(preferredRotation)) {
6025 return preferredRotation;
6026 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006027 return mUpsideDownRotation;
6028
6029 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08006030 // Return seascape unless overridden.
6031 if (isLandscapeOrSeascape(preferredRotation)) {
6032 return preferredRotation;
6033 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006034 return mSeascapeRotation;
6035
6036 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006037 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07006038 // Return either landscape rotation.
6039 if (isLandscapeOrSeascape(preferredRotation)) {
6040 return preferredRotation;
6041 }
6042 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08006043 return lastRotation;
6044 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006045 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006046
Jeff Brown01a98dd2011-09-20 15:08:29 -07006047 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006048 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07006049 // Return either portrait rotation.
6050 if (isAnyPortrait(preferredRotation)) {
6051 return preferredRotation;
6052 }
6053 if (isAnyPortrait(lastRotation)) {
6054 return lastRotation;
6055 }
6056 return mPortraitRotation;
6057
6058 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07006059 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
6060 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07006061 if (preferredRotation >= 0) {
6062 return preferredRotation;
6063 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07006064 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05006065 }
6066 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006067 }
6068
Jeff Brown01a98dd2011-09-20 15:08:29 -07006069 @Override
6070 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
6071 switch (orientation) {
6072 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
6073 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
6074 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
6075 return isAnyPortrait(rotation);
6076
6077 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
6078 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
6079 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
6080 return isLandscapeOrSeascape(rotation);
6081
6082 default:
6083 return true;
6084 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006085 }
6086
Jeff Brownc0347aa2011-09-23 17:26:09 -07006087 @Override
6088 public void setRotationLw(int rotation) {
6089 mOrientationListener.setCurrentRotation(rotation);
6090 }
6091
Jeff Brown01a98dd2011-09-20 15:08:29 -07006092 private boolean isLandscapeOrSeascape(int rotation) {
6093 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006094 }
6095
Jeff Brown01a98dd2011-09-20 15:08:29 -07006096 private boolean isAnyPortrait(int rotation) {
6097 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006098 }
6099
Jose Lima9546b202014-07-02 17:21:51 -07006100 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006101 public int getUserRotationMode() {
6102 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07006103 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
6104 WindowManagerPolicy.USER_ROTATION_FREE :
6105 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006106 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006107
6108 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07006109 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006110 public void setUserRotationMode(int mode, int rot) {
6111 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006112
6113 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006114 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006115 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006116 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006117 rot,
6118 UserHandle.USER_CURRENT);
6119 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006120 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006121 0,
6122 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006123 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006124 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006125 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006126 1,
6127 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006128 }
6129 }
6130
Jose Lima9546b202014-07-02 17:21:51 -07006131 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006132 public void setSafeMode(boolean safeMode) {
6133 mSafeMode = safeMode;
6134 performHapticFeedbackLw(null, safeMode
6135 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6136 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006137 }
Craig Mautnereda67292013-04-28 13:50:14 -07006138
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006139 static long[] getLongIntArray(Resources r, int resid) {
6140 int[] ar = r.getIntArray(resid);
6141 if (ar == null) {
6142 return null;
6143 }
6144 long[] out = new long[ar.length];
6145 for (int i=0; i<ar.length; i++) {
6146 out[i] = ar[i];
6147 }
6148 return out;
6149 }
Craig Mautnereda67292013-04-28 13:50:14 -07006150
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006151 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006152 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006153 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006154 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006155 mKeyguardDelegate.onSystemReady();
6156
Michael Wright3818c922014-09-02 13:59:07 -07006157 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006158 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006159 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006160 synchronized (mLock) {
6161 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006162 mSystemReady = true;
6163 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006164 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006165 public void run() {
6166 updateSettings();
6167 }
6168 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006169
6170 bindKeyguardNow = mDeferBindKeyguard;
6171 if (bindKeyguardNow) {
6172 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6173 mDeferBindKeyguard = false;
6174 }
6175 }
6176
6177 if (bindKeyguardNow) {
6178 mKeyguardDelegate.bindService(mContext);
6179 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006180 }
Michael Wrighta4d22d72015-09-16 23:19:26 +01006181 mSystemGestures.systemReady();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006182 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006183
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006184 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006185 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006186 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006187 boolean bindKeyguardNow = false;
6188 synchronized (mLock) {
6189 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6190 // in systemReady if not.
6191 if (mKeyguardDelegate != null) {
6192 bindKeyguardNow = true;
6193 } else {
6194 // Because mKeyguardDelegate is null, we know that the synchronized block in
6195 // systemReady didn't run yet and setting this will actually have an effect.
6196 mDeferBindKeyguard = true;
6197 }
6198 }
6199 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006200 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006201 mKeyguardDelegate.onBootCompleted();
6202 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006203 synchronized (mLock) {
6204 mSystemBooted = true;
6205 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006206 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006207 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006208 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006209 }
6210
Dianne Hackborn661cd522011-08-22 00:26:20 -07006211 ProgressDialog mBootMsgDialog = null;
6212
6213 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006214 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006215 public void showBootMessage(final CharSequence msg, final boolean always) {
6216 mHandler.post(new Runnable() {
6217 @Override public void run() {
6218 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006219 int theme;
6220 if (mContext.getPackageManager().hasSystemFeature(
6221 PackageManager.FEATURE_WATCH)) {
6222 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6223 } else if (mContext.getPackageManager().hasSystemFeature(
6224 PackageManager.FEATURE_TELEVISION)) {
6225 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6226 } else {
6227 theme = 0;
6228 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006229
6230 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006231 // This dialog will consume all events coming in to
6232 // it, to avoid it trying to do things too early in boot.
6233 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6234 return true;
6235 }
6236 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6237 return true;
6238 }
6239 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6240 return true;
6241 }
6242 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6243 return true;
6244 }
6245 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6246 return true;
6247 }
6248 @Override public boolean dispatchPopulateAccessibilityEvent(
6249 AccessibilityEvent event) {
6250 return true;
6251 }
6252 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006253 if (mContext.getPackageManager().isUpgrade()) {
6254 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6255 } else {
6256 mBootMsgDialog.setTitle(R.string.android_start_title);
6257 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006258 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6259 mBootMsgDialog.setIndeterminate(true);
6260 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006261 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006262 mBootMsgDialog.getWindow().addFlags(
6263 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6264 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6265 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006266 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6267 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6268 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006269 mBootMsgDialog.setCancelable(false);
6270 mBootMsgDialog.show();
6271 }
6272 mBootMsgDialog.setMessage(msg);
6273 }
6274 });
6275 }
6276
6277 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006278 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006279 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006280 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006281 }
6282
Mike Lockwood28569302010-01-28 11:54:40 -05006283 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006284 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006285 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006286 // ***************************************
6287 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6288 // ***************************************
6289 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6290 // WITH ITS LOCKS HELD.
6291 //
6292 // This code must be VERY careful about the locks
6293 // it acquires.
6294 // In fact, the current code acquires way too many,
6295 // and probably has lurking deadlocks.
6296
Mike Lockwood28569302010-01-28 11:54:40 -05006297 synchronized (mScreenLockTimeout) {
6298 if (mLockScreenTimerActive) {
6299 // reset the timer
6300 mHandler.removeCallbacks(mScreenLockTimeout);
6301 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6302 }
6303 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006304 }
6305
Adam Cohenf7522022012-10-03 20:03:18 -07006306 class ScreenLockTimeout implements Runnable {
6307 Bundle options;
6308
6309 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006310 public void run() {
6311 synchronized (this) {
6312 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006313 if (mKeyguardDelegate != null) {
6314 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006315 }
Mike Lockwood28569302010-01-28 11:54:40 -05006316 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006317 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006318 }
6319 }
Mike Lockwood28569302010-01-28 11:54:40 -05006320
Adam Cohenf7522022012-10-03 20:03:18 -07006321 public void setLockOptions(Bundle options) {
6322 this.options = options;
6323 }
6324 }
6325
6326 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6327
Jose Lima9546b202014-07-02 17:21:51 -07006328 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006329 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006330 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6331 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006332 if (options != null) {
6333 // In case multiple calls are made to lockNow, we don't wipe out the options
6334 // until the runnable actually executes.
6335 mScreenLockTimeout.setLockOptions(options);
6336 }
Jim Miller93c518e2012-01-17 15:55:31 -08006337 mHandler.post(mScreenLockTimeout);
6338 }
6339
Mike Lockwood28569302010-01-28 11:54:40 -05006340 private void updateLockScreenTimeout() {
6341 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006342 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006343 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006344 if (mLockScreenTimerActive != enable) {
6345 if (enable) {
6346 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6347 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6348 } else {
6349 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6350 mHandler.removeCallbacks(mScreenLockTimeout);
6351 }
6352 mLockScreenTimerActive = enable;
6353 }
6354 }
6355 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006356
Jeff Brown061ea992015-04-17 19:55:47 -07006357 private void updateDreamingSleepToken(boolean acquire) {
6358 if (acquire) {
6359 if (mDreamingSleepToken == null) {
6360 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6361 }
6362 } else {
6363 if (mDreamingSleepToken != null) {
6364 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006365 mDreamingSleepToken = null;
6366 }
6367 }
6368 }
6369
6370 private void updateScreenOffSleepToken(boolean acquire) {
6371 if (acquire) {
6372 if (mScreenOffSleepToken == null) {
6373 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6374 }
6375 } else {
6376 if (mScreenOffSleepToken != null) {
6377 mScreenOffSleepToken.release();
6378 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006379 }
6380 }
6381 }
6382
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006383 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006384 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006385 public void enableScreenAfterBoot() {
6386 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006387 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006388 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006389 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006390
Jeff Brownc458ce92012-04-30 14:58:40 -07006391 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006392 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006393 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006394 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006395 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Edward Savage-Jones7def60d2015-11-13 13:27:03 +01006396 } else if (mLidState == LID_CLOSED && mLidControlsScreenLock) {
6397 mWindowManagerFuncs.lockDeviceNow();
Jeff Brownc458ce92012-04-30 14:58:40 -07006398 }
Jeff Browna20dda42014-05-27 20:57:24 -07006399
6400 synchronized (mLock) {
6401 updateWakeGestureListenerLp();
6402 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006403 }
6404
Jeff Brown4f5fa282014-06-12 19:19:15 -07006405 void updateUiMode() {
6406 if (mUiModeManager == null) {
6407 mUiModeManager = IUiModeManager.Stub.asInterface(
6408 ServiceManager.getService(Context.UI_MODE_SERVICE));
6409 }
6410 try {
6411 mUiMode = mUiModeManager.getCurrentModeType();
6412 } catch (RemoteException e) {
6413 }
6414 }
6415
Jeff Brown01a98dd2011-09-20 15:08:29 -07006416 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006417 try {
6418 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006419 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6420 } catch (RemoteException e) {
6421 // Ignore
6422 }
6423 }
6424
6425 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6426 try {
6427 //set orientation on WindowManager
6428 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006429 } catch (RemoteException e) {
6430 // Ignore
6431 }
6432 }
6433
Daniel Sandler6396c722013-04-16 20:19:09 -04006434 /**
6435 * Return an Intent to launch the currently active dock app as home. Returns
6436 * null if the standard home should be launched, which is the case if any of the following is
6437 * true:
6438 * <ul>
6439 * <li>The device is not in either car mode or desk mode
keunyounga7710492015-09-23 11:33:58 -07006440 * <li>The device is in car mode but mEnableCarDockHomeCapture is false
Daniel Sandler6396c722013-04-16 20:19:09 -04006441 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6442 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6443 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6444 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006445 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006446 */
6447 Intent createHomeDockIntent() {
6448 Intent intent = null;
6449
6450 // What home does is based on the mode, not the dock state. That
6451 // is, when in car mode you should be taken to car home regardless
6452 // of whether we are actually in a car dock.
6453 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
keunyounga7710492015-09-23 11:33:58 -07006454 if (mEnableCarDockHomeCapture) {
Daniel Sandler6396c722013-04-16 20:19:09 -04006455 intent = mCarDockIntent;
6456 }
6457 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6458 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6459 intent = mDeskDockIntent;
6460 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006461 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6462 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6463 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6464 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6465 // Always launch dock home from home when watch is docked, if it exists.
6466 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006467 }
6468
6469 if (intent == null) {
6470 return null;
6471 }
6472
6473 ActivityInfo ai = null;
6474 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6475 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006476 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006477 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006478 if (info != null) {
6479 ai = info.activityInfo;
6480 }
6481 if (ai != null
6482 && ai.metaData != null
6483 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6484 intent = new Intent(intent);
6485 intent.setClassName(ai.packageName, ai.name);
6486 return intent;
6487 }
6488
6489 return null;
6490 }
6491
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006492 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6493 if (awakenFromDreams) {
6494 awakenDreams();
6495 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006496
6497 Intent dock = createHomeDockIntent();
6498 if (dock != null) {
6499 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006500 if (fromHomeKey) {
6501 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6502 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006503 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006504 return;
6505 } catch (ActivityNotFoundException e) {
6506 }
6507 }
6508
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006509 Intent intent;
6510
6511 if (fromHomeKey) {
6512 intent = new Intent(mHomeIntent);
6513 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6514 } else {
6515 intent = mHomeIntent;
6516 }
6517
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006518 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006519 }
Craig Mautnereda67292013-04-28 13:50:14 -07006520
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006521 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006522 * goes to the home screen
6523 * @return whether it did anything
6524 */
6525 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006526 if (!isUserSetupComplete()) {
6527 Slog.i(TAG, "Not going home because user setup is in progress.");
6528 return false;
6529 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006530 if (false) {
6531 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006532 try {
6533 ActivityManagerNative.getDefault().stopAppSwitches();
6534 } catch (RemoteException e) {
6535 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006536 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006537 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006538 } else {
6539 // This code brings home to the front or, if it is already
6540 // at the front, puts the device to sleep.
6541 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006542 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6543 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6544 Log.d(TAG, "UTS-TEST-MODE");
6545 } else {
6546 ActivityManagerNative.getDefault().stopAppSwitches();
6547 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006548 Intent dock = createHomeDockIntent();
6549 if (dock != null) {
6550 int result = ActivityManagerNative.getDefault()
6551 .startActivityAsUser(null, null, dock,
6552 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6553 null, null, 0,
6554 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006555 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006556 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6557 return false;
6558 }
6559 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006560 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006561 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006562 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006563 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006564 null, null, 0,
6565 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006566 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006567 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006568 return false;
6569 }
6570 } catch (RemoteException ex) {
6571 // bummer, the activity manager, which is in this process, is dead
6572 }
6573 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006574 return true;
6575 }
Craig Mautnereda67292013-04-28 13:50:14 -07006576
6577 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006578 public void setCurrentOrientationLw(int newOrientation) {
6579 synchronized (mLock) {
6580 if (newOrientation != mCurrentAppOrientation) {
6581 mCurrentAppOrientation = newOrientation;
6582 updateOrientationListenerLp();
6583 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006584 }
6585 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006586
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006587 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6588 if (!isGlobalAccessibilityGestureEnabled()) {
6589 return;
6590 }
6591 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6592 Context.AUDIO_SERVICE);
6593 if (audioManager.isSilentMode()) {
6594 return;
6595 }
6596 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6597 Settings.System.DEFAULT_NOTIFICATION_URI);
6598 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6599 ringTone.play();
6600 }
Craig Mautnereda67292013-04-28 13:50:14 -07006601
Bryce Lee584a4452014-10-21 15:55:55 -07006602 private boolean isTheaterModeEnabled() {
6603 return Settings.Global.getInt(mContext.getContentResolver(),
6604 Settings.Global.THEATER_MODE_ON, 0) == 1;
6605 }
6606
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006607 private boolean isGlobalAccessibilityGestureEnabled() {
6608 return Settings.Global.getInt(mContext.getContentResolver(),
6609 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6610 }
6611
Craig Mautnereda67292013-04-28 13:50:14 -07006612 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006613 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006614 if (!mVibrator.hasVibrator()) {
6615 return false;
6616 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006617 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6618 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006619 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006620 return false;
6621 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006622 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006623 switch (effectId) {
6624 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006625 pattern = mLongPressVibePattern;
6626 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006627 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006628 pattern = mVirtualKeyVibePattern;
6629 break;
6630 case HapticFeedbackConstants.KEYBOARD_TAP:
6631 pattern = mKeyboardTapVibePattern;
6632 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006633 case HapticFeedbackConstants.CLOCK_TICK:
6634 pattern = mClockTickVibePattern;
6635 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006636 case HapticFeedbackConstants.CALENDAR_DATE:
6637 pattern = mCalendarDateVibePattern;
6638 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006639 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006640 pattern = mSafeModeDisabledVibePattern;
6641 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006642 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006643 pattern = mSafeModeEnabledVibePattern;
6644 break;
Mady Mellore8608912015-06-05 09:02:55 -07006645 case HapticFeedbackConstants.CONTEXT_CLICK:
6646 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006647 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006648 default:
6649 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006650 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006651 int owningUid;
6652 String owningPackage;
6653 if (win != null) {
6654 owningUid = win.getOwningUid();
6655 owningPackage = win.getOwningPackage();
6656 } else {
6657 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006658 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006659 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006660 if (pattern.length == 1) {
6661 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006662 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006663 } else {
6664 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006665 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006666 }
6667 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006668 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006669
6670 @Override
6671 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006672 }
6673
Jeff Brownc38c9be2012-10-04 13:16:19 -07006674 @Override
6675 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006676 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006677 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006678 }
6679 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006680
Dianne Hackborndf89e652011-10-06 22:35:11 -07006681 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006682 // If there is no window focused, there will be nobody to handle the events
6683 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006684 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6685 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006686 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006687 return 0;
6688 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006689 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006690 // We are updating at a point where the keyguard has gotten
6691 // focus, but we were last in a state where the top window is
6692 // hiding it. This is probably because the keyguard as been
6693 // shown while the top window was displayed, so we want to ignore
6694 // it here because this is just a very transient change and it
6695 // will quickly lose focus once it correctly gets hidden.
6696 return 0;
6697 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006698
John Spurlock1db8b682014-02-18 11:18:59 -05006699 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006700 & ~mResettingSystemUiFlags
6701 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006702 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006703 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006704 }
Thanh Hai Mai6c009f52015-09-01 16:27:32 -07006705
6706 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6707 tmpVisibility |= StatusBarManager.DISABLE_RECENT;
6708 }
6709
Adrian Rooscd3884d2015-02-18 17:25:23 +01006710 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006711 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006712 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006713 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006714 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006715 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006716 return 0;
6717 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006718 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006719 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006720 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006721 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006722 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006723 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006724 try {
6725 IStatusBarService statusbar = getStatusBarService();
6726 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006727 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006728 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006729 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006730 } catch (RemoteException e) {
6731 // re-acquire status bar service next time it is needed.
6732 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006733 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006734 }
6735 });
6736 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006737 }
6738
Adrian Rooscd3884d2015-02-18 17:25:23 +01006739 private int updateLightStatusBarLw(int vis) {
6740 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6741 ? mStatusBar
6742 : mTopFullscreenOpaqueOrDimmingWindowState;
6743
6744 if (statusColorWin != null) {
6745 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6746 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6747 // its light flag.
6748 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6749 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6750 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6751 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6752 // Otherwise if it's dimming, clear the light flag.
6753 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6754 }
6755 }
6756 return vis;
6757 }
6758
John Spurlock79da8332013-09-20 12:04:47 -04006759 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006760 final boolean dockedStackVisible = mWindowManagerInternal.isStackVisible(DOCKED_STACK_ID);
6761 final boolean freeformStackVisible =
6762 mWindowManagerInternal.isStackVisible(FREEFORM_WORKSPACE_STACK_ID);
6763 final boolean forceShowSystemBars = dockedStackVisible || freeformStackVisible;
Jorim Jaggi4fa78922015-11-30 17:13:56 -08006764 final boolean forceOpaqueSystemBars = forceShowSystemBars && !mForceStatusBarFromKeyguard;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006765
John Spurlockbd957402013-10-03 11:38:39 -04006766 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006767 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6768 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006769 : mTopFullscreenOpaqueWindowState;
6770 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6771 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6772
John Spurlock27735a42013-08-14 17:57:38 -04006773 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006774 int type = win.getAttrs().type;
6775 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006776 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006777 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6778 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006779 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006780 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6781 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006782 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006783 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6784 }
John Spurlockbd957402013-10-03 11:38:39 -04006785 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006786 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006787
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006788 if ((!areTranslucentBarsAllowed() && transWin != mStatusBar)
6789 || forceOpaqueSystemBars) {
Adrian Roosea562512014-05-05 13:33:03 +02006790 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6791 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006792 }
6793
Jorim Jaggi4fa78922015-11-30 17:13:56 -08006794 if (mForceWindowDrawsStatusBarBackground) {
6795 vis |= View.STATUS_BAR_TRANSPARENT;
6796 vis &= ~View.STATUS_BAR_TRANSLUCENT;
6797 }
6798
John Spurlock27735a42013-08-14 17:57:38 -04006799 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006800 boolean immersiveSticky =
6801 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006802 final boolean hideStatusBarWM =
6803 mTopFullscreenOpaqueWindowState != null
6804 && (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006805 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006806 final boolean hideStatusBarSysui =
John Spurlock27735a42013-08-14 17:57:38 -04006807 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006808 final boolean hideNavBarSysui =
John Spurlockf1a36642013-10-12 17:50:42 -04006809 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006810
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006811 final boolean transientStatusBarAllowed = mStatusBar != null
6812 && (statusBarHasFocus || (!forceShowSystemBars
6813 && (hideStatusBarWM || (hideStatusBarSysui && immersiveSticky))));
John Spurlock27735a42013-08-14 17:57:38 -04006814
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006815 final boolean transientNavBarAllowed = mNavigationBar != null
6816 && !forceShowSystemBars && hideNavBarSysui && immersiveSticky;
John Spurlockf1a36642013-10-12 17:50:42 -04006817
Adrian Roosddc8b272015-05-21 16:28:27 -07006818 final long now = SystemClock.uptimeMillis();
6819 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6820 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6821 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6822 // The user performed the panic gesture recently, we're about to hide the bars,
6823 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6824 mPendingPanicGestureUptime = 0;
6825 mStatusBarController.showTransient();
6826 mNavigationBarController.showTransient();
6827 }
6828
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006829 final boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006830 && !transientStatusBarAllowed && hideStatusBarSysui;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006831 final boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006832 && !transientNavBarAllowed;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006833 if (denyTransientStatus || denyTransientNav || forceShowSystemBars) {
John Spurlock27735a42013-08-14 17:57:38 -04006834 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006835 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006836 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006837 }
John Spurlock27735a42013-08-14 17:57:38 -04006838
Selim Cinekf98702e2015-05-20 22:48:40 -07006839 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6840 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6841 final boolean navAllowedHidden = immersive || immersiveSticky;
6842
Selim Cinekd6623612015-05-22 18:56:22 -07006843 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6844 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006845 // We can't hide the navbar from this window otherwise the input consumer would not get
6846 // the input events.
6847 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6848 }
6849
John Spurlock27735a42013-08-14 17:57:38 -04006850 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6851
6852 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006853 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6854 boolean newImmersiveMode = isImmersiveMode(vis);
6855 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006856 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006857 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6858 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006859 }
John Spurlock27735a42013-08-14 17:57:38 -04006860
John Spurlockf1a36642013-10-12 17:50:42 -04006861 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6862
John Spurlocke1f366f2013-08-05 12:22:40 -04006863 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006864 }
6865
John Spurlockf1a36642013-10-12 17:50:42 -04006866 private void clearClearableFlagsLw() {
6867 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6868 if (newVal != mResettingSystemUiFlags) {
6869 mResettingSystemUiFlags = newVal;
6870 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6871 }
6872 }
6873
6874 private boolean isImmersiveMode(int vis) {
6875 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006876 return mNavigationBar != null
6877 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006878 && (vis & flags) != 0
6879 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006880 }
6881
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006882 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006883 * @return whether the navigation or status bar can be made translucent
6884 *
6885 * This should return true unless touch exploration is not enabled or
6886 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006887 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006888 private boolean areTranslucentBarsAllowed() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04006889 return mTranslucentDecorEnabled;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006890 }
6891
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006892 // Use this instead of checking config_showNavigationBar so that it can be consistently
6893 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006894 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006895 public boolean hasNavigationBar() {
6896 return mHasNavigationBar;
6897 }
6898
satok1bc0a492012-04-25 22:47:12 +09006899 @Override
6900 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6901 mLastInputMethodWindow = ime;
6902 mLastInputMethodTargetWindow = target;
6903 }
6904
Craig Mautnerf1b67412012-09-19 13:18:29 -07006905 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006906 public int getInputMethodWindowVisibleHeightLw() {
6907 return mDockBottom - mCurBottom;
6908 }
6909
6910 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006911 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006912 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006913 if (mKeyguardDelegate != null) {
6914 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006915 }
John Spurlock13451a22012-09-28 14:40:41 -04006916 if (mStatusBarService != null) {
6917 try {
6918 mStatusBarService.setCurrentUser(newUserId);
6919 } catch (RemoteException e) {
6920 // oh well
6921 }
6922 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006923 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006924 }
6925
6926 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006927 public boolean canMagnifyWindow(int windowType) {
6928 switch (windowType) {
6929 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6930 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6931 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6932 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6933 return false;
6934 }
6935 }
6936 return true;
6937 }
6938
6939 @Override
6940 public boolean isTopLevelWindow(int windowType) {
6941 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6942 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6943 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6944 }
6945 return true;
6946 }
6947
Jim Miller4eeb4f62012-11-08 00:04:29 -08006948 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006949 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006950 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006951 pw.print(" mSystemReady="); pw.print(mSystemReady);
6952 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006953 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006954 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006955 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006956 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006957 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6958 || mForceClearedSystemUiFlags != 0) {
6959 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6960 pw.print(Integer.toHexString(mLastSystemUiFlags));
6961 pw.print(" mResettingSystemUiFlags=0x");
6962 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6963 pw.print(" mForceClearedSystemUiFlags=0x");
6964 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006965 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006966 if (mLastFocusNeedsMenu) {
6967 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6968 pw.println(mLastFocusNeedsMenu);
6969 }
Jeff Browna20dda42014-05-27 20:57:24 -07006970 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6971 pw.println(mWakeGestureEnabledSetting);
6972
Jeff Brownbcdfc622014-03-06 19:13:04 -08006973 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006974 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6975 pw.print(" mDockMode="); pw.print(mDockMode);
keunyounga7710492015-09-23 11:33:58 -07006976 pw.print(" mEnableCarDockHomeCapture="); pw.print(mEnableCarDockHomeCapture);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006977 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6978 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6979 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6980 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006981 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006982 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006983 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6984 pw.print(mCarDockEnablesAccelerometer);
6985 pw.print(" mDeskDockEnablesAccelerometer=");
6986 pw.println(mDeskDockEnablesAccelerometer);
6987 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6988 pw.print(mLidKeyboardAccessibility);
6989 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Edward Savage-Jones7def60d2015-11-13 13:27:03 +01006990 pw.print(" mLidControlsScreenLock="); pw.println(mLidControlsScreenLock);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006991 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006992 pw.print(prefix);
6993 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6994 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006995 pw.print(prefix);
6996 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6997 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006998 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006999 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
7000 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
7001 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
7002 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
7003 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
7004 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
7005 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08007006 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
7007 pw.print(","); pw.print(mOverscanScreenTop);
7008 pw.print(") "); pw.print(mOverscanScreenWidth);
7009 pw.print("x"); pw.println(mOverscanScreenHeight);
7010 if (mOverscanLeft != 0 || mOverscanTop != 0
7011 || mOverscanRight != 0 || mOverscanBottom != 0) {
7012 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
7013 pw.print(" top="); pw.print(mOverscanTop);
7014 pw.print(" right="); pw.print(mOverscanRight);
7015 pw.print(" bottom="); pw.println(mOverscanBottom);
7016 }
Dianne Hackborn313440842013-02-19 19:22:59 -08007017 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
7018 pw.print(mRestrictedOverscanScreenLeft);
7019 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
7020 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
7021 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007022 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
7023 pw.print(","); pw.print(mUnrestrictedScreenTop);
7024 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
7025 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
7026 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
7027 pw.print(","); pw.print(mRestrictedScreenTop);
7028 pw.print(") "); pw.print(mRestrictedScreenWidth);
7029 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07007030 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
7031 pw.print(","); pw.print(mStableFullscreenTop);
7032 pw.print(")-("); pw.print(mStableFullscreenRight);
7033 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07007034 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
7035 pw.print(","); pw.print(mStableTop);
7036 pw.print(")-("); pw.print(mStableRight);
7037 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07007038 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
7039 pw.print(","); pw.print(mSystemTop);
7040 pw.print(")-("); pw.print(mSystemRight);
7041 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007042 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
7043 pw.print(","); pw.print(mCurTop);
7044 pw.print(")-("); pw.print(mCurRight);
7045 pw.print(","); pw.print(mCurBottom); pw.println(")");
7046 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
7047 pw.print(","); pw.print(mContentTop);
7048 pw.print(")-("); pw.print(mContentRight);
7049 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07007050 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
7051 pw.print(","); pw.print(mVoiceContentTop);
7052 pw.print(")-("); pw.print(mVoiceContentRight);
7053 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007054 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
7055 pw.print(","); pw.print(mDockTop);
7056 pw.print(")-("); pw.print(mDockRight);
7057 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07007058 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
7059 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007060 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
7061 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07007062 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
7063 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007064 if (mLastInputMethodWindow != null) {
7065 pw.print(prefix); pw.print("mLastInputMethodWindow=");
7066 pw.println(mLastInputMethodWindow);
7067 }
7068 if (mLastInputMethodTargetWindow != null) {
7069 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
7070 pw.println(mLastInputMethodTargetWindow);
7071 }
7072 if (mStatusBar != null) {
7073 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08007074 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
7075 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007076 }
7077 if (mNavigationBar != null) {
7078 pw.print(prefix); pw.print("mNavigationBar=");
7079 pw.println(mNavigationBar);
7080 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007081 if (mFocusedWindow != null) {
7082 pw.print(prefix); pw.print("mFocusedWindow=");
7083 pw.println(mFocusedWindow);
7084 }
7085 if (mFocusedApp != null) {
7086 pw.print(prefix); pw.print("mFocusedApp=");
7087 pw.println(mFocusedApp);
7088 }
7089 if (mWinDismissingKeyguard != null) {
7090 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
7091 pw.println(mWinDismissingKeyguard);
7092 }
7093 if (mTopFullscreenOpaqueWindowState != null) {
7094 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
7095 pw.println(mTopFullscreenOpaqueWindowState);
7096 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01007097 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
7098 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
7099 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
7100 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08007101 if (mForcingShowNavBar) {
7102 pw.print(prefix); pw.print("mForcingShowNavBar=");
7103 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
7104 pw.println(mForcingShowNavBarLayer);
7105 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007106 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007107 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07007108 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
7109 pw.print(" mForceStatusBarFromKeyguard=");
7110 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007111 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07007112 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007113 pw.print(" mHomePressed="); pw.println(mHomePressed);
7114 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
7115 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
7116 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
7117 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
7118 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
7119 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
7120 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
7121 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
7122 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
7123 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07007124 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
7125 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
7126 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07007127
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07007128 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04007129 mStatusBarController.dump(pw, prefix);
7130 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007131 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007132
Jeff Browna20dda42014-05-27 20:57:24 -07007133 if (mWakeGestureListener != null) {
7134 mWakeGestureListener.dump(pw, prefix);
7135 }
Jeff Brown600f0032014-05-22 17:06:00 -07007136 if (mOrientationListener != null) {
7137 mOrientationListener.dump(pw, prefix);
7138 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007139 if (mBurnInProtectionHelper != null) {
7140 mBurnInProtectionHelper.dump(prefix, pw);
7141 }
Jorim Jaggi84dc08a2015-09-11 17:45:22 -07007142 if (mKeyguardDelegate != null) {
7143 mKeyguardDelegate.dump(prefix, pw);
7144 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007145 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007146}