blob: 39742050ca7725c5d45af7c7dafaa00be0cf252e [file] [log] [blame]
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001/*
Jeff Brown37df39a92015-02-25 15:42:31 -08002 * Copyright (C) 2006 The Android Open Source Project
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jorim Jaggib10e33f2015-02-04 21:57:40 +010017package com.android.server.policy;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080018
Dianne Hackborna4972e92012-03-14 10:38:05 -070019import android.app.ActivityManager;
Jeff Brown061ea992015-04-17 19:55:47 -070020import android.app.ActivityManagerInternal;
21import android.app.ActivityManagerInternal.SleepToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080022import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080023import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040024import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070025import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070026import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040027import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080028import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070029import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080030import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040031import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080032import android.content.ContentResolver;
33import android.content.Context;
34import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070035import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070036import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080037import android.content.pm.ActivityInfo;
38import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040039import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070040import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080041import android.content.res.Configuration;
42import android.content.res.Resources;
Craig Mautner8e4df6c2012-05-23 16:57:23 -070043import android.content.res.TypedArray;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080044import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080045import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080046import android.graphics.Rect;
Jinsuk Kime601b712015-07-07 08:01:02 +090047import android.hardware.hdmi.HdmiControlManager;
48import android.hardware.hdmi.HdmiPlaybackClient;
49import android.hardware.hdmi.HdmiPlaybackClient.OneTouchPlayCallback;
John Spurlock7b414672014-07-18 13:02:39 -040050import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080051import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050052import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080053import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070054import android.media.Ringtone;
55import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070056import android.media.session.MediaSessionLegacyHelper;
Billy Laucbe540f2015-06-25 01:51:44 +010057import android.os.Binder;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070058import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080059import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070060import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080061import android.os.Handler;
62import android.os.IBinder;
Dianne Hackbornb6683c42015-06-18 17:40:33 -070063import android.os.IDeviceIdleController;
Jeff Brown32cbc38552011-12-01 14:01:49 -080064import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070065import android.os.Message;
66import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080067import android.os.PowerManager;
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -070068import android.os.PowerManagerInternal;
Billy Laucbe540f2015-06-25 01:51:44 +010069import android.os.Process;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080070import android.os.RemoteException;
71import android.os.ServiceManager;
72import android.os.SystemClock;
73import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080074import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070075import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080076import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070077import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080078import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070079import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040080import android.service.dreams.DreamService;
81import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070082import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070083import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070084import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080085import android.util.EventLog;
86import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070087import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080088import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070089import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080090import android.view.Gravity;
91import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080092import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080093import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070094import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070095import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080096import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080097import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080098import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080099import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800100import android.view.KeyEvent;
101import android.view.MotionEvent;
Chris Wren9bb290b2015-06-29 12:02:13 -0400102
103import com.android.internal.logging.MetricsLogger;
Adam Powell6711f3b2015-05-06 15:57:09 -0700104import com.android.internal.policy.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800105import android.view.Surface;
106import android.view.View;
107import android.view.ViewConfiguration;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800108import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800109import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700110import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800111import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800112import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800113import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800114import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200115import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800116import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800117import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800118import com.android.internal.statusbar.IStatusBarService;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700119import com.android.internal.util.ScreenShapeHelper;
Craig Mautnerae446592012-12-06 19:05:05 -0800120import com.android.internal.widget.PointerLocationView;
Adrian Roos5941c982015-09-03 15:59:49 -0700121import com.android.server.GestureLauncherService;
Craig Mautner8a0da012014-05-31 15:13:37 -0700122import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100123import com.android.server.policy.keyguard.KeyguardServiceDelegate;
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700124import com.android.server.policy.keyguard.KeyguardServiceDelegate.DrawnListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800125
126import java.io.File;
127import java.io.FileReader;
128import java.io.IOException;
129import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700130import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800131import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800132
Dianne Hackbornc652de82013-02-15 16:32:56 -0800133import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700134import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
135import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
136import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700137import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
138import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
139import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -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.
161 // No longer recommended for desk docks; still useful in car docks.
162 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
163 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
164
Jeff Brown6d8fd272014-05-20 21:24:38 -0700165 static final int SHORT_PRESS_POWER_NOTHING = 0;
166 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
167 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
168 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800169 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700170
Joe Onoratod208e702010-10-08 16:22:43 -0400171 static final int LONG_PRESS_POWER_NOTHING = 0;
172 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
173 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700174 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700175
Jeff Brown13f00f02014-10-31 14:45:50 -0700176 static final int MULTI_PRESS_POWER_NOTHING = 0;
177 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
178 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
179
Michael Jurka3b1fc472011-06-13 10:54:40 -0700180 // These need to match the documentation/constant in
181 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800182 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800183 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700184 static final int LONG_PRESS_HOME_ASSIST = 2;
185
186 static final int DOUBLE_TAP_HOME_NOTHING = 0;
187 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800188
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000189 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
190 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
191
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700192 static final int APPLICATION_MEDIA_SUBLAYER = -2;
193 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800194 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800195 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700196 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700197
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800198 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
199 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
200 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500201 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700202 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800203
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700204 /**
205 * These are the system UI flags that, when changing, can cause the layout
206 * of the screen to change.
207 */
208 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400209 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400210 | View.SYSTEM_UI_FLAG_FULLSCREEN
211 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200212 | View.NAVIGATION_BAR_TRANSLUCENT
213 | View.SYSTEM_UI_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
Craig Mautnera631d492014-08-05 15:16:01 -0700319 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800320 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700321 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700322 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700323 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700324 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
325 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
326 }
327 };
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700328 final DrawnListener mKeyguardDrawnCallback = new DrawnListener() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700329 @Override
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700330 public void onDrawn() {
331 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onDrawn.");
Craig Mautner8a0da012014-05-31 15:13:37 -0700332 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
333 }
334 };
335
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800336 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800337 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900338 WindowState mLastInputMethodWindow = null;
339 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800340
Jeff Brown13f00f02014-10-31 14:45:50 -0700341 // FIXME This state is shared between the input reader and handler thread.
342 // Technically it's broken and buggy but it has been like this for many years
343 // and we have not yet seen any problems. Someday we'll rewrite this logic
344 // so that only one thread is involved in handling input policy. Unfortunately
345 // it's on a critical path for power management so we can't just post the work to the
346 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
347 // to hold wakelocks during dispatch and eliminating the critical path.
348 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800349 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700350 volatile int mPowerKeyPressCounter;
351 volatile boolean mEndCallKeyHandled;
352
Winson Chungd42a6cf2014-06-03 16:24:04 -0700353 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700354 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700355 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800356
Jeff Brown2e7760e2012-04-11 15:14:55 -0700357 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700358 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700359 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800360
Dianne Hackbornc777e072010-02-12 13:07:59 -0800361 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700362 boolean mSystemBooted;
Adrian Roos3542f7d2015-07-13 15:57:53 -0700363 private boolean mDeferBindKeyguard;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800364 boolean mHdmiPlugged;
Jinsuk Kime601b712015-07-07 08:01:02 +0900365 HdmiControl mHdmiControl;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700366 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400367 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700368 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700369 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400370 int mCarDockRotation;
371 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700372 int mUndockedHdmiRotation;
373 int mDemoHdmiRotation;
374 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800375 int mDemoRotation;
376 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400377
Jeff Browna20dda42014-05-27 20:57:24 -0700378 boolean mWakeGestureEnabledSetting;
379 MyWakeGestureListener mWakeGestureListener;
380
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700381 // Default display does not rotate, apps that require non-default orientation will have to
382 // have the orientation emulated.
383 private boolean mForceDefaultOrientation = false;
384
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400385 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
386 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700387 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400388
Jeff Brownbcdfc622014-03-06 19:13:04 -0800389 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700390 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400391 boolean mCarDockEnablesAccelerometer;
392 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700393 int mLidKeyboardAccessibility;
394 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700395 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700396 int mShortPressOnPowerBehavior;
397 int mLongPressOnPowerBehavior;
398 int mDoublePressOnPowerBehavior;
399 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000400 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700401 boolean mAwake;
402 boolean mScreenOnEarly;
403 boolean mScreenOnFully;
404 ScreenOnListener mScreenOnListener;
405 boolean mKeyguardDrawComplete;
406 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800407 boolean mOrientationSensorEnabled = false;
408 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800409 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400410 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800411 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700412
Jeff Brown70825162012-03-28 17:27:48 -0700413 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800414
415 // The last window we were told about in focusChanged.
416 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800417 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800418
Jeff Brown70825162012-03-28 17:27:48 -0700419 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800420
Dianne Hackbornc652de82013-02-15 16:32:56 -0800421 // The current size of the screen; really; extends into the overscan area of
422 // the screen and doesn't account for any system elements like the status bar.
423 int mOverscanScreenLeft, mOverscanScreenTop;
424 int mOverscanScreenWidth, mOverscanScreenHeight;
425 // The current visible size of the screen; really; (ir)regardless of whether the status
426 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800427 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
428 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800429 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
430 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
431 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700432 // The current size of the screen; these may be different than (0,0)-(dw,dh)
433 // if the status bar can't be hidden; in that case it effectively carves out
434 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800435 int mRestrictedScreenLeft, mRestrictedScreenTop;
436 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700437 // During layout, the current screen borders accounting for any currently
438 // visible system UI elements.
439 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700440 // For applications requesting stable content insets, these are them.
441 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700442 // For applications requesting stable content insets but have also set the
443 // fullscreen window flag, these are the stable dimensions without the status bar.
444 int mStableFullscreenLeft, mStableFullscreenTop;
445 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800446 // During layout, the current screen borders with all outer decoration
447 // (status bar, input method dock) accounted for.
448 int mCurLeft, mCurTop, mCurRight, mCurBottom;
449 // During layout, the frame in which content should be displayed
450 // to the user, accounting for all screen decoration except for any
451 // space they deem as available for other content. This is usually
452 // the same as mCur*, but may be larger if the screen decor has supplied
453 // content insets.
454 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700455 // During layout, the frame in which voice content should be displayed
456 // to the user, accounting for all screen decoration except for any
457 // space they deem as available for other content.
458 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800459 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800460 // windows are placed.
461 int mDockLeft, mDockTop, mDockRight, mDockBottom;
462 // During layout, the layer at which the doc window is placed.
463 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700464 // During layout, this is the layer of the status bar.
465 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700466 int mLastSystemUiFlags;
467 // Bits that we are in the process of clearing, so we want to prevent
468 // them from being set by applications until everything has been updated
469 // to have them clear.
470 int mResettingSystemUiFlags = 0;
471 // Bits that we are currently always keeping cleared.
472 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800473 // What we last reported to system UI about whether the compatibility
474 // menu needs to be displayed.
475 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700476 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
477 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700478
Selim Cinekf83e8242015-05-19 18:08:14 -0700479 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700480
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800481 static final Rect mTmpParentFrame = new Rect();
482 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800483 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800484 static final Rect mTmpContentFrame = new Rect();
485 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400486 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700487 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700488 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700489 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700490
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800491 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100492 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700493 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200494 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400495 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800496 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700497 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700498 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700499 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800500 boolean mForcingShowNavBar;
501 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700502
503 // States of keyguard dismiss.
504 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
505 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
506 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
507 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
508
509 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
510 * be done once per window. */
511 private WindowState mWinDismissingKeyguard;
512
tingna_sunge785ffa2015-05-12 13:23:15 +0800513 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
514 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
515 * lock SIM card. This variable is used to record the previous keyguard secure state for
516 * monitoring secure state change on window dismissing keyguard. */
517 private boolean mSecureDismissingKeyguard;
518
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700519 /** The window that is currently showing "over" the keyguard. If there is an app window
520 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
521 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
522 * the wallpaper. */
523 private WindowState mWinShowWhenLocked;
524
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700525 boolean mShowingLockscreen;
526 boolean mShowingDream;
527 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700528 boolean mDreamingSleepTokenNeeded;
529 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700530 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700531 boolean mKeyguardSecure;
532 boolean mKeyguardSecureIncludingHidden;
533 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800534 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700535 boolean mHomeConsumed;
536 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800537 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700538 Intent mCarDockIntent;
539 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700540 boolean mSearchKeyShortcutPending;
541 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700542 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700543 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800544
Mike Lockwood28569302010-01-28 11:54:40 -0500545 // support for activating the lock screen while the screen is on
546 boolean mAllowLockscreenWhenOn;
547 int mLockScreenTimeout;
548 boolean mLockScreenTimerActive;
549
David Brownbaf8d092010-03-08 21:52:59 -0800550 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800551 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800552
553 // Behavior of POWER button while in-call and screen on.
554 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
555 int mIncallPowerBehavior;
556
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700557 Display mDisplay;
558
Filip Gruszczynski2987f612015-06-30 15:03:30 -0700559 private int mDisplayRotation;
560
Dianne Hackborn9d132642011-04-21 17:26:39 -0700561 int mLandscapeRotation = 0; // default landscape rotation
562 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
563 int mPortraitRotation = 0; // default portrait rotation
564 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700565
Dianne Hackbornc652de82013-02-15 16:32:56 -0800566 int mOverscanLeft = 0;
567 int mOverscanTop = 0;
568 int mOverscanRight = 0;
569 int mOverscanBottom = 0;
570
Joe Onorato46b0d682010-11-22 17:37:27 -0800571 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700572 private int mLongPressOnHomeBehavior;
573
574 // What we do when the user double-taps on home
575 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800576
Bryce Lee584a4452014-10-21 15:55:55 -0700577 // Allowed theater mode wake actions
578 private boolean mAllowTheaterModeWakeFromKey;
579 private boolean mAllowTheaterModeWakeFromPowerKey;
580 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800581 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700582 private boolean mAllowTheaterModeWakeFromCameraLens;
583 private boolean mAllowTheaterModeWakeFromLidSwitch;
584 private boolean mAllowTheaterModeWakeFromWakeGesture;
585
Bryce Leed3b28402015-03-09 15:49:13 +0000586 // Whether to support long press from power button in non-interactive mode
587 private boolean mSupportLongPressPowerWhenNonInteractive;
588
Bryce Lee55e846d2014-11-04 12:43:44 -0800589 // Whether to go to sleep entering theater mode from power button
590 private boolean mGoToSleepOnButtonPressTheaterMode;
591
Winson Chung9112ec32011-06-27 13:15:32 -0700592 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700593 // Time to volume and power must be pressed within this interval of each other.
594 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700595 // Increase the chord delay when taking a screenshot from the keyguard
596 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800597 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700598 private boolean mScreenshotChordVolumeDownKeyTriggered;
599 private long mScreenshotChordVolumeDownKeyTime;
600 private boolean mScreenshotChordVolumeDownKeyConsumed;
601 private boolean mScreenshotChordVolumeUpKeyTriggered;
602 private boolean mScreenshotChordPowerKeyTriggered;
603 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700604
Michael Wrightb854e242013-02-05 17:54:02 -0800605 /* The number of steps between min and max brightness */
606 private static final int BRIGHTNESS_STEPS = 10;
607
Christopher Tate5e08af02012-09-21 17:17:22 -0700608 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800609 ShortcutManager mShortcutManager;
610 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700611 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700612 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800613
Craig Mautnerd625ab22013-09-06 13:40:31 -0700614 private int mCurrentUserId;
615
Justin Kohd378ad72013-04-01 12:18:26 -0700616 // Maps global key codes to the components that will handle them.
617 private GlobalKeyManager mGlobalKeyManager;
618
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700619 // Fallback actions by key code.
620 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
621 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800622
Jorim Jaggi76a16232014-08-08 17:00:47 +0200623 private final LogDecelerateInterpolator mLogDecelerateInterpolator
624 = new LogDecelerateInterpolator(100, 0);
625
Jeff Brown70825162012-03-28 17:27:48 -0700626 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
627 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700628 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
629 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700630 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
631 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
632 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700633 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700634 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700635 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700636 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700637 private static final int MSG_POWER_DELAYED_PRESS = 13;
638 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700639 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700640 private static final int MSG_REQUEST_TRANSIENT_BARS = 16;
641
642 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS = 0;
643 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION = 1;
Jeff Brown70825162012-03-28 17:27:48 -0700644
645 private class PolicyHandler extends Handler {
646 @Override
647 public void handleMessage(Message msg) {
648 switch (msg.what) {
649 case MSG_ENABLE_POINTER_LOCATION:
650 enablePointerLocation();
651 break;
652 case MSG_DISABLE_POINTER_LOCATION:
653 disablePointerLocation();
654 break;
Jeff Brown40013652012-05-16 21:22:36 -0700655 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
656 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
657 break;
658 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
659 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
660 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700661 case MSG_DISPATCH_SHOW_RECENTS:
662 showRecentApps(false);
663 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700664 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
665 showGlobalActionsInternal();
666 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700667 case MSG_KEYGUARD_DRAWN_COMPLETE:
668 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700669 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700670 break;
671 case MSG_KEYGUARD_DRAWN_TIMEOUT:
672 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700673 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700674 break;
675 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
676 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700677 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700678 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700679 case MSG_HIDE_BOOT_MESSAGE:
680 handleHideBootMessage();
681 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700682 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
683 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
684 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700685 case MSG_POWER_DELAYED_PRESS:
686 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
687 finishPowerKeyPress();
688 break;
689 case MSG_POWER_LONG_PRESS:
690 powerLongPress();
691 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700692 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
693 updateDreamingSleepToken(msg.arg1 != 0);
694 break;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700695 case MSG_REQUEST_TRANSIENT_BARS:
696 WindowState targetBar = (msg.arg1 == MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS) ?
697 mStatusBar : mNavigationBar;
698 if (targetBar != null) {
699 requestTransientBars(targetBar);
700 }
701 break;
Jeff Brown70825162012-03-28 17:27:48 -0700702 }
703 }
704 }
705
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800706 private UEventObserver mHDMIObserver = new UEventObserver() {
707 @Override
708 public void onUEvent(UEventObserver.UEvent event) {
709 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
710 }
711 };
712
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800713 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800714 SettingsObserver(Handler handler) {
715 super(handler);
716 }
David Brownbaf8d092010-03-08 21:52:59 -0800717
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800718 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700719 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800720 ContentResolver resolver = mContext.getContentResolver();
721 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700722 Settings.System.END_BUTTON_BEHAVIOR), false, this,
723 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800724 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700725 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
726 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700727 resolver.registerContentObserver(Settings.Secure.getUriFor(
728 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
729 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800730 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700731 Settings.System.ACCELEROMETER_ROTATION), false, this,
732 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500733 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700734 Settings.System.USER_ROTATION), false, this,
735 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400736 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700737 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
738 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800739 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700740 Settings.System.POINTER_LOCATION), false, this,
741 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800742 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700743 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
744 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500745 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400746 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700747 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500748 resolver.registerContentObserver(Settings.Global.getUriFor(
749 Settings.Global.POLICY_CONTROL), false, this,
750 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800751 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800752 }
753
754 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800755 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700756 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800757 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800758 }
Craig Mautner967212c2013-04-13 21:10:58 -0700759
Jeff Browna20dda42014-05-27 20:57:24 -0700760 class MyWakeGestureListener extends WakeGestureListener {
761 MyWakeGestureListener(Context context, Handler handler) {
762 super(context, handler);
763 }
764
765 @Override
766 public void onWakeUp() {
767 synchronized (mLock) {
768 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700769 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700770 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture,
771 "android.policy:GESTURE");
Jeff Browna20dda42014-05-27 20:57:24 -0700772 }
773 }
774 }
775 }
776
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800777 class MyOrientationListener extends WindowOrientationListener {
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700778 private final Runnable mUpdateRotationRunnable = new Runnable() {
779 @Override
780 public void run() {
781 updateRotation(false);
782 }
783 };
784
Craig Mautnereee29c42013-01-17 14:44:34 -0800785 MyOrientationListener(Context context, Handler handler) {
786 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800787 }
Craig Mautner967212c2013-04-13 21:10:58 -0700788
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800789 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700790 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700791 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700792 mHandler.post(mUpdateRotationRunnable);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700793 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800794 }
795 MyOrientationListener mOrientationListener;
796
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100797 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400798
John Spurlock27735a42013-08-14 17:57:38 -0400799 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400800 View.NAVIGATION_BAR_TRANSIENT,
801 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400802 View.NAVIGATION_BAR_TRANSLUCENT,
803 StatusBarManager.WINDOW_NAVIGATION_BAR,
804 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400805
John Spurlockf1a36642013-10-12 17:50:42 -0400806 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400807
Craig Mautner037aa8d2013-06-07 10:35:44 -0700808 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400809
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700810 IStatusBarService getStatusBarService() {
811 synchronized (mServiceAquireLock) {
812 if (mStatusBarService == null) {
813 mStatusBarService = IStatusBarService.Stub.asInterface(
814 ServiceManager.getService("statusbar"));
815 }
816 return mStatusBarService;
817 }
818 }
819
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700820 /*
821 * We always let the sensor be switched on by default except when
822 * the user has explicitly disabled sensor based rotation or when the
823 * screen is switched off.
824 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700825 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800826 if (mSupportAutoRotation) {
827 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
828 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
829 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
830 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
831 // If the application has explicitly requested to follow the
832 // orientation, then we need to turn the sensor on.
833 return true;
834 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800835 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700836 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800837 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
838 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
839 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400840 // enable accelerometer if we are docked in a dock that enables accelerometer
841 // orientation management,
842 return true;
843 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700844 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800845 // If the setting for using the sensor by default is enabled, then
846 // we will always leave it on. Note that the user could go to
847 // a window that forces an orientation that does not use the
848 // sensor and in theory we could turn it off... however, when next
849 // turning it on we won't have a good value for the current
850 // orientation for a little bit, which can cause orientation
851 // changes to lag, so we'd like to keep it always on. (It will
852 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700853 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800854 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800855 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800856 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700857
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800858 /*
859 * Various use cases for invoking this function
860 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700861 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800862 * if not already enabled
863 * screen turned on and current app does not have sensor orientation, disable listeners if
864 * already enabled
865 * screen turning on and current app has sensor based orientation, enable listeners if needed
866 * screen turning on and current app has nosensor based orientation, do nothing
867 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700868 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800869 if (!mOrientationListener.canDetectOrientation()) {
870 // If sensor is turned off or nonexistent for some reason
871 return;
872 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000873 // Could have been invoked due to screen turning on or off or
874 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700875 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
876 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000877 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
878 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
879 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800880 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000881 // Note: We postpone the rotating of the screen until the keyguard as well as the
882 // window manager have reported a draw complete.
883 if (mScreenOnEarly && mAwake &&
884 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700885 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800886 disable = false;
887 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700888 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800889 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700890 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800891 mOrientationSensorEnabled = true;
892 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700893 }
894 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800895 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700896 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800897 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700898 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800899 mOrientationSensorEnabled = false;
900 }
901 }
902
Jeff Brown13f00f02014-10-31 14:45:50 -0700903 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
904 // Hold a wake lock until the power key is released.
905 if (!mPowerKeyWakeLock.isHeld()) {
906 mPowerKeyWakeLock.acquire();
907 }
908
909 // Cancel multi-press detection timeout.
910 if (mPowerKeyPressCounter != 0) {
911 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
912 }
913
914 // Detect user pressing the power button in panic when an application has
915 // taken over the whole screen.
916 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800917 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700918 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700919 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700920 }
921
922 // Latch power key state to detect screenshot chord.
923 if (interactive && !mScreenshotChordPowerKeyTriggered
924 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
925 mScreenshotChordPowerKeyTriggered = true;
926 mScreenshotChordPowerKeyTime = event.getDownTime();
927 interceptScreenshotChord();
928 }
929
930 // Stop ringing or end call if configured to do so when power is pressed.
931 TelecomManager telecomManager = getTelecommService();
932 boolean hungUp = false;
933 if (telecomManager != null) {
934 if (telecomManager.isRinging()) {
935 // Pressing Power while there's a ringing incoming
936 // call should silence the ringer.
937 telecomManager.silenceRinger();
938 } else if ((mIncallPowerBehavior
939 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
940 && telecomManager.isInCall() && interactive) {
941 // Otherwise, if "Power button ends call" is enabled,
942 // the Power button will hang up any current active call.
943 hungUp = telecomManager.endCall();
944 }
945 }
946
Adrian Roos5941c982015-09-03 15:59:49 -0700947 GestureLauncherService gestureService = LocalServices.getService(
948 GestureLauncherService.class);
949 boolean gesturedServiceIntercepted = false;
950 if (gestureService != null) {
951 gesturedServiceIntercepted = gestureService.interceptPowerKeyDown(event, interactive);
952 }
953
Jeff Brown13f00f02014-10-31 14:45:50 -0700954 // If the power key has still not yet been handled, then detect short
955 // press, long press, or multi press and decide what to do.
956 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
Adrian Roos5941c982015-09-03 15:59:49 -0700957 || mScreenshotChordVolumeUpKeyTriggered || gesturedServiceIntercepted;
Jeff Brown13f00f02014-10-31 14:45:50 -0700958 if (!mPowerKeyHandled) {
959 if (interactive) {
960 // When interactive, we're already awake.
961 // Wait for a long press or for the button to be released to decide what to do.
962 if (hasLongPressOnPowerBehavior()) {
963 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
964 msg.setAsynchronous(true);
965 mHandler.sendMessageDelayed(msg,
966 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
967 }
968 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800969 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800970
Bryce Leed3b28402015-03-09 15:49:13 +0000971 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
972 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
973 msg.setAsynchronous(true);
974 mHandler.sendMessageDelayed(msg,
975 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800976 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000977 } else {
978 final int maxCount = getMaxMultiPressPowerCount();
979
980 if (maxCount <= 1) {
981 mPowerKeyHandled = true;
982 } else {
983 mBeganFromNonInteractive = true;
984 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700985 }
986 }
Jeff Brown4d396052010-10-29 21:50:21 -0700987 }
988 }
989
Jeff Brown13f00f02014-10-31 14:45:50 -0700990 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
991 final boolean handled = canceled || mPowerKeyHandled;
992 mScreenshotChordPowerKeyTriggered = false;
993 cancelPendingScreenshotChordAction();
994 cancelPendingPowerKeyAction();
995
996 if (!handled) {
997 // Figure out how to handle the key now that it has been released.
998 mPowerKeyPressCounter += 1;
999
1000 final int maxCount = getMaxMultiPressPowerCount();
1001 final long eventTime = event.getDownTime();
1002 if (mPowerKeyPressCounter < maxCount) {
1003 // This could be a multi-press. Wait a little bit longer to confirm.
1004 // Continue holding the wake lock.
1005 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
1006 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
1007 msg.setAsynchronous(true);
1008 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
1009 return;
1010 }
1011
1012 // No other actions. Handle it immediately.
1013 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -07001014 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001015
1016 // Done. Reset our state.
1017 finishPowerKeyPress();
1018 }
1019
1020 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -08001021 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001022 mPowerKeyPressCounter = 0;
1023 if (mPowerKeyWakeLock.isHeld()) {
1024 mPowerKeyWakeLock.release();
1025 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001026 }
1027
1028 private void cancelPendingPowerKeyAction() {
1029 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001030 mPowerKeyHandled = true;
1031 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001032 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001033 }
1034
1035 private void powerPress(long eventTime, boolean interactive, int count) {
1036 if (mScreenOnEarly && !mScreenOnFully) {
1037 Slog.i(TAG, "Suppressed redundant power key press while "
1038 + "already in the process of turning the screen on.");
1039 return;
Jeff Brownff204712011-10-25 21:27:54 -07001040 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001041
1042 if (count == 2) {
1043 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1044 } else if (count == 3) {
1045 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001046 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001047 switch (mShortPressOnPowerBehavior) {
1048 case SHORT_PRESS_POWER_NOTHING:
1049 break;
1050 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1051 mPowerManager.goToSleep(eventTime,
1052 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1053 break;
1054 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1055 mPowerManager.goToSleep(eventTime,
1056 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1057 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1058 break;
1059 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1060 mPowerManager.goToSleep(eventTime,
1061 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1062 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1063 launchHomeFromHotKey();
1064 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001065 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001066 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001067 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001068 }
1069 }
1070 }
1071
1072 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1073 switch (behavior) {
1074 case MULTI_PRESS_POWER_NOTHING:
1075 break;
1076 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001077 if (!isUserSetupComplete()) {
1078 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1079 break;
1080 }
1081
Jeff Brown13f00f02014-10-31 14:45:50 -07001082 if (isTheaterModeEnabled()) {
1083 Slog.i(TAG, "Toggling theater mode off.");
1084 Settings.Global.putInt(mContext.getContentResolver(),
1085 Settings.Global.THEATER_MODE_ON, 0);
1086 if (!interactive) {
1087 wakeUpFromPowerKey(eventTime);
1088 }
1089 } else {
1090 Slog.i(TAG, "Toggling theater mode on.");
1091 Settings.Global.putInt(mContext.getContentResolver(),
1092 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001093
1094 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001095 mPowerManager.goToSleep(eventTime,
1096 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1097 }
1098 }
1099 break;
1100 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001101 Slog.i(TAG, "Starting brightness boost.");
1102 if (!interactive) {
1103 wakeUpFromPowerKey(eventTime);
1104 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001105 mPowerManager.boostScreenBrightness(eventTime);
1106 break;
1107 }
1108 }
1109
1110 private int getMaxMultiPressPowerCount() {
1111 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1112 return 3;
1113 }
1114 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1115 return 2;
1116 }
1117 return 1;
1118 }
1119
1120 private void powerLongPress() {
1121 final int behavior = getResolvedLongPressOnPowerBehavior();
1122 switch (behavior) {
1123 case LONG_PRESS_POWER_NOTHING:
1124 break;
1125 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1126 mPowerKeyHandled = true;
1127 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1128 performAuditoryFeedbackForAccessibilityIfNeed();
1129 }
1130 showGlobalActionsInternal();
1131 break;
1132 case LONG_PRESS_POWER_SHUT_OFF:
1133 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1134 mPowerKeyHandled = true;
1135 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1136 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1137 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1138 break;
1139 }
1140 }
1141
Nick Vaccarob593a812015-05-15 11:23:05 -07001142 private void sleepPress(long eventTime) {
1143 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1144 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1145 }
1146 }
1147
1148 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001149 switch (mShortPressOnSleepBehavior) {
1150 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001151 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001152 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1153 mPowerManager.goToSleep(eventTime,
1154 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001155 break;
1156 }
1157 }
1158
Jeff Brown13f00f02014-10-31 14:45:50 -07001159 private int getResolvedLongPressOnPowerBehavior() {
1160 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1161 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1162 }
1163 return mLongPressOnPowerBehavior;
1164 }
1165
1166 private boolean hasLongPressOnPowerBehavior() {
1167 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001168 }
1169
1170 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001171 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001172 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1173 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001174 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001175 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1176 && now <= mScreenshotChordPowerKeyTime
1177 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1178 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001179 cancelPendingPowerKeyAction();
1180
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001181 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001182 }
1183 }
1184 }
1185
Winson Chung1cea2f32012-10-08 20:42:01 -07001186 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001187 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001188 // Double the time it takes to take a screenshot from the keyguard
1189 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001190 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001191 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001192 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001193 }
1194
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001195 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001196 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001197 }
1198
Jeff Brown13f00f02014-10-31 14:45:50 -07001199 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001200 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001201 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001202 mEndCallKeyHandled = true;
1203 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1204 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001205 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001206 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001207 }
1208 };
1209
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001210 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001211 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001212 public void run() {
1213 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001214 }
1215 };
1216
Alan Viverettee34560b22014-07-10 14:50:06 -07001217 @Override
1218 public void showGlobalActions() {
1219 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1220 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1221 }
1222
1223 void showGlobalActionsInternal() {
1224 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001225 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001226 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001227 }
Jim Millerab954542014-10-10 18:21:49 -07001228 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001229 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1230 if (keyguardShowing) {
1231 // since it took two seconds of long press to bring this up,
1232 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001233 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001234 }
1235 }
1236
1237 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001238 return Settings.Global.getInt(
1239 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001240 }
1241
Maurice Lam99c6e072014-04-28 18:24:28 -07001242 boolean isUserSetupComplete() {
1243 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1244 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1245 }
1246
Jeff Brown13f00f02014-10-31 14:45:50 -07001247 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001248 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1249 getHdmiControl().turnOnTv();
1250
Jeff Brown13f00f02014-10-31 14:45:50 -07001251 // If there's a dream running then use home to escape the dream
1252 // but don't actually go home.
1253 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1254 mDreamManagerInternal.stopDream(false /*immediate*/);
1255 return;
1256 }
1257
1258 // Go home!
1259 launchHomeFromHotKey();
1260 }
1261
Jinsuk Kime601b712015-07-07 08:01:02 +09001262 /**
1263 * Creates an accessor to HDMI control service that performs the operation of
1264 * turning on TV (optional) and switching input to us. If HDMI control service
1265 * is not available or we're not a HDMI playback device, the operation is no-op.
1266 */
1267 private HdmiControl getHdmiControl() {
1268 if (null == mHdmiControl) {
1269 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1270 Context.HDMI_CONTROL_SERVICE);
1271 HdmiPlaybackClient client = null;
1272 if (manager != null) {
1273 client = manager.getPlaybackClient();
1274 }
1275 mHdmiControl = new HdmiControl(client);
1276 }
1277 return mHdmiControl;
1278 }
1279
1280 private static class HdmiControl {
1281 private final HdmiPlaybackClient mClient;
1282
1283 private HdmiControl(HdmiPlaybackClient client) {
1284 mClient = client;
1285 }
1286
1287 public void turnOnTv() {
1288 if (mClient == null) {
1289 return;
1290 }
1291 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1292 @Override
1293 public void onComplete(int result) {
1294 if (result != HdmiControlManager.RESULT_SUCCESS) {
1295 Log.w(TAG, "One touch play failed: " + result);
1296 }
1297 }
1298 });
1299 }
1300 }
1301
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001302 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001303 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001304 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001305 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001306
Jeff Browncaca8812013-05-09 13:34:33 -07001307 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1308 toggleRecentApps();
1309 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001310 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001311 }
1312 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001313 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001314
Jeff Browncaca8812013-05-09 13:34:33 -07001315 private void handleDoubleTapOnHome() {
1316 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1317 mHomeConsumed = true;
1318 toggleRecentApps();
1319 }
1320 }
1321
1322 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1323 @Override
1324 public void run() {
1325 if (mHomeDoubleTapPending) {
1326 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001327 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001328 }
1329 }
1330 };
1331
Mark Renoufc1256912015-03-11 14:38:23 -04001332 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001333 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001334 }
1335
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001336 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001337 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001338 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001339 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001340 mContext = context;
1341 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001342 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001343 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001344 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001345 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Michael Wrighta4d22d72015-09-16 23:19:26 +01001346 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001347 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001348
1349 // Init display burn-in protection
1350 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1351 com.android.internal.R.bool.config_enableBurnInProtection);
1352 // Allow a system property to override this. Used by developer settings.
1353 boolean burnInProtectionDevMode =
1354 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1355 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1356 final int minHorizontal;
1357 final int maxHorizontal;
1358 final int minVertical;
1359 final int maxVertical;
1360 final int maxRadius;
1361 if (burnInProtectionDevMode) {
1362 minHorizontal = -8;
1363 maxHorizontal = 8;
1364 minVertical = -8;
1365 maxVertical = -4;
1366 maxRadius = (isRoundWindow()) ? 6 : -1;
1367 } else {
1368 Resources resources = context.getResources();
1369 minHorizontal = resources.getInteger(
1370 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1371 maxHorizontal = resources.getInteger(
1372 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1373 minVertical = resources.getInteger(
1374 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1375 maxVertical = resources.getInteger(
1376 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1377 maxRadius = resources.getInteger(
1378 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1379 }
1380 mBurnInProtectionHelper = new BurnInProtectionHelper(
1381 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001382 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001383
Jeff Brown70825162012-03-28 17:27:48 -07001384 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001385 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001386 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001387 try {
1388 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1389 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001390 mSettingsObserver = new SettingsObserver(mHandler);
1391 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001392 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001393 mUiMode = context.getResources().getInteger(
1394 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001395 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1396 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1397 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1398 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001399 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1400 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1401 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1402 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1403 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1404 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1405 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1406 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001407
Jeff Brown96307042012-07-27 15:51:34 -07001408 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1409 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001410 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001411 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1412 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001413 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001414 mSupportAutoRotation = mContext.getResources().getBoolean(
1415 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001416 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001417 com.android.internal.R.integer.config_lidOpenRotation);
1418 mCarDockRotation = readRotation(
1419 com.android.internal.R.integer.config_carDockRotation);
1420 mDeskDockRotation = readRotation(
1421 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001422 mUndockedHdmiRotation = readRotation(
1423 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001424 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1425 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1426 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1427 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001428 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1429 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1430 mLidNavigationAccessibility = mContext.getResources().getInteger(
1431 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001432 mLidControlsSleep = mContext.getResources().getBoolean(
1433 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001434 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1435 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001436
1437 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1438 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1439 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1440 || mContext.getResources().getBoolean(
1441 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1442 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1443 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001444 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1445 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001446 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1447 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1448 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1449 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1450 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1451 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1452
Bryce Lee55e846d2014-11-04 12:43:44 -08001453 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1454 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1455
Bryce Leed3b28402015-03-09 15:49:13 +00001456 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1457 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1458
Jeff Brown13f00f02014-10-31 14:45:50 -07001459 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1460 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1461 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1462 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1463 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1464 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1465 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1466 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001467 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1468 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001469
John Spurlock61560172015-02-06 19:46:04 -05001470 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001471
Jeff Brownf71343d2013-05-31 17:59:11 -07001472 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001473
Svetoslav8e3feb12014-02-24 13:46:47 -08001474 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1475 Context.ACCESSIBILITY_SERVICE);
1476
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001477 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001478 IntentFilter filter = new IntentFilter();
1479 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1480 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1481 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1482 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001483 filter.addAction(Intent.ACTION_DOCK_EVENT);
1484 Intent intent = context.registerReceiver(mDockReceiver, filter);
1485 if (intent != null) {
1486 // Retrieve current sticky dock event broadcast.
1487 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1488 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1489 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001490
Jeff Brown6aaf2952012-10-05 16:01:08 -07001491 // register for dream-related broadcasts
1492 filter = new IntentFilter();
1493 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1494 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1495 context.registerReceiver(mDreamReceiver, filter);
1496
Christopher Tate5e08af02012-09-21 17:17:22 -07001497 // register for multiuser-relevant broadcasts
1498 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1499 context.registerReceiver(mMultiuserReceiver, filter);
1500
John Spurlock57306e62013-04-22 09:48:49 -04001501 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001502 mSystemGestures = new SystemGesturesPointerEventListener(context,
1503 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001504 @Override
1505 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001506 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001507 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001508 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001509 }
1510 @Override
1511 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001512 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001513 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001514 }
1515 }
1516 @Override
1517 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001518 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001519 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001520 }
1521 }
1522 @Override
Michael Wrighta4d22d72015-09-16 23:19:26 +01001523 public void onFling(int duration) {
1524 if (mPowerManagerInternal != null) {
1525 mPowerManagerInternal.powerHint(
1526 PowerManagerInternal.POWER_HINT_INTERACTION, duration);
1527 }
1528 }
1529 @Override
John Spurlockad3e6cb2013-04-30 08:47:43 -04001530 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001531 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001532 }
Adrian Roos3595be42015-03-05 16:31:15 +01001533 @Override
1534 public void onDown() {
1535 mOrientationListener.onTouchStart();
1536 }
1537 @Override
1538 public void onUpOrCancel() {
1539 mOrientationListener.onTouchEnd();
1540 }
Jun Mukaid2e7e352015-07-22 17:14:02 -07001541 @Override
1542 public void onMouseHoverAtTop() {
1543 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1544 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1545 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS;
1546 mHandler.sendMessageDelayed(msg, 500);
1547 }
1548 @Override
1549 public void onMouseHoverAtBottom() {
1550 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1551 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1552 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION;
1553 mHandler.sendMessageDelayed(msg, 500);
1554 }
1555 @Override
1556 public void onMouseLeaveFromEdge() {
1557 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1558 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001559 });
John Spurlockf1a36642013-10-12 17:50:42 -04001560 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001561 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001562
Jeff Brownc2346132012-04-13 01:55:38 -07001563 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001564 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1565 com.android.internal.R.array.config_longPressVibePattern);
1566 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1567 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001568 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1569 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001570 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1571 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001572 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1573 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001574 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1575 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1576 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1577 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001578 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1579 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001580
Christopher Tatee90585f2012-03-05 18:56:25 -08001581 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1582 com.android.internal.R.bool.config_enableScreenshotChord);
1583
Justin Kohd378ad72013-04-01 12:18:26 -07001584 mGlobalKeyManager = new GlobalKeyManager(mContext);
1585
Joe Onoratoea495d42011-04-06 11:41:11 -07001586 // Controls rotation and the like.
1587 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001588
1589 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001590 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001591 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1592 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001593 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001594
1595 mWindowManagerInternal.registerAppTransitionListener(
1596 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001597 }
1598
Jeff Brownf71343d2013-05-31 17:59:11 -07001599 /**
1600 * Read values from config.xml that may be overridden depending on
1601 * the configuration of the device.
1602 * eg. Disable long press on home goes to recents on sw600dp.
1603 */
1604 private void readConfigurationDependentBehaviors() {
1605 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1606 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1607 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1608 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1609 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1610 }
1611
1612 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1613 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1614 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1615 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1616 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1617 }
1618 }
1619
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001620 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001621 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001622 // This method might be called before the policy has been fully initialized
1623 // or for other displays we don't care about.
1624 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1625 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001626 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001627 mDisplay = display;
1628
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001629 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001630 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001631 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001632 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001633 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001634 mLandscapeRotation = Surface.ROTATION_0;
1635 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001636 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001637 mPortraitRotation = Surface.ROTATION_90;
1638 mUpsideDownRotation = Surface.ROTATION_270;
1639 } else {
1640 mPortraitRotation = Surface.ROTATION_270;
1641 mUpsideDownRotation = Surface.ROTATION_90;
1642 }
1643 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001644 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001645 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001646 mPortraitRotation = Surface.ROTATION_0;
1647 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001648 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001649 mLandscapeRotation = Surface.ROTATION_270;
1650 mSeascapeRotation = Surface.ROTATION_90;
1651 } else {
1652 mLandscapeRotation = Surface.ROTATION_90;
1653 mSeascapeRotation = Surface.ROTATION_270;
1654 }
1655 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001656
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001657 mStatusBarHeight =
1658 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001659
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001660 // Height of the navigation bar when presented horizontally at bottom
1661 mNavigationBarHeightForRotation[mPortraitRotation] =
1662 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001663 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001664 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001665 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1666 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001667
1668 // Width of the navigation bar when presented vertically along one side
1669 mNavigationBarWidthForRotation[mPortraitRotation] =
1670 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1671 mNavigationBarWidthForRotation[mLandscapeRotation] =
1672 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001673 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001674
1675 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001676 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001677 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001678
Devin Kimd7b12b42014-05-05 14:34:58 -07001679 // Allow the navigation bar to move on non-square small devices (phones).
1680 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001681
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001682 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001683 // Allow a system property to override this. Used by the emulator.
1684 // See also hasNavigationBar().
1685 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1686 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001687 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001688 } else if ("0".equals(navBarOverride)) {
1689 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001690 }
1691
Jeff Brown27f1d672012-10-17 18:32:34 -07001692 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1693 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001694 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001695 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001696 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001697 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001698 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001699 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001700
Chong Zhangae6119ff2014-11-11 18:54:39 -08001701 // For demo purposes, allow the rotation of the remote display to be controlled.
1702 // By default, remote display locks rotation to landscape.
1703 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1704 mDemoRotation = mPortraitRotation;
1705 } else {
1706 mDemoRotation = mLandscapeRotation;
1707 }
1708 mDemoRotationLock = SystemProperties.getBoolean(
1709 "persist.demo.rotationlock", false);
1710
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001711 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1712 // http://developer.android.com/guide/practices/screens_support.html#range
1713 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1714 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1715 // For debug purposes the next line turns this feature off with:
1716 // $ adb shell setprop config.override_forced_orient true
1717 // $ adb shell wm size reset
1718 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1719 }
1720
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001721 /**
1722 * @return whether the navigation bar can be hidden, e.g. the device has a
1723 * navigation bar and touch exploration is not enabled
1724 */
1725 private boolean canHideNavigationBar() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04001726 return mHasNavigationBar;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001727 }
1728
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001729 @Override
1730 public boolean isDefaultOrientationForced() {
1731 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001732 }
1733
Dianne Hackbornc652de82013-02-15 16:32:56 -08001734 @Override
1735 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1736 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1737 mOverscanLeft = left;
1738 mOverscanTop = top;
1739 mOverscanRight = right;
1740 mOverscanBottom = bottom;
1741 }
1742 }
1743
Dianne Hackbornc777e072010-02-12 13:07:59 -08001744 public void updateSettings() {
1745 ContentResolver resolver = mContext.getContentResolver();
1746 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001747 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001748 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001749 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001750 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1751 UserHandle.USER_CURRENT);
1752 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001753 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001754 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1755 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001756
Jeff Browna20dda42014-05-27 20:57:24 -07001757 // Configure wake gesture.
1758 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1759 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1760 UserHandle.USER_CURRENT) != 0;
1761 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1762 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1763 updateWakeGestureListenerLp();
1764 }
1765
Jeff Brown207673cd2012-06-05 17:47:11 -07001766 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001767 int userRotation = Settings.System.getIntForUser(resolver,
1768 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1769 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001770 if (mUserRotation != userRotation) {
1771 mUserRotation = userRotation;
1772 updateRotation = true;
1773 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001774 int userRotationMode = Settings.System.getIntForUser(resolver,
1775 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001776 WindowManagerPolicy.USER_ROTATION_FREE :
1777 WindowManagerPolicy.USER_ROTATION_LOCKED;
1778 if (mUserRotationMode != userRotationMode) {
1779 mUserRotationMode = userRotationMode;
1780 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001781 updateOrientationListenerLp();
1782 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001783
Dianne Hackbornc777e072010-02-12 13:07:59 -08001784 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001785 int pointerLocation = Settings.System.getIntForUser(resolver,
1786 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001787 if (mPointerLocationMode != pointerLocation) {
1788 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001789 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1790 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001791 }
1792 }
1793 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001794 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1795 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1796 String imId = Settings.Secure.getStringForUser(resolver,
1797 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001798 boolean hasSoftInput = imId != null && imId.length() > 0;
1799 if (mHasSoftInput != hasSoftInput) {
1800 mHasSoftInput = hasSoftInput;
1801 updateRotation = true;
1802 }
John Spurlockf1a36642013-10-12 17:50:42 -04001803 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001804 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001805 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001806 }
1807 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001808 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001809 }
1810 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001811 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001812 }
Jeff Brown70825162012-03-28 17:27:48 -07001813 }
1814
Jeff Browna20dda42014-05-27 20:57:24 -07001815 private void updateWakeGestureListenerLp() {
1816 if (shouldEnableWakeGestureLp()) {
1817 mWakeGestureListener.requestWakeUpTrigger();
1818 } else {
1819 mWakeGestureListener.cancelWakeUpTrigger();
1820 }
1821 }
1822
1823 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001824 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001825 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1826 && mWakeGestureListener.isSupported();
1827 }
1828
Jeff Brown70825162012-03-28 17:27:48 -07001829 private void enablePointerLocation() {
1830 if (mPointerLocationView == null) {
1831 mPointerLocationView = new PointerLocationView(mContext);
1832 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001833 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1834 WindowManager.LayoutParams.MATCH_PARENT,
1835 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001836 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001837 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1838 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1839 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1840 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001841 if (ActivityManager.isHighEndGfx()) {
1842 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1843 lp.privateFlags |=
1844 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1845 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001846 lp.format = PixelFormat.TRANSLUCENT;
1847 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001848 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001849 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001850 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001851 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001852 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001853 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001854 }
Jeff Brown70825162012-03-28 17:27:48 -07001855
1856 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001857 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001858 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1859 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001860 wm.removeView(mPointerLocationView);
1861 mPointerLocationView = null;
1862 }
1863 }
1864
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001865 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001866 try {
1867 int rotation = mContext.getResources().getInteger(resID);
1868 switch (rotation) {
1869 case 0:
1870 return Surface.ROTATION_0;
1871 case 90:
1872 return Surface.ROTATION_90;
1873 case 180:
1874 return Surface.ROTATION_180;
1875 case 270:
1876 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001877 }
1878 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001879 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001880 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001881 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001882 }
1883
1884 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001885 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001886 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001887 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001888
1889 outAppOp[0] = AppOpsManager.OP_NONE;
1890
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001891 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1892 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1893 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1894 return WindowManagerGlobal.ADD_INVALID_TYPE;
1895 }
1896
1897 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1898 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001899 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001900 }
1901 String permission = null;
1902 switch (type) {
1903 case TYPE_TOAST:
1904 // XXX right now the app process has complete control over
1905 // this... should introduce a token to let the system
1906 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001907 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001908 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001909 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001910 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001911 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001912 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001913 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001914 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001915 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001916 break;
1917 case TYPE_PHONE:
1918 case TYPE_PRIORITY_PHONE:
1919 case TYPE_SYSTEM_ALERT:
1920 case TYPE_SYSTEM_ERROR:
1921 case TYPE_SYSTEM_OVERLAY:
1922 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001923 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001924 break;
1925 default:
1926 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1927 }
1928 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001929 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1930 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01001931 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01001932 if (callingUid == Process.SYSTEM_UID) {
1933 return WindowManagerGlobal.ADD_OKAY;
1934 }
1935
Billy Lau060275f2015-07-15 22:29:19 +01001936 // check if user has enabled this operation. SecurityException will be thrown if
1937 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01001938 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1939 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01001940 switch (mode) {
1941 case AppOpsManager.MODE_ALLOWED:
1942 case AppOpsManager.MODE_IGNORED:
1943 // although we return ADD_OKAY for MODE_IGNORED, the added window will
1944 // actually be hidden in WindowManagerService
1945 return WindowManagerGlobal.ADD_OKAY;
1946 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01001947 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01001948 default:
1949 // in the default mode, we will make a decision here based on
1950 // checkCallingPermission()
1951 if (mContext.checkCallingPermission(permission) !=
1952 PackageManager.PERMISSION_GRANTED) {
1953 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1954 } else {
1955 return WindowManagerGlobal.ADD_OKAY;
1956 }
Billy Laucbe540f2015-06-25 01:51:44 +01001957 }
Billy Laucbe540f2015-06-25 01:51:44 +01001958 }
1959
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001960 if (mContext.checkCallingOrSelfPermission(permission)
1961 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001962 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001963 }
1964 }
Jeff Brown98365d72012-08-19 20:30:52 -07001965 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001966 }
Craig Mautner88400d32012-09-30 12:35:45 -07001967
1968 @Override
1969 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1970
1971 // If this switch statement is modified, modify the comment in the declarations of
1972 // the type in {@link WindowManager.LayoutParams} as well.
1973 switch (attrs.type) {
1974 default:
1975 // These are the windows that by default are shown only to the user that created
1976 // them. If this needs to be overridden, set
1977 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1978 // {@link WindowManager.LayoutParams}. Note that permission
1979 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1980 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1981 return true;
1982 }
1983 break;
1984
1985 // These are the windows that by default are shown to all users. However, to
1986 // protect against spoofing, check permissions below.
1987 case TYPE_APPLICATION_STARTING:
1988 case TYPE_BOOT_PROGRESS:
1989 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001990 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001991 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001992 case TYPE_KEYGUARD_DIALOG:
1993 case TYPE_MAGNIFICATION_OVERLAY:
1994 case TYPE_NAVIGATION_BAR:
1995 case TYPE_NAVIGATION_BAR_PANEL:
1996 case TYPE_PHONE:
1997 case TYPE_POINTER:
1998 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001999 case TYPE_SEARCH_BAR:
2000 case TYPE_STATUS_BAR:
2001 case TYPE_STATUS_BAR_PANEL:
2002 case TYPE_STATUS_BAR_SUB_PANEL:
2003 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07002004 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07002005 case TYPE_PRIVATE_PRESENTATION:
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002006 case TYPE_DOCK_DIVIDER:
Craig Mautner88400d32012-09-30 12:35:45 -07002007 break;
2008 }
2009
2010 // Check if third party app has set window to system window type.
2011 return mContext.checkCallingOrSelfPermission(
2012 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
2013 != PackageManager.PERMISSION_GRANTED;
2014 }
2015
Craig Mautner967212c2013-04-13 21:10:58 -07002016 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002017 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
2018 switch (attrs.type) {
2019 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07002020 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002021 // These types of windows can't receive input events.
2022 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
2023 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07002024 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002025 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002026 case TYPE_STATUS_BAR:
2027
2028 // If the Keyguard is in a hidden state (occluded by another window), we force to
2029 // remove the wallpaper and keyguard flag so that any change in-flight after setting
2030 // the keyguard as occluded wouldn't set these flags again.
2031 // See {@link #processKeyguardSetHiddenResultLw}.
2032 if (mKeyguardHidden) {
2033 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2034 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2035 }
2036 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002037 }
Adrian Roos38502112014-04-09 21:04:11 +02002038
2039 if (attrs.type != TYPE_STATUS_BAR) {
2040 // The status bar is the only window allowed to exhibit keyguard behavior.
2041 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2042 }
Adrian Roosea562512014-05-05 13:33:03 +02002043
2044 if (ActivityManager.isHighEndGfx()
2045 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02002046 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02002047 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
2048 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002049 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002050
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002051 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07002052 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002053 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002054
Michael Wright3818c922014-09-02 13:59:07 -07002055 private void readCameraLensCoverState() {
2056 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2057 }
2058
Jeff Browndaa37532012-05-01 15:54:03 -07002059 private boolean isHidden(int accessibilityMode) {
2060 switch (accessibilityMode) {
2061 case 1:
2062 return mLidState == LID_CLOSED;
2063 case 2:
2064 return mLidState == LID_OPEN;
2065 default:
2066 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002067 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002068 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002069
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002070 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002071 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002072 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2073 int navigationPresence) {
2074 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2075
Jeff Brownf71343d2013-05-31 17:59:11 -07002076 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002077 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002078 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002079
Jeff Browndaa37532012-05-01 15:54:03 -07002080 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2081 || (keyboardPresence == PRESENCE_INTERNAL
2082 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002083 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002084 if (!mHasSoftInput) {
2085 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2086 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002087 }
2088
Jeff Browndaa37532012-05-01 15:54:03 -07002089 if (config.navigation == Configuration.NAVIGATION_NONAV
2090 || (navigationPresence == PRESENCE_INTERNAL
2091 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002092 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002093 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002094 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002095
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002096 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002097 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002098 public int windowTypeToLayerLw(int type) {
2099 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002100 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002101 }
2102 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002103 case TYPE_PRIVATE_PRESENTATION:
2104 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002105 case TYPE_WALLPAPER:
2106 // wallpaper is at the bottom, though the window manager may move it.
2107 return 2;
2108 case TYPE_PHONE:
2109 return 3;
2110 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002111 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002112 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002113 case TYPE_VOICE_INTERACTION:
2114 // voice interaction layer is almost immediately above apps.
2115 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002116 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002117 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002118 case TYPE_SYSTEM_DIALOG:
2119 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002120 case TYPE_TOAST:
2121 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002122 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002123 case TYPE_PRIORITY_PHONE:
2124 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002125 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002126 case TYPE_DREAM:
2127 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002128 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002129 case TYPE_SYSTEM_ALERT:
2130 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002131 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002132 case TYPE_INPUT_METHOD:
2133 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002134 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002135 case TYPE_INPUT_METHOD_DIALOG:
2136 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002137 return 13;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002138 case TYPE_DOCK_DIVIDER:
2139 return 14;
Jim Miller5ecd8112013-01-09 18:50:26 -08002140 case TYPE_KEYGUARD_SCRIM:
2141 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002142 return 15;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002143 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002144 return 16;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002145 case TYPE_STATUS_BAR:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002146 return 17;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002147 case TYPE_STATUS_BAR_PANEL:
Selim Cinekf83e8242015-05-19 18:08:14 -07002148 return 18;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002149 case TYPE_KEYGUARD_DIALOG:
2150 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002151 case TYPE_VOLUME_OVERLAY:
2152 // the on-screen volume indicator and controller shown when the user
2153 // changes the device volume
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002154 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002155 case TYPE_SYSTEM_OVERLAY:
2156 // the on-screen volume indicator and controller shown when the user
2157 // changes the device volume
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002158 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002159 case TYPE_NAVIGATION_BAR:
2160 // the navigation bar, if available, shows atop most things
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002161 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002162 case TYPE_NAVIGATION_BAR_PANEL:
2163 // some panels (e.g. search) need to show on top of the navigation bar
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002164 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002165 case TYPE_SYSTEM_ERROR:
2166 // system-level error dialogs
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002167 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002168 case TYPE_MAGNIFICATION_OVERLAY:
2169 // used to highlight the magnified portion of a display
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002170 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002171 case TYPE_DISPLAY_OVERLAY:
2172 // used to simulate secondary display devices
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002173 return 26;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002174 case TYPE_DRAG:
2175 // the drag layer: input for drag-and-drop is associated with this window,
2176 // which sits above all other focusable windows
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002177 return 27;
Svetoslav3a5c7212014-10-14 09:54:26 -07002178 case TYPE_ACCESSIBILITY_OVERLAY:
2179 // overlay put by accessibility services to intercept user interaction
Svetoslav3a5c7212014-10-14 09:54:26 -07002180 return 28;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002181 case TYPE_SECURE_SYSTEM_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07002182 return 29;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002183 case TYPE_BOOT_PROGRESS:
2184 return 30;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002185 case TYPE_POINTER:
2186 // the (mouse) pointer layer
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002187 return 31;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002188 }
2189 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002190 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002191 }
2192
2193 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002194 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002195 public int subWindowTypeToLayerLw(int type) {
2196 switch (type) {
2197 case TYPE_APPLICATION_PANEL:
2198 case TYPE_APPLICATION_ATTACHED_DIALOG:
2199 return APPLICATION_PANEL_SUBLAYER;
2200 case TYPE_APPLICATION_MEDIA:
2201 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002202 case TYPE_APPLICATION_MEDIA_OVERLAY:
2203 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002204 case TYPE_APPLICATION_SUB_PANEL:
2205 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002206 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2207 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002208 }
2209 Log.e(TAG, "Unknown sub-window type: " + type);
2210 return 0;
2211 }
2212
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002213 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002214 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002215 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002216 }
2217
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002218 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002219 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002220 if (mHasNavigationBar) {
2221 // For a basic navigation bar, when we are in landscape mode we place
2222 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002223 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2224 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002225 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002226 }
2227 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002228 }
2229
Jose Lima9546b202014-07-02 17:21:51 -07002230 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002231 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002232 if (mHasNavigationBar) {
2233 // For a basic navigation bar, when we are in portrait mode we place
2234 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002235 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2236 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002237 }
2238 }
2239 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002240 }
2241
Jose Lima9546b202014-07-02 17:21:51 -07002242 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002243 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2244 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002245 }
2246
Jose Lima9546b202014-07-02 17:21:51 -07002247 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002248 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002249 // There is a separate status bar at the top of the display. We don't count that as part
2250 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002251 // we do want to exclude it since applications can't generally use that part
2252 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002253 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002254 }
2255
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002256 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002257 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2258 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002259 (isKeyguardHostWindow(attrs) &&
2260 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002261 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002262 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002263
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002264 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002265 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2266 return attrs.type == TYPE_STATUS_BAR;
2267 }
2268
2269 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002270 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002271 switch (attrs.type) {
2272 case TYPE_STATUS_BAR:
2273 case TYPE_NAVIGATION_BAR:
2274 case TYPE_WALLPAPER:
2275 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002276 case TYPE_KEYGUARD_SCRIM:
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002277 case TYPE_DOCK_DIVIDER:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002278 return false;
2279 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002280 // Hide only windows below the keyguard host window.
2281 return windowTypeToLayerLw(win.getBaseType())
2282 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002283 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002284 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002285
Craig Mautner7d7808f2014-09-11 18:02:38 -07002286 @Override
2287 public WindowState getWinShowWhenLockedLw() {
2288 return mWinShowWhenLocked;
2289 }
2290
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002291 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002292 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002293 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2294 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002295 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002296 if (!SHOW_STARTING_ANIMATIONS) {
2297 return null;
2298 }
2299 if (packageName == null) {
2300 return null;
2301 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002302
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002303 WindowManager wm = null;
2304 View view = null;
2305
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002306 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002307 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002308 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2309 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2310 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002311 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002312 try {
2313 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002314 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002315 } catch (PackageManager.NameNotFoundException e) {
2316 // Ignore
2317 }
2318 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002319
Jorim Jaggia16cc152015-06-01 16:55:05 -07002320 PhoneWindow win = new PhoneWindow(context);
2321 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002322
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002323 Resources r = context.getResources();
2324 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002325
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002326 win.setType(
2327 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002328
2329 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2330 // Assumes it's safe to show starting windows of launched apps while
2331 // the keyguard is being hidden. This is okay because starting windows never show
2332 // secret information.
2333 if (mKeyguardHidden) {
2334 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2335 }
2336 }
2337
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002338 // Force the window flags: this is a fake window, so it is not really
2339 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2340 // flag because we do know that the next window will take input
2341 // focus, so we want to get the IME window up on top of us right away.
2342 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002343 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002344 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2345 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2346 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002347 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002348 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2349 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2350 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002351
Adam Powell04fe6eb2013-05-31 14:39:48 -07002352 win.setDefaultIcon(icon);
2353 win.setDefaultLogo(logo);
2354
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002355 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002356 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002357
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002358 final WindowManager.LayoutParams params = win.getAttributes();
2359 params.token = appToken;
2360 params.packageName = packageName;
2361 params.windowAnimations = win.getWindowStyle().getResourceId(
2362 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002363 params.privateFlags |=
2364 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002365 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002366
2367 if (!compatInfo.supportsScreen()) {
2368 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2369 }
2370
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002371 params.setTitle("Starting " + packageName);
2372
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002373 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2374 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002375
Craig Mautner6fbda632012-07-03 09:26:39 -07002376 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002377 TAG, "Adding starting window for " + packageName
2378 + " / " + appToken + ": "
2379 + (view.getParent() != null ? view : null));
2380
2381 wm.addView(view, params);
2382
2383 // Only return the view if it was successfully added to the
2384 // window manager... which we can tell by it having a parent.
2385 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002386 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002387 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002388 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2389 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002390 } catch (RuntimeException e) {
2391 // don't crash if something else bad happens, for example a
2392 // failure loading resources because we are loading from an app
2393 // on external storage that has been unmounted.
2394 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002395 } finally {
2396 if (view != null && view.getParent() == null) {
2397 Log.w(TAG, "view not successfully added to wm, removing view");
2398 wm.removeViewImmediate(view);
2399 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002400 }
2401
2402 return null;
2403 }
2404
2405 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002406 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002407 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002408 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2409 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002410
2411 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002412 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002413 wm.removeView(window);
2414 }
2415 }
2416
2417 /**
2418 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002419 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002420 * Currently enforces that three window types are singletons:
2421 * <ul>
2422 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002423 * <li>KEYGUARD_TYPE</li>
2424 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002425 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002426 * @param win The window to be added
2427 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002428 *
Jeff Brown98365d72012-08-19 20:30:52 -07002429 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2430 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002431 */
Jose Lima9546b202014-07-02 17:21:51 -07002432 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002433 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2434 switch (attrs.type) {
2435 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002436 mContext.enforceCallingOrSelfPermission(
2437 android.Manifest.permission.STATUS_BAR_SERVICE,
2438 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002439 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002440 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002441 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002442 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002443 }
2444 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002445 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002446 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002447 case TYPE_NAVIGATION_BAR:
2448 mContext.enforceCallingOrSelfPermission(
2449 android.Manifest.permission.STATUS_BAR_SERVICE,
2450 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002451 if (mNavigationBar != null) {
2452 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002453 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002454 }
2455 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002456 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002457 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002458 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002459 break;
Jim Millere898ac52012-04-06 17:10:57 -07002460 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002461 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002462 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002463 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002464 mContext.enforceCallingOrSelfPermission(
2465 android.Manifest.permission.STATUS_BAR_SERVICE,
2466 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002467 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002468 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002469 if (mKeyguardScrim != null) {
2470 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2471 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002472 mKeyguardScrim = win;
2473 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002474 }
Jeff Brown98365d72012-08-19 20:30:52 -07002475 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002476 }
2477
2478 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002479 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002480 public void removeWindowLw(WindowState win) {
2481 if (mStatusBar == win) {
2482 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002483 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002484 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002485 } else if (mKeyguardScrim == win) {
2486 Log.v(TAG, "Removing keyguard scrim");
2487 mKeyguardScrim = null;
2488 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002489 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002490 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002491 }
2492 }
2493
2494 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002495
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002496 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002497 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002498 public int selectAnimationLw(WindowState win, int transit) {
2499 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2500 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002501 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002502 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002503 if (transit == TRANSIT_EXIT
2504 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002505 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002506 } else if (transit == TRANSIT_ENTER
2507 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002508 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002509 }
2510 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002511 if (win.getAttrs().windowAnimations != 0) {
2512 return 0;
2513 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002514 // This can be on either the bottom or the right.
2515 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002516 if (transit == TRANSIT_EXIT
2517 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002518 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002519 } else if (transit == TRANSIT_ENTER
2520 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002521 return R.anim.dock_bottom_enter;
2522 }
2523 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002524 if (transit == TRANSIT_EXIT
2525 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002526 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002527 } else if (transit == TRANSIT_ENTER
2528 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002529 return R.anim.dock_right_enter;
2530 }
2531 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002532 }
2533
2534 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002535 if (win.hasAppShownWindows()) {
2536 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2537 return com.android.internal.R.anim.app_starting_exit;
2538 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002539 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002540 && transit == TRANSIT_ENTER) {
2541 // Special case: we are animating in a dream, while the keyguard
2542 // is shown. We don't want an animation on the dream, because
2543 // we need it shown immediately with the keyguard animating away
2544 // to reveal it.
2545 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002546 }
2547
2548 return 0;
2549 }
2550
Craig Mautner3c174372013-02-21 17:54:37 -08002551 @Override
2552 public void selectRotationAnimationLw(int anim[]) {
2553 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2554 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2555 + (mTopFullscreenOpaqueWindowState == null ?
2556 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2557 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2558 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2559 case ROTATION_ANIMATION_CROSSFADE:
2560 anim[0] = R.anim.rotation_animation_xfade_exit;
2561 anim[1] = R.anim.rotation_animation_enter;
2562 break;
2563 case ROTATION_ANIMATION_JUMPCUT:
2564 anim[0] = R.anim.rotation_animation_jump_exit;
2565 anim[1] = R.anim.rotation_animation_enter;
2566 break;
2567 case ROTATION_ANIMATION_ROTATE:
2568 default:
2569 anim[0] = anim[1] = 0;
2570 break;
2571 }
2572 } else {
2573 anim[0] = anim[1] = 0;
2574 }
2575 }
2576
2577 @Override
2578 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2579 boolean forceDefault) {
2580 switch (exitAnimId) {
2581 case R.anim.rotation_animation_xfade_exit:
2582 case R.anim.rotation_animation_jump_exit:
2583 // These are the only cases that matter.
2584 if (forceDefault) {
2585 return false;
2586 }
2587 int anim[] = new int[2];
2588 selectRotationAnimationLw(anim);
2589 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2590 default:
2591 return true;
2592 }
2593 }
2594
2595 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002596 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2597 boolean goingToNotificationShade) {
2598 if (goingToNotificationShade) {
2599 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002600 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002601
2602 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2603 R.anim.lock_screen_behind_enter_wallpaper :
2604 R.anim.lock_screen_behind_enter);
2605
2606 // TODO: Use XML interpolators when we have log interpolators available in XML.
2607 final List<Animation> animations = set.getAnimations();
2608 for (int i = animations.size() - 1; i >= 0; --i) {
2609 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2610 }
2611
2612 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002613 }
2614
2615
2616 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002617 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2618 if (goingToNotificationShade) {
2619 return null;
2620 } else {
2621 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2622 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002623 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002624
2625 private static void awakenDreams() {
2626 IDreamManager dreamManager = getDreamManager();
2627 if (dreamManager != null) {
2628 try {
2629 dreamManager.awaken();
2630 } catch (RemoteException e) {
2631 // fine, stay asleep then
2632 }
2633 }
2634 }
2635
2636 static IDreamManager getDreamManager() {
2637 return IDreamManager.Stub.asInterface(
2638 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2639 }
2640
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002641 TelecomManager getTelecommService() {
2642 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002643 }
2644
Jeff Brown4d396052010-10-29 21:50:21 -07002645 static IAudioService getAudioService() {
2646 IAudioService audioService = IAudioService.Stub.asInterface(
2647 ServiceManager.checkService(Context.AUDIO_SERVICE));
2648 if (audioService == null) {
2649 Log.w(TAG, "Unable to find IAudioService interface.");
2650 }
2651 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002652 }
2653
2654 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002655 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002656 }
2657
2658 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2659 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2660 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2661 };
2662
2663 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002664 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002665 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002666 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002667 final int keyCode = event.getKeyCode();
2668 final int repeatCount = event.getRepeatCount();
2669 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002670 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002671 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2672 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002673
Jeff Brown40013652012-05-16 21:22:36 -07002674 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002675 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002676 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2677 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002678 }
2679
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002680 // If we think we might have a volume down & power key chord on the way
2681 // but we're not sure, then tell the dispatcher to wait a little while and
2682 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002683 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002684 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002685 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002686 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2687 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002688 if (now < timeoutTime) {
2689 return timeoutTime - now;
2690 }
2691 }
2692 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002693 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002694 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002695 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002696 }
2697 return -1;
2698 }
2699 }
2700
Michael Wright6a62e552014-06-03 19:19:48 -07002701 // Cancel any pending meta actions if we see any other keys being pressed between the down
2702 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002703 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002704 mPendingMetaAction = false;
2705 }
2706
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002707 // First we always handle the home key here, so applications
2708 // can never break it, although if keyguard is on, we do let
2709 // it handle it, because that gives us the correct 5 second
2710 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002711 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002712
Jeff Brown49ed71d2010-12-06 17:13:33 -08002713 // If we have released the home key, and didn't do anything else
2714 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002715 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002716 cancelPreloadRecentApps();
2717
Jeff Brown49ed71d2010-12-06 17:13:33 -08002718 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002719 if (mHomeConsumed) {
2720 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002721 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002722 }
Jeff Browncaca8812013-05-09 13:34:33 -07002723
2724 if (canceled) {
2725 Log.i(TAG, "Ignoring HOME; event canceled.");
2726 return -1;
2727 }
2728
Yorke Lee4f803242014-12-15 23:22:06 +00002729 // If an incoming call is ringing, HOME is totally disabled.
2730 // (The user is already on the InCallUI at this point,
2731 // and his ONLY options are to answer or reject the call.)
2732 TelecomManager telecomManager = getTelecommService();
2733 if (telecomManager != null && telecomManager.isRinging()) {
2734 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2735 return -1;
2736 }
2737
Jeff Browncaca8812013-05-09 13:34:33 -07002738 // Delay handling home if a double-tap is possible.
2739 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2740 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2741 mHomeDoubleTapPending = true;
2742 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2743 ViewConfiguration.getDoubleTapTimeout());
2744 return -1;
2745 }
2746
Jeff Brown13f00f02014-10-31 14:45:50 -07002747 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002748 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002749 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002750
2751 // If a system window has focus, then it doesn't make sense
2752 // right now to interact with applications.
2753 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2754 if (attrs != null) {
2755 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002756 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2757 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2758 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002759 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002760 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002761 }
2762 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2763 for (int i=0; i<typeCount; i++) {
2764 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2765 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002766 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002767 }
2768 }
2769 }
Jeff Browncaca8812013-05-09 13:34:33 -07002770
2771 // Remember that home is pressed and handle special actions.
2772 if (repeatCount == 0) {
2773 mHomePressed = true;
2774 if (mHomeDoubleTapPending) {
2775 mHomeDoubleTapPending = false;
2776 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2777 handleDoubleTapOnHome();
2778 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2779 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2780 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002781 }
Jeff Browncaca8812013-05-09 13:34:33 -07002782 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2783 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002784 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002785 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002786 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002787 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002788 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002789 // Hijack modified menu keys for debugging features
2790 final int chordBug = KeyEvent.META_SHIFT_ON;
2791
2792 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002793 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002794 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002795 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2796 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002797 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002798 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002799 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002800 Intent service = new Intent();
2801 service.setClassName(mContext, "com.android.server.LoadAverageService");
2802 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002803 boolean shown = Settings.Global.getInt(
2804 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002805 if (!shown) {
2806 mContext.startService(service);
2807 } else {
2808 mContext.stopService(service);
2809 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002810 Settings.Global.putInt(
2811 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002812 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002813 }
2814 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002815 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002816 if (down) {
2817 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002818 mSearchKeyShortcutPending = true;
2819 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002820 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002821 } else {
2822 mSearchKeyShortcutPending = false;
2823 if (mConsumeSearchKeyUp) {
2824 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002825 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002826 }
2827 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002828 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002829 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002830 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002831 if (down && repeatCount == 0) {
2832 preloadRecentApps();
2833 } else if (!down) {
2834 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002835 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002836 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002837 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002838 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2839 if (down) {
2840 IStatusBarService service = getStatusBarService();
2841 if (service != null) {
2842 try {
2843 service.expandNotificationsPanel();
2844 } catch (RemoteException e) {
2845 // do nothing.
2846 }
2847 }
2848 }
Clara Bayarrif2debb12015-07-10 14:47:17 +01002849 } else if (keyCode == KeyEvent.KEYCODE_SLASH && event.isMetaPressed()) {
2850 if (down) {
2851 if (repeatCount == 0) {
2852 showKeyboardShortcutsMenu();
2853 }
2854 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002855 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2856 if (down) {
2857 if (repeatCount == 0) {
2858 mAssistKeyLongPressed = false;
2859 } else if (repeatCount == 1) {
2860 mAssistKeyLongPressed = true;
2861 if (!keyguardOn) {
2862 launchAssistLongPressAction();
2863 }
2864 }
2865 } else {
2866 if (mAssistKeyLongPressed) {
2867 mAssistKeyLongPressed = false;
2868 } else {
2869 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002870 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002871 }
2872 }
2873 }
2874 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002875 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2876 if (!down) {
2877 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002878 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002879 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2880 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002881 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2882 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2883 if (dic != null) {
2884 try {
2885 dic.exitIdle("voice-search");
2886 } catch (RemoteException e) {
2887 }
2888 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002889 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002890 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002891 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002892 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002893 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002894 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2895 if (down && repeatCount == 0) {
2896 mHandler.post(mScreenshotRunnable);
2897 }
2898 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002899 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2900 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2901 if (down) {
2902 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2903
2904 // Disable autobrightness if it's on
2905 int auto = Settings.System.getIntForUser(
2906 mContext.getContentResolver(),
2907 Settings.System.SCREEN_BRIGHTNESS_MODE,
2908 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2909 UserHandle.USER_CURRENT_OR_SELF);
2910 if (auto != 0) {
2911 Settings.System.putIntForUser(mContext.getContentResolver(),
2912 Settings.System.SCREEN_BRIGHTNESS_MODE,
2913 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2914 UserHandle.USER_CURRENT_OR_SELF);
2915 }
2916
2917 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2918 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2919 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2920 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2921 Settings.System.SCREEN_BRIGHTNESS,
2922 mPowerManager.getDefaultScreenBrightnessSetting(),
2923 UserHandle.USER_CURRENT_OR_SELF);
2924 brightness += step;
2925 // Make sure we don't go beyond the limits.
2926 brightness = Math.min(max, brightness);
2927 brightness = Math.max(min, brightness);
2928
2929 Settings.System.putIntForUser(mContext.getContentResolver(),
2930 Settings.System.SCREEN_BRIGHTNESS, brightness,
2931 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002932 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002933 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002934 }
2935 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002936 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002937 if (down) {
2938 mPendingMetaAction = true;
2939 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002940 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002941 }
2942 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002943 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002944
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002945 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002946 // Any printing key that is chorded with Search should be consumed
2947 // even if no shortcut was invoked. This prevents text from being
2948 // inadvertently inserted when using a keyboard that has built-in macro
2949 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002950 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002951 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2952 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002953 mConsumeSearchKeyUp = true;
2954 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002955 if (down && repeatCount == 0 && !keyguardOn) {
2956 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2957 if (shortcutIntent != null) {
2958 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002959 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002960 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002961 } catch (ActivityNotFoundException ex) {
2962 Slog.w(TAG, "Dropping shortcut key combination because "
2963 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002964 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002965 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002966 } else {
2967 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002968 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002969 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002970 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002971 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002972 }
2973 }
2974
Jeff Brown68b909d2011-12-07 16:36:01 -08002975 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002976 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002977 && (metaState & KeyEvent.META_META_ON) != 0) {
2978 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002979 if (kcm.isPrintingKey(keyCode)) {
2980 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2981 metaState & ~(KeyEvent.META_META_ON
2982 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2983 if (shortcutIntent != null) {
2984 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2985 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002986 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002987 } catch (ActivityNotFoundException ex) {
2988 Slog.w(TAG, "Dropping shortcut key combination because "
2989 + "the activity to which it is registered was not found: "
2990 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2991 }
2992 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002993 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002994 }
2995 }
2996
Jeff Brown6651a632011-11-28 12:59:11 -08002997 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002998 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002999 String category = sApplicationLaunchKeyCategories.get(keyCode);
3000 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08003001 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08003002 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3003 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00003004 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08003005 } catch (ActivityNotFoundException ex) {
3006 Slog.w(TAG, "Dropping application launch key because "
3007 + "the activity to which it is registered was not found: "
3008 + "keyCode=" + keyCode + ", category=" + category, ex);
3009 }
Jeff Brown68b909d2011-12-07 16:36:01 -08003010 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08003011 }
3012 }
3013
Michael Wright61c46752014-08-21 16:57:33 -07003014 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08003015 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003016 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08003017 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07003018 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003019 mRecentAppsHeldModifiers = shiftlessModifiers;
3020 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08003021 return -1;
3022 }
3023 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07003024 } else if (!down && mRecentAppsHeldModifiers != 0
3025 && (metaState & mRecentAppsHeldModifiers) == 0) {
3026 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07003027 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08003028 }
3029
Jeff Browncf39bdf2012-05-18 14:41:19 -07003030 // Handle keyboard language switching.
3031 if (down && repeatCount == 0
3032 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3033 || (keyCode == KeyEvent.KEYCODE_SPACE
3034 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
3035 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
3036 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
3037 return -1;
3038 }
3039 if (mLanguageSwitchKeyPressed && !down
3040 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3041 || keyCode == KeyEvent.KEYCODE_SPACE)) {
3042 mLanguageSwitchKeyPressed = false;
3043 return -1;
3044 }
3045
Jeff Brown13f00f02014-10-31 14:45:50 -07003046 if (isValidGlobalKey(keyCode)
3047 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003048 return -1;
3049 }
3050
Michael Wright6a62e552014-06-03 19:19:48 -07003051 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003052 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003053 return -1;
3054 }
3055
Jeff Brown68b909d2011-12-07 16:36:01 -08003056 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003057 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003058 }
3059
Jeff Brown3915bb82010-11-05 15:02:16 -07003060 /** {@inheritDoc} */
3061 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003062 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003063 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003064 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003065 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3066 + ", flags=" + event.getFlags()
3067 + ", keyCode=" + event.getKeyCode()
3068 + ", scanCode=" + event.getScanCode()
3069 + ", metaState=" + event.getMetaState()
3070 + ", repeatCount=" + event.getRepeatCount()
3071 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003072 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003073
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003074 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003075 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3076 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003077 final int keyCode = event.getKeyCode();
3078 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003079 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3080 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003081
Jeff Brown54875002011-04-06 15:33:01 -07003082 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003083 final FallbackAction fallbackAction;
3084 if (initialDown) {
3085 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3086 } else {
3087 fallbackAction = mFallbackActions.get(keyCode);
3088 }
3089
3090 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003091 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003092 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3093 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003094 }
3095
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003096 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3097 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003098 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003099 event.getAction(), fallbackAction.keyCode,
3100 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003101 event.getDeviceId(), event.getScanCode(),
3102 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003103
3104 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3105 fallbackEvent.recycle();
3106 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003107 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003108
3109 if (initialDown) {
3110 mFallbackActions.put(keyCode, fallbackAction);
3111 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3112 mFallbackActions.remove(keyCode);
3113 fallbackAction.recycle();
3114 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003115 }
3116 }
3117
Jeff Brown40013652012-05-16 21:22:36 -07003118 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003119 if (fallbackEvent == null) {
3120 Slog.d(TAG, "No fallback.");
3121 } else {
3122 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3123 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003124 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003125 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003126 }
3127
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003128 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003129 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003130 if ((actions & ACTION_PASS_TO_USER) != 0) {
3131 long delayMillis = interceptKeyBeforeDispatching(
3132 win, fallbackEvent, policyFlags);
3133 if (delayMillis == 0) {
3134 return true;
3135 }
3136 }
3137 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003138 }
3139
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003140 private void launchAssistLongPressAction() {
3141 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3142 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3143
3144 // launch the search activity
3145 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3146 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3147 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003148 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003149 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003150 SearchManager searchManager = getSearchManager();
3151 if (searchManager != null) {
3152 searchManager.stopSearch();
3153 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003154 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003155 } catch (ActivityNotFoundException e) {
3156 Slog.w(TAG, "No activity to handle assist long press action.", e);
3157 }
3158 }
3159
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003160 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003161 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003162 if (!isUserSetupComplete()) {
3163 // Disable opening assist window during setup
3164 return;
3165 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003166 Bundle args = null;
3167 if (deviceId > Integer.MIN_VALUE) {
3168 args = new Bundle();
3169 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003170 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003171 if ((mContext.getResources().getConfiguration().uiMode
3172 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3173 // On TV, use legacy handling until assistants are implemented in the proper way.
3174 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3175 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3176 } else {
3177 try {
3178 if (hint != null) {
3179 if (args == null) {
3180 args = new Bundle();
3181 }
3182 args.putBoolean(hint, true);
3183 }
3184 IStatusBarService statusbar = getStatusBarService();
3185 if (statusbar != null) {
3186 statusbar.startAssist(args);
3187 }
3188 } catch (RemoteException e) {
3189 Slog.e(TAG, "RemoteException when starting assist", e);
3190 // re-acquire status bar service next time it is needed.
3191 mStatusBarService = null;
3192 }
3193 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003194 }
3195
Bart Sears8b1c27c2015-03-18 23:51:02 +00003196 private void startActivityAsUser(Intent intent, UserHandle handle) {
3197 if (isUserSetupComplete()) {
3198 mContext.startActivityAsUser(intent, handle);
3199 } else {
3200 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3201 }
3202 }
3203
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003204 private SearchManager getSearchManager() {
3205 if (mSearchManager == null) {
3206 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3207 }
3208 return mSearchManager;
3209 }
3210
Jeff Browncaca8812013-05-09 13:34:33 -07003211 private void preloadRecentApps() {
3212 mPreloadedRecentApps = true;
3213 try {
3214 IStatusBarService statusbar = getStatusBarService();
3215 if (statusbar != null) {
3216 statusbar.preloadRecentApps();
3217 }
3218 } catch (RemoteException e) {
3219 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3220 // re-acquire status bar service next time it is needed.
3221 mStatusBarService = null;
3222 }
3223 }
3224
3225 private void cancelPreloadRecentApps() {
3226 if (mPreloadedRecentApps) {
3227 mPreloadedRecentApps = false;
3228 try {
3229 IStatusBarService statusbar = getStatusBarService();
3230 if (statusbar != null) {
3231 statusbar.cancelPreloadRecentApps();
3232 }
3233 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003234 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003235 // re-acquire status bar service next time it is needed.
3236 mStatusBarService = null;
3237 }
3238 }
3239 }
3240
3241 private void toggleRecentApps() {
3242 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003243 try {
3244 IStatusBarService statusbar = getStatusBarService();
3245 if (statusbar != null) {
3246 statusbar.toggleRecentApps();
3247 }
3248 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003249 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3250 // re-acquire status bar service next time it is needed.
3251 mStatusBarService = null;
3252 }
3253 }
3254
Craig Mautner84984fa2014-06-19 11:19:20 -07003255 @Override
3256 public void showRecentApps() {
3257 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3258 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3259 }
3260
Winson Chung1e8d71b2014-05-16 17:05:22 -07003261 private void showRecentApps(boolean triggeredFromAltTab) {
3262 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3263 try {
3264 IStatusBarService statusbar = getStatusBarService();
3265 if (statusbar != null) {
3266 statusbar.showRecentApps(triggeredFromAltTab);
3267 }
3268 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003269 Slog.e(TAG, "RemoteException when showing recent apps", e);
3270 // re-acquire status bar service next time it is needed.
3271 mStatusBarService = null;
3272 }
3273 }
3274
Clara Bayarrif2debb12015-07-10 14:47:17 +01003275 private void showKeyboardShortcutsMenu() {
3276 try {
3277 IStatusBarService statusbar = getStatusBarService();
3278 if (statusbar != null) {
3279 statusbar.showKeyboardShortcutsMenu();
3280 }
3281 } catch (RemoteException e) {
3282 Slog.e(TAG, "RemoteException when showing keyboard shortcuts menu", e);
3283 }
3284 }
3285
Winson Chungcdcd4872014-08-05 18:00:13 -07003286 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003287 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3288 try {
3289 IStatusBarService statusbar = getStatusBarService();
3290 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003291 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003292 }
3293 } catch (RemoteException e) {
3294 Slog.e(TAG, "RemoteException when closing recent apps", e);
3295 // re-acquire status bar service next time it is needed.
3296 mStatusBarService = null;
3297 }
3298 }
3299
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003300 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003301 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003302 }
3303
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003304 /**
3305 * A home key -> launch home action was detected. Take the appropriate action
3306 * given the situation with the keyguard.
3307 */
Bryce Lee662ed802015-04-10 20:11:39 +00003308 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3309 if (respectKeyguard) {
3310 if (isKeyguardShowingAndNotOccluded()) {
3311 // don't launch home if keyguard showing
3312 return;
3313 }
3314
3315 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3316 // when in keyguard restricted mode, must first verify unlock
3317 // before launching home
3318 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3319 @Override
3320 public void onKeyguardExitResult(boolean success) {
3321 if (success) {
3322 try {
3323 ActivityManagerNative.getDefault().stopAppSwitches();
3324 } catch (RemoteException e) {
3325 }
3326 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3327 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003328 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003329 }
Bryce Lee662ed802015-04-10 20:11:39 +00003330 });
3331 return;
3332 }
3333 }
3334
3335 // no keyguard stuff to worry about, just launch home!
3336 try {
3337 ActivityManagerNative.getDefault().stopAppSwitches();
3338 } catch (RemoteException e) {
3339 }
3340 if (mRecentsVisible) {
3341 // Hide Recents and notify it to launch Home
3342 if (awakenFromDreams) {
3343 awakenDreams();
3344 }
3345 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3346 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003347 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003348 // Otherwise, just launch Home
3349 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3350 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003351 }
3352 }
3353
John Spurlock04db1762013-05-13 12:46:41 -04003354 private final Runnable mClearHideNavigationFlag = new Runnable() {
3355 @Override
3356 public void run() {
3357 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3358 // Clear flags.
3359 mForceClearedSystemUiFlags &=
3360 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3361 }
3362 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003363 }
3364 };
3365
3366 /**
3367 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3368 * to determine when the nav bar should be shown and prevent applications from
3369 * receiving those touches.
3370 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003371 final class HideNavInputEventReceiver extends InputEventReceiver {
3372 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3373 super(inputChannel, looper);
3374 }
3375
Dianne Hackborndf89e652011-10-06 22:35:11 -07003376 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003377 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003378 boolean handled = false;
3379 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003380 if (event instanceof MotionEvent
3381 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3382 final MotionEvent motionEvent = (MotionEvent)event;
3383 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003384 // When the user taps down, we re-show the nav bar.
3385 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003386 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003387 // Any user activity always causes us to show the
3388 // navigation controls, if they had been hidden.
3389 // We also clear the low profile and only content
3390 // flags so that tapping on the screen will atomically
3391 // restore all currently hidden screen decorations.
3392 int newVal = mResettingSystemUiFlags |
3393 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3394 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3395 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003396 if (mResettingSystemUiFlags != newVal) {
3397 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003398 changed = true;
3399 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003400 // We don't allow the system's nav bar to be hidden
3401 // again for 1 second, to prevent applications from
3402 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003403 newVal = mForceClearedSystemUiFlags |
3404 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003405 if (mForceClearedSystemUiFlags != newVal) {
3406 mForceClearedSystemUiFlags = newVal;
3407 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003408 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003409 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003410 }
3411 if (changed) {
3412 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3413 }
3414 }
3415 }
3416 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003417 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003418 }
3419 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003420 }
3421 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3422 new InputEventReceiver.Factory() {
3423 @Override
3424 public InputEventReceiver createInputEventReceiver(
3425 InputChannel inputChannel, Looper looper) {
3426 return new HideNavInputEventReceiver(inputChannel, looper);
3427 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003428 };
3429
3430 @Override
3431 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003432 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3433 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003434 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003435
Dianne Hackborndf89e652011-10-06 22:35:11 -07003436 // Reset any bits in mForceClearingStatusBarVisibility that
3437 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003438 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003439 // Clear any bits in the new visibility that are currently being
3440 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003441 return visibility & ~mResettingSystemUiFlags
3442 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003443 }
3444
Craig Mautner69b08182012-09-05 13:07:13 -07003445 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003446 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3447 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003448 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003449 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3450 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003451
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003452 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3453 if (useOutsets) {
3454 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3455 if (outset > 0) {
3456 if (displayRotation == Surface.ROTATION_0) {
3457 outOutsets.bottom += outset;
3458 } else if (displayRotation == Surface.ROTATION_90) {
3459 outOutsets.right += outset;
3460 } else if (displayRotation == Surface.ROTATION_180) {
3461 outOutsets.top += outset;
3462 } else if (displayRotation == Surface.ROTATION_270) {
3463 outOutsets.left += outset;
3464 }
3465 }
3466 }
3467
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003468 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003469 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003470 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003471 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003472 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003473 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3474 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3475 } else {
3476 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3477 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3478 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003479 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3480 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003481 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003482 availRight - mStableFullscreenRight,
3483 availBottom - mStableFullscreenBottom);
3484 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003485 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003486 availRight - mStableRight, availBottom - mStableBottom);
3487 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003488 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003489 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003490 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003491 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003492 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003493 availRight - mCurRight, availBottom - mCurBottom);
3494 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003495 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003496 availRight - mCurRight, availBottom - mCurBottom);
3497 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003498
3499 outStableInsets.set(mStableLeft, mStableTop,
3500 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003501 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003502 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003503 outContentInsets.setEmpty();
3504 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003505 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003506
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003507 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3508 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3509 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3510 }
3511
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003512 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003513 @Override
3514 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3515 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003516 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003517 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3518 if (isDefaultDisplay) {
3519 switch (displayRotation) {
3520 case Surface.ROTATION_90:
3521 overscanLeft = mOverscanTop;
3522 overscanTop = mOverscanRight;
3523 overscanRight = mOverscanBottom;
3524 overscanBottom = mOverscanLeft;
3525 break;
3526 case Surface.ROTATION_180:
3527 overscanLeft = mOverscanRight;
3528 overscanTop = mOverscanBottom;
3529 overscanRight = mOverscanLeft;
3530 overscanBottom = mOverscanTop;
3531 break;
3532 case Surface.ROTATION_270:
3533 overscanLeft = mOverscanBottom;
3534 overscanTop = mOverscanLeft;
3535 overscanRight = mOverscanTop;
3536 overscanBottom = mOverscanRight;
3537 break;
3538 default:
3539 overscanLeft = mOverscanLeft;
3540 overscanTop = mOverscanTop;
3541 overscanRight = mOverscanRight;
3542 overscanBottom = mOverscanBottom;
3543 break;
3544 }
3545 } else {
3546 overscanLeft = 0;
3547 overscanTop = 0;
3548 overscanRight = 0;
3549 overscanBottom = 0;
3550 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003551 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3552 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3553 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3554 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003555 mSystemLeft = 0;
3556 mSystemTop = 0;
3557 mSystemRight = displayWidth;
3558 mSystemBottom = displayHeight;
3559 mUnrestrictedScreenLeft = overscanLeft;
3560 mUnrestrictedScreenTop = overscanTop;
3561 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3562 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3563 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3564 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003565 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3566 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003567 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003568 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003569 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003570 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003571 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003572 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003573 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003574 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003575 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003576 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003577
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003578 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3579 final Rect pf = mTmpParentFrame;
3580 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003581 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003582 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003583 final Rect dcf = mTmpDecorFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003584 pf.left = df.left = of.left = vf.left = mDockLeft;
3585 pf.top = df.top = of.top = vf.top = mDockTop;
3586 pf.right = df.right = of.right = vf.right = mDockRight;
3587 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003588 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003589
Craig Mautner69b08182012-09-05 13:07:13 -07003590 if (isDefaultDisplay) {
3591 // For purposes of putting out fake window up to steal focus, we will
3592 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003593 final int sysui = mLastSystemUiFlags;
3594 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003595 boolean navTranslucent = (sysui
3596 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003597 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3598 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3599 boolean navAllowedHidden = immersive || immersiveSticky;
3600 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003601 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3602 if (!isKeyguardShowing) {
3603 navTranslucent &= areTranslucentBarsAllowed();
3604 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003605
Craig Mautner69b08182012-09-05 13:07:13 -07003606 // When the navigation bar isn't visible, we put up a fake
3607 // input window to catch all touch events. This way we can
3608 // detect when the user presses anywhere to bring back the nav
3609 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003610 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003611 if (mInputConsumer != null) {
3612 mInputConsumer.dismiss();
3613 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003614 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003615 } else if (mInputConsumer == null) {
3616 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3617 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003618 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003619
Craig Mautner69b08182012-09-05 13:07:13 -07003620 // For purposes of positioning and showing the nav bar, if we have
3621 // decided that it can't be hidden (because of the screen aspect ratio),
3622 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003623 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003624
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003625 boolean updateSysUiVisibility = layoutNavigationBar(displayWidth, displayHeight,
3626 displayRotation, overscanRight, overscanBottom, dcf, navVisible, navTranslucent,
3627 navAllowedHidden);
Craig Mautnereda67292013-04-28 13:50:14 -07003628 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003629 mDockLeft, mDockTop, mDockRight, mDockBottom));
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003630 updateSysUiVisibility |= layoutStatusBar(pf, df, of, vf, dcf, sysui, isKeyguardShowing);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003631 if (updateSysUiVisibility) {
3632 updateSystemUiVisibilityLw();
3633 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003634 }
3635 }
3636
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003637 private boolean layoutStatusBar(Rect pf, Rect df, Rect of, Rect vf, Rect dcf, int sysui,
3638 boolean isKeyguardShowing) {
3639 // decide where the status bar goes ahead of time
3640 if (mStatusBar != null) {
3641 // apply any navigation bar insets
3642 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3643 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3644 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3645 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3646 + mUnrestrictedScreenTop;
3647 vf.left = mStableLeft;
3648 vf.top = mStableTop;
3649 vf.right = mStableRight;
3650 vf.bottom = mStableBottom;
3651
3652 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3653
3654 // Let the status bar determine its size.
3655 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3656 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3657 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
3658
3659 // For layout, the status bar is always at the top with our fixed height.
3660 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3661
3662 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
3663 boolean statusBarTranslucent = (sysui
3664 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
3665 if (!isKeyguardShowing) {
3666 statusBarTranslucent &= areTranslucentBarsAllowed();
3667 }
3668
3669 // If the status bar is hidden, we don't want to cause
3670 // windows behind it to scroll.
3671 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
3672 // Status bar may go away, so the screen area it occupies
3673 // is available to apps but just covering them when the
3674 // status bar is visible.
3675 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3676
3677 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3678 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3679 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3680 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3681
3682 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
3683 String.format(
3684 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3685 mDockLeft, mDockTop, mDockRight, mDockBottom,
3686 mContentLeft, mContentTop, mContentRight, mContentBottom,
3687 mCurLeft, mCurTop, mCurRight, mCurBottom));
3688 }
3689 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
3690 && !statusBarTransient && !statusBarTranslucent
3691 && !mStatusBarController.wasRecentlyTranslucent()) {
3692 // If the opaque status bar is currently requested to be visible,
3693 // and not in the process of animating on or off, then
3694 // we can tell the app that it is covered by it.
3695 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3696 }
3697 if (mStatusBarController.checkHiddenLw()) {
3698 return true;
3699 }
3700 }
3701 return false;
3702 }
3703
3704 private boolean layoutNavigationBar(int displayWidth, int displayHeight, int displayRotation,
3705 int overscanRight, int overscanBottom, Rect dcf, boolean navVisible,
3706 boolean navTranslucent, boolean navAllowedHidden) {
3707 if (mNavigationBar != null) {
3708 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
3709 // Force the navigation bar to its appropriate place and
3710 // size. We need to do this directly, instead of relying on
3711 // it to bubble up from the nav bar, because this needs to
3712 // change atomically with screen rotations.
3713 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3714 if (mNavigationBarOnBottom) {
3715 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
3716 int top = displayHeight - overscanBottom
3717 - mNavigationBarHeightForRotation[displayRotation];
3718 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
3719 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
3720 if (transientNavBarShowing) {
3721 mNavigationBarController.setBarShowingLw(true);
3722 } else if (navVisible) {
3723 mNavigationBarController.setBarShowingLw(true);
3724 mDockBottom = mTmpNavigationFrame.top;
3725 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3726 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
3727 } else {
3728 // We currently want to hide the navigation UI.
3729 mNavigationBarController.setBarShowingLw(false);
3730 }
3731 if (navVisible && !navTranslucent && !navAllowedHidden
3732 && !mNavigationBar.isAnimatingLw()
3733 && !mNavigationBarController.wasRecentlyTranslucent()) {
3734 // If the opaque nav bar is currently requested to be visible,
3735 // and not in the process of animating on or off, then
3736 // we can tell the app that it is covered by it.
3737 mSystemBottom = mTmpNavigationFrame.top;
3738 }
3739 } else {
3740 // Landscape screen; nav bar goes to the right.
3741 int left = displayWidth - overscanRight
3742 - mNavigationBarWidthForRotation[displayRotation];
3743 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
3744 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
3745 if (transientNavBarShowing) {
3746 mNavigationBarController.setBarShowingLw(true);
3747 } else if (navVisible) {
3748 mNavigationBarController.setBarShowingLw(true);
3749 mDockRight = mTmpNavigationFrame.left;
3750 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3751 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
3752 } else {
3753 // We currently want to hide the navigation UI.
3754 mNavigationBarController.setBarShowingLw(false);
3755 }
3756 if (navVisible && !navTranslucent && !navAllowedHidden
3757 && !mNavigationBar.isAnimatingLw()
3758 && !mNavigationBarController.wasRecentlyTranslucent()) {
3759 // If the nav bar is currently requested to be visible,
3760 // and not in the process of animating on or off, then
3761 // we can tell the app that it is covered by it.
3762 mSystemRight = mTmpNavigationFrame.left;
3763 }
3764 }
3765 // Make sure the content and current rectangles are updated to
3766 // account for the restrictions from the navigation bar.
3767 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3768 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3769 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3770 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3771 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3772 // And compute the final frame.
3773 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
3774 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3775 mTmpNavigationFrame, mTmpNavigationFrame);
3776 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
3777 if (mNavigationBarController.checkHiddenLw()) {
3778 return true;
3779 }
3780 }
3781 return false;
3782 }
3783
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003784 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003785 @Override
John Spurlock46646232013-09-30 22:32:42 -04003786 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003787 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3788 return mStatusBar.getSurfaceLayer();
3789 }
3790
3791 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3792 return mNavigationBar.getSurfaceLayer();
3793 }
3794
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003795 return 0;
3796 }
3797
Craig Mautner967212c2013-04-13 21:10:58 -07003798 @Override
3799 public void getContentRectLw(Rect r) {
3800 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3801 }
3802
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003803 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3804 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003805 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3806 // Here's a special case: if this attached window is a panel that is
3807 // above the dock window, and the window it is attached to is below
3808 // the dock window, then the frames we computed for the window it is
3809 // attached to can not be used because the dock is effectively part
3810 // of the underlying window and the attached window is floating on top
3811 // of the whole thing. So, we ignore the attached window and explicitly
3812 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003813 df.left = of.left = cf.left = vf.left = mDockLeft;
3814 df.top = of.top = cf.top = vf.top = mDockTop;
3815 df.right = of.right = cf.right = vf.right = mDockRight;
3816 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003817 } else {
3818 // The effective display frame of the attached window depends on
3819 // whether it is taking care of insetting its content. If not,
3820 // we need to use the parent's content frame so that the entire
3821 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003822 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003823 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003824 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003825 // Set the content frame of the attached window to the parent's decor frame
3826 // (same as content frame when IME isn't present) if specifically requested by
3827 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3828 // Otherwise, use the overscan frame.
3829 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3830 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003831 } else {
3832 // If the window is resizing, then we want to base the content
3833 // frame on our attached content frame to resize... however,
3834 // things can be tricky if the attached window is NOT in resize
3835 // mode, in which case its content frame will be larger.
3836 // Ungh. So to deal with that, make sure the content frame
3837 // we end up using is not covering the IM dock.
3838 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003839 if (attached.isVoiceInteraction()) {
3840 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3841 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3842 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3843 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3844 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003845 if (cf.left < mContentLeft) cf.left = mContentLeft;
3846 if (cf.top < mContentTop) cf.top = mContentTop;
3847 if (cf.right > mContentRight) cf.right = mContentRight;
3848 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3849 }
3850 }
3851 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003852 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003853 vf.set(attached.getVisibleFrameLw());
3854 }
3855 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3856 // window should be positioned relative to its parent or the entire
3857 // screen.
3858 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3859 ? attached.getFrameLw() : df);
3860 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003861
3862 private void applyStableConstraints(int sysui, int fl, Rect r) {
3863 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3864 // If app is requesting a stable layout, don't let the
3865 // content insets go below the stable values.
3866 if ((fl & FLAG_FULLSCREEN) != 0) {
3867 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3868 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3869 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3870 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3871 } else {
3872 if (r.left < mStableLeft) r.left = mStableLeft;
3873 if (r.top < mStableTop) r.top = mStableTop;
3874 if (r.right > mStableRight) r.right = mStableRight;
3875 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3876 }
3877 }
3878 }
3879
Jorim Jaggiaa806142015-05-20 18:04:16 -07003880 private boolean canReceiveInput(WindowState win) {
3881 boolean notFocusable =
3882 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3883 boolean altFocusableIm =
3884 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3885 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3886 return !notFocusableForIm;
3887 }
3888
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003889 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003890 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003891 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003892 // We've already done the navigation bar and status bar. If the status bar can receive
3893 // input, we need to layout it again to accomodate for the IME window.
3894 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003895 return;
3896 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003897 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003898 final boolean isDefaultDisplay = win.isDefaultDisplay();
3899 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003900 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3901 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003902 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003903 offsetInputMethodWindowLw(mLastInputMethodWindow);
3904 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003905
John Spurlockc6d1c602014-01-17 15:22:06 -05003906 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003907 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003908 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003909
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003910 final Rect pf = mTmpParentFrame;
3911 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003912 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003913 final Rect cf = mTmpContentFrame;
3914 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003915 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003916 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003917 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003918 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003919
3920 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003921 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003922
Craig Mautnerf683b562012-10-02 11:10:57 -07003923 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3924
Adrian Roosfa104232014-06-20 16:10:14 -07003925 if (isDefaultDisplay) {
3926 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3927 } else {
3928 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3929 }
3930
Craig Mautner69b08182012-09-05 13:07:13 -07003931 if (!isDefaultDisplay) {
3932 if (attached != null) {
3933 // If this window is attached to another, our display
3934 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003935 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003936 } else {
3937 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003938 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3939 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3940 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003941 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003942 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003943 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003944 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003945 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003946 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3947 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3948 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003949 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003950 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003951 // ...with content insets above the nav bar
3952 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003953 // IM dock windows always go to the bottom of the screen.
3954 attrs.gravity = Gravity.BOTTOM;
3955 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003956 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003957 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003958 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003959 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3960 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003961 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003962 // Note: In Phone landscape mode, the button bar should also be excluded.
3963 cf.right = vf.right = mStableRight;
3964 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003965 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003966 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003967 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3968 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3969 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3970 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3971 cf.left = vf.left = mStableLeft;
3972 cf.top = vf.top = mStableTop;
3973 cf.right = vf.right = mStableRight;
3974 vf.bottom = mStableBottom;
3975 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003976 } else {
John Spurlock46646232013-09-30 22:32:42 -04003977
3978 // Default policy decor for the default display
3979 dcf.left = mSystemLeft;
3980 dcf.top = mSystemTop;
3981 dcf.right = mSystemRight;
3982 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003983 final boolean inheritTranslucentDecor = (attrs.privateFlags
3984 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003985 final boolean isAppWindow =
3986 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3987 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3988 final boolean topAtRest =
3989 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3990 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003991 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3992 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003993 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3994 && (fl & WindowManager.LayoutParams.
3995 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003996 // Ensure policy decor includes status bar
3997 dcf.top = mStableTop;
3998 }
John Spurlockbd957402013-10-03 11:38:39 -04003999 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02004000 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
4001 && (fl & WindowManager.LayoutParams.
4002 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04004003 // Ensure policy decor includes navigation bar
4004 dcf.bottom = mStableBottom;
4005 dcf.right = mStableRight;
4006 }
4007 }
4008
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004009 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
4010 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07004011 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004012 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004013 // This is the case for a normal activity window: we want it
4014 // to cover all of the screen space, and it can take care of
4015 // moving its contents to account for screen decorations that
4016 // intrude into that space.
4017 if (attached != null) {
4018 // If this window is attached to another, our display
4019 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004020 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004021 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004022 if (attrs.type == TYPE_STATUS_BAR_PANEL
4023 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08004024 // Status bar panels are the only windows who can go on top of
4025 // the status bar. They are protected by the STATUS_BAR_SERVICE
4026 // permission, so they have the same privileges as the status
4027 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004028 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004029 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004030
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004031 pf.left = df.left = of.left = hasNavBar
4032 ? mDockLeft : mUnrestrictedScreenLeft;
4033 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4034 pf.right = df.right = of.right = hasNavBar
4035 ? mRestrictedScreenLeft+mRestrictedScreenWidth
4036 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4037 pf.bottom = df.bottom = of.bottom = hasNavBar
4038 ? mRestrictedScreenTop+mRestrictedScreenHeight
4039 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004040
Craig Mautnereda67292013-04-28 13:50:14 -07004041 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004042 "Laying out status bar window: (%d,%d - %d,%d)",
4043 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04004044 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004045 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4046 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4047 // Asking to layout into the overscan region, so give it that pure
4048 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004049 pf.left = df.left = of.left = mOverscanScreenLeft;
4050 pf.top = df.top = of.top = mOverscanScreenTop;
4051 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
4052 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
4053 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004054 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004055 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004056 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4057 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004058 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08004059 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004060 // only do this for application windows to ensure no window that
4061 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08004062 pf.left = df.left = mOverscanScreenLeft;
4063 pf.top = df.top = mOverscanScreenTop;
4064 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4065 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004066 // We need to tell the app about where the frame inside the overscan
4067 // is, so it can inset its content by that amount -- it didn't ask
4068 // to actually extend itself into the overscan region.
4069 of.left = mUnrestrictedScreenLeft;
4070 of.top = mUnrestrictedScreenTop;
4071 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4072 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004073 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004074 pf.left = df.left = mRestrictedOverscanScreenLeft;
4075 pf.top = df.top = mRestrictedOverscanScreenTop;
4076 pf.right = df.right = mRestrictedOverscanScreenLeft
4077 + mRestrictedOverscanScreenWidth;
4078 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4079 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004080 // We need to tell the app about where the frame inside the overscan
4081 // is, so it can inset its content by that amount -- it didn't ask
4082 // to actually extend itself into the overscan region.
4083 of.left = mUnrestrictedScreenLeft;
4084 of.top = mUnrestrictedScreenTop;
4085 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4086 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004087 }
Craig Mautner69b08182012-09-05 13:07:13 -07004088
John Spurlock46646232013-09-30 22:32:42 -04004089 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004090 if (win.isVoiceInteraction()) {
4091 cf.left = mVoiceContentLeft;
4092 cf.top = mVoiceContentTop;
4093 cf.right = mVoiceContentRight;
4094 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004095 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004096 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4097 cf.left = mDockLeft;
4098 cf.top = mDockTop;
4099 cf.right = mDockRight;
4100 cf.bottom = mDockBottom;
4101 } else {
4102 cf.left = mContentLeft;
4103 cf.top = mContentTop;
4104 cf.right = mContentRight;
4105 cf.bottom = mContentBottom;
4106 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004107 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004108 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004109 // Full screen windows are always given a layout that is as if the
4110 // status bar and other transient decors are gone. This is to avoid
4111 // bad states when moving from a window that is not hding the
4112 // status bar to one that is.
4113 cf.left = mRestrictedScreenLeft;
4114 cf.top = mRestrictedScreenTop;
4115 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4116 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004117 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004118 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004119 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4120 vf.left = mCurLeft;
4121 vf.top = mCurTop;
4122 vf.right = mCurRight;
4123 vf.bottom = mCurBottom;
4124 } else {
4125 vf.set(cf);
4126 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004127 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004128 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4129 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4130 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004131 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4132 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004133 // A window that has requested to fill the entire screen just
4134 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004135 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004136 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4137 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004138 pf.left = df.left = of.left = cf.left = hasNavBar
4139 ? mDockLeft : mUnrestrictedScreenLeft;
4140 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4141 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004142 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004143 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004144 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004145 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004146 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004147 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004148 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4149 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004150 } else if (attrs.type == TYPE_NAVIGATION_BAR
4151 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004152 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004153 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4154 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4155 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4156 + mUnrestrictedScreenWidth;
4157 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4158 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004159 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004160 "Laying out navigation bar window: (%d,%d - %d,%d)",
4161 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004162 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4163 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004164 && ((fl & FLAG_FULLSCREEN) != 0)) {
4165 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004166 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4167 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4168 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4169 + mOverscanScreenWidth;
4170 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4171 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004172 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004173 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004174 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4175 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4176 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4177 + mOverscanScreenWidth;
4178 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4179 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004180 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004181 // The wallpaper also has Real Ultimate Power, but we want to tell
4182 // it about the overscan area.
4183 pf.left = df.left = mOverscanScreenLeft;
4184 pf.top = df.top = mOverscanScreenTop;
4185 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4186 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4187 of.left = cf.left = mUnrestrictedScreenLeft;
4188 of.top = cf.top = mUnrestrictedScreenTop;
4189 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4190 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004191 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004192 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4193 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4194 // Asking to layout into the overscan region, so give it that pure
4195 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004196 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4197 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4198 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004199 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004200 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004201 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004202 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004203 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004204 && (attrs.type == TYPE_STATUS_BAR
4205 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004206 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004207 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4208 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004209 // Asking for layout as if the nav bar is hidden, lets the
4210 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004211 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004212 // can be above the nav bar can do this.
4213 // XXX This assumes that an app asking for this will also
4214 // ask for layout in only content. We can't currently figure out
4215 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004216 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4217 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4218 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4219 + mUnrestrictedScreenWidth;
4220 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4221 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004222 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004223 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4224 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4225 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4226 + mRestrictedScreenWidth;
4227 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4228 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004229 }
Craig Mautner69b08182012-09-05 13:07:13 -07004230
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004231 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004232
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004233 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4234 vf.left = mCurLeft;
4235 vf.top = mCurTop;
4236 vf.right = mCurRight;
4237 vf.bottom = mCurBottom;
4238 } else {
4239 vf.set(cf);
4240 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004241 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004242 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4243 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004244 // A child window should be placed inside of the same visible
4245 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004246 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004247 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004248 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4249 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004250 // Otherwise, a normal window must be placed inside the content
4251 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004252 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4253 // Status bar panels and the volume dialog are the only windows who can go on
4254 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004255 // permission, so they have the same privileges as the status
4256 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004257 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4258 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4259 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4260 + mRestrictedScreenWidth;
4261 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4262 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004263 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004264 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004265 pf.left = df.left = of.left = cf.left = mStableLeft;
4266 pf.top = df.top = of.top = cf.top = mStableTop;
4267 pf.right = df.right = of.right = cf.right = mStableRight;
4268 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004269 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004270 pf.left = mContentLeft;
4271 pf.top = mContentTop;
4272 pf.right = mContentRight;
4273 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004274 if (win.isVoiceInteraction()) {
4275 df.left = of.left = cf.left = mVoiceContentLeft;
4276 df.top = of.top = cf.top = mVoiceContentTop;
4277 df.right = of.right = cf.right = mVoiceContentRight;
4278 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4279 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004280 df.left = of.left = cf.left = mDockLeft;
4281 df.top = of.top = cf.top = mDockTop;
4282 df.right = of.right = cf.right = mDockRight;
4283 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004284 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004285 df.left = of.left = cf.left = mContentLeft;
4286 df.top = of.top = cf.top = mContentTop;
4287 df.right = of.right = cf.right = mContentRight;
4288 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004289 }
4290 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4291 vf.left = mCurLeft;
4292 vf.top = mCurTop;
4293 vf.right = mCurRight;
4294 vf.bottom = mCurBottom;
4295 } else {
4296 vf.set(cf);
4297 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004298 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004299 }
4300 }
Craig Mautner69b08182012-09-05 13:07:13 -07004301
Craig Mautnerb816bed2013-07-23 10:26:17 -07004302 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4303 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004304 df.left = df.top = -10000;
4305 df.right = df.bottom = 10000;
4306 if (attrs.type != TYPE_WALLPAPER) {
4307 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4308 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4309 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004310 }
4311
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004312 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4313 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004314 // We only want to apply outsets to certain types of windows. For example, we never want to
4315 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004316 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004317 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004318 osf = mTmpOutsetFrame;
4319 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4320 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4321 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004322 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004323 if (rotation == Surface.ROTATION_0) {
4324 osf.bottom += outset;
4325 } else if (rotation == Surface.ROTATION_90) {
4326 osf.right += outset;
4327 } else if (rotation == Surface.ROTATION_180) {
4328 osf.top -= outset;
4329 } else if (rotation == Surface.ROTATION_270) {
4330 osf.left -= outset;
4331 }
4332 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4333 + " with rotation " + rotation + ", result: " + osf);
4334 }
4335 }
4336
Craig Mautnereda67292013-04-28 13:50:14 -07004337 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004338 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004339 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004340 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004341 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004342 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004343 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004344 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004345 + " sf=" + sf.toShortString()
4346 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004347
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004348 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004349
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004350 // Dock windows carve out the bottom of the screen, so normal windows
4351 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004352 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4353 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004354 setLastInputMethodWindowLw(null, null);
4355 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004356 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004357 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4358 && !win.getGivenInsetsPendingLw()) {
4359 offsetVoiceInputWindowLw(win);
4360 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004361 }
4362
satok1bc0a492012-04-25 22:47:12 +09004363 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004364 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004365 top += win.getGivenContentInsetsLw().top;
4366 if (mContentBottom > top) {
4367 mContentBottom = top;
4368 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004369 if (mVoiceContentBottom > top) {
4370 mVoiceContentBottom = top;
4371 }
satok1bc0a492012-04-25 22:47:12 +09004372 top = win.getVisibleFrameLw().top;
4373 top += win.getGivenVisibleInsetsLw().top;
4374 if (mCurBottom > top) {
4375 mCurBottom = top;
4376 }
Craig Mautnereda67292013-04-28 13:50:14 -07004377 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004378 + mDockBottom + " mContentBottom="
4379 + mContentBottom + " mCurBottom=" + mCurBottom);
4380 }
4381
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004382 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004383 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004384 top += win.getGivenContentInsetsLw().top;
4385 if (mVoiceContentBottom > top) {
4386 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004387 }
4388 }
4389
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004390 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004391 @Override
4392 public void finishLayoutLw() {
4393 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004394 }
4395
4396 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004397 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004398 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004399 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004400 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004401 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004402 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004403 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004404 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004405 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004406 mForcingShowNavBar = false;
4407 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004408
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004409 mHideLockScreen = false;
4410 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004411 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004412 mShowingLockscreen = false;
4413 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004414 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004415 mKeyguardSecure = isKeyguardSecure();
4416 mKeyguardSecureIncludingHidden = mKeyguardSecure
4417 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004418 }
4419
4420 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004421 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004422 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4423 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004424 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4425 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004426 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004427 if (mTopFullscreenOpaqueWindowState == null
4428 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4429 mForcingShowNavBar = true;
4430 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004431 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004432 if (attrs.type == TYPE_STATUS_BAR) {
4433 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4434 mForceStatusBarFromKeyguard = true;
4435 }
4436 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4437 mForceStatusBarTransparent = true;
4438 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004439 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004440
4441 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4442 && attrs.type < FIRST_SYSTEM_WINDOW;
4443 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4444 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4445
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004446 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004447 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004448 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004449 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004450 mForceStatusBarFromKeyguard = true;
4451 } else {
4452 mForceStatusBar = true;
4453 }
4454 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004455 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004456 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004457 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004458 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004459 // If the lockscreen was showing when the dream started then wait
4460 // for the dream to draw before hiding the lockscreen.
4461 if (!mDreamingLockscreen
4462 || (win.isVisibleLw() && win.hasDrawnLw())) {
4463 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004464 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004465 }
4466 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004467
Yohei Yukawad1a09222015-06-30 16:22:05 -07004468 final IApplicationToken appToken = win.getAppToken();
4469
4470 // For app windows that are not attached, we decide if all windows in the app they
4471 // represent should be hidden or if we should hide the lockscreen. For attached app
4472 // windows we defer the decision to the window it is attached to.
4473 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004474 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004475 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004476 mAppsToBeHidden.remove(appToken);
4477 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004478 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004479 if (dismissKeyguard && !mKeyguardSecure) {
4480 mAppsThatDismissKeyguard.add(appToken);
Selim Cinek90b5e072015-08-28 17:05:56 -07004481 } else if (win.isDrawnLw() || win.hasAppShownWindows()) {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004482 mWinShowWhenLocked = win;
4483 mHideLockScreen = true;
4484 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004485 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004486 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004487 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004488 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004489 mAppsToBeHidden.add(appToken);
4490 } else {
4491 mAppsToBeHidden.remove(appToken);
4492 }
4493 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004494 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004495 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004496 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004497 if (attrs.x == 0 && attrs.y == 0
4498 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4499 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4500 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4501 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004502 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4503 mTopFullscreenOpaqueOrDimmingWindowState = win;
4504 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004505 if (!mAppsThatDismissKeyguard.isEmpty() &&
4506 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4507 if (DEBUG_LAYOUT) Slog.v(TAG,
4508 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004509 mDismissKeyguard = (mWinDismissingKeyguard == win
4510 && mSecureDismissingKeyguard == mKeyguardSecure)
4511 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004512 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004513 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004514 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Selim Cinek90b5e072015-08-28 17:05:56 -07004515 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked
4516 && (win.isDrawnLw() || win.hasAppShownWindows())) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004517 if (DEBUG_LAYOUT) Slog.v(TAG,
4518 "Setting mHideLockScreen to true by win " + win);
4519 mHideLockScreen = true;
4520 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004521 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004522 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004523 mAllowLockscreenWhenOn = true;
4524 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004525 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004526
4527 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004528 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4529 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004530 win.hideLw(false);
4531 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004532 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004533 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4534 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4535 // that is being hidden in an animation - keep the
4536 // keyguard hidden until the new window shows up and
4537 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004538 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004539 mHideLockScreen = true;
4540 mWinShowWhenLocked = win;
4541 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004542 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004543 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4544 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4545 && win.isDimming()) {
4546 mTopFullscreenOpaqueOrDimmingWindowState = win;
4547 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004548 }
4549
4550 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004551 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004552 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004553 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4554 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4555 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004556 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4557 // fullscreen window.
4558 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4559 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4560 mTopFullscreenOpaqueWindowState.hideLw(false);
4561 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4562 }
4563
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004564 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004565 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004566
4567 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4568 ? mTopFullscreenOpaqueWindowState.getAttrs()
4569 : null;
4570
Jeff Brownc8018eb2012-10-29 21:33:27 -07004571 // If we are not currently showing a dream then remember the current
4572 // lockscreen state. We will use this to determine whether the dream
4573 // started while the lockscreen was showing and remember this state
4574 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004575 if (!mShowingDream) {
4576 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004577 if (mDreamingSleepTokenNeeded) {
4578 mDreamingSleepTokenNeeded = false;
4579 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4580 }
4581 } else {
4582 if (!mDreamingSleepTokenNeeded) {
4583 mDreamingSleepTokenNeeded = true;
4584 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4585 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004586 }
4587
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004588 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004589 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004590 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004591 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004592 boolean shouldBeTransparent = mForceStatusBarTransparent
4593 && !mForceStatusBar
4594 && !mForceStatusBarFromKeyguard;
4595 if (!shouldBeTransparent) {
4596 mStatusBarController.setShowTransparent(false /* transparent */);
4597 } else if (!mStatusBar.isVisibleLw()) {
4598 mStatusBarController.setShowTransparent(true /* transparent */);
4599 }
4600 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004601 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004602 if (mStatusBarController.setBarShowingLw(true)) {
4603 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4604 }
Craig Mautner81defc72013-10-29 11:10:42 -07004605 // Maintain fullscreen layout until incoming animation is complete.
4606 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004607 // Transient status bar on the lockscreen is not allowed
4608 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4609 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4610 mLastSystemUiFlags, mLastSystemUiFlags);
4611 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004612 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004613 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004614 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004615 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004616 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004617 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004618 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004619 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004620 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004621 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004622 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004623 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004624 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4625 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004626 if (mStatusBarController.isTransientShowing()) {
4627 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004628 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4629 }
4630 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004631 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004632 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004633 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004634 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004635 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004636 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004637 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004638 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004639 if (mStatusBarController.setBarShowingLw(true)) {
4640 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4641 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004642 }
4643 }
4644 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004645
Craig Mautner81defc72013-10-29 11:10:42 -07004646 if (mTopIsFullscreen != topIsFullscreen) {
4647 if (!topIsFullscreen) {
4648 // Force another layout when status bar becomes fully shown.
4649 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4650 }
4651 mTopIsFullscreen = topIsFullscreen;
4652 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004653
Craig Mautner39834192012-09-02 07:47:24 -07004654 // Hide the key guard if a visible window explicitly specifies that it wants to be
4655 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004656 if (mKeyguardDelegate != null && mStatusBar != null) {
4657 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4658 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004659 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004660 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004661 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004662 changes |= FINISH_LAYOUT_REDO_LAYOUT
4663 | FINISH_LAYOUT_REDO_CONFIG
4664 | FINISH_LAYOUT_REDO_WALLPAPER;
4665 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004666 if (mKeyguardDelegate.isShowing()) {
4667 mHandler.post(new Runnable() {
4668 @Override
4669 public void run() {
4670 mKeyguardDelegate.keyguardDone(false, false);
4671 }
4672 });
4673 }
4674 } else if (mHideLockScreen) {
4675 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004676 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004677 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004678 changes |= FINISH_LAYOUT_REDO_LAYOUT
4679 | FINISH_LAYOUT_REDO_CONFIG
4680 | FINISH_LAYOUT_REDO_WALLPAPER;
4681 }
4682 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004683 mKeyguardHidden = false;
4684 if (setKeyguardOccludedLw(false)) {
4685 changes |= FINISH_LAYOUT_REDO_LAYOUT
4686 | FINISH_LAYOUT_REDO_CONFIG
4687 | FINISH_LAYOUT_REDO_WALLPAPER;
4688 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004689 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4690 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004691 mHandler.post(new Runnable() {
4692 @Override
4693 public void run() {
4694 mKeyguardDelegate.dismiss();
4695 }
4696 });
4697 }
4698 } else {
4699 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004700 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004701 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004702 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004703 changes |= FINISH_LAYOUT_REDO_LAYOUT
4704 | FINISH_LAYOUT_REDO_CONFIG
4705 | FINISH_LAYOUT_REDO_WALLPAPER;
4706 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004707 }
4708 }
Joe Onorato664644d2011-01-23 17:53:23 -08004709
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004710 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004711 // If the navigation bar has been hidden or shown, we need to do another
4712 // layout pass to update that window.
4713 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4714 }
Joe Onorato664644d2011-01-23 17:53:23 -08004715
Mike Lockwood28569302010-01-28 11:54:40 -05004716 // update since mAllowLockscreenWhenOn might have changed
4717 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004718 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004719 }
4720
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004721 /**
Jim Millerab954542014-10-10 18:21:49 -07004722 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004723 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004724 * @return Whether the flags have changed and we have to redo the layout.
4725 */
Jim Millerab954542014-10-10 18:21:49 -07004726 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4727 boolean wasOccluded = mKeyguardOccluded;
4728 boolean showing = mKeyguardDelegate.isShowing();
4729 if (wasOccluded && !isOccluded && showing) {
4730 mKeyguardOccluded = false;
4731 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004732 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4733 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4734 return true;
Jim Millerab954542014-10-10 18:21:49 -07004735 } else if (!wasOccluded && isOccluded && showing) {
4736 mKeyguardOccluded = true;
4737 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004738 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4739 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4740 return true;
4741 } else {
4742 return false;
4743 }
4744 }
4745
4746 private boolean isStatusBarKeyguard() {
4747 return mStatusBar != null
4748 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4749 }
4750
Jose Lima9546b202014-07-02 17:21:51 -07004751 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004752 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004753 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004754 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004755 return false;
4756 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004757 return true;
4758 }
4759
Jose Lima9546b202014-07-02 17:21:51 -07004760 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004761 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004762 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004763 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004764 // If the navigation bar has been hidden or shown, we need to do another
4765 // layout pass to update that window.
4766 return FINISH_LAYOUT_REDO_LAYOUT;
4767 }
4768 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004769 }
4770
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004771 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004772 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004773 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4774 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004775 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4776 if (newLidState == mLidState) {
4777 return;
4778 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004779
Jeff Brownc458ce92012-04-30 14:58:40 -07004780 mLidState = newLidState;
4781 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004782 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004783
4784 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004785 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4786 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004787 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004788 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004789 }
4790 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004791
Michael Wright3818c922014-09-02 13:59:07 -07004792 @Override
4793 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4794 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4795 if (mCameraLensCoverState == lensCoverState) {
4796 return;
4797 }
4798 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4799 lensCoverState == CAMERA_LENS_UNCOVERED) {
4800 Intent intent;
4801 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4802 mKeyguardDelegate.isShowing();
4803 if (keyguardActive) {
4804 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4805 } else {
4806 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4807 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004808 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4809 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004810 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004811 }
4812 mCameraLensCoverState = lensCoverState;
4813 }
4814
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004815 void setHdmiPlugged(boolean plugged) {
4816 if (mHdmiPlugged != plugged) {
4817 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004818 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004819 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004820 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004821 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004822 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004823 }
4824 }
4825
Joe Onoratoea495d42011-04-06 11:41:11 -07004826 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004827 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004828 // watch for HDMI plug messages if the hdmi switch exists
4829 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4830 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4831
Joe Onoratoea495d42011-04-06 11:41:11 -07004832 final String filename = "/sys/class/switch/hdmi/state";
4833 FileReader reader = null;
4834 try {
4835 reader = new FileReader(filename);
4836 char[] buf = new char[15];
4837 int n = reader.read(buf);
4838 if (n > 1) {
4839 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4840 }
4841 } catch (IOException ex) {
4842 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4843 } catch (NumberFormatException ex) {
4844 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4845 } finally {
4846 if (reader != null) {
4847 try {
4848 reader.close();
4849 } catch (IOException ex) {
4850 }
Joe Onoratodc100302011-01-11 17:07:41 -08004851 }
4852 }
4853 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004854 // This dance forces the code in setHdmiPlugged to run.
4855 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4856 mHdmiPlugged = !plugged;
4857 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004858 }
4859
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004860 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004861 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004862
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004863 final Runnable mScreenshotTimeout = new Runnable() {
4864 @Override public void run() {
4865 synchronized (mScreenshotLock) {
4866 if (mScreenshotConnection != null) {
4867 mContext.unbindService(mScreenshotConnection);
4868 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004869 }
Winson Chung9112ec32011-06-27 13:15:32 -07004870 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004871 }
4872 };
4873
4874 // Assume this is called from the Handler thread.
4875 private void takeScreenshot() {
4876 synchronized (mScreenshotLock) {
4877 if (mScreenshotConnection != null) {
4878 return;
4879 }
4880 ComponentName cn = new ComponentName("com.android.systemui",
4881 "com.android.systemui.screenshot.TakeScreenshotService");
4882 Intent intent = new Intent();
4883 intent.setComponent(cn);
4884 ServiceConnection conn = new ServiceConnection() {
4885 @Override
4886 public void onServiceConnected(ComponentName name, IBinder service) {
4887 synchronized (mScreenshotLock) {
4888 if (mScreenshotConnection != this) {
4889 return;
4890 }
4891 Messenger messenger = new Messenger(service);
4892 Message msg = Message.obtain(null, 1);
4893 final ServiceConnection myConn = this;
4894 Handler h = new Handler(mHandler.getLooper()) {
4895 @Override
4896 public void handleMessage(Message msg) {
4897 synchronized (mScreenshotLock) {
4898 if (mScreenshotConnection == myConn) {
4899 mContext.unbindService(mScreenshotConnection);
4900 mScreenshotConnection = null;
4901 mHandler.removeCallbacks(mScreenshotTimeout);
4902 }
4903 }
4904 }
4905 };
4906 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004907 msg.arg1 = msg.arg2 = 0;
4908 if (mStatusBar != null && mStatusBar.isVisibleLw())
4909 msg.arg1 = 1;
4910 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4911 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004912 try {
4913 messenger.send(msg);
4914 } catch (RemoteException e) {
4915 }
4916 }
4917 }
4918 @Override
4919 public void onServiceDisconnected(ComponentName name) {}
4920 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004921 if (mContext.bindServiceAsUser(
4922 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004923 mScreenshotConnection = conn;
4924 mHandler.postDelayed(mScreenshotTimeout, 10000);
4925 }
4926 }
Winson Chung9112ec32011-06-27 13:15:32 -07004927 }
4928
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004929 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004930 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004931 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004932 if (!mSystemBooted) {
4933 // If we have not yet booted, don't let key events do anything.
4934 return 0;
4935 }
4936
Jeff Brown037c33e2014-04-09 00:31:55 -07004937 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004938 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4939 final boolean canceled = event.isCanceled();
4940 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004941
Jeff Brown3122e442010-10-11 23:32:49 -07004942 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004943
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004944 // If screen is off then we treat the case where the keyguard is open but hidden
4945 // the same as if it were open and in front.
4946 // This will prevent any keys other than the power button from waking the screen
4947 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004948 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004949 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004950 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004951 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004952
Jeff Brown40013652012-05-16 21:22:36 -07004953 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004954 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004955 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004956 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004957 }
4958
Jeff Brown037c33e2014-04-09 00:31:55 -07004959 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004960 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004961 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4962 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004963 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004964 // When the device is interactive or the key is injected pass the
4965 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004966 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004967 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004968 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4969 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4970 // to the application but preserve its wake key status to make sure we still move
4971 // from dozing to fully interactive if we would normally go from off to fully
4972 // interactive.
4973 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004974 } else {
4975 // When the screen is off and the key is not injected, determine whether
4976 // to wake the device but don't pass the key to the application.
4977 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004978 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4979 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004980 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004981 }
4982
Justin Kohd378ad72013-04-01 12:18:26 -07004983 // If the key would be handled globally, just return the result, don't worry about special
4984 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004985 if (isValidGlobalKey(keyCode)
4986 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004987 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004988 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07004989 }
Justin Kohd378ad72013-04-01 12:18:26 -07004990 return result;
4991 }
4992
Jeff Brownbae8e772014-06-12 19:59:45 -07004993 boolean useHapticFeedback = down
4994 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4995 && event.getRepeatCount() == 0;
4996
Jeff Brown4d396052010-10-29 21:50:21 -07004997 // Handle special keys.
4998 switch (keyCode) {
4999 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07005000 case KeyEvent.KEYCODE_VOLUME_UP:
5001 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08005002 if (mUseTvRouting) {
5003 // On TVs volume keys never go to the foreground app
5004 result &= ~ACTION_PASS_TO_USER;
5005 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005006 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
5007 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005008 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005009 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005010 mScreenshotChordVolumeDownKeyTriggered = true;
5011 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
5012 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005013 cancelPendingPowerKeyAction();
5014 interceptScreenshotChord();
5015 }
5016 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005017 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005018 cancelPendingScreenshotChordAction();
5019 }
5020 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
5021 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005022 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005023 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005024 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005025 cancelPendingPowerKeyAction();
5026 cancelPendingScreenshotChordAction();
5027 }
5028 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005029 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005030 cancelPendingScreenshotChordAction();
5031 }
5032 }
Jeff Brown4d396052010-10-29 21:50:21 -07005033 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005034 TelecomManager telecomManager = getTelecommService();
5035 if (telecomManager != null) {
5036 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005037 // If an incoming call is ringing, either VOLUME key means
5038 // "silence ringer". We handle these keys here, rather than
5039 // in the InCallScreen, to make sure we'll respond to them
5040 // even if the InCallScreen hasn't come to the foreground yet.
5041 // Look for the DOWN event here, to agree with the "fallback"
5042 // behavior in the InCallScreen.
5043 Log.i(TAG, "interceptKeyBeforeQueueing:"
5044 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07005045
Santos Cordon6848f722014-05-21 15:22:12 -07005046 // Silence the ringer. (It's safe to call this
5047 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005048 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07005049
Santos Cordon6848f722014-05-21 15:22:12 -07005050 // And *don't* pass this key thru to the current activity
5051 // (which is probably the InCallScreen.)
5052 result &= ~ACTION_PASS_TO_USER;
5053 break;
5054 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005055 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07005056 && (result & ACTION_PASS_TO_USER) == 0) {
5057 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07005058 // the application, just pass it to the session service.
5059
5060 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07005061 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005062 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005063 }
5064 }
5065
RoboErik430fc482014-06-12 15:49:20 -07005066 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08005067 if (mUseTvRouting) {
5068 dispatchDirectAudioEvent(event);
5069 } else {
5070 // If we aren't passing to the user and no one else
5071 // handled it send it to the session manager to
5072 // figure out.
5073 MediaSessionLegacyHelper.getHelper(mContext)
5074 .sendVolumeKeyEvent(event, true);
5075 }
Jeff Brown4d396052010-10-29 21:50:21 -07005076 break;
5077 }
5078 }
5079 break;
5080 }
5081
5082 case KeyEvent.KEYCODE_ENDCALL: {
5083 result &= ~ACTION_PASS_TO_USER;
5084 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005085 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005086 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005087 if (telecomManager != null) {
5088 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005089 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005090 if (interactive && !hungUp) {
5091 mEndCallKeyHandled = false;
5092 mHandler.postDelayed(mEndCallLongPress,
5093 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5094 } else {
5095 mEndCallKeyHandled = true;
5096 }
Jeff Brown4d396052010-10-29 21:50:21 -07005097 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005098 if (!mEndCallKeyHandled) {
5099 mHandler.removeCallbacks(mEndCallLongPress);
5100 if (!canceled) {
5101 if ((mEndcallBehavior
5102 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5103 if (goHome()) {
5104 break;
5105 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005106 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005107 if ((mEndcallBehavior
5108 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5109 mPowerManager.goToSleep(event.getEventTime(),
5110 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5111 isWakeKey = false;
5112 }
Jeff Brown4d396052010-10-29 21:50:21 -07005113 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005114 }
Jeff Brown4d396052010-10-29 21:50:21 -07005115 }
5116 break;
5117 }
5118
5119 case KeyEvent.KEYCODE_POWER: {
5120 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005121 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005122 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005123 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005124 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005125 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005126 }
5127 break;
5128 }
5129
Jeff Brown6212a492014-03-07 13:58:47 -08005130 case KeyEvent.KEYCODE_SLEEP: {
5131 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005132 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005133 if (!mPowerManager.isInteractive()) {
5134 useHapticFeedback = false; // suppress feedback if already non-interactive
5135 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005136 if (down) {
5137 sleepPress(event.getEventTime());
5138 } else {
5139 sleepRelease(event.getEventTime());
5140 }
Jeff Brown6212a492014-03-07 13:58:47 -08005141 break;
5142 }
5143
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -07005144 case KeyEvent.KEYCODE_SOFT_SLEEP: {
5145 result &= ~ACTION_PASS_TO_USER;
5146 isWakeKey = false;
5147 if (!down) {
5148 mPowerManagerInternal.setUserInactiveOverrideFromWindowManager();
5149 }
5150 break;
5151 }
5152
Jeff Brown6212a492014-03-07 13:58:47 -08005153 case KeyEvent.KEYCODE_WAKEUP: {
5154 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005155 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005156 break;
5157 }
5158
Jeff Brown4d396052010-10-29 21:50:21 -07005159 case KeyEvent.KEYCODE_MEDIA_PLAY:
5160 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5161 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005162 case KeyEvent.KEYCODE_HEADSETHOOK:
5163 case KeyEvent.KEYCODE_MUTE:
5164 case KeyEvent.KEYCODE_MEDIA_STOP:
5165 case KeyEvent.KEYCODE_MEDIA_NEXT:
5166 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5167 case KeyEvent.KEYCODE_MEDIA_REWIND:
5168 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005169 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5170 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005171 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5172 // If the global session is active pass all media keys to it
5173 // instead of the active window.
5174 result &= ~ACTION_PASS_TO_USER;
5175 }
Jeff Brown4d396052010-10-29 21:50:21 -07005176 if ((result & ACTION_PASS_TO_USER) == 0) {
5177 // Only do this if we would otherwise not pass it to the user. In that
5178 // case, the PhoneWindow class will do the same thing, except it will
5179 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005180 // Note that we need to make a copy of the key event here because the
5181 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005182 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005183 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5184 new KeyEvent(event));
5185 msg.setAsynchronous(true);
5186 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005187 }
5188 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005189 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005190
Jeff Brown4d396052010-10-29 21:50:21 -07005191 case KeyEvent.KEYCODE_CALL: {
5192 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005193 TelecomManager telecomManager = getTelecommService();
5194 if (telecomManager != null) {
5195 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005196 Log.i(TAG, "interceptKeyBeforeQueueing:"
5197 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005198 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005199
Santos Cordon6848f722014-05-21 15:22:12 -07005200 // And *don't* pass this key thru to the current activity
5201 // (which is presumably the InCallScreen.)
5202 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005203 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005204 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005205 }
Jeff Brown4d396052010-10-29 21:50:21 -07005206 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005207 }
Michael Wright869a67c2014-08-26 19:33:06 -07005208 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5209 // Only do this if we would otherwise not pass it to the user. In that case,
5210 // interceptKeyBeforeDispatching would apply a similar but different policy in
5211 // order to invoke voice assist actions. Note that we need to make a copy of the
5212 // key event here because the original key event will be recycled when we return.
5213 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5214 mBroadcastWakeLock.acquire();
5215 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5216 keyguardActive ? 1 : 0, 0);
5217 msg.setAsynchronous(true);
5218 msg.sendToTarget();
5219 }
5220 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005221 }
Jeff Brown26875502014-01-30 21:47:47 -08005222
Jeff Brownbae8e772014-06-12 19:59:45 -07005223 if (useHapticFeedback) {
5224 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5225 }
5226
Jeff Brown26875502014-01-30 21:47:47 -08005227 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005228 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005229 }
Bryce Lee584a4452014-10-21 15:55:55 -07005230
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005231 return result;
5232 }
5233
Jeff Brown1c2e4942012-11-06 16:32:01 -08005234 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005235 * Returns true if the key can have global actions attached to it.
5236 * We reserve all power management keys for the system since they require
5237 * very careful handling.
5238 */
5239 private static boolean isValidGlobalKey(int keyCode) {
5240 switch (keyCode) {
5241 case KeyEvent.KEYCODE_POWER:
5242 case KeyEvent.KEYCODE_WAKEUP:
5243 case KeyEvent.KEYCODE_SLEEP:
5244 return false;
5245 default:
5246 return true;
5247 }
5248 }
5249
5250 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005251 * When the screen is off we ignore some keys that might otherwise typically
5252 * be considered wake keys. We filter them out here.
5253 *
5254 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5255 * is always considered a wake key.
5256 */
5257 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5258 switch (keyCode) {
5259 // ignore volume keys unless docked
5260 case KeyEvent.KEYCODE_VOLUME_UP:
5261 case KeyEvent.KEYCODE_VOLUME_DOWN:
5262 case KeyEvent.KEYCODE_VOLUME_MUTE:
5263 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5264
5265 // ignore media and camera keys
5266 case KeyEvent.KEYCODE_MUTE:
5267 case KeyEvent.KEYCODE_HEADSETHOOK:
5268 case KeyEvent.KEYCODE_MEDIA_PLAY:
5269 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5270 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5271 case KeyEvent.KEYCODE_MEDIA_STOP:
5272 case KeyEvent.KEYCODE_MEDIA_NEXT:
5273 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5274 case KeyEvent.KEYCODE_MEDIA_REWIND:
5275 case KeyEvent.KEYCODE_MEDIA_RECORD:
5276 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005277 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005278 case KeyEvent.KEYCODE_CAMERA:
5279 return false;
5280 }
5281 return true;
5282 }
5283
5284
Jeff Brown56194eb2011-03-02 19:23:13 -08005285 /** {@inheritDoc} */
5286 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005287 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5288 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005289 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5290 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005291 return 0;
5292 }
Michael Wright70af00a2014-09-03 19:30:20 -07005293 }
Bryce Lee5c138322014-11-03 08:26:09 -08005294
Michael Wright70af00a2014-09-03 19:30:20 -07005295 if (shouldDispatchInputWhenNonInteractive()) {
5296 return ACTION_PASS_TO_USER;
5297 }
Bryce Lee5c138322014-11-03 08:26:09 -08005298
Bryce Lee812d7022014-11-10 13:33:28 -08005299 // If we have not passed the action up and we are in theater mode without dreaming,
5300 // there will be no dream to intercept the touch and wake into ambient. The device should
5301 // wake up in this case.
5302 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005303 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5304 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005305 }
5306
Jeff Brown037c33e2014-04-09 00:31:55 -07005307 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005308 }
5309
Michael Wright70af00a2014-09-03 19:30:20 -07005310 private boolean shouldDispatchInputWhenNonInteractive() {
Michael Wright2ccf0c82015-08-04 23:03:03 +01005311 if (mDisplay == null || mDisplay.getState() == Display.STATE_OFF) {
5312 return false;
5313 }
5314 // Send events to keyguard while the screen is on and it's showing.
5315 if (isKeyguardShowingAndNotOccluded()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005316 return true;
5317 }
5318
5319 // Send events to a dozing dream even if the screen is off since the dream
5320 // is in control of the state of the screen.
5321 IDreamManager dreamManager = getDreamManager();
5322
5323 try {
5324 if (dreamManager != null && dreamManager.isDreaming()) {
5325 return true;
5326 }
5327 } catch (RemoteException e) {
5328 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5329 }
5330
5331 // Otherwise, consume events since the user can't see what is being
5332 // interacted with.
5333 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005334 }
5335
RoboErik001c59c2015-01-26 15:53:51 -08005336 private void dispatchDirectAudioEvent(KeyEvent event) {
5337 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5338 return;
5339 }
5340 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005341 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5342 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005343 String pkgName = mContext.getOpPackageName();
5344 switch (keyCode) {
5345 case KeyEvent.KEYCODE_VOLUME_UP:
5346 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005347 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005348 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005349 } catch (RemoteException e) {
5350 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5351 }
5352 break;
5353 case KeyEvent.KEYCODE_VOLUME_DOWN:
5354 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005355 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005356 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005357 } catch (RemoteException e) {
5358 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5359 }
5360 break;
5361 case KeyEvent.KEYCODE_VOLUME_MUTE:
5362 try {
5363 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005364 getAudioService().adjustSuggestedStreamVolume(
5365 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005366 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005367 }
5368 } catch (RemoteException e) {
5369 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5370 }
5371 break;
5372 }
5373 }
5374
Jeff Brown40013652012-05-16 21:22:36 -07005375 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5376 if (DEBUG_INPUT) {
5377 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005378 }
5379
Jeff Brown40013652012-05-16 21:22:36 -07005380 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5381 if (DEBUG_INPUT) {
5382 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5383 }
5384
5385 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5386 mHavePendingMediaKeyRepeatWithWakeLock = false;
5387 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5388 }
5389
5390 dispatchMediaKeyWithWakeLockToAudioService(event);
5391
5392 if (event.getAction() == KeyEvent.ACTION_DOWN
5393 && event.getRepeatCount() == 0) {
5394 mHavePendingMediaKeyRepeatWithWakeLock = true;
5395
5396 Message msg = mHandler.obtainMessage(
5397 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5398 msg.setAsynchronous(true);
5399 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5400 } else {
5401 mBroadcastWakeLock.release();
5402 }
5403 }
5404
5405 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5406 mHavePendingMediaKeyRepeatWithWakeLock = false;
5407
5408 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5409 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5410 if (DEBUG_INPUT) {
5411 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5412 }
5413
5414 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5415 mBroadcastWakeLock.release();
5416 }
5417
5418 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5419 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005420 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005421 }
5422 }
5423
Michael Wright869a67c2014-08-26 19:33:06 -07005424 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005425 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5426 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5427 if (dic != null) {
5428 try {
5429 dic.exitIdle("voice-search");
5430 } catch (RemoteException e) {
5431 }
5432 }
Michael Wright869a67c2014-08-26 19:33:06 -07005433 Intent voiceIntent =
5434 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5435 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005436 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005437 mBroadcastWakeLock.release();
5438 }
5439
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005440 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005441 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005442 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005443 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5444 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5445 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005446 } else {
5447 try {
5448 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5449 ServiceManager.getService(Context.UI_MODE_SERVICE));
5450 mUiMode = uiModeService.getCurrentModeType();
5451 } catch (RemoteException e) {
5452 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005453 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005454 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005455 synchronized (mLock) {
5456 updateOrientationListenerLp();
5457 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005458 }
5459 };
5460
Jeff Brown6aaf2952012-10-05 16:01:08 -07005461 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5462 @Override
5463 public void onReceive(Context context, Intent intent) {
5464 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005465 if (mKeyguardDelegate != null) {
5466 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005467 }
5468 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005469 if (mKeyguardDelegate != null) {
5470 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005471 }
5472 }
5473 }
5474 };
5475
Christopher Tate5e08af02012-09-21 17:17:22 -07005476 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5477 @Override
5478 public void onReceive(Context context, Intent intent) {
5479 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5480 // tickle the settings observer: this first ensures that we're
5481 // observing the relevant settings for the newly-active user,
5482 // and then updates our own bookkeeping based on the now-
5483 // current user.
5484 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005485
5486 // force a re-application of focused window sysui visibility.
5487 // the window may never have been shown for this user
5488 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005489 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005490 mLastSystemUiFlags = 0;
5491 updateSystemUiVisibilityLw();
5492 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005493 }
5494 }
5495 };
5496
Adrian Roosddc8b272015-05-21 16:28:27 -07005497 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005498 @Override
5499 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005500 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5501 if (!isUserSetupComplete()) {
5502 // Swipe-up for navigation bar is disabled during setup
5503 return;
5504 }
5505 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5506 mNavigationBarController.showTransient();
5507 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005508 }
5509 };
5510
John Spurlocke1f366f2013-08-05 12:22:40 -04005511 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005512 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005513 if (!isUserSetupComplete()) {
5514 // Swipe-up for navigation bar is disabled during setup
5515 return;
5516 }
John Spurlock27735a42013-08-14 17:57:38 -04005517 boolean sb = mStatusBarController.checkShowTransientBarLw();
5518 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005519 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005520 // Don't show status bar when swiping on already visible navigation bar
5521 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005522 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005523 return;
5524 }
John Spurlock27735a42013-08-14 17:57:38 -04005525 if (sb) mStatusBarController.showTransient();
5526 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005527 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005528 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005529 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005530 }
5531 }
5532
Jeff Brown3ee549c2014-09-22 20:14:39 -07005533 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005534 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005535 public void startedGoingToSleep(int why) {
5536 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005537 if (mKeyguardDelegate != null) {
5538 mKeyguardDelegate.onStartedGoingToSleep(why);
5539 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005540 }
5541
5542 // Called on the PowerManager's Notifier thread.
5543 @Override
5544 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005545 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005546 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005547 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005548
5549 // We must get this work done here because the power manager will drop
5550 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005551 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005552 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005553 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005554 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005555 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005556 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005557 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005558 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005559 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005560 }
5561
Jeff Brown3ee549c2014-09-22 20:14:39 -07005562 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005563 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005564 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005565 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005566 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005567
Jeff Brown3ee549c2014-09-22 20:14:39 -07005568 // Since goToSleep performs these functions synchronously, we must
5569 // do the same here. We cannot post this work to a handler because
5570 // that might cause it to become reordered with respect to what
5571 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005572 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005573 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005574
Jeff Browna20dda42014-05-27 20:57:24 -07005575 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005576 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005577 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005578 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005579
Jim Miller5ecd8112013-01-09 18:50:26 -08005580 if (mKeyguardDelegate != null) {
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005581 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005582 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005583 }
5584
Jeff Brown416c49c2015-05-26 19:50:18 -07005585 // Called on the PowerManager's Notifier thread.
5586 @Override
5587 public void finishedWakingUp() {
5588 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5589 }
5590
5591 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005592 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005593 }
5594
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005595 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005596 final boolean theaterModeEnabled = isTheaterModeEnabled();
5597 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005598 return false;
5599 }
5600
Bryce Leed3896842015-06-23 17:06:51 -07005601 if (theaterModeEnabled) {
5602 Settings.Global.putInt(mContext.getContentResolver(),
5603 Settings.Global.THEATER_MODE_ON, 0);
5604 }
5605
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005606 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005607 return true;
5608 }
5609
Jeff Brown36c4db82014-09-19 12:05:31 -07005610 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005611 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005612 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005613 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005614 }
5615
Jeff Brown36c4db82014-09-19 12:05:31 -07005616 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005617 if (mKeyguardDelegate != null) {
5618 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5619 }
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005620 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005621 }
5622
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005623 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5624 // as well as enabling the orientation change logic/sensor.
5625 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5626 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005627 }
5628
5629 // Called on the DisplayManager's DisplayPowerController thread.
5630 @Override
5631 public void screenTurnedOff() {
5632 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5633
Jeff Brown48d1b142015-06-10 16:36:03 -07005634 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005635 synchronized (mLock) {
5636 mScreenOnEarly = false;
5637 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005638 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005639 mWindowManagerDrawComplete = false;
5640 mScreenOnListener = null;
5641 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005642
5643 if (mKeyguardDelegate != null) {
5644 mKeyguardDelegate.onScreenTurnedOff();
5645 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005646 }
5647 }
5648
Jeff Brown3ee549c2014-09-22 20:14:39 -07005649 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005650 @Override
5651 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005652 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005653
Jeff Brown48d1b142015-06-10 16:36:03 -07005654 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005655 synchronized (mLock) {
5656 mScreenOnEarly = true;
5657 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005658 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005659 mWindowManagerDrawComplete = false;
5660 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005661
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005662 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005663 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5664 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005665 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5666 } else {
5667 if (DEBUG_WAKEUP) Slog.d(TAG,
5668 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5669 finishKeyguardDrawn();
5670 }
5671 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005672 }
5673
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005674 // Called on the DisplayManager's DisplayPowerController thread.
5675 @Override
5676 public void screenTurnedOn() {
5677 synchronized (mLock) {
5678 if (mKeyguardDelegate != null) {
5679 mKeyguardDelegate.onScreenTurnedOn();
5680 }
5681 }
5682 }
5683
Jeff Brown36c4db82014-09-19 12:05:31 -07005684 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005685 synchronized (mLock) {
5686 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005687 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005688 }
5689
Jeff Brown36c4db82014-09-19 12:05:31 -07005690 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005691 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005692
5693 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005694 }
5695
Craig Mautner8a0da012014-05-31 15:13:37 -07005696 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005697 synchronized (mLock) {
5698 // We have just finished drawing screen content. Since the orientation listener
5699 // gets only installed when all windows are drawn, we try to install it again.
5700 updateOrientationListenerLp();
5701 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005702 final ScreenOnListener listener;
5703 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005704 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005705 if (DEBUG_WAKEUP) Slog.d(TAG,
5706 "finishScreenTurningOn: mAwake=" + mAwake
5707 + ", mScreenOnEarly=" + mScreenOnEarly
5708 + ", mScreenOnFully=" + mScreenOnFully
5709 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5710 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5711
5712 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5713 || (mAwake && !mKeyguardDrawComplete)) {
5714 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005715 }
5716
Jeff Brown3ee549c2014-09-22 20:14:39 -07005717 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5718 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005719 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005720 mScreenOnFully = true;
5721
5722 // Remember the first time we draw the keyguard so we know when we're done with
5723 // the main part of booting and can enable the screen and hide boot messages.
5724 if (!mKeyguardDrawnOnce && mAwake) {
5725 mKeyguardDrawnOnce = true;
5726 enableScreen = true;
5727 if (mBootMessageNeedsHiding) {
5728 mBootMessageNeedsHiding = false;
5729 hideBootMessages();
5730 }
5731 } else {
5732 enableScreen = false;
5733 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005734 }
5735
Jeff Brown3ee549c2014-09-22 20:14:39 -07005736 if (listener != null) {
5737 listener.onScreenOn();
5738 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005739
Jeff Brown3ee549c2014-09-22 20:14:39 -07005740 if (enableScreen) {
5741 try {
5742 mWindowManager.enableScreenIfNeeded();
5743 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005744 }
Craig Mautnera631d492014-08-05 15:16:01 -07005745 }
5746 }
5747
5748 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005749 synchronized (mLock) {
5750 if (!mKeyguardDrawnOnce) {
5751 mBootMessageNeedsHiding = true;
5752 return; // keyguard hasn't drawn the first time yet, not done booting
5753 }
Craig Mautnera631d492014-08-05 15:16:01 -07005754 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005755
5756 if (mBootMsgDialog != null) {
5757 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5758 mBootMsgDialog.dismiss();
5759 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005760 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005761 }
5762
5763 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005764 public boolean isScreenOn() {
5765 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005766 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005767
Dianne Hackborn08743722009-12-21 12:16:51 -08005768 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005769 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005770 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005771 if (mKeyguardDelegate != null) {
5772 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005773 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005774 }
5775
5776 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005777 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005778 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005779 if (mKeyguardDelegate != null) {
5780 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005781 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005782 }
5783
Jim Millerab954542014-10-10 18:21:49 -07005784 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005785 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005786 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005787 }
5788
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005789 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005790 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005791 public boolean isKeyguardLocked() {
5792 return keyguardOn();
5793 }
5794
5795 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005796 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005797 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005798 if (mKeyguardDelegate == null) return false;
5799 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005800 }
5801
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005802 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005803 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005804 public boolean isKeyguardShowingOrOccluded() {
5805 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5806 }
5807
5808 /** {@inheritDoc} */
5809 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005810 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005811 if (mKeyguardDelegate == null) return false;
5812 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005813 }
5814
Jose Lima9546b202014-07-02 17:21:51 -07005815 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005816 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005817 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005818 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005819 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005820 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005821 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005822 // ask the keyguard to prompt the user to authenticate if necessary
5823 mKeyguardDelegate.dismiss();
5824 }
5825 });
5826 }
5827 }
5828
5829 public void notifyActivityDrawnForKeyguardLw() {
5830 if (mKeyguardDelegate != null) {
5831 mHandler.post(new Runnable() {
5832 @Override
5833 public void run() {
5834 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005835 }
5836 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005837 }
5838 }
5839
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005840 @Override
5841 public boolean isKeyguardDrawnLw() {
5842 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005843 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005844 }
5845 }
5846
Jorim Jaggi0d674622014-05-21 01:34:15 +02005847 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005848 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005849 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005850 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005851 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005852 }
5853 }
5854
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005855 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005856 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005857 }
5858
5859 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005860 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005861 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005862
Jeff Brown01a98dd2011-09-20 15:08:29 -07005863 @Override
5864 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005865 if (false) {
5866 Slog.v(TAG, "rotationForOrientationLw(orient="
5867 + orientation + ", last=" + lastRotation
5868 + "); user=" + mUserRotation + " "
5869 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5870 ? "USER_ROTATION_LOCKED" : "")
5871 );
5872 }
5873
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005874 if (mForceDefaultOrientation) {
5875 return Surface.ROTATION_0;
5876 }
5877
The Android Open Source Project0727d222009-03-11 12:11:58 -07005878 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005879 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5880 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005881 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005882 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005883
Jeff Browndec6cf42011-11-15 14:08:20 -08005884 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005885 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005886 // Ignore sensor when lid switch is open and rotation is forced.
5887 preferredRotation = mLidOpenRotation;
5888 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005889 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005890 // Ignore sensor when in car dock unless explicitly enabled.
5891 // This case can override the behavior of NOSENSOR, and can also
5892 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005893 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005894 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005895 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5896 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5897 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005898 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005899 // Ignore sensor when in desk dock unless explicitly enabled.
5900 // This case can override the behavior of NOSENSOR, and can also
5901 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005902 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005903 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005904 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5905 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005906 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005907 preferredRotation = mDemoHdmiRotation;
5908 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5909 && mUndockedHdmiRotation >= 0) {
5910 // Ignore sensor when plugged into HDMI and an undocked orientation has
5911 // been specified in the configuration (only for legacy devices without
5912 // full multi-display support).
5913 // Note that the dock orientation overrides the HDMI orientation.
5914 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005915 } else if (mDemoRotationLock) {
5916 // Ignore sensor when demo rotation lock is enabled.
5917 // Note that the dock orientation and HDMI rotation lock override this.
5918 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005919 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5920 // Application just wants to remain locked in the last rotation.
5921 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005922 } else if (!mSupportAutoRotation) {
5923 // If we don't support auto-rotation then bail out here and ignore
5924 // the sensor and any rotation lock settings.
5925 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005926 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005927 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005928 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5929 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5930 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5931 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005932 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5933 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5934 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5935 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5936 // Otherwise, use sensor only if requested by the application or enabled
5937 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005938 if (mAllowAllRotations < 0) {
5939 // Can't read this during init() because the context doesn't
5940 // have display metrics at that time so we cannot determine
5941 // tablet vs. phone then.
5942 mAllowAllRotations = mContext.getResources().getBoolean(
5943 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5944 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005945 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005946 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005947 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5948 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005949 preferredRotation = sensorRotation;
5950 } else {
5951 preferredRotation = lastRotation;
5952 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005953 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5954 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5955 // Apply rotation lock. Does not apply to NOSENSOR.
5956 // The idea is that the user rotation expresses a weak preference for the direction
5957 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5958 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005959 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005960 } else {
5961 // No overriding preference.
5962 // We will do exactly what the application asked us to do.
5963 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005964 }
5965
Dianne Hackborne5439f22010-10-02 16:53:50 -07005966 switch (orientation) {
5967 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005968 // Return portrait unless overridden.
5969 if (isAnyPortrait(preferredRotation)) {
5970 return preferredRotation;
5971 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005972 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005973
Jeff Brown01a98dd2011-09-20 15:08:29 -07005974 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005975 // Return landscape unless overridden.
5976 if (isLandscapeOrSeascape(preferredRotation)) {
5977 return preferredRotation;
5978 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005979 return mLandscapeRotation;
5980
5981 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005982 // Return reverse portrait unless overridden.
5983 if (isAnyPortrait(preferredRotation)) {
5984 return preferredRotation;
5985 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005986 return mUpsideDownRotation;
5987
5988 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005989 // Return seascape unless overridden.
5990 if (isLandscapeOrSeascape(preferredRotation)) {
5991 return preferredRotation;
5992 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005993 return mSeascapeRotation;
5994
5995 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005996 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005997 // Return either landscape rotation.
5998 if (isLandscapeOrSeascape(preferredRotation)) {
5999 return preferredRotation;
6000 }
6001 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08006002 return lastRotation;
6003 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006004 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006005
Jeff Brown01a98dd2011-09-20 15:08:29 -07006006 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006007 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07006008 // Return either portrait rotation.
6009 if (isAnyPortrait(preferredRotation)) {
6010 return preferredRotation;
6011 }
6012 if (isAnyPortrait(lastRotation)) {
6013 return lastRotation;
6014 }
6015 return mPortraitRotation;
6016
6017 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07006018 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
6019 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07006020 if (preferredRotation >= 0) {
6021 return preferredRotation;
6022 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07006023 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05006024 }
6025 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006026 }
6027
Jeff Brown01a98dd2011-09-20 15:08:29 -07006028 @Override
6029 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
6030 switch (orientation) {
6031 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
6032 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
6033 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
6034 return isAnyPortrait(rotation);
6035
6036 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
6037 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
6038 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
6039 return isLandscapeOrSeascape(rotation);
6040
6041 default:
6042 return true;
6043 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006044 }
6045
Jeff Brownc0347aa2011-09-23 17:26:09 -07006046 @Override
6047 public void setRotationLw(int rotation) {
6048 mOrientationListener.setCurrentRotation(rotation);
6049 }
6050
Jeff Brown01a98dd2011-09-20 15:08:29 -07006051 private boolean isLandscapeOrSeascape(int rotation) {
6052 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006053 }
6054
Jeff Brown01a98dd2011-09-20 15:08:29 -07006055 private boolean isAnyPortrait(int rotation) {
6056 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006057 }
6058
Jose Lima9546b202014-07-02 17:21:51 -07006059 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006060 public int getUserRotationMode() {
6061 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07006062 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
6063 WindowManagerPolicy.USER_ROTATION_FREE :
6064 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006065 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006066
6067 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07006068 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006069 public void setUserRotationMode(int mode, int rot) {
6070 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006071
6072 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006073 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006074 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006075 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006076 rot,
6077 UserHandle.USER_CURRENT);
6078 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006079 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006080 0,
6081 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006082 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006083 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006084 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006085 1,
6086 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006087 }
6088 }
6089
Jose Lima9546b202014-07-02 17:21:51 -07006090 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006091 public void setSafeMode(boolean safeMode) {
6092 mSafeMode = safeMode;
6093 performHapticFeedbackLw(null, safeMode
6094 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6095 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006096 }
Craig Mautnereda67292013-04-28 13:50:14 -07006097
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006098 static long[] getLongIntArray(Resources r, int resid) {
6099 int[] ar = r.getIntArray(resid);
6100 if (ar == null) {
6101 return null;
6102 }
6103 long[] out = new long[ar.length];
6104 for (int i=0; i<ar.length; i++) {
6105 out[i] = ar[i];
6106 }
6107 return out;
6108 }
Craig Mautnereda67292013-04-28 13:50:14 -07006109
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006110 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006111 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006112 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006113 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006114 mKeyguardDelegate.onSystemReady();
6115
Michael Wright3818c922014-09-02 13:59:07 -07006116 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006117 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006118 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006119 synchronized (mLock) {
6120 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006121 mSystemReady = true;
6122 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006123 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006124 public void run() {
6125 updateSettings();
6126 }
6127 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006128
6129 bindKeyguardNow = mDeferBindKeyguard;
6130 if (bindKeyguardNow) {
6131 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6132 mDeferBindKeyguard = false;
6133 }
6134 }
6135
6136 if (bindKeyguardNow) {
6137 mKeyguardDelegate.bindService(mContext);
6138 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006139 }
Michael Wrighta4d22d72015-09-16 23:19:26 +01006140 mSystemGestures.systemReady();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006141 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006142
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006143 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006144 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006145 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006146 boolean bindKeyguardNow = false;
6147 synchronized (mLock) {
6148 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6149 // in systemReady if not.
6150 if (mKeyguardDelegate != null) {
6151 bindKeyguardNow = true;
6152 } else {
6153 // Because mKeyguardDelegate is null, we know that the synchronized block in
6154 // systemReady didn't run yet and setting this will actually have an effect.
6155 mDeferBindKeyguard = true;
6156 }
6157 }
6158 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006159 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006160 mKeyguardDelegate.onBootCompleted();
6161 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006162 synchronized (mLock) {
6163 mSystemBooted = true;
6164 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006165 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006166 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006167 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006168 }
6169
Dianne Hackborn661cd522011-08-22 00:26:20 -07006170 ProgressDialog mBootMsgDialog = null;
6171
6172 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006173 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006174 public void showBootMessage(final CharSequence msg, final boolean always) {
6175 mHandler.post(new Runnable() {
6176 @Override public void run() {
6177 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006178 int theme;
6179 if (mContext.getPackageManager().hasSystemFeature(
6180 PackageManager.FEATURE_WATCH)) {
6181 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6182 } else if (mContext.getPackageManager().hasSystemFeature(
6183 PackageManager.FEATURE_TELEVISION)) {
6184 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6185 } else {
6186 theme = 0;
6187 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006188
6189 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006190 // This dialog will consume all events coming in to
6191 // it, to avoid it trying to do things too early in boot.
6192 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6193 return true;
6194 }
6195 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6196 return true;
6197 }
6198 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6199 return true;
6200 }
6201 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6202 return true;
6203 }
6204 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6205 return true;
6206 }
6207 @Override public boolean dispatchPopulateAccessibilityEvent(
6208 AccessibilityEvent event) {
6209 return true;
6210 }
6211 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006212 if (mContext.getPackageManager().isUpgrade()) {
6213 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6214 } else {
6215 mBootMsgDialog.setTitle(R.string.android_start_title);
6216 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006217 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6218 mBootMsgDialog.setIndeterminate(true);
6219 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006220 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006221 mBootMsgDialog.getWindow().addFlags(
6222 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6223 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6224 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006225 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6226 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6227 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006228 mBootMsgDialog.setCancelable(false);
6229 mBootMsgDialog.show();
6230 }
6231 mBootMsgDialog.setMessage(msg);
6232 }
6233 });
6234 }
6235
6236 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006237 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006238 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006239 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006240 }
6241
Mike Lockwood28569302010-01-28 11:54:40 -05006242 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006243 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006244 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006245 // ***************************************
6246 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6247 // ***************************************
6248 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6249 // WITH ITS LOCKS HELD.
6250 //
6251 // This code must be VERY careful about the locks
6252 // it acquires.
6253 // In fact, the current code acquires way too many,
6254 // and probably has lurking deadlocks.
6255
Mike Lockwood28569302010-01-28 11:54:40 -05006256 synchronized (mScreenLockTimeout) {
6257 if (mLockScreenTimerActive) {
6258 // reset the timer
6259 mHandler.removeCallbacks(mScreenLockTimeout);
6260 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6261 }
6262 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006263 }
6264
Adam Cohenf7522022012-10-03 20:03:18 -07006265 class ScreenLockTimeout implements Runnable {
6266 Bundle options;
6267
6268 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006269 public void run() {
6270 synchronized (this) {
6271 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006272 if (mKeyguardDelegate != null) {
6273 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006274 }
Mike Lockwood28569302010-01-28 11:54:40 -05006275 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006276 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006277 }
6278 }
Mike Lockwood28569302010-01-28 11:54:40 -05006279
Adam Cohenf7522022012-10-03 20:03:18 -07006280 public void setLockOptions(Bundle options) {
6281 this.options = options;
6282 }
6283 }
6284
6285 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6286
Jose Lima9546b202014-07-02 17:21:51 -07006287 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006288 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006289 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6290 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006291 if (options != null) {
6292 // In case multiple calls are made to lockNow, we don't wipe out the options
6293 // until the runnable actually executes.
6294 mScreenLockTimeout.setLockOptions(options);
6295 }
Jim Miller93c518e2012-01-17 15:55:31 -08006296 mHandler.post(mScreenLockTimeout);
6297 }
6298
Mike Lockwood28569302010-01-28 11:54:40 -05006299 private void updateLockScreenTimeout() {
6300 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006301 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006302 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006303 if (mLockScreenTimerActive != enable) {
6304 if (enable) {
6305 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6306 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6307 } else {
6308 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6309 mHandler.removeCallbacks(mScreenLockTimeout);
6310 }
6311 mLockScreenTimerActive = enable;
6312 }
6313 }
6314 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006315
Jeff Brown061ea992015-04-17 19:55:47 -07006316 private void updateDreamingSleepToken(boolean acquire) {
6317 if (acquire) {
6318 if (mDreamingSleepToken == null) {
6319 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6320 }
6321 } else {
6322 if (mDreamingSleepToken != null) {
6323 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006324 mDreamingSleepToken = null;
6325 }
6326 }
6327 }
6328
6329 private void updateScreenOffSleepToken(boolean acquire) {
6330 if (acquire) {
6331 if (mScreenOffSleepToken == null) {
6332 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6333 }
6334 } else {
6335 if (mScreenOffSleepToken != null) {
6336 mScreenOffSleepToken.release();
6337 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006338 }
6339 }
6340 }
6341
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006342 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006343 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006344 public void enableScreenAfterBoot() {
6345 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006346 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006347 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006348 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006349
Jeff Brownc458ce92012-04-30 14:58:40 -07006350 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006351 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006352 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006353 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006354 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006355 }
Jeff Browna20dda42014-05-27 20:57:24 -07006356
6357 synchronized (mLock) {
6358 updateWakeGestureListenerLp();
6359 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006360 }
6361
Jeff Brown4f5fa282014-06-12 19:19:15 -07006362 void updateUiMode() {
6363 if (mUiModeManager == null) {
6364 mUiModeManager = IUiModeManager.Stub.asInterface(
6365 ServiceManager.getService(Context.UI_MODE_SERVICE));
6366 }
6367 try {
6368 mUiMode = mUiModeManager.getCurrentModeType();
6369 } catch (RemoteException e) {
6370 }
6371 }
6372
Jeff Brown01a98dd2011-09-20 15:08:29 -07006373 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006374 try {
6375 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006376 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6377 } catch (RemoteException e) {
6378 // Ignore
6379 }
6380 }
6381
6382 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6383 try {
6384 //set orientation on WindowManager
6385 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006386 } catch (RemoteException e) {
6387 // Ignore
6388 }
6389 }
6390
Daniel Sandler6396c722013-04-16 20:19:09 -04006391 /**
6392 * Return an Intent to launch the currently active dock app as home. Returns
6393 * null if the standard home should be launched, which is the case if any of the following is
6394 * true:
6395 * <ul>
6396 * <li>The device is not in either car mode or desk mode
6397 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6398 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6399 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6400 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6401 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006402 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006403 */
6404 Intent createHomeDockIntent() {
6405 Intent intent = null;
6406
6407 // What home does is based on the mode, not the dock state. That
6408 // is, when in car mode you should be taken to car home regardless
6409 // of whether we are actually in a car dock.
6410 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6411 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6412 intent = mCarDockIntent;
6413 }
6414 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6415 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6416 intent = mDeskDockIntent;
6417 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006418 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6419 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6420 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6421 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6422 // Always launch dock home from home when watch is docked, if it exists.
6423 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006424 }
6425
6426 if (intent == null) {
6427 return null;
6428 }
6429
6430 ActivityInfo ai = null;
6431 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6432 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006433 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006434 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006435 if (info != null) {
6436 ai = info.activityInfo;
6437 }
6438 if (ai != null
6439 && ai.metaData != null
6440 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6441 intent = new Intent(intent);
6442 intent.setClassName(ai.packageName, ai.name);
6443 return intent;
6444 }
6445
6446 return null;
6447 }
6448
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006449 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6450 if (awakenFromDreams) {
6451 awakenDreams();
6452 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006453
6454 Intent dock = createHomeDockIntent();
6455 if (dock != null) {
6456 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006457 if (fromHomeKey) {
6458 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6459 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006460 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006461 return;
6462 } catch (ActivityNotFoundException e) {
6463 }
6464 }
6465
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006466 Intent intent;
6467
6468 if (fromHomeKey) {
6469 intent = new Intent(mHomeIntent);
6470 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6471 } else {
6472 intent = mHomeIntent;
6473 }
6474
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006475 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006476 }
Craig Mautnereda67292013-04-28 13:50:14 -07006477
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006478 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006479 * goes to the home screen
6480 * @return whether it did anything
6481 */
6482 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006483 if (!isUserSetupComplete()) {
6484 Slog.i(TAG, "Not going home because user setup is in progress.");
6485 return false;
6486 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006487 if (false) {
6488 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006489 try {
6490 ActivityManagerNative.getDefault().stopAppSwitches();
6491 } catch (RemoteException e) {
6492 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006493 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006494 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006495 } else {
6496 // This code brings home to the front or, if it is already
6497 // at the front, puts the device to sleep.
6498 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006499 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6500 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6501 Log.d(TAG, "UTS-TEST-MODE");
6502 } else {
6503 ActivityManagerNative.getDefault().stopAppSwitches();
6504 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006505 Intent dock = createHomeDockIntent();
6506 if (dock != null) {
6507 int result = ActivityManagerNative.getDefault()
6508 .startActivityAsUser(null, null, dock,
6509 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6510 null, null, 0,
6511 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006512 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006513 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6514 return false;
6515 }
6516 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006517 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006518 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006519 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006520 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006521 null, null, 0,
6522 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006523 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006524 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006525 return false;
6526 }
6527 } catch (RemoteException ex) {
6528 // bummer, the activity manager, which is in this process, is dead
6529 }
6530 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006531 return true;
6532 }
Craig Mautnereda67292013-04-28 13:50:14 -07006533
6534 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006535 public void setCurrentOrientationLw(int newOrientation) {
6536 synchronized (mLock) {
6537 if (newOrientation != mCurrentAppOrientation) {
6538 mCurrentAppOrientation = newOrientation;
6539 updateOrientationListenerLp();
6540 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006541 }
6542 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006543
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006544 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6545 if (!isGlobalAccessibilityGestureEnabled()) {
6546 return;
6547 }
6548 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6549 Context.AUDIO_SERVICE);
6550 if (audioManager.isSilentMode()) {
6551 return;
6552 }
6553 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6554 Settings.System.DEFAULT_NOTIFICATION_URI);
6555 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6556 ringTone.play();
6557 }
Craig Mautnereda67292013-04-28 13:50:14 -07006558
Bryce Lee584a4452014-10-21 15:55:55 -07006559 private boolean isTheaterModeEnabled() {
6560 return Settings.Global.getInt(mContext.getContentResolver(),
6561 Settings.Global.THEATER_MODE_ON, 0) == 1;
6562 }
6563
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006564 private boolean isGlobalAccessibilityGestureEnabled() {
6565 return Settings.Global.getInt(mContext.getContentResolver(),
6566 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6567 }
6568
Craig Mautnereda67292013-04-28 13:50:14 -07006569 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006570 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006571 if (!mVibrator.hasVibrator()) {
6572 return false;
6573 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006574 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6575 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006576 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006577 return false;
6578 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006579 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006580 switch (effectId) {
6581 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006582 pattern = mLongPressVibePattern;
6583 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006584 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006585 pattern = mVirtualKeyVibePattern;
6586 break;
6587 case HapticFeedbackConstants.KEYBOARD_TAP:
6588 pattern = mKeyboardTapVibePattern;
6589 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006590 case HapticFeedbackConstants.CLOCK_TICK:
6591 pattern = mClockTickVibePattern;
6592 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006593 case HapticFeedbackConstants.CALENDAR_DATE:
6594 pattern = mCalendarDateVibePattern;
6595 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006596 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006597 pattern = mSafeModeDisabledVibePattern;
6598 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006599 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006600 pattern = mSafeModeEnabledVibePattern;
6601 break;
Mady Mellore8608912015-06-05 09:02:55 -07006602 case HapticFeedbackConstants.CONTEXT_CLICK:
6603 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006604 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006605 default:
6606 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006607 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006608 int owningUid;
6609 String owningPackage;
6610 if (win != null) {
6611 owningUid = win.getOwningUid();
6612 owningPackage = win.getOwningPackage();
6613 } else {
6614 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006615 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006616 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006617 if (pattern.length == 1) {
6618 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006619 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006620 } else {
6621 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006622 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006623 }
6624 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006625 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006626
6627 @Override
6628 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006629 }
6630
Jeff Brownc38c9be2012-10-04 13:16:19 -07006631 @Override
6632 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006633 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006634 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006635 }
6636 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006637
Dianne Hackborndf89e652011-10-06 22:35:11 -07006638 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006639 // If there is no window focused, there will be nobody to handle the events
6640 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006641 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6642 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006643 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006644 return 0;
6645 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006646 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006647 // We are updating at a point where the keyguard has gotten
6648 // focus, but we were last in a state where the top window is
6649 // hiding it. This is probably because the keyguard as been
6650 // shown while the top window was displayed, so we want to ignore
6651 // it here because this is just a very transient change and it
6652 // will quickly lose focus once it correctly gets hidden.
6653 return 0;
6654 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006655
John Spurlock1db8b682014-02-18 11:18:59 -05006656 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006657 & ~mResettingSystemUiFlags
6658 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006659 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006660 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006661 }
Thanh Hai Mai6c009f52015-09-01 16:27:32 -07006662
6663 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6664 tmpVisibility |= StatusBarManager.DISABLE_RECENT;
6665 }
6666
Adrian Rooscd3884d2015-02-18 17:25:23 +01006667 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006668 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006669 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006670 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006671 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006672 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006673 return 0;
6674 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006675 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006676 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006677 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006678 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006679 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006680 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006681 try {
6682 IStatusBarService statusbar = getStatusBarService();
6683 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006684 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006685 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006686 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006687 } catch (RemoteException e) {
6688 // re-acquire status bar service next time it is needed.
6689 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006690 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006691 }
6692 });
6693 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006694 }
6695
Adrian Rooscd3884d2015-02-18 17:25:23 +01006696 private int updateLightStatusBarLw(int vis) {
6697 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6698 ? mStatusBar
6699 : mTopFullscreenOpaqueOrDimmingWindowState;
6700
6701 if (statusColorWin != null) {
6702 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6703 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6704 // its light flag.
6705 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6706 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6707 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6708 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6709 // Otherwise if it's dimming, clear the light flag.
6710 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6711 }
6712 }
6713 return vis;
6714 }
6715
John Spurlock79da8332013-09-20 12:04:47 -04006716 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006717 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006718 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6719 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006720 : mTopFullscreenOpaqueWindowState;
6721 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6722 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6723
John Spurlock27735a42013-08-14 17:57:38 -04006724 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006725 int type = win.getAttrs().type;
6726 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006727 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006728 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6729 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006730 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006731 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6732 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006733 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006734 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6735 }
John Spurlockbd957402013-10-03 11:38:39 -04006736 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006737 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006738
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006739 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006740 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6741 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006742 }
6743
John Spurlock27735a42013-08-14 17:57:38 -04006744 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006745 boolean immersiveSticky =
6746 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006747 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006748 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006749 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006750 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6751 boolean hideStatusBarSysui =
6752 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006753 boolean hideNavBarSysui =
6754 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006755
John Spurlock27735a42013-08-14 17:57:38 -04006756 boolean transientStatusBarAllowed =
6757 mStatusBar != null && (
6758 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006759 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006760 || statusBarHasFocus);
6761
John Spurlockf1a36642013-10-12 17:50:42 -04006762 boolean transientNavBarAllowed =
6763 mNavigationBar != null &&
6764 hideNavBarSysui && immersiveSticky;
6765
Adrian Roosddc8b272015-05-21 16:28:27 -07006766 final long now = SystemClock.uptimeMillis();
6767 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6768 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6769 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6770 // The user performed the panic gesture recently, we're about to hide the bars,
6771 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6772 mPendingPanicGestureUptime = 0;
6773 mStatusBarController.showTransient();
6774 mNavigationBarController.showTransient();
6775 }
6776
John Spurlockf25706f2013-11-07 18:02:43 -05006777 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006778 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006779 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006780 && !transientNavBarAllowed;
6781 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006782 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006783 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006784 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006785 }
John Spurlock27735a42013-08-14 17:57:38 -04006786
Selim Cinekf98702e2015-05-20 22:48:40 -07006787 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6788 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6789 final boolean navAllowedHidden = immersive || immersiveSticky;
6790
Selim Cinekd6623612015-05-22 18:56:22 -07006791 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6792 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006793 // We can't hide the navbar from this window otherwise the input consumer would not get
6794 // the input events.
6795 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6796 }
6797
John Spurlock27735a42013-08-14 17:57:38 -04006798 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6799
6800 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006801 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6802 boolean newImmersiveMode = isImmersiveMode(vis);
6803 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006804 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006805 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6806 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006807 }
John Spurlock27735a42013-08-14 17:57:38 -04006808
John Spurlockf1a36642013-10-12 17:50:42 -04006809 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6810
John Spurlocke1f366f2013-08-05 12:22:40 -04006811 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006812 }
6813
John Spurlockf1a36642013-10-12 17:50:42 -04006814 private void clearClearableFlagsLw() {
6815 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6816 if (newVal != mResettingSystemUiFlags) {
6817 mResettingSystemUiFlags = newVal;
6818 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6819 }
6820 }
6821
6822 private boolean isImmersiveMode(int vis) {
6823 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006824 return mNavigationBar != null
6825 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006826 && (vis & flags) != 0
6827 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006828 }
6829
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006830 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006831 * @return whether the navigation or status bar can be made translucent
6832 *
6833 * This should return true unless touch exploration is not enabled or
6834 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006835 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006836 private boolean areTranslucentBarsAllowed() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04006837 return mTranslucentDecorEnabled;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006838 }
6839
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006840 // Use this instead of checking config_showNavigationBar so that it can be consistently
6841 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006842 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006843 public boolean hasNavigationBar() {
6844 return mHasNavigationBar;
6845 }
6846
satok1bc0a492012-04-25 22:47:12 +09006847 @Override
6848 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6849 mLastInputMethodWindow = ime;
6850 mLastInputMethodTargetWindow = target;
6851 }
6852
Craig Mautnerf1b67412012-09-19 13:18:29 -07006853 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006854 public int getInputMethodWindowVisibleHeightLw() {
6855 return mDockBottom - mCurBottom;
6856 }
6857
6858 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006859 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006860 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006861 if (mKeyguardDelegate != null) {
6862 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006863 }
John Spurlock13451a22012-09-28 14:40:41 -04006864 if (mStatusBarService != null) {
6865 try {
6866 mStatusBarService.setCurrentUser(newUserId);
6867 } catch (RemoteException e) {
6868 // oh well
6869 }
6870 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006871 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006872 }
6873
6874 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006875 public boolean canMagnifyWindow(int windowType) {
6876 switch (windowType) {
6877 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6878 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6879 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6880 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6881 return false;
6882 }
6883 }
6884 return true;
6885 }
6886
6887 @Override
6888 public boolean isTopLevelWindow(int windowType) {
6889 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6890 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6891 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6892 }
6893 return true;
6894 }
6895
Jim Miller4eeb4f62012-11-08 00:04:29 -08006896 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006897 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006898 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006899 pw.print(" mSystemReady="); pw.print(mSystemReady);
6900 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006901 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006902 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006903 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006904 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006905 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6906 || mForceClearedSystemUiFlags != 0) {
6907 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6908 pw.print(Integer.toHexString(mLastSystemUiFlags));
6909 pw.print(" mResettingSystemUiFlags=0x");
6910 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6911 pw.print(" mForceClearedSystemUiFlags=0x");
6912 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006913 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006914 if (mLastFocusNeedsMenu) {
6915 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6916 pw.println(mLastFocusNeedsMenu);
6917 }
Jeff Browna20dda42014-05-27 20:57:24 -07006918 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6919 pw.println(mWakeGestureEnabledSetting);
6920
Jeff Brownbcdfc622014-03-06 19:13:04 -08006921 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006922 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6923 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006924 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6925 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6926 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6927 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006928 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006929 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006930 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6931 pw.print(mCarDockEnablesAccelerometer);
6932 pw.print(" mDeskDockEnablesAccelerometer=");
6933 pw.println(mDeskDockEnablesAccelerometer);
6934 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6935 pw.print(mLidKeyboardAccessibility);
6936 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006937 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006938 pw.print(prefix);
6939 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6940 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006941 pw.print(prefix);
6942 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6943 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006944 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006945 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6946 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6947 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6948 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6949 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6950 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6951 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006952 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6953 pw.print(","); pw.print(mOverscanScreenTop);
6954 pw.print(") "); pw.print(mOverscanScreenWidth);
6955 pw.print("x"); pw.println(mOverscanScreenHeight);
6956 if (mOverscanLeft != 0 || mOverscanTop != 0
6957 || mOverscanRight != 0 || mOverscanBottom != 0) {
6958 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6959 pw.print(" top="); pw.print(mOverscanTop);
6960 pw.print(" right="); pw.print(mOverscanRight);
6961 pw.print(" bottom="); pw.println(mOverscanBottom);
6962 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006963 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6964 pw.print(mRestrictedOverscanScreenLeft);
6965 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6966 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6967 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006968 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6969 pw.print(","); pw.print(mUnrestrictedScreenTop);
6970 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6971 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6972 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6973 pw.print(","); pw.print(mRestrictedScreenTop);
6974 pw.print(") "); pw.print(mRestrictedScreenWidth);
6975 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006976 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6977 pw.print(","); pw.print(mStableFullscreenTop);
6978 pw.print(")-("); pw.print(mStableFullscreenRight);
6979 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006980 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6981 pw.print(","); pw.print(mStableTop);
6982 pw.print(")-("); pw.print(mStableRight);
6983 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006984 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6985 pw.print(","); pw.print(mSystemTop);
6986 pw.print(")-("); pw.print(mSystemRight);
6987 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006988 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6989 pw.print(","); pw.print(mCurTop);
6990 pw.print(")-("); pw.print(mCurRight);
6991 pw.print(","); pw.print(mCurBottom); pw.println(")");
6992 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6993 pw.print(","); pw.print(mContentTop);
6994 pw.print(")-("); pw.print(mContentRight);
6995 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006996 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6997 pw.print(","); pw.print(mVoiceContentTop);
6998 pw.print(")-("); pw.print(mVoiceContentRight);
6999 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007000 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
7001 pw.print(","); pw.print(mDockTop);
7002 pw.print(")-("); pw.print(mDockRight);
7003 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07007004 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
7005 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007006 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
7007 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07007008 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
7009 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007010 if (mLastInputMethodWindow != null) {
7011 pw.print(prefix); pw.print("mLastInputMethodWindow=");
7012 pw.println(mLastInputMethodWindow);
7013 }
7014 if (mLastInputMethodTargetWindow != null) {
7015 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
7016 pw.println(mLastInputMethodTargetWindow);
7017 }
7018 if (mStatusBar != null) {
7019 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08007020 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
7021 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007022 }
7023 if (mNavigationBar != null) {
7024 pw.print(prefix); pw.print("mNavigationBar=");
7025 pw.println(mNavigationBar);
7026 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007027 if (mFocusedWindow != null) {
7028 pw.print(prefix); pw.print("mFocusedWindow=");
7029 pw.println(mFocusedWindow);
7030 }
7031 if (mFocusedApp != null) {
7032 pw.print(prefix); pw.print("mFocusedApp=");
7033 pw.println(mFocusedApp);
7034 }
7035 if (mWinDismissingKeyguard != null) {
7036 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
7037 pw.println(mWinDismissingKeyguard);
7038 }
7039 if (mTopFullscreenOpaqueWindowState != null) {
7040 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
7041 pw.println(mTopFullscreenOpaqueWindowState);
7042 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01007043 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
7044 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
7045 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
7046 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08007047 if (mForcingShowNavBar) {
7048 pw.print(prefix); pw.print("mForcingShowNavBar=");
7049 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
7050 pw.println(mForcingShowNavBarLayer);
7051 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007052 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007053 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07007054 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
7055 pw.print(" mForceStatusBarFromKeyguard=");
7056 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007057 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07007058 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007059 pw.print(" mHomePressed="); pw.println(mHomePressed);
7060 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
7061 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
7062 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
7063 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
7064 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
7065 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
7066 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
7067 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
7068 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
7069 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07007070 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
7071 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
7072 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07007073
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07007074 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04007075 mStatusBarController.dump(pw, prefix);
7076 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007077 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007078
Jeff Browna20dda42014-05-27 20:57:24 -07007079 if (mWakeGestureListener != null) {
7080 mWakeGestureListener.dump(pw, prefix);
7081 }
Jeff Brown600f0032014-05-22 17:06:00 -07007082 if (mOrientationListener != null) {
7083 mOrientationListener.dump(pw, prefix);
7084 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007085 if (mBurnInProtectionHelper != null) {
7086 mBurnInProtectionHelper.dump(prefix, pw);
7087 }
Jorim Jaggi84dc08a2015-09-11 17:45:22 -07007088 if (mKeyguardDelegate != null) {
7089 mKeyguardDelegate.dump(prefix, pw);
7090 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007091 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007092}