blob: 5c11800a4528cbd89293e9e205400ff419443327 [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;
Michael Wrighta4d22d72015-09-16 23:19:26 +010068import 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 Jaggi740452e2015-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 Jaggi740452e2015-07-09 12:13:59 -0700328 final DrawnListener mKeyguardDrawnCallback = new DrawnListener() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700329 @Override
Jorim Jaggi740452e2015-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;
Jeff Brown70825162012-03-28 17:27:48 -0700640
641 private class PolicyHandler extends Handler {
642 @Override
643 public void handleMessage(Message msg) {
644 switch (msg.what) {
645 case MSG_ENABLE_POINTER_LOCATION:
646 enablePointerLocation();
647 break;
648 case MSG_DISABLE_POINTER_LOCATION:
649 disablePointerLocation();
650 break;
Jeff Brown40013652012-05-16 21:22:36 -0700651 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
652 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
653 break;
654 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
655 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
656 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700657 case MSG_DISPATCH_SHOW_RECENTS:
658 showRecentApps(false);
659 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700660 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
661 showGlobalActionsInternal();
662 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700663 case MSG_KEYGUARD_DRAWN_COMPLETE:
664 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700665 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700666 break;
667 case MSG_KEYGUARD_DRAWN_TIMEOUT:
668 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700669 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700670 break;
671 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
672 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700673 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700674 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700675 case MSG_HIDE_BOOT_MESSAGE:
676 handleHideBootMessage();
677 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700678 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
679 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
680 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700681 case MSG_POWER_DELAYED_PRESS:
682 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
683 finishPowerKeyPress();
684 break;
685 case MSG_POWER_LONG_PRESS:
686 powerLongPress();
687 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700688 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
689 updateDreamingSleepToken(msg.arg1 != 0);
690 break;
Jeff Brown70825162012-03-28 17:27:48 -0700691 }
692 }
693 }
694
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800695 private UEventObserver mHDMIObserver = new UEventObserver() {
696 @Override
697 public void onUEvent(UEventObserver.UEvent event) {
698 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
699 }
700 };
701
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800702 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800703 SettingsObserver(Handler handler) {
704 super(handler);
705 }
David Brownbaf8d092010-03-08 21:52:59 -0800706
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800707 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700708 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800709 ContentResolver resolver = mContext.getContentResolver();
710 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700711 Settings.System.END_BUTTON_BEHAVIOR), false, this,
712 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800713 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700714 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
715 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700716 resolver.registerContentObserver(Settings.Secure.getUriFor(
717 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
718 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800719 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700720 Settings.System.ACCELEROMETER_ROTATION), false, this,
721 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500722 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700723 Settings.System.USER_ROTATION), false, this,
724 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400725 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700726 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
727 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800728 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700729 Settings.System.POINTER_LOCATION), false, this,
730 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800731 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700732 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
733 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500734 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400735 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700736 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500737 resolver.registerContentObserver(Settings.Global.getUriFor(
738 Settings.Global.POLICY_CONTROL), false, this,
739 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800740 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800741 }
742
743 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800744 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700745 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800746 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800747 }
Craig Mautner967212c2013-04-13 21:10:58 -0700748
Jeff Browna20dda42014-05-27 20:57:24 -0700749 class MyWakeGestureListener extends WakeGestureListener {
750 MyWakeGestureListener(Context context, Handler handler) {
751 super(context, handler);
752 }
753
754 @Override
755 public void onWakeUp() {
756 synchronized (mLock) {
757 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700758 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700759 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture,
760 "android.policy:GESTURE");
Jeff Browna20dda42014-05-27 20:57:24 -0700761 }
762 }
763 }
764 }
765
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800766 class MyOrientationListener extends WindowOrientationListener {
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700767 private final Runnable mUpdateRotationRunnable = new Runnable() {
768 @Override
769 public void run() {
770 updateRotation(false);
771 }
772 };
773
Craig Mautnereee29c42013-01-17 14:44:34 -0800774 MyOrientationListener(Context context, Handler handler) {
775 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800776 }
Craig Mautner967212c2013-04-13 21:10:58 -0700777
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800778 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700779 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700780 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700781 mHandler.post(mUpdateRotationRunnable);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700782 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800783 }
784 MyOrientationListener mOrientationListener;
785
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100786 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400787
John Spurlock27735a42013-08-14 17:57:38 -0400788 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400789 View.NAVIGATION_BAR_TRANSIENT,
790 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400791 View.NAVIGATION_BAR_TRANSLUCENT,
792 StatusBarManager.WINDOW_NAVIGATION_BAR,
793 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400794
John Spurlockf1a36642013-10-12 17:50:42 -0400795 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400796
Craig Mautner037aa8d2013-06-07 10:35:44 -0700797 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400798
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700799 IStatusBarService getStatusBarService() {
800 synchronized (mServiceAquireLock) {
801 if (mStatusBarService == null) {
802 mStatusBarService = IStatusBarService.Stub.asInterface(
803 ServiceManager.getService("statusbar"));
804 }
805 return mStatusBarService;
806 }
807 }
808
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700809 /*
810 * We always let the sensor be switched on by default except when
811 * the user has explicitly disabled sensor based rotation or when the
812 * screen is switched off.
813 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700814 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800815 if (mSupportAutoRotation) {
816 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
817 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
818 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
819 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
820 // If the application has explicitly requested to follow the
821 // orientation, then we need to turn the sensor on.
822 return true;
823 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800824 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700825 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800826 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
827 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
828 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400829 // enable accelerometer if we are docked in a dock that enables accelerometer
830 // orientation management,
831 return true;
832 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700833 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800834 // If the setting for using the sensor by default is enabled, then
835 // we will always leave it on. Note that the user could go to
836 // a window that forces an orientation that does not use the
837 // sensor and in theory we could turn it off... however, when next
838 // turning it on we won't have a good value for the current
839 // orientation for a little bit, which can cause orientation
840 // changes to lag, so we'd like to keep it always on. (It will
841 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700842 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800843 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800844 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800845 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700846
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800847 /*
848 * Various use cases for invoking this function
849 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700850 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800851 * if not already enabled
852 * screen turned on and current app does not have sensor orientation, disable listeners if
853 * already enabled
854 * screen turning on and current app has sensor based orientation, enable listeners if needed
855 * screen turning on and current app has nosensor based orientation, do nothing
856 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700857 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800858 if (!mOrientationListener.canDetectOrientation()) {
859 // If sensor is turned off or nonexistent for some reason
860 return;
861 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000862 // Could have been invoked due to screen turning on or off or
863 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700864 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
865 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000866 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
867 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
868 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800869 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000870 // Note: We postpone the rotating of the screen until the keyguard as well as the
871 // window manager have reported a draw complete.
872 if (mScreenOnEarly && mAwake &&
873 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700874 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800875 disable = false;
876 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700877 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800878 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700879 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800880 mOrientationSensorEnabled = true;
881 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700882 }
883 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800884 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700885 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800886 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700887 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800888 mOrientationSensorEnabled = false;
889 }
890 }
891
Jeff Brown13f00f02014-10-31 14:45:50 -0700892 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
893 // Hold a wake lock until the power key is released.
894 if (!mPowerKeyWakeLock.isHeld()) {
895 mPowerKeyWakeLock.acquire();
896 }
897
898 // Cancel multi-press detection timeout.
899 if (mPowerKeyPressCounter != 0) {
900 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
901 }
902
903 // Detect user pressing the power button in panic when an application has
904 // taken over the whole screen.
905 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800906 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700907 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700908 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700909 }
910
911 // Latch power key state to detect screenshot chord.
912 if (interactive && !mScreenshotChordPowerKeyTriggered
913 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
914 mScreenshotChordPowerKeyTriggered = true;
915 mScreenshotChordPowerKeyTime = event.getDownTime();
916 interceptScreenshotChord();
917 }
918
919 // Stop ringing or end call if configured to do so when power is pressed.
920 TelecomManager telecomManager = getTelecommService();
921 boolean hungUp = false;
922 if (telecomManager != null) {
923 if (telecomManager.isRinging()) {
924 // Pressing Power while there's a ringing incoming
925 // call should silence the ringer.
926 telecomManager.silenceRinger();
927 } else if ((mIncallPowerBehavior
928 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
929 && telecomManager.isInCall() && interactive) {
930 // Otherwise, if "Power button ends call" is enabled,
931 // the Power button will hang up any current active call.
932 hungUp = telecomManager.endCall();
933 }
934 }
935
Adrian Roos5941c982015-09-03 15:59:49 -0700936 GestureLauncherService gestureService = LocalServices.getService(
937 GestureLauncherService.class);
938 boolean gesturedServiceIntercepted = false;
939 if (gestureService != null) {
940 gesturedServiceIntercepted = gestureService.interceptPowerKeyDown(event, interactive);
941 }
942
Jeff Brown13f00f02014-10-31 14:45:50 -0700943 // If the power key has still not yet been handled, then detect short
944 // press, long press, or multi press and decide what to do.
945 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
Adrian Roos5941c982015-09-03 15:59:49 -0700946 || mScreenshotChordVolumeUpKeyTriggered || gesturedServiceIntercepted;
Jeff Brown13f00f02014-10-31 14:45:50 -0700947 if (!mPowerKeyHandled) {
948 if (interactive) {
949 // When interactive, we're already awake.
950 // Wait for a long press or for the button to be released to decide what to do.
951 if (hasLongPressOnPowerBehavior()) {
952 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
953 msg.setAsynchronous(true);
954 mHandler.sendMessageDelayed(msg,
955 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
956 }
957 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800958 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800959
Bryce Leed3b28402015-03-09 15:49:13 +0000960 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
961 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
962 msg.setAsynchronous(true);
963 mHandler.sendMessageDelayed(msg,
964 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800965 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000966 } else {
967 final int maxCount = getMaxMultiPressPowerCount();
968
969 if (maxCount <= 1) {
970 mPowerKeyHandled = true;
971 } else {
972 mBeganFromNonInteractive = true;
973 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700974 }
975 }
Jeff Brown4d396052010-10-29 21:50:21 -0700976 }
977 }
978
Jeff Brown13f00f02014-10-31 14:45:50 -0700979 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
980 final boolean handled = canceled || mPowerKeyHandled;
981 mScreenshotChordPowerKeyTriggered = false;
982 cancelPendingScreenshotChordAction();
983 cancelPendingPowerKeyAction();
984
985 if (!handled) {
986 // Figure out how to handle the key now that it has been released.
987 mPowerKeyPressCounter += 1;
988
989 final int maxCount = getMaxMultiPressPowerCount();
990 final long eventTime = event.getDownTime();
991 if (mPowerKeyPressCounter < maxCount) {
992 // This could be a multi-press. Wait a little bit longer to confirm.
993 // Continue holding the wake lock.
994 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
995 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
996 msg.setAsynchronous(true);
997 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
998 return;
999 }
1000
1001 // No other actions. Handle it immediately.
1002 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -07001003 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001004
1005 // Done. Reset our state.
1006 finishPowerKeyPress();
1007 }
1008
1009 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -08001010 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001011 mPowerKeyPressCounter = 0;
1012 if (mPowerKeyWakeLock.isHeld()) {
1013 mPowerKeyWakeLock.release();
1014 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001015 }
1016
1017 private void cancelPendingPowerKeyAction() {
1018 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001019 mPowerKeyHandled = true;
1020 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001021 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001022 }
1023
1024 private void powerPress(long eventTime, boolean interactive, int count) {
1025 if (mScreenOnEarly && !mScreenOnFully) {
1026 Slog.i(TAG, "Suppressed redundant power key press while "
1027 + "already in the process of turning the screen on.");
1028 return;
Jeff Brownff204712011-10-25 21:27:54 -07001029 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001030
1031 if (count == 2) {
1032 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1033 } else if (count == 3) {
1034 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001035 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001036 switch (mShortPressOnPowerBehavior) {
1037 case SHORT_PRESS_POWER_NOTHING:
1038 break;
1039 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1040 mPowerManager.goToSleep(eventTime,
1041 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1042 break;
1043 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1044 mPowerManager.goToSleep(eventTime,
1045 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1046 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1047 break;
1048 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1049 mPowerManager.goToSleep(eventTime,
1050 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1051 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1052 launchHomeFromHotKey();
1053 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001054 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001055 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001056 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001057 }
1058 }
1059 }
1060
1061 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1062 switch (behavior) {
1063 case MULTI_PRESS_POWER_NOTHING:
1064 break;
1065 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001066 if (!isUserSetupComplete()) {
1067 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1068 break;
1069 }
1070
Jeff Brown13f00f02014-10-31 14:45:50 -07001071 if (isTheaterModeEnabled()) {
1072 Slog.i(TAG, "Toggling theater mode off.");
1073 Settings.Global.putInt(mContext.getContentResolver(),
1074 Settings.Global.THEATER_MODE_ON, 0);
1075 if (!interactive) {
1076 wakeUpFromPowerKey(eventTime);
1077 }
1078 } else {
1079 Slog.i(TAG, "Toggling theater mode on.");
1080 Settings.Global.putInt(mContext.getContentResolver(),
1081 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001082
1083 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001084 mPowerManager.goToSleep(eventTime,
1085 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1086 }
1087 }
1088 break;
1089 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001090 Slog.i(TAG, "Starting brightness boost.");
1091 if (!interactive) {
1092 wakeUpFromPowerKey(eventTime);
1093 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001094 mPowerManager.boostScreenBrightness(eventTime);
1095 break;
1096 }
1097 }
1098
1099 private int getMaxMultiPressPowerCount() {
1100 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1101 return 3;
1102 }
1103 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1104 return 2;
1105 }
1106 return 1;
1107 }
1108
1109 private void powerLongPress() {
1110 final int behavior = getResolvedLongPressOnPowerBehavior();
1111 switch (behavior) {
1112 case LONG_PRESS_POWER_NOTHING:
1113 break;
1114 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1115 mPowerKeyHandled = true;
1116 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1117 performAuditoryFeedbackForAccessibilityIfNeed();
1118 }
1119 showGlobalActionsInternal();
1120 break;
1121 case LONG_PRESS_POWER_SHUT_OFF:
1122 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1123 mPowerKeyHandled = true;
1124 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1125 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1126 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1127 break;
1128 }
1129 }
1130
Nick Vaccarob593a812015-05-15 11:23:05 -07001131 private void sleepPress(long eventTime) {
1132 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1133 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1134 }
1135 }
1136
1137 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001138 switch (mShortPressOnSleepBehavior) {
1139 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001140 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001141 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1142 mPowerManager.goToSleep(eventTime,
1143 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001144 break;
1145 }
1146 }
1147
Jeff Brown13f00f02014-10-31 14:45:50 -07001148 private int getResolvedLongPressOnPowerBehavior() {
1149 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1150 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1151 }
1152 return mLongPressOnPowerBehavior;
1153 }
1154
1155 private boolean hasLongPressOnPowerBehavior() {
1156 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001157 }
1158
1159 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001160 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001161 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1162 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001163 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001164 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1165 && now <= mScreenshotChordPowerKeyTime
1166 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1167 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001168 cancelPendingPowerKeyAction();
1169
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001170 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001171 }
1172 }
1173 }
1174
Winson Chung1cea2f32012-10-08 20:42:01 -07001175 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001176 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001177 // Double the time it takes to take a screenshot from the keyguard
1178 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001179 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001180 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001181 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001182 }
1183
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001184 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001185 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001186 }
1187
Jeff Brown13f00f02014-10-31 14:45:50 -07001188 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001189 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001190 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001191 mEndCallKeyHandled = true;
1192 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1193 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001194 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001195 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001196 }
1197 };
1198
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001199 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001200 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001201 public void run() {
1202 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001203 }
1204 };
1205
Alan Viverettee34560b22014-07-10 14:50:06 -07001206 @Override
1207 public void showGlobalActions() {
1208 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1209 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1210 }
1211
1212 void showGlobalActionsInternal() {
1213 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001214 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001215 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001216 }
Jim Millerab954542014-10-10 18:21:49 -07001217 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001218 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1219 if (keyguardShowing) {
1220 // since it took two seconds of long press to bring this up,
1221 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001222 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001223 }
1224 }
1225
1226 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001227 return Settings.Global.getInt(
1228 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001229 }
1230
Maurice Lam99c6e072014-04-28 18:24:28 -07001231 boolean isUserSetupComplete() {
1232 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1233 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1234 }
1235
Jeff Brown13f00f02014-10-31 14:45:50 -07001236 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001237 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1238 getHdmiControl().turnOnTv();
1239
Jeff Brown13f00f02014-10-31 14:45:50 -07001240 // If there's a dream running then use home to escape the dream
1241 // but don't actually go home.
1242 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1243 mDreamManagerInternal.stopDream(false /*immediate*/);
1244 return;
1245 }
1246
1247 // Go home!
1248 launchHomeFromHotKey();
1249 }
1250
Jinsuk Kime601b712015-07-07 08:01:02 +09001251 /**
1252 * Creates an accessor to HDMI control service that performs the operation of
1253 * turning on TV (optional) and switching input to us. If HDMI control service
1254 * is not available or we're not a HDMI playback device, the operation is no-op.
1255 */
1256 private HdmiControl getHdmiControl() {
1257 if (null == mHdmiControl) {
1258 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1259 Context.HDMI_CONTROL_SERVICE);
1260 HdmiPlaybackClient client = null;
1261 if (manager != null) {
1262 client = manager.getPlaybackClient();
1263 }
1264 mHdmiControl = new HdmiControl(client);
1265 }
1266 return mHdmiControl;
1267 }
1268
1269 private static class HdmiControl {
1270 private final HdmiPlaybackClient mClient;
1271
1272 private HdmiControl(HdmiPlaybackClient client) {
1273 mClient = client;
1274 }
1275
1276 public void turnOnTv() {
1277 if (mClient == null) {
1278 return;
1279 }
1280 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1281 @Override
1282 public void onComplete(int result) {
1283 if (result != HdmiControlManager.RESULT_SUCCESS) {
1284 Log.w(TAG, "One touch play failed: " + result);
1285 }
1286 }
1287 });
1288 }
1289 }
1290
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001291 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001292 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001293 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001294 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001295
Jeff Browncaca8812013-05-09 13:34:33 -07001296 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1297 toggleRecentApps();
1298 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001299 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001300 }
1301 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001302 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001303
Jeff Browncaca8812013-05-09 13:34:33 -07001304 private void handleDoubleTapOnHome() {
1305 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1306 mHomeConsumed = true;
1307 toggleRecentApps();
1308 }
1309 }
1310
1311 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1312 @Override
1313 public void run() {
1314 if (mHomeDoubleTapPending) {
1315 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001316 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001317 }
1318 }
1319 };
1320
Mark Renoufc1256912015-03-11 14:38:23 -04001321 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001322 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001323 }
1324
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001325 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001326 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001327 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001328 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001329 mContext = context;
1330 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001331 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001332 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001333 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001334 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Michael Wrighta4d22d72015-09-16 23:19:26 +01001335 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001336 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001337
1338 // Init display burn-in protection
1339 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1340 com.android.internal.R.bool.config_enableBurnInProtection);
1341 // Allow a system property to override this. Used by developer settings.
1342 boolean burnInProtectionDevMode =
1343 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1344 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1345 final int minHorizontal;
1346 final int maxHorizontal;
1347 final int minVertical;
1348 final int maxVertical;
1349 final int maxRadius;
1350 if (burnInProtectionDevMode) {
1351 minHorizontal = -8;
1352 maxHorizontal = 8;
1353 minVertical = -8;
1354 maxVertical = -4;
1355 maxRadius = (isRoundWindow()) ? 6 : -1;
1356 } else {
1357 Resources resources = context.getResources();
1358 minHorizontal = resources.getInteger(
1359 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1360 maxHorizontal = resources.getInteger(
1361 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1362 minVertical = resources.getInteger(
1363 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1364 maxVertical = resources.getInteger(
1365 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1366 maxRadius = resources.getInteger(
1367 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1368 }
1369 mBurnInProtectionHelper = new BurnInProtectionHelper(
1370 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001371 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001372
Jeff Brown70825162012-03-28 17:27:48 -07001373 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001374 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001375 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001376 try {
1377 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1378 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001379 mSettingsObserver = new SettingsObserver(mHandler);
1380 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001381 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001382 mUiMode = context.getResources().getInteger(
1383 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001384 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1385 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1386 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1387 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001388 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1389 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1390 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1391 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1392 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1393 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1394 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1395 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001396
Jeff Brown96307042012-07-27 15:51:34 -07001397 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1398 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001399 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001400 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1401 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001402 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001403 mSupportAutoRotation = mContext.getResources().getBoolean(
1404 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001405 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001406 com.android.internal.R.integer.config_lidOpenRotation);
1407 mCarDockRotation = readRotation(
1408 com.android.internal.R.integer.config_carDockRotation);
1409 mDeskDockRotation = readRotation(
1410 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001411 mUndockedHdmiRotation = readRotation(
1412 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001413 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1414 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1415 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1416 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001417 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1418 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1419 mLidNavigationAccessibility = mContext.getResources().getInteger(
1420 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001421 mLidControlsSleep = mContext.getResources().getBoolean(
1422 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001423 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1424 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001425
1426 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1427 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1428 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1429 || mContext.getResources().getBoolean(
1430 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1431 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1432 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001433 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1434 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001435 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1436 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1437 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1438 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1439 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1440 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1441
Bryce Lee55e846d2014-11-04 12:43:44 -08001442 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1443 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1444
Bryce Leed3b28402015-03-09 15:49:13 +00001445 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1446 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1447
Jeff Brown13f00f02014-10-31 14:45:50 -07001448 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1449 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1450 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1451 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1452 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1453 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1454 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1455 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001456 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1457 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001458
John Spurlock61560172015-02-06 19:46:04 -05001459 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001460
Jeff Brownf71343d2013-05-31 17:59:11 -07001461 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001462
Svetoslav8e3feb12014-02-24 13:46:47 -08001463 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1464 Context.ACCESSIBILITY_SERVICE);
1465
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001466 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001467 IntentFilter filter = new IntentFilter();
1468 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1469 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1470 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1471 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001472 filter.addAction(Intent.ACTION_DOCK_EVENT);
1473 Intent intent = context.registerReceiver(mDockReceiver, filter);
1474 if (intent != null) {
1475 // Retrieve current sticky dock event broadcast.
1476 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1477 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1478 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001479
Jeff Brown6aaf2952012-10-05 16:01:08 -07001480 // register for dream-related broadcasts
1481 filter = new IntentFilter();
1482 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1483 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1484 context.registerReceiver(mDreamReceiver, filter);
1485
Christopher Tate5e08af02012-09-21 17:17:22 -07001486 // register for multiuser-relevant broadcasts
1487 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1488 context.registerReceiver(mMultiuserReceiver, filter);
1489
John Spurlock57306e62013-04-22 09:48:49 -04001490 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001491 mSystemGestures = new SystemGesturesPointerEventListener(context,
1492 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001493 @Override
1494 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001495 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001496 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001497 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001498 }
1499 @Override
1500 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001501 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001502 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001503 }
1504 }
1505 @Override
1506 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001507 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001508 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001509 }
1510 }
1511 @Override
Michael Wrighta4d22d72015-09-16 23:19:26 +01001512 public void onFling(int duration) {
1513 if (mPowerManagerInternal != null) {
1514 mPowerManagerInternal.powerHint(
1515 PowerManagerInternal.POWER_HINT_INTERACTION, duration);
1516 }
1517 }
1518 @Override
John Spurlockad3e6cb2013-04-30 08:47:43 -04001519 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001520 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001521 }
Adrian Roos3595be42015-03-05 16:31:15 +01001522 @Override
1523 public void onDown() {
1524 mOrientationListener.onTouchStart();
1525 }
1526 @Override
1527 public void onUpOrCancel() {
1528 mOrientationListener.onTouchEnd();
1529 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001530 });
John Spurlockf1a36642013-10-12 17:50:42 -04001531 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001532 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001533
Jeff Brownc2346132012-04-13 01:55:38 -07001534 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001535 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1536 com.android.internal.R.array.config_longPressVibePattern);
1537 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1538 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001539 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1540 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001541 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1542 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001543 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1544 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001545 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1546 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1547 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1548 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001549 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1550 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001551
Christopher Tatee90585f2012-03-05 18:56:25 -08001552 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1553 com.android.internal.R.bool.config_enableScreenshotChord);
1554
Justin Kohd378ad72013-04-01 12:18:26 -07001555 mGlobalKeyManager = new GlobalKeyManager(mContext);
1556
Joe Onoratoea495d42011-04-06 11:41:11 -07001557 // Controls rotation and the like.
1558 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001559
1560 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001561 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001562 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1563 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001564 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001565
1566 mWindowManagerInternal.registerAppTransitionListener(
1567 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001568 }
1569
Jeff Brownf71343d2013-05-31 17:59:11 -07001570 /**
1571 * Read values from config.xml that may be overridden depending on
1572 * the configuration of the device.
1573 * eg. Disable long press on home goes to recents on sw600dp.
1574 */
1575 private void readConfigurationDependentBehaviors() {
1576 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1577 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1578 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1579 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1580 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1581 }
1582
1583 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1584 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1585 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1586 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1587 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1588 }
1589 }
1590
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001591 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001592 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001593 // This method might be called before the policy has been fully initialized
1594 // or for other displays we don't care about.
1595 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1596 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001597 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001598 mDisplay = display;
1599
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001600 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001601 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001602 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001603 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001604 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001605 mLandscapeRotation = Surface.ROTATION_0;
1606 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001607 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001608 mPortraitRotation = Surface.ROTATION_90;
1609 mUpsideDownRotation = Surface.ROTATION_270;
1610 } else {
1611 mPortraitRotation = Surface.ROTATION_270;
1612 mUpsideDownRotation = Surface.ROTATION_90;
1613 }
1614 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001615 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001616 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001617 mPortraitRotation = Surface.ROTATION_0;
1618 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001619 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001620 mLandscapeRotation = Surface.ROTATION_270;
1621 mSeascapeRotation = Surface.ROTATION_90;
1622 } else {
1623 mLandscapeRotation = Surface.ROTATION_90;
1624 mSeascapeRotation = Surface.ROTATION_270;
1625 }
1626 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001627
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001628 mStatusBarHeight =
1629 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001630
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001631 // Height of the navigation bar when presented horizontally at bottom
1632 mNavigationBarHeightForRotation[mPortraitRotation] =
1633 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001634 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001635 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001636 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1637 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001638
1639 // Width of the navigation bar when presented vertically along one side
1640 mNavigationBarWidthForRotation[mPortraitRotation] =
1641 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1642 mNavigationBarWidthForRotation[mLandscapeRotation] =
1643 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001644 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001645
1646 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001647 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001648 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001649
Devin Kimd7b12b42014-05-05 14:34:58 -07001650 // Allow the navigation bar to move on non-square small devices (phones).
1651 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001652
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001653 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001654 // Allow a system property to override this. Used by the emulator.
1655 // See also hasNavigationBar().
1656 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1657 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001658 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001659 } else if ("0".equals(navBarOverride)) {
1660 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001661 }
1662
Jeff Brown27f1d672012-10-17 18:32:34 -07001663 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1664 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001665 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001666 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001667 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001668 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001669 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001670 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001671
Chong Zhangae6119ff2014-11-11 18:54:39 -08001672 // For demo purposes, allow the rotation of the remote display to be controlled.
1673 // By default, remote display locks rotation to landscape.
1674 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1675 mDemoRotation = mPortraitRotation;
1676 } else {
1677 mDemoRotation = mLandscapeRotation;
1678 }
1679 mDemoRotationLock = SystemProperties.getBoolean(
1680 "persist.demo.rotationlock", false);
1681
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001682 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1683 // http://developer.android.com/guide/practices/screens_support.html#range
1684 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1685 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1686 // For debug purposes the next line turns this feature off with:
1687 // $ adb shell setprop config.override_forced_orient true
1688 // $ adb shell wm size reset
1689 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1690 }
1691
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001692 /**
1693 * @return whether the navigation bar can be hidden, e.g. the device has a
1694 * navigation bar and touch exploration is not enabled
1695 */
1696 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001697 return mHasNavigationBar
1698 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001699 }
1700
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001701 @Override
1702 public boolean isDefaultOrientationForced() {
1703 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001704 }
1705
Dianne Hackbornc652de82013-02-15 16:32:56 -08001706 @Override
1707 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1708 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1709 mOverscanLeft = left;
1710 mOverscanTop = top;
1711 mOverscanRight = right;
1712 mOverscanBottom = bottom;
1713 }
1714 }
1715
Dianne Hackbornc777e072010-02-12 13:07:59 -08001716 public void updateSettings() {
1717 ContentResolver resolver = mContext.getContentResolver();
1718 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001719 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001720 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001721 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001722 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1723 UserHandle.USER_CURRENT);
1724 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001725 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001726 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1727 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001728
Jeff Browna20dda42014-05-27 20:57:24 -07001729 // Configure wake gesture.
1730 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1731 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1732 UserHandle.USER_CURRENT) != 0;
1733 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1734 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1735 updateWakeGestureListenerLp();
1736 }
1737
Jeff Brown207673cd2012-06-05 17:47:11 -07001738 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001739 int userRotation = Settings.System.getIntForUser(resolver,
1740 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1741 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001742 if (mUserRotation != userRotation) {
1743 mUserRotation = userRotation;
1744 updateRotation = true;
1745 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001746 int userRotationMode = Settings.System.getIntForUser(resolver,
1747 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001748 WindowManagerPolicy.USER_ROTATION_FREE :
1749 WindowManagerPolicy.USER_ROTATION_LOCKED;
1750 if (mUserRotationMode != userRotationMode) {
1751 mUserRotationMode = userRotationMode;
1752 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001753 updateOrientationListenerLp();
1754 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001755
Dianne Hackbornc777e072010-02-12 13:07:59 -08001756 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001757 int pointerLocation = Settings.System.getIntForUser(resolver,
1758 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001759 if (mPointerLocationMode != pointerLocation) {
1760 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001761 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1762 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001763 }
1764 }
1765 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001766 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1767 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1768 String imId = Settings.Secure.getStringForUser(resolver,
1769 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001770 boolean hasSoftInput = imId != null && imId.length() > 0;
1771 if (mHasSoftInput != hasSoftInput) {
1772 mHasSoftInput = hasSoftInput;
1773 updateRotation = true;
1774 }
John Spurlockf1a36642013-10-12 17:50:42 -04001775 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001776 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001777 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001778 }
1779 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001780 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001781 }
1782 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001783 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001784 }
Jeff Brown70825162012-03-28 17:27:48 -07001785 }
1786
Jeff Browna20dda42014-05-27 20:57:24 -07001787 private void updateWakeGestureListenerLp() {
1788 if (shouldEnableWakeGestureLp()) {
1789 mWakeGestureListener.requestWakeUpTrigger();
1790 } else {
1791 mWakeGestureListener.cancelWakeUpTrigger();
1792 }
1793 }
1794
1795 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001796 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001797 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1798 && mWakeGestureListener.isSupported();
1799 }
1800
Jeff Brown70825162012-03-28 17:27:48 -07001801 private void enablePointerLocation() {
1802 if (mPointerLocationView == null) {
1803 mPointerLocationView = new PointerLocationView(mContext);
1804 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001805 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1806 WindowManager.LayoutParams.MATCH_PARENT,
1807 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001808 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001809 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1810 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1811 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1812 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001813 if (ActivityManager.isHighEndGfx()) {
1814 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1815 lp.privateFlags |=
1816 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1817 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001818 lp.format = PixelFormat.TRANSLUCENT;
1819 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001820 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001821 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001822 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001823 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001824 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001825 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001826 }
Jeff Brown70825162012-03-28 17:27:48 -07001827
1828 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001829 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001830 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1831 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001832 wm.removeView(mPointerLocationView);
1833 mPointerLocationView = null;
1834 }
1835 }
1836
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001837 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001838 try {
1839 int rotation = mContext.getResources().getInteger(resID);
1840 switch (rotation) {
1841 case 0:
1842 return Surface.ROTATION_0;
1843 case 90:
1844 return Surface.ROTATION_90;
1845 case 180:
1846 return Surface.ROTATION_180;
1847 case 270:
1848 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001849 }
1850 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001851 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001852 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001853 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001854 }
1855
1856 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001857 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001858 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001859 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001860
1861 outAppOp[0] = AppOpsManager.OP_NONE;
1862
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001863 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1864 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1865 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1866 return WindowManagerGlobal.ADD_INVALID_TYPE;
1867 }
1868
1869 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1870 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001871 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001872 }
1873 String permission = null;
1874 switch (type) {
1875 case TYPE_TOAST:
1876 // XXX right now the app process has complete control over
1877 // this... should introduce a token to let the system
1878 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001879 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001880 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001881 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001882 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001883 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001884 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001885 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001886 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001887 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001888 break;
1889 case TYPE_PHONE:
1890 case TYPE_PRIORITY_PHONE:
1891 case TYPE_SYSTEM_ALERT:
1892 case TYPE_SYSTEM_ERROR:
1893 case TYPE_SYSTEM_OVERLAY:
1894 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001895 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001896 break;
1897 default:
1898 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1899 }
1900 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001901 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1902 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01001903 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01001904 if (callingUid == Process.SYSTEM_UID) {
1905 return WindowManagerGlobal.ADD_OKAY;
1906 }
1907
Billy Lau060275f2015-07-15 22:29:19 +01001908 // check if user has enabled this operation. SecurityException will be thrown if
1909 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01001910 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1911 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01001912 switch (mode) {
1913 case AppOpsManager.MODE_ALLOWED:
1914 case AppOpsManager.MODE_IGNORED:
1915 // although we return ADD_OKAY for MODE_IGNORED, the added window will
1916 // actually be hidden in WindowManagerService
1917 return WindowManagerGlobal.ADD_OKAY;
1918 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01001919 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01001920 default:
1921 // in the default mode, we will make a decision here based on
1922 // checkCallingPermission()
1923 if (mContext.checkCallingPermission(permission) !=
1924 PackageManager.PERMISSION_GRANTED) {
1925 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1926 } else {
1927 return WindowManagerGlobal.ADD_OKAY;
1928 }
Billy Laucbe540f2015-06-25 01:51:44 +01001929 }
Billy Laucbe540f2015-06-25 01:51:44 +01001930 }
1931
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001932 if (mContext.checkCallingOrSelfPermission(permission)
1933 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001934 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001935 }
1936 }
Jeff Brown98365d72012-08-19 20:30:52 -07001937 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001938 }
Craig Mautner88400d32012-09-30 12:35:45 -07001939
1940 @Override
1941 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1942
1943 // If this switch statement is modified, modify the comment in the declarations of
1944 // the type in {@link WindowManager.LayoutParams} as well.
1945 switch (attrs.type) {
1946 default:
1947 // These are the windows that by default are shown only to the user that created
1948 // them. If this needs to be overridden, set
1949 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1950 // {@link WindowManager.LayoutParams}. Note that permission
1951 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1952 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1953 return true;
1954 }
1955 break;
1956
1957 // These are the windows that by default are shown to all users. However, to
1958 // protect against spoofing, check permissions below.
1959 case TYPE_APPLICATION_STARTING:
1960 case TYPE_BOOT_PROGRESS:
1961 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001962 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001963 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001964 case TYPE_KEYGUARD_DIALOG:
1965 case TYPE_MAGNIFICATION_OVERLAY:
1966 case TYPE_NAVIGATION_BAR:
1967 case TYPE_NAVIGATION_BAR_PANEL:
1968 case TYPE_PHONE:
1969 case TYPE_POINTER:
1970 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001971 case TYPE_SEARCH_BAR:
1972 case TYPE_STATUS_BAR:
1973 case TYPE_STATUS_BAR_PANEL:
1974 case TYPE_STATUS_BAR_SUB_PANEL:
1975 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001976 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001977 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001978 break;
1979 }
1980
1981 // Check if third party app has set window to system window type.
1982 return mContext.checkCallingOrSelfPermission(
1983 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1984 != PackageManager.PERMISSION_GRANTED;
1985 }
1986
Craig Mautner967212c2013-04-13 21:10:58 -07001987 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001988 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1989 switch (attrs.type) {
1990 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001991 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001992 // These types of windows can't receive input events.
1993 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1994 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001995 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001996 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001997 case TYPE_STATUS_BAR:
1998
1999 // If the Keyguard is in a hidden state (occluded by another window), we force to
2000 // remove the wallpaper and keyguard flag so that any change in-flight after setting
2001 // the keyguard as occluded wouldn't set these flags again.
2002 // See {@link #processKeyguardSetHiddenResultLw}.
2003 if (mKeyguardHidden) {
2004 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2005 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2006 }
2007 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002008 }
Adrian Roos38502112014-04-09 21:04:11 +02002009
2010 if (attrs.type != TYPE_STATUS_BAR) {
2011 // The status bar is the only window allowed to exhibit keyguard behavior.
2012 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2013 }
Adrian Roosea562512014-05-05 13:33:03 +02002014
2015 if (ActivityManager.isHighEndGfx()
2016 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02002017 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02002018 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
2019 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002020 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002021
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002022 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07002023 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002024 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002025
Michael Wright3818c922014-09-02 13:59:07 -07002026 private void readCameraLensCoverState() {
2027 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2028 }
2029
Jeff Browndaa37532012-05-01 15:54:03 -07002030 private boolean isHidden(int accessibilityMode) {
2031 switch (accessibilityMode) {
2032 case 1:
2033 return mLidState == LID_CLOSED;
2034 case 2:
2035 return mLidState == LID_OPEN;
2036 default:
2037 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002038 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002039 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002040
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002041 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002042 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002043 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2044 int navigationPresence) {
2045 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2046
Jeff Brownf71343d2013-05-31 17:59:11 -07002047 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002048 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002049 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002050
Jeff Browndaa37532012-05-01 15:54:03 -07002051 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2052 || (keyboardPresence == PRESENCE_INTERNAL
2053 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002054 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002055 if (!mHasSoftInput) {
2056 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2057 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002058 }
2059
Jeff Browndaa37532012-05-01 15:54:03 -07002060 if (config.navigation == Configuration.NAVIGATION_NONAV
2061 || (navigationPresence == PRESENCE_INTERNAL
2062 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002063 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002064 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002065 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002066
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002067 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002068 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002069 public int windowTypeToLayerLw(int type) {
2070 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002071 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002072 }
2073 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002074 case TYPE_PRIVATE_PRESENTATION:
2075 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002076 case TYPE_WALLPAPER:
2077 // wallpaper is at the bottom, though the window manager may move it.
2078 return 2;
2079 case TYPE_PHONE:
2080 return 3;
2081 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002082 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002083 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002084 case TYPE_VOICE_INTERACTION:
2085 // voice interaction layer is almost immediately above apps.
2086 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002087 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002088 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002089 case TYPE_SYSTEM_DIALOG:
2090 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002091 case TYPE_TOAST:
2092 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002093 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002094 case TYPE_PRIORITY_PHONE:
2095 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002096 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002097 case TYPE_DREAM:
2098 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002099 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002100 case TYPE_SYSTEM_ALERT:
2101 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002102 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002103 case TYPE_INPUT_METHOD:
2104 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002105 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002106 case TYPE_INPUT_METHOD_DIALOG:
2107 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002108 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002109 case TYPE_KEYGUARD_SCRIM:
2110 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002111 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07002112 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002113 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07002114 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002115 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07002116 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002117 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002118 case TYPE_KEYGUARD_DIALOG:
2119 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002120 case TYPE_VOLUME_OVERLAY:
2121 // the on-screen volume indicator and controller shown when the user
2122 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002123 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002124 case TYPE_SYSTEM_OVERLAY:
2125 // the on-screen volume indicator and controller shown when the user
2126 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002127 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002128 case TYPE_NAVIGATION_BAR:
2129 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002130 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002131 case TYPE_NAVIGATION_BAR_PANEL:
2132 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002133 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002134 case TYPE_SYSTEM_ERROR:
2135 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002136 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002137 case TYPE_MAGNIFICATION_OVERLAY:
2138 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002139 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002140 case TYPE_DISPLAY_OVERLAY:
2141 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002142 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002143 case TYPE_DRAG:
2144 // the drag layer: input for drag-and-drop is associated with this window,
2145 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002146 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002147 case TYPE_ACCESSIBILITY_OVERLAY:
2148 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002149 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002150 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002151 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002152 case TYPE_BOOT_PROGRESS:
2153 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002154 case TYPE_POINTER:
2155 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002156 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002157 }
2158 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002159 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002160 }
2161
2162 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002163 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002164 public int subWindowTypeToLayerLw(int type) {
2165 switch (type) {
2166 case TYPE_APPLICATION_PANEL:
2167 case TYPE_APPLICATION_ATTACHED_DIALOG:
2168 return APPLICATION_PANEL_SUBLAYER;
2169 case TYPE_APPLICATION_MEDIA:
2170 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002171 case TYPE_APPLICATION_MEDIA_OVERLAY:
2172 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002173 case TYPE_APPLICATION_SUB_PANEL:
2174 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002175 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2176 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002177 }
2178 Log.e(TAG, "Unknown sub-window type: " + type);
2179 return 0;
2180 }
2181
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002182 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002183 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002184 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002185 }
2186
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002187 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002188 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002189 if (mHasNavigationBar) {
2190 // For a basic navigation bar, when we are in landscape mode we place
2191 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002192 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2193 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002194 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002195 }
2196 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002197 }
2198
Jose Lima9546b202014-07-02 17:21:51 -07002199 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002200 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002201 if (mHasNavigationBar) {
2202 // For a basic navigation bar, when we are in portrait mode we place
2203 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002204 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2205 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002206 }
2207 }
2208 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002209 }
2210
Jose Lima9546b202014-07-02 17:21:51 -07002211 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002212 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2213 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002214 }
2215
Jose Lima9546b202014-07-02 17:21:51 -07002216 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002217 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002218 // There is a separate status bar at the top of the display. We don't count that as part
2219 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002220 // we do want to exclude it since applications can't generally use that part
2221 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002222 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002223 }
2224
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002225 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002226 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2227 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002228 (isKeyguardHostWindow(attrs) &&
2229 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002230 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002231 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002232
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002233 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002234 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2235 return attrs.type == TYPE_STATUS_BAR;
2236 }
2237
2238 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002239 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002240 switch (attrs.type) {
2241 case TYPE_STATUS_BAR:
2242 case TYPE_NAVIGATION_BAR:
2243 case TYPE_WALLPAPER:
2244 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002245 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002246 return false;
2247 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002248 // Hide only windows below the keyguard host window.
2249 return windowTypeToLayerLw(win.getBaseType())
2250 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002251 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002252 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002253
Craig Mautner7d7808f2014-09-11 18:02:38 -07002254 @Override
2255 public WindowState getWinShowWhenLockedLw() {
2256 return mWinShowWhenLocked;
2257 }
2258
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002259 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002260 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002261 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2262 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002263 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002264 if (!SHOW_STARTING_ANIMATIONS) {
2265 return null;
2266 }
2267 if (packageName == null) {
2268 return null;
2269 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002270
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002271 WindowManager wm = null;
2272 View view = null;
2273
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002274 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002275 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002276 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2277 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2278 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002279 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002280 try {
2281 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002282 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002283 } catch (PackageManager.NameNotFoundException e) {
2284 // Ignore
2285 }
2286 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002287
Jorim Jaggia16cc152015-06-01 16:55:05 -07002288 PhoneWindow win = new PhoneWindow(context);
2289 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002290 final TypedArray ta = win.getWindowStyle();
2291 if (ta.getBoolean(
2292 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2293 || ta.getBoolean(
2294 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002295 return null;
2296 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002297
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002298 Resources r = context.getResources();
2299 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002300
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002301 win.setType(
2302 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002303
2304 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2305 // Assumes it's safe to show starting windows of launched apps while
2306 // the keyguard is being hidden. This is okay because starting windows never show
2307 // secret information.
2308 if (mKeyguardHidden) {
2309 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2310 }
2311 }
2312
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002313 // Force the window flags: this is a fake window, so it is not really
2314 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2315 // flag because we do know that the next window will take input
2316 // focus, so we want to get the IME window up on top of us right away.
2317 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002318 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002319 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2320 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2321 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002322 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002323 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2324 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2325 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002326
Adam Powell04fe6eb2013-05-31 14:39:48 -07002327 win.setDefaultIcon(icon);
2328 win.setDefaultLogo(logo);
2329
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002330 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002331 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002332
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002333 final WindowManager.LayoutParams params = win.getAttributes();
2334 params.token = appToken;
2335 params.packageName = packageName;
2336 params.windowAnimations = win.getWindowStyle().getResourceId(
2337 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002338 params.privateFlags |=
2339 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002340 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002341
2342 if (!compatInfo.supportsScreen()) {
2343 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2344 }
2345
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002346 params.setTitle("Starting " + packageName);
2347
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002348 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2349 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002350
2351 if (win.isFloating()) {
2352 // Whoops, there is no way to display an animation/preview
2353 // of such a thing! After all that work... let's skip it.
2354 // (Note that we must do this here because it is in
2355 // getDecorView() where the theme is evaluated... maybe
2356 // we should peek the floating attribute from the theme
2357 // earlier.)
2358 return null;
2359 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002360
Craig Mautner6fbda632012-07-03 09:26:39 -07002361 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002362 TAG, "Adding starting window for " + packageName
2363 + " / " + appToken + ": "
2364 + (view.getParent() != null ? view : null));
2365
2366 wm.addView(view, params);
2367
2368 // Only return the view if it was successfully added to the
2369 // window manager... which we can tell by it having a parent.
2370 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002371 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002372 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002373 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2374 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002375 } catch (RuntimeException e) {
2376 // don't crash if something else bad happens, for example a
2377 // failure loading resources because we are loading from an app
2378 // on external storage that has been unmounted.
2379 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002380 } finally {
2381 if (view != null && view.getParent() == null) {
2382 Log.w(TAG, "view not successfully added to wm, removing view");
2383 wm.removeViewImmediate(view);
2384 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002385 }
2386
2387 return null;
2388 }
2389
2390 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002391 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002392 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002393 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2394 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002395
2396 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002397 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002398 wm.removeView(window);
2399 }
2400 }
2401
2402 /**
2403 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002404 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002405 * Currently enforces that three window types are singletons:
2406 * <ul>
2407 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002408 * <li>KEYGUARD_TYPE</li>
2409 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002410 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002411 * @param win The window to be added
2412 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002413 *
Jeff Brown98365d72012-08-19 20:30:52 -07002414 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2415 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002416 */
Jose Lima9546b202014-07-02 17:21:51 -07002417 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002418 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2419 switch (attrs.type) {
2420 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002421 mContext.enforceCallingOrSelfPermission(
2422 android.Manifest.permission.STATUS_BAR_SERVICE,
2423 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002424 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002425 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002426 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002427 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002428 }
2429 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002430 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002431 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002432 case TYPE_NAVIGATION_BAR:
2433 mContext.enforceCallingOrSelfPermission(
2434 android.Manifest.permission.STATUS_BAR_SERVICE,
2435 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002436 if (mNavigationBar != null) {
2437 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002438 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002439 }
2440 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002441 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002442 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002443 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002444 break;
Jim Millere898ac52012-04-06 17:10:57 -07002445 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002446 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002447 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002448 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002449 mContext.enforceCallingOrSelfPermission(
2450 android.Manifest.permission.STATUS_BAR_SERVICE,
2451 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002452 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002453 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002454 if (mKeyguardScrim != null) {
2455 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2456 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002457 mKeyguardScrim = win;
2458 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002459 }
Jeff Brown98365d72012-08-19 20:30:52 -07002460 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002461 }
2462
2463 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002464 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002465 public void removeWindowLw(WindowState win) {
2466 if (mStatusBar == win) {
2467 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002468 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002469 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002470 } else if (mKeyguardScrim == win) {
2471 Log.v(TAG, "Removing keyguard scrim");
2472 mKeyguardScrim = null;
2473 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002474 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002475 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002476 }
2477 }
2478
2479 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002480
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002481 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002482 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002483 public int selectAnimationLw(WindowState win, int transit) {
2484 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2485 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002486 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002487 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002488 if (transit == TRANSIT_EXIT
2489 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002490 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002491 } else if (transit == TRANSIT_ENTER
2492 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002493 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002494 }
2495 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002496 if (win.getAttrs().windowAnimations != 0) {
2497 return 0;
2498 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002499 // This can be on either the bottom or the right.
2500 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002501 if (transit == TRANSIT_EXIT
2502 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002503 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002504 } else if (transit == TRANSIT_ENTER
2505 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002506 return R.anim.dock_bottom_enter;
2507 }
2508 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002509 if (transit == TRANSIT_EXIT
2510 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002511 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002512 } else if (transit == TRANSIT_ENTER
2513 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002514 return R.anim.dock_right_enter;
2515 }
2516 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002517 }
2518
2519 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002520 if (win.hasAppShownWindows()) {
2521 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2522 return com.android.internal.R.anim.app_starting_exit;
2523 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002524 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002525 && transit == TRANSIT_ENTER) {
2526 // Special case: we are animating in a dream, while the keyguard
2527 // is shown. We don't want an animation on the dream, because
2528 // we need it shown immediately with the keyguard animating away
2529 // to reveal it.
2530 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002531 }
2532
2533 return 0;
2534 }
2535
Craig Mautner3c174372013-02-21 17:54:37 -08002536 @Override
2537 public void selectRotationAnimationLw(int anim[]) {
2538 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2539 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2540 + (mTopFullscreenOpaqueWindowState == null ?
2541 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2542 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2543 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2544 case ROTATION_ANIMATION_CROSSFADE:
2545 anim[0] = R.anim.rotation_animation_xfade_exit;
2546 anim[1] = R.anim.rotation_animation_enter;
2547 break;
2548 case ROTATION_ANIMATION_JUMPCUT:
2549 anim[0] = R.anim.rotation_animation_jump_exit;
2550 anim[1] = R.anim.rotation_animation_enter;
2551 break;
2552 case ROTATION_ANIMATION_ROTATE:
2553 default:
2554 anim[0] = anim[1] = 0;
2555 break;
2556 }
2557 } else {
2558 anim[0] = anim[1] = 0;
2559 }
2560 }
2561
2562 @Override
2563 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2564 boolean forceDefault) {
2565 switch (exitAnimId) {
2566 case R.anim.rotation_animation_xfade_exit:
2567 case R.anim.rotation_animation_jump_exit:
2568 // These are the only cases that matter.
2569 if (forceDefault) {
2570 return false;
2571 }
2572 int anim[] = new int[2];
2573 selectRotationAnimationLw(anim);
2574 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2575 default:
2576 return true;
2577 }
2578 }
2579
2580 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002581 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2582 boolean goingToNotificationShade) {
2583 if (goingToNotificationShade) {
2584 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002585 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002586
2587 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2588 R.anim.lock_screen_behind_enter_wallpaper :
2589 R.anim.lock_screen_behind_enter);
2590
2591 // TODO: Use XML interpolators when we have log interpolators available in XML.
2592 final List<Animation> animations = set.getAnimations();
2593 for (int i = animations.size() - 1; i >= 0; --i) {
2594 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2595 }
2596
2597 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002598 }
2599
2600
2601 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002602 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2603 if (goingToNotificationShade) {
2604 return null;
2605 } else {
2606 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2607 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002608 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002609
2610 private static void awakenDreams() {
2611 IDreamManager dreamManager = getDreamManager();
2612 if (dreamManager != null) {
2613 try {
2614 dreamManager.awaken();
2615 } catch (RemoteException e) {
2616 // fine, stay asleep then
2617 }
2618 }
2619 }
2620
2621 static IDreamManager getDreamManager() {
2622 return IDreamManager.Stub.asInterface(
2623 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2624 }
2625
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002626 TelecomManager getTelecommService() {
2627 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002628 }
2629
Jeff Brown4d396052010-10-29 21:50:21 -07002630 static IAudioService getAudioService() {
2631 IAudioService audioService = IAudioService.Stub.asInterface(
2632 ServiceManager.checkService(Context.AUDIO_SERVICE));
2633 if (audioService == null) {
2634 Log.w(TAG, "Unable to find IAudioService interface.");
2635 }
2636 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002637 }
2638
2639 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002640 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002641 }
2642
2643 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2644 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2645 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2646 };
2647
2648 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002649 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002650 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002651 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002652 final int keyCode = event.getKeyCode();
2653 final int repeatCount = event.getRepeatCount();
2654 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002655 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002656 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2657 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002658
Jeff Brown40013652012-05-16 21:22:36 -07002659 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002660 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002661 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2662 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002663 }
2664
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002665 // If we think we might have a volume down & power key chord on the way
2666 // but we're not sure, then tell the dispatcher to wait a little while and
2667 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002668 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002669 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002670 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002671 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2672 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002673 if (now < timeoutTime) {
2674 return timeoutTime - now;
2675 }
2676 }
2677 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002678 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002679 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002680 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002681 }
2682 return -1;
2683 }
2684 }
2685
Michael Wright6a62e552014-06-03 19:19:48 -07002686 // Cancel any pending meta actions if we see any other keys being pressed between the down
2687 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002688 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002689 mPendingMetaAction = false;
2690 }
2691
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002692 // First we always handle the home key here, so applications
2693 // can never break it, although if keyguard is on, we do let
2694 // it handle it, because that gives us the correct 5 second
2695 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002696 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002697
Jeff Brown49ed71d2010-12-06 17:13:33 -08002698 // If we have released the home key, and didn't do anything else
2699 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002700 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002701 cancelPreloadRecentApps();
2702
Jeff Brown49ed71d2010-12-06 17:13:33 -08002703 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002704 if (mHomeConsumed) {
2705 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002706 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002707 }
Jeff Browncaca8812013-05-09 13:34:33 -07002708
2709 if (canceled) {
2710 Log.i(TAG, "Ignoring HOME; event canceled.");
2711 return -1;
2712 }
2713
Yorke Lee4f803242014-12-15 23:22:06 +00002714 // If an incoming call is ringing, HOME is totally disabled.
2715 // (The user is already on the InCallUI at this point,
2716 // and his ONLY options are to answer or reject the call.)
2717 TelecomManager telecomManager = getTelecommService();
2718 if (telecomManager != null && telecomManager.isRinging()) {
2719 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2720 return -1;
2721 }
2722
Jeff Browncaca8812013-05-09 13:34:33 -07002723 // Delay handling home if a double-tap is possible.
2724 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2725 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2726 mHomeDoubleTapPending = true;
2727 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2728 ViewConfiguration.getDoubleTapTimeout());
2729 return -1;
2730 }
2731
Jeff Brown13f00f02014-10-31 14:45:50 -07002732 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002733 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002734 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002735
2736 // If a system window has focus, then it doesn't make sense
2737 // right now to interact with applications.
2738 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2739 if (attrs != null) {
2740 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002741 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2742 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2743 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002744 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002745 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002746 }
2747 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2748 for (int i=0; i<typeCount; i++) {
2749 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2750 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002751 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002752 }
2753 }
2754 }
Jeff Browncaca8812013-05-09 13:34:33 -07002755
2756 // Remember that home is pressed and handle special actions.
2757 if (repeatCount == 0) {
2758 mHomePressed = true;
2759 if (mHomeDoubleTapPending) {
2760 mHomeDoubleTapPending = false;
2761 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2762 handleDoubleTapOnHome();
2763 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2764 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2765 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002766 }
Jeff Browncaca8812013-05-09 13:34:33 -07002767 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2768 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002769 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002770 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002771 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002772 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002773 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002774 // Hijack modified menu keys for debugging features
2775 final int chordBug = KeyEvent.META_SHIFT_ON;
2776
2777 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002778 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002779 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002780 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2781 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002782 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002783 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002784 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002785 Intent service = new Intent();
2786 service.setClassName(mContext, "com.android.server.LoadAverageService");
2787 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002788 boolean shown = Settings.Global.getInt(
2789 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002790 if (!shown) {
2791 mContext.startService(service);
2792 } else {
2793 mContext.stopService(service);
2794 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002795 Settings.Global.putInt(
2796 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002797 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002798 }
2799 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002800 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002801 if (down) {
2802 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002803 mSearchKeyShortcutPending = true;
2804 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002805 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002806 } else {
2807 mSearchKeyShortcutPending = false;
2808 if (mConsumeSearchKeyUp) {
2809 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002810 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002811 }
2812 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002813 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002814 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002815 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002816 if (down && repeatCount == 0) {
2817 preloadRecentApps();
2818 } else if (!down) {
2819 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002820 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002821 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002822 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002823 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2824 if (down) {
2825 IStatusBarService service = getStatusBarService();
2826 if (service != null) {
2827 try {
2828 service.expandNotificationsPanel();
2829 } catch (RemoteException e) {
2830 // do nothing.
2831 }
2832 }
2833 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002834 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2835 if (down) {
2836 if (repeatCount == 0) {
2837 mAssistKeyLongPressed = false;
2838 } else if (repeatCount == 1) {
2839 mAssistKeyLongPressed = true;
2840 if (!keyguardOn) {
2841 launchAssistLongPressAction();
2842 }
2843 }
2844 } else {
2845 if (mAssistKeyLongPressed) {
2846 mAssistKeyLongPressed = false;
2847 } else {
2848 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002849 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002850 }
2851 }
2852 }
2853 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002854 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2855 if (!down) {
2856 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002857 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002858 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2859 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002860 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2861 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2862 if (dic != null) {
2863 try {
2864 dic.exitIdle("voice-search");
2865 } catch (RemoteException e) {
2866 }
2867 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002868 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002869 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002870 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002871 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002872 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002873 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2874 if (down && repeatCount == 0) {
2875 mHandler.post(mScreenshotRunnable);
2876 }
2877 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002878 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2879 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2880 if (down) {
2881 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2882
2883 // Disable autobrightness if it's on
2884 int auto = Settings.System.getIntForUser(
2885 mContext.getContentResolver(),
2886 Settings.System.SCREEN_BRIGHTNESS_MODE,
2887 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2888 UserHandle.USER_CURRENT_OR_SELF);
2889 if (auto != 0) {
2890 Settings.System.putIntForUser(mContext.getContentResolver(),
2891 Settings.System.SCREEN_BRIGHTNESS_MODE,
2892 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2893 UserHandle.USER_CURRENT_OR_SELF);
2894 }
2895
2896 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2897 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2898 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2899 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2900 Settings.System.SCREEN_BRIGHTNESS,
2901 mPowerManager.getDefaultScreenBrightnessSetting(),
2902 UserHandle.USER_CURRENT_OR_SELF);
2903 brightness += step;
2904 // Make sure we don't go beyond the limits.
2905 brightness = Math.min(max, brightness);
2906 brightness = Math.max(min, brightness);
2907
2908 Settings.System.putIntForUser(mContext.getContentResolver(),
2909 Settings.System.SCREEN_BRIGHTNESS, brightness,
2910 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002911 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002912 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002913 }
2914 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002915 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002916 if (down) {
2917 mPendingMetaAction = true;
2918 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002919 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002920 }
2921 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002922 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002923
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002924 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002925 // Any printing key that is chorded with Search should be consumed
2926 // even if no shortcut was invoked. This prevents text from being
2927 // inadvertently inserted when using a keyboard that has built-in macro
2928 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002929 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002930 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2931 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002932 mConsumeSearchKeyUp = true;
2933 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002934 if (down && repeatCount == 0 && !keyguardOn) {
2935 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2936 if (shortcutIntent != null) {
2937 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002938 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002939 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002940 } catch (ActivityNotFoundException ex) {
2941 Slog.w(TAG, "Dropping shortcut key combination because "
2942 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002943 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002944 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002945 } else {
2946 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002947 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002948 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002949 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002950 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002951 }
2952 }
2953
Jeff Brown68b909d2011-12-07 16:36:01 -08002954 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002955 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002956 && (metaState & KeyEvent.META_META_ON) != 0) {
2957 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002958 if (kcm.isPrintingKey(keyCode)) {
2959 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2960 metaState & ~(KeyEvent.META_META_ON
2961 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2962 if (shortcutIntent != null) {
2963 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2964 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002965 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002966 } catch (ActivityNotFoundException ex) {
2967 Slog.w(TAG, "Dropping shortcut key combination because "
2968 + "the activity to which it is registered was not found: "
2969 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2970 }
2971 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002972 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002973 }
2974 }
2975
Jeff Brown6651a632011-11-28 12:59:11 -08002976 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002977 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002978 String category = sApplicationLaunchKeyCategories.get(keyCode);
2979 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002980 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002981 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2982 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002983 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002984 } catch (ActivityNotFoundException ex) {
2985 Slog.w(TAG, "Dropping application launch key because "
2986 + "the activity to which it is registered was not found: "
2987 + "keyCode=" + keyCode + ", category=" + category, ex);
2988 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002989 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002990 }
2991 }
2992
Michael Wright61c46752014-08-21 16:57:33 -07002993 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002994 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002995 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002996 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002997 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002998 mRecentAppsHeldModifiers = shiftlessModifiers;
2999 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08003000 return -1;
3001 }
3002 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07003003 } else if (!down && mRecentAppsHeldModifiers != 0
3004 && (metaState & mRecentAppsHeldModifiers) == 0) {
3005 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07003006 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08003007 }
3008
Jeff Browncf39bdf2012-05-18 14:41:19 -07003009 // Handle keyboard language switching.
3010 if (down && repeatCount == 0
3011 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3012 || (keyCode == KeyEvent.KEYCODE_SPACE
3013 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
3014 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
3015 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
3016 return -1;
3017 }
3018 if (mLanguageSwitchKeyPressed && !down
3019 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3020 || keyCode == KeyEvent.KEYCODE_SPACE)) {
3021 mLanguageSwitchKeyPressed = false;
3022 return -1;
3023 }
3024
Jeff Brown13f00f02014-10-31 14:45:50 -07003025 if (isValidGlobalKey(keyCode)
3026 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003027 return -1;
3028 }
3029
Michael Wright6a62e552014-06-03 19:19:48 -07003030 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003031 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003032 return -1;
3033 }
3034
Jeff Brown68b909d2011-12-07 16:36:01 -08003035 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003036 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003037 }
3038
Jeff Brown3915bb82010-11-05 15:02:16 -07003039 /** {@inheritDoc} */
3040 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003041 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003042 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003043 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003044 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3045 + ", flags=" + event.getFlags()
3046 + ", keyCode=" + event.getKeyCode()
3047 + ", scanCode=" + event.getScanCode()
3048 + ", metaState=" + event.getMetaState()
3049 + ", repeatCount=" + event.getRepeatCount()
3050 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003051 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003052
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003053 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003054 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3055 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003056 final int keyCode = event.getKeyCode();
3057 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003058 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3059 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003060
Jeff Brown54875002011-04-06 15:33:01 -07003061 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003062 final FallbackAction fallbackAction;
3063 if (initialDown) {
3064 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3065 } else {
3066 fallbackAction = mFallbackActions.get(keyCode);
3067 }
3068
3069 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003070 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003071 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3072 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003073 }
3074
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003075 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3076 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003077 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003078 event.getAction(), fallbackAction.keyCode,
3079 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003080 event.getDeviceId(), event.getScanCode(),
3081 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003082
3083 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3084 fallbackEvent.recycle();
3085 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003086 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003087
3088 if (initialDown) {
3089 mFallbackActions.put(keyCode, fallbackAction);
3090 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3091 mFallbackActions.remove(keyCode);
3092 fallbackAction.recycle();
3093 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003094 }
3095 }
3096
Jeff Brown40013652012-05-16 21:22:36 -07003097 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003098 if (fallbackEvent == null) {
3099 Slog.d(TAG, "No fallback.");
3100 } else {
3101 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3102 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003103 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003104 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003105 }
3106
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003107 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003108 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003109 if ((actions & ACTION_PASS_TO_USER) != 0) {
3110 long delayMillis = interceptKeyBeforeDispatching(
3111 win, fallbackEvent, policyFlags);
3112 if (delayMillis == 0) {
3113 return true;
3114 }
3115 }
3116 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003117 }
3118
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003119 private void launchAssistLongPressAction() {
3120 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3121 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3122
3123 // launch the search activity
3124 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3125 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3126 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003127 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003128 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003129 SearchManager searchManager = getSearchManager();
3130 if (searchManager != null) {
3131 searchManager.stopSearch();
3132 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003133 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003134 } catch (ActivityNotFoundException e) {
3135 Slog.w(TAG, "No activity to handle assist long press action.", e);
3136 }
3137 }
3138
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003139 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003140 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003141 if (!isUserSetupComplete()) {
3142 // Disable opening assist window during setup
3143 return;
3144 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003145 Bundle args = null;
3146 if (deviceId > Integer.MIN_VALUE) {
3147 args = new Bundle();
3148 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003149 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003150 if ((mContext.getResources().getConfiguration().uiMode
3151 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3152 // On TV, use legacy handling until assistants are implemented in the proper way.
3153 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3154 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3155 } else {
3156 try {
3157 if (hint != null) {
3158 if (args == null) {
3159 args = new Bundle();
3160 }
3161 args.putBoolean(hint, true);
3162 }
3163 IStatusBarService statusbar = getStatusBarService();
3164 if (statusbar != null) {
3165 statusbar.startAssist(args);
3166 }
3167 } catch (RemoteException e) {
3168 Slog.e(TAG, "RemoteException when starting assist", e);
3169 // re-acquire status bar service next time it is needed.
3170 mStatusBarService = null;
3171 }
3172 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003173 }
3174
Bart Sears8b1c27c2015-03-18 23:51:02 +00003175 private void startActivityAsUser(Intent intent, UserHandle handle) {
3176 if (isUserSetupComplete()) {
3177 mContext.startActivityAsUser(intent, handle);
3178 } else {
3179 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3180 }
3181 }
3182
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003183 private SearchManager getSearchManager() {
3184 if (mSearchManager == null) {
3185 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3186 }
3187 return mSearchManager;
3188 }
3189
Jeff Browncaca8812013-05-09 13:34:33 -07003190 private void preloadRecentApps() {
3191 mPreloadedRecentApps = true;
3192 try {
3193 IStatusBarService statusbar = getStatusBarService();
3194 if (statusbar != null) {
3195 statusbar.preloadRecentApps();
3196 }
3197 } catch (RemoteException e) {
3198 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3199 // re-acquire status bar service next time it is needed.
3200 mStatusBarService = null;
3201 }
3202 }
3203
3204 private void cancelPreloadRecentApps() {
3205 if (mPreloadedRecentApps) {
3206 mPreloadedRecentApps = false;
3207 try {
3208 IStatusBarService statusbar = getStatusBarService();
3209 if (statusbar != null) {
3210 statusbar.cancelPreloadRecentApps();
3211 }
3212 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003213 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003214 // re-acquire status bar service next time it is needed.
3215 mStatusBarService = null;
3216 }
3217 }
3218 }
3219
3220 private void toggleRecentApps() {
3221 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003222 try {
3223 IStatusBarService statusbar = getStatusBarService();
3224 if (statusbar != null) {
3225 statusbar.toggleRecentApps();
3226 }
3227 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003228 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3229 // re-acquire status bar service next time it is needed.
3230 mStatusBarService = null;
3231 }
3232 }
3233
Craig Mautner84984fa2014-06-19 11:19:20 -07003234 @Override
3235 public void showRecentApps() {
3236 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3237 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3238 }
3239
Winson Chung1e8d71b2014-05-16 17:05:22 -07003240 private void showRecentApps(boolean triggeredFromAltTab) {
3241 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3242 try {
3243 IStatusBarService statusbar = getStatusBarService();
3244 if (statusbar != null) {
3245 statusbar.showRecentApps(triggeredFromAltTab);
3246 }
3247 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003248 Slog.e(TAG, "RemoteException when showing recent apps", e);
3249 // re-acquire status bar service next time it is needed.
3250 mStatusBarService = null;
3251 }
3252 }
3253
Winson Chungcdcd4872014-08-05 18:00:13 -07003254 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003255 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3256 try {
3257 IStatusBarService statusbar = getStatusBarService();
3258 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003259 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003260 }
3261 } catch (RemoteException e) {
3262 Slog.e(TAG, "RemoteException when closing recent apps", e);
3263 // re-acquire status bar service next time it is needed.
3264 mStatusBarService = null;
3265 }
3266 }
3267
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003268 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003269 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003270 }
3271
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003272 /**
3273 * A home key -> launch home action was detected. Take the appropriate action
3274 * given the situation with the keyguard.
3275 */
Bryce Lee662ed802015-04-10 20:11:39 +00003276 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3277 if (respectKeyguard) {
3278 if (isKeyguardShowingAndNotOccluded()) {
3279 // don't launch home if keyguard showing
3280 return;
3281 }
3282
3283 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3284 // when in keyguard restricted mode, must first verify unlock
3285 // before launching home
3286 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3287 @Override
3288 public void onKeyguardExitResult(boolean success) {
3289 if (success) {
3290 try {
3291 ActivityManagerNative.getDefault().stopAppSwitches();
3292 } catch (RemoteException e) {
3293 }
3294 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3295 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003296 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003297 }
Bryce Lee662ed802015-04-10 20:11:39 +00003298 });
3299 return;
3300 }
3301 }
3302
3303 // no keyguard stuff to worry about, just launch home!
3304 try {
3305 ActivityManagerNative.getDefault().stopAppSwitches();
3306 } catch (RemoteException e) {
3307 }
3308 if (mRecentsVisible) {
3309 // Hide Recents and notify it to launch Home
3310 if (awakenFromDreams) {
3311 awakenDreams();
3312 }
3313 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3314 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003315 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003316 // Otherwise, just launch Home
3317 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3318 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003319 }
3320 }
3321
John Spurlock04db1762013-05-13 12:46:41 -04003322 private final Runnable mClearHideNavigationFlag = new Runnable() {
3323 @Override
3324 public void run() {
3325 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3326 // Clear flags.
3327 mForceClearedSystemUiFlags &=
3328 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3329 }
3330 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003331 }
3332 };
3333
3334 /**
3335 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3336 * to determine when the nav bar should be shown and prevent applications from
3337 * receiving those touches.
3338 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003339 final class HideNavInputEventReceiver extends InputEventReceiver {
3340 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3341 super(inputChannel, looper);
3342 }
3343
Dianne Hackborndf89e652011-10-06 22:35:11 -07003344 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003345 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003346 boolean handled = false;
3347 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003348 if (event instanceof MotionEvent
3349 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3350 final MotionEvent motionEvent = (MotionEvent)event;
3351 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003352 // When the user taps down, we re-show the nav bar.
3353 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003354 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003355 // Any user activity always causes us to show the
3356 // navigation controls, if they had been hidden.
3357 // We also clear the low profile and only content
3358 // flags so that tapping on the screen will atomically
3359 // restore all currently hidden screen decorations.
3360 int newVal = mResettingSystemUiFlags |
3361 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3362 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3363 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003364 if (mResettingSystemUiFlags != newVal) {
3365 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003366 changed = true;
3367 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003368 // We don't allow the system's nav bar to be hidden
3369 // again for 1 second, to prevent applications from
3370 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003371 newVal = mForceClearedSystemUiFlags |
3372 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003373 if (mForceClearedSystemUiFlags != newVal) {
3374 mForceClearedSystemUiFlags = newVal;
3375 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003376 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003377 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003378 }
3379 if (changed) {
3380 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3381 }
3382 }
3383 }
3384 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003385 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003386 }
3387 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003388 }
3389 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3390 new InputEventReceiver.Factory() {
3391 @Override
3392 public InputEventReceiver createInputEventReceiver(
3393 InputChannel inputChannel, Looper looper) {
3394 return new HideNavInputEventReceiver(inputChannel, looper);
3395 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003396 };
3397
3398 @Override
3399 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003400 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3401 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003402 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003403
Dianne Hackborndf89e652011-10-06 22:35:11 -07003404 // Reset any bits in mForceClearingStatusBarVisibility that
3405 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003406 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003407 // Clear any bits in the new visibility that are currently being
3408 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003409 return visibility & ~mResettingSystemUiFlags
3410 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003411 }
3412
Craig Mautner69b08182012-09-05 13:07:13 -07003413 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003414 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3415 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003416 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003417 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3418 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003419
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003420 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3421 if (useOutsets) {
3422 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3423 if (outset > 0) {
3424 if (displayRotation == Surface.ROTATION_0) {
3425 outOutsets.bottom += outset;
3426 } else if (displayRotation == Surface.ROTATION_90) {
3427 outOutsets.right += outset;
3428 } else if (displayRotation == Surface.ROTATION_180) {
3429 outOutsets.top += outset;
3430 } else if (displayRotation == Surface.ROTATION_270) {
3431 outOutsets.left += outset;
3432 }
3433 }
3434 }
3435
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003436 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003437 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003438 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003439 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003440 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003441 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3442 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3443 } else {
3444 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3445 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3446 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003447 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3448 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003449 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003450 availRight - mStableFullscreenRight,
3451 availBottom - mStableFullscreenBottom);
3452 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003453 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003454 availRight - mStableRight, availBottom - mStableBottom);
3455 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003456 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003457 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003458 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003459 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003460 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003461 availRight - mCurRight, availBottom - mCurBottom);
3462 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003463 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003464 availRight - mCurRight, availBottom - mCurBottom);
3465 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003466
3467 outStableInsets.set(mStableLeft, mStableTop,
3468 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003469 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003470 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003471 outContentInsets.setEmpty();
3472 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003473 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003474
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003475 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3476 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3477 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3478 }
3479
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003480 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003481 @Override
3482 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3483 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003484 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003485 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3486 if (isDefaultDisplay) {
3487 switch (displayRotation) {
3488 case Surface.ROTATION_90:
3489 overscanLeft = mOverscanTop;
3490 overscanTop = mOverscanRight;
3491 overscanRight = mOverscanBottom;
3492 overscanBottom = mOverscanLeft;
3493 break;
3494 case Surface.ROTATION_180:
3495 overscanLeft = mOverscanRight;
3496 overscanTop = mOverscanBottom;
3497 overscanRight = mOverscanLeft;
3498 overscanBottom = mOverscanTop;
3499 break;
3500 case Surface.ROTATION_270:
3501 overscanLeft = mOverscanBottom;
3502 overscanTop = mOverscanLeft;
3503 overscanRight = mOverscanTop;
3504 overscanBottom = mOverscanRight;
3505 break;
3506 default:
3507 overscanLeft = mOverscanLeft;
3508 overscanTop = mOverscanTop;
3509 overscanRight = mOverscanRight;
3510 overscanBottom = mOverscanBottom;
3511 break;
3512 }
3513 } else {
3514 overscanLeft = 0;
3515 overscanTop = 0;
3516 overscanRight = 0;
3517 overscanBottom = 0;
3518 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003519 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3520 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3521 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3522 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003523 mSystemLeft = 0;
3524 mSystemTop = 0;
3525 mSystemRight = displayWidth;
3526 mSystemBottom = displayHeight;
3527 mUnrestrictedScreenLeft = overscanLeft;
3528 mUnrestrictedScreenTop = overscanTop;
3529 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3530 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3531 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3532 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003533 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3534 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003535 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003536 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003537 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003538 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003539 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003540 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003541 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003542 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003543 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003544 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003545
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003546 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3547 final Rect pf = mTmpParentFrame;
3548 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003549 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003550 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003551 final Rect dcf = mTmpDecorFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003552 final Rect osf = mTmpOutsetFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003553 pf.left = df.left = of.left = vf.left = mDockLeft;
3554 pf.top = df.top = of.top = vf.top = mDockTop;
3555 pf.right = df.right = of.right = vf.right = mDockRight;
3556 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003557 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003558
Craig Mautner69b08182012-09-05 13:07:13 -07003559 if (isDefaultDisplay) {
3560 // For purposes of putting out fake window up to steal focus, we will
3561 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003562 final int sysui = mLastSystemUiFlags;
3563 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003564 boolean navTranslucent = (sysui
3565 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003566 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3567 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3568 boolean navAllowedHidden = immersive || immersiveSticky;
3569 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003570 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3571 if (!isKeyguardShowing) {
3572 navTranslucent &= areTranslucentBarsAllowed();
3573 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003574
Craig Mautner69b08182012-09-05 13:07:13 -07003575 // When the navigation bar isn't visible, we put up a fake
3576 // input window to catch all touch events. This way we can
3577 // detect when the user presses anywhere to bring back the nav
3578 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003579 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003580 if (mInputConsumer != null) {
3581 mInputConsumer.dismiss();
3582 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003583 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003584 } else if (mInputConsumer == null) {
3585 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3586 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003587 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003588
Craig Mautner69b08182012-09-05 13:07:13 -07003589 // For purposes of positioning and showing the nav bar, if we have
3590 // decided that it can't be hidden (because of the screen aspect ratio),
3591 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003592 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003593
John Spurlockad3e6cb2013-04-30 08:47:43 -04003594 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003595 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003596 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003597 // Force the navigation bar to its appropriate place and
3598 // size. We need to do this directly, instead of relying on
3599 // it to bubble up from the nav bar, because this needs to
3600 // change atomically with screen rotations.
3601 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3602 if (mNavigationBarOnBottom) {
3603 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003604 int top = displayHeight - overscanBottom
3605 - mNavigationBarHeightForRotation[displayRotation];
3606 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003607 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003608 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003609 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003610 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003611 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003612 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003613 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3614 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003615 } else {
3616 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003617 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003618 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003619 if (navVisible && !navTranslucent && !navAllowedHidden
3620 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003621 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003622 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003623 // and not in the process of animating on or off, then
3624 // we can tell the app that it is covered by it.
3625 mSystemBottom = mTmpNavigationFrame.top;
3626 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003627 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003628 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003629 int left = displayWidth - overscanRight
3630 - mNavigationBarWidthForRotation[displayRotation];
3631 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003632 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003633 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003634 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003635 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003636 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003637 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003638 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3639 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003640 } else {
3641 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003642 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003643 }
Adrian Roosfe836fa2015-08-11 17:36:43 -07003644 if (navVisible && !navTranslucent && !navAllowedHidden
3645 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003646 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003647 // If the nav bar is currently requested to be visible,
3648 // and not in the process of animating on or off, then
3649 // we can tell the app that it is covered by it.
3650 mSystemRight = mTmpNavigationFrame.left;
3651 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003652 }
Craig Mautner69b08182012-09-05 13:07:13 -07003653 // Make sure the content and current rectangles are updated to
3654 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003655 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3656 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3657 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3658 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003659 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3660 // And compute the final frame.
3661 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003662 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003663 mTmpNavigationFrame, mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003664 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003665 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003666 updateSysUiVisibility = true;
3667 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003668 }
Craig Mautnereda67292013-04-28 13:50:14 -07003669 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003670 mDockLeft, mDockTop, mDockRight, mDockBottom));
3671
3672 // decide where the status bar goes ahead of time
3673 if (mStatusBar != null) {
3674 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003675 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3676 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3677 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3678 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3679 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003680 vf.left = mStableLeft;
3681 vf.top = mStableTop;
3682 vf.right = mStableRight;
3683 vf.bottom = mStableBottom;
3684
3685 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3686
3687 // Let the status bar determine its size.
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003688 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3689 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3690 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
Craig Mautner69b08182012-09-05 13:07:13 -07003691
3692 // For layout, the status bar is always at the top with our fixed height.
3693 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3694
John Spurlocke1f366f2013-08-05 12:22:40 -04003695 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003696 boolean statusBarTranslucent = (sysui
3697 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003698 if (!isKeyguardShowing) {
3699 statusBarTranslucent &= areTranslucentBarsAllowed();
3700 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003701
Craig Mautner69b08182012-09-05 13:07:13 -07003702 // If the status bar is hidden, we don't want to cause
3703 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003704 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003705 // Status bar may go away, so the screen area it occupies
3706 // is available to apps but just covering them when the
3707 // status bar is visible.
3708 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3709
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003710 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3711 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3712 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3713 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003714
Craig Mautnereda67292013-04-28 13:50:14 -07003715 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003716 String.format(
3717 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3718 mDockLeft, mDockTop, mDockRight, mDockBottom,
3719 mContentLeft, mContentTop, mContentRight, mContentBottom,
3720 mCurLeft, mCurTop, mCurRight, mCurBottom));
3721 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003722 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003723 && !statusBarTransient && !statusBarTranslucent
3724 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003725 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003726 // and not in the process of animating on or off, then
3727 // we can tell the app that it is covered by it.
3728 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3729 }
John Spurlock27735a42013-08-14 17:57:38 -04003730 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003731 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003732 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003733 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003734 if (updateSysUiVisibility) {
3735 updateSystemUiVisibilityLw();
3736 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003737 }
3738 }
3739
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003740 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003741 @Override
John Spurlock46646232013-09-30 22:32:42 -04003742 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003743 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3744 return mStatusBar.getSurfaceLayer();
3745 }
3746
3747 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3748 return mNavigationBar.getSurfaceLayer();
3749 }
3750
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003751 return 0;
3752 }
3753
Craig Mautner967212c2013-04-13 21:10:58 -07003754 @Override
3755 public void getContentRectLw(Rect r) {
3756 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3757 }
3758
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003759 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3760 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003761 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3762 // Here's a special case: if this attached window is a panel that is
3763 // above the dock window, and the window it is attached to is below
3764 // the dock window, then the frames we computed for the window it is
3765 // attached to can not be used because the dock is effectively part
3766 // of the underlying window and the attached window is floating on top
3767 // of the whole thing. So, we ignore the attached window and explicitly
3768 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003769 df.left = of.left = cf.left = vf.left = mDockLeft;
3770 df.top = of.top = cf.top = vf.top = mDockTop;
3771 df.right = of.right = cf.right = vf.right = mDockRight;
3772 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003773 } else {
3774 // The effective display frame of the attached window depends on
3775 // whether it is taking care of insetting its content. If not,
3776 // we need to use the parent's content frame so that the entire
3777 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003778 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003779 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003780 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003781 // Set the content frame of the attached window to the parent's decor frame
3782 // (same as content frame when IME isn't present) if specifically requested by
3783 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3784 // Otherwise, use the overscan frame.
3785 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3786 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003787 } else {
3788 // If the window is resizing, then we want to base the content
3789 // frame on our attached content frame to resize... however,
3790 // things can be tricky if the attached window is NOT in resize
3791 // mode, in which case its content frame will be larger.
3792 // Ungh. So to deal with that, make sure the content frame
3793 // we end up using is not covering the IM dock.
3794 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003795 if (attached.isVoiceInteraction()) {
3796 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3797 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3798 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3799 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3800 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003801 if (cf.left < mContentLeft) cf.left = mContentLeft;
3802 if (cf.top < mContentTop) cf.top = mContentTop;
3803 if (cf.right > mContentRight) cf.right = mContentRight;
3804 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3805 }
3806 }
3807 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003808 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003809 vf.set(attached.getVisibleFrameLw());
3810 }
3811 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3812 // window should be positioned relative to its parent or the entire
3813 // screen.
3814 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3815 ? attached.getFrameLw() : df);
3816 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003817
3818 private void applyStableConstraints(int sysui, int fl, Rect r) {
3819 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3820 // If app is requesting a stable layout, don't let the
3821 // content insets go below the stable values.
3822 if ((fl & FLAG_FULLSCREEN) != 0) {
3823 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3824 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3825 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3826 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3827 } else {
3828 if (r.left < mStableLeft) r.left = mStableLeft;
3829 if (r.top < mStableTop) r.top = mStableTop;
3830 if (r.right > mStableRight) r.right = mStableRight;
3831 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3832 }
3833 }
3834 }
3835
Jorim Jaggiaa806142015-05-20 18:04:16 -07003836 private boolean canReceiveInput(WindowState win) {
3837 boolean notFocusable =
3838 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3839 boolean altFocusableIm =
3840 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3841 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3842 return !notFocusableForIm;
3843 }
3844
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003845 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003846 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003847 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003848 // We've already done the navigation bar and status bar. If the status bar can receive
3849 // input, we need to layout it again to accomodate for the IME window.
3850 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003851 return;
3852 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003853 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003854 final boolean isDefaultDisplay = win.isDefaultDisplay();
3855 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003856 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3857 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003858 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003859 offsetInputMethodWindowLw(mLastInputMethodWindow);
3860 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003861
John Spurlockc6d1c602014-01-17 15:22:06 -05003862 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003863 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003864 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003865
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003866 final Rect pf = mTmpParentFrame;
3867 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003868 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003869 final Rect cf = mTmpContentFrame;
3870 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003871 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003872 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003873 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003874 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003875
3876 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003877 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003878
Craig Mautnerf683b562012-10-02 11:10:57 -07003879 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3880
Adrian Roosfa104232014-06-20 16:10:14 -07003881 if (isDefaultDisplay) {
3882 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3883 } else {
3884 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3885 }
3886
Craig Mautner69b08182012-09-05 13:07:13 -07003887 if (!isDefaultDisplay) {
3888 if (attached != null) {
3889 // If this window is attached to another, our display
3890 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003891 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003892 } else {
3893 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003894 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3895 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3896 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003897 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003898 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003899 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003900 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003901 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003902 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3903 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3904 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003905 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003906 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003907 // ...with content insets above the nav bar
3908 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003909 // IM dock windows always go to the bottom of the screen.
3910 attrs.gravity = Gravity.BOTTOM;
3911 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003912 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003913 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003914 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003915 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3916 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003917 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003918 // Note: In Phone landscape mode, the button bar should also be excluded.
3919 cf.right = vf.right = mStableRight;
3920 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003921 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003922 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003923 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3924 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3925 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3926 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3927 cf.left = vf.left = mStableLeft;
3928 cf.top = vf.top = mStableTop;
3929 cf.right = vf.right = mStableRight;
3930 vf.bottom = mStableBottom;
3931 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003932 } else {
John Spurlock46646232013-09-30 22:32:42 -04003933
3934 // Default policy decor for the default display
3935 dcf.left = mSystemLeft;
3936 dcf.top = mSystemTop;
3937 dcf.right = mSystemRight;
3938 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003939 final boolean inheritTranslucentDecor = (attrs.privateFlags
3940 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003941 final boolean isAppWindow =
3942 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3943 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3944 final boolean topAtRest =
3945 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3946 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003947 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3948 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003949 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3950 && (fl & WindowManager.LayoutParams.
3951 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003952 // Ensure policy decor includes status bar
3953 dcf.top = mStableTop;
3954 }
John Spurlockbd957402013-10-03 11:38:39 -04003955 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003956 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3957 && (fl & WindowManager.LayoutParams.
3958 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003959 // Ensure policy decor includes navigation bar
3960 dcf.bottom = mStableBottom;
3961 dcf.right = mStableRight;
3962 }
3963 }
3964
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003965 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3966 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003967 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003968 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003969 // This is the case for a normal activity window: we want it
3970 // to cover all of the screen space, and it can take care of
3971 // moving its contents to account for screen decorations that
3972 // intrude into that space.
3973 if (attached != null) {
3974 // If this window is attached to another, our display
3975 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003976 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003977 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003978 if (attrs.type == TYPE_STATUS_BAR_PANEL
3979 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003980 // Status bar panels are the only windows who can go on top of
3981 // the status bar. They are protected by the STATUS_BAR_SERVICE
3982 // permission, so they have the same privileges as the status
3983 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003984 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003985 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003986
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003987 pf.left = df.left = of.left = hasNavBar
3988 ? mDockLeft : mUnrestrictedScreenLeft;
3989 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3990 pf.right = df.right = of.right = hasNavBar
3991 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3992 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3993 pf.bottom = df.bottom = of.bottom = hasNavBar
3994 ? mRestrictedScreenTop+mRestrictedScreenHeight
3995 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003996
Craig Mautnereda67292013-04-28 13:50:14 -07003997 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003998 "Laying out status bar window: (%d,%d - %d,%d)",
3999 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04004000 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004001 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4002 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4003 // Asking to layout into the overscan region, so give it that pure
4004 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004005 pf.left = df.left = of.left = mOverscanScreenLeft;
4006 pf.top = df.top = of.top = mOverscanScreenTop;
4007 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
4008 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
4009 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004010 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004011 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004012 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4013 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004014 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08004015 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004016 // only do this for application windows to ensure no window that
4017 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08004018 pf.left = df.left = mOverscanScreenLeft;
4019 pf.top = df.top = mOverscanScreenTop;
4020 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4021 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004022 // We need to tell the app about where the frame inside the overscan
4023 // is, so it can inset its content by that amount -- it didn't ask
4024 // to actually extend itself into the overscan region.
4025 of.left = mUnrestrictedScreenLeft;
4026 of.top = mUnrestrictedScreenTop;
4027 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4028 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004029 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004030 pf.left = df.left = mRestrictedOverscanScreenLeft;
4031 pf.top = df.top = mRestrictedOverscanScreenTop;
4032 pf.right = df.right = mRestrictedOverscanScreenLeft
4033 + mRestrictedOverscanScreenWidth;
4034 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4035 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004036 // We need to tell the app about where the frame inside the overscan
4037 // is, so it can inset its content by that amount -- it didn't ask
4038 // to actually extend itself into the overscan region.
4039 of.left = mUnrestrictedScreenLeft;
4040 of.top = mUnrestrictedScreenTop;
4041 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4042 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004043 }
Craig Mautner69b08182012-09-05 13:07:13 -07004044
John Spurlock46646232013-09-30 22:32:42 -04004045 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004046 if (win.isVoiceInteraction()) {
4047 cf.left = mVoiceContentLeft;
4048 cf.top = mVoiceContentTop;
4049 cf.right = mVoiceContentRight;
4050 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004051 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004052 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4053 cf.left = mDockLeft;
4054 cf.top = mDockTop;
4055 cf.right = mDockRight;
4056 cf.bottom = mDockBottom;
4057 } else {
4058 cf.left = mContentLeft;
4059 cf.top = mContentTop;
4060 cf.right = mContentRight;
4061 cf.bottom = mContentBottom;
4062 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004063 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004064 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004065 // Full screen windows are always given a layout that is as if the
4066 // status bar and other transient decors are gone. This is to avoid
4067 // bad states when moving from a window that is not hding the
4068 // status bar to one that is.
4069 cf.left = mRestrictedScreenLeft;
4070 cf.top = mRestrictedScreenTop;
4071 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4072 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004073 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004074 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004075 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4076 vf.left = mCurLeft;
4077 vf.top = mCurTop;
4078 vf.right = mCurRight;
4079 vf.bottom = mCurBottom;
4080 } else {
4081 vf.set(cf);
4082 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004083 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004084 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4085 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4086 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004087 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4088 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004089 // A window that has requested to fill the entire screen just
4090 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004091 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004092 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4093 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004094 pf.left = df.left = of.left = cf.left = hasNavBar
4095 ? mDockLeft : mUnrestrictedScreenLeft;
4096 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4097 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004098 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004099 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004100 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004101 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004102 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004103 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004104 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4105 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004106 } else if (attrs.type == TYPE_NAVIGATION_BAR
4107 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004108 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004109 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4110 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4111 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4112 + mUnrestrictedScreenWidth;
4113 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4114 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004115 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004116 "Laying out navigation bar window: (%d,%d - %d,%d)",
4117 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004118 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4119 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004120 && ((fl & FLAG_FULLSCREEN) != 0)) {
4121 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004122 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4123 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4124 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4125 + mOverscanScreenWidth;
4126 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4127 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004128 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004129 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004130 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4131 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4132 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4133 + mOverscanScreenWidth;
4134 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4135 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004136 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004137 // The wallpaper also has Real Ultimate Power, but we want to tell
4138 // it about the overscan area.
4139 pf.left = df.left = mOverscanScreenLeft;
4140 pf.top = df.top = mOverscanScreenTop;
4141 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4142 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4143 of.left = cf.left = mUnrestrictedScreenLeft;
4144 of.top = cf.top = mUnrestrictedScreenTop;
4145 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4146 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004147 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004148 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4149 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4150 // Asking to layout into the overscan region, so give it that pure
4151 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004152 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4153 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4154 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004155 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004156 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004157 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004158 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004159 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004160 && (attrs.type == TYPE_STATUS_BAR
4161 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004162 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004163 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4164 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004165 // Asking for layout as if the nav bar is hidden, lets the
4166 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004167 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004168 // can be above the nav bar can do this.
4169 // XXX This assumes that an app asking for this will also
4170 // ask for layout in only content. We can't currently figure out
4171 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004172 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4173 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4174 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4175 + mUnrestrictedScreenWidth;
4176 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4177 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004178 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004179 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4180 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4181 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4182 + mRestrictedScreenWidth;
4183 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4184 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004185 }
Craig Mautner69b08182012-09-05 13:07:13 -07004186
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004187 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004188
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004189 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4190 vf.left = mCurLeft;
4191 vf.top = mCurTop;
4192 vf.right = mCurRight;
4193 vf.bottom = mCurBottom;
4194 } else {
4195 vf.set(cf);
4196 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004197 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004198 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4199 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004200 // A child window should be placed inside of the same visible
4201 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004202 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004203 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004204 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4205 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004206 // Otherwise, a normal window must be placed inside the content
4207 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004208 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4209 // Status bar panels and the volume dialog are the only windows who can go on
4210 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004211 // permission, so they have the same privileges as the status
4212 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004213 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4214 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4215 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4216 + mRestrictedScreenWidth;
4217 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4218 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004219 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004220 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004221 pf.left = df.left = of.left = cf.left = mStableLeft;
4222 pf.top = df.top = of.top = cf.top = mStableTop;
4223 pf.right = df.right = of.right = cf.right = mStableRight;
4224 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004225 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004226 pf.left = mContentLeft;
4227 pf.top = mContentTop;
4228 pf.right = mContentRight;
4229 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004230 if (win.isVoiceInteraction()) {
4231 df.left = of.left = cf.left = mVoiceContentLeft;
4232 df.top = of.top = cf.top = mVoiceContentTop;
4233 df.right = of.right = cf.right = mVoiceContentRight;
4234 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4235 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004236 df.left = of.left = cf.left = mDockLeft;
4237 df.top = of.top = cf.top = mDockTop;
4238 df.right = of.right = cf.right = mDockRight;
4239 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004240 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004241 df.left = of.left = cf.left = mContentLeft;
4242 df.top = of.top = cf.top = mContentTop;
4243 df.right = of.right = cf.right = mContentRight;
4244 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004245 }
4246 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4247 vf.left = mCurLeft;
4248 vf.top = mCurTop;
4249 vf.right = mCurRight;
4250 vf.bottom = mCurBottom;
4251 } else {
4252 vf.set(cf);
4253 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004254 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004255 }
4256 }
Craig Mautner69b08182012-09-05 13:07:13 -07004257
Craig Mautnerb816bed2013-07-23 10:26:17 -07004258 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4259 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004260 df.left = df.top = -10000;
4261 df.right = df.bottom = 10000;
4262 if (attrs.type != TYPE_WALLPAPER) {
4263 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4264 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4265 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004266 }
4267
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004268 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4269 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004270 // We only want to apply outsets to certain types of windows. For example, we never want to
4271 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004272 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004273 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004274 osf = mTmpOutsetFrame;
4275 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4276 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4277 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004278 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004279 if (rotation == Surface.ROTATION_0) {
4280 osf.bottom += outset;
4281 } else if (rotation == Surface.ROTATION_90) {
4282 osf.right += outset;
4283 } else if (rotation == Surface.ROTATION_180) {
4284 osf.top -= outset;
4285 } else if (rotation == Surface.ROTATION_270) {
4286 osf.left -= outset;
4287 }
4288 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4289 + " with rotation " + rotation + ", result: " + osf);
4290 }
4291 }
4292
Craig Mautnereda67292013-04-28 13:50:14 -07004293 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004294 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004295 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004296 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004297 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004298 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004299 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004300 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004301 + " sf=" + sf.toShortString()
4302 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004303
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004304 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004305
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004306 // Dock windows carve out the bottom of the screen, so normal windows
4307 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004308 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4309 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004310 setLastInputMethodWindowLw(null, null);
4311 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004312 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004313 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4314 && !win.getGivenInsetsPendingLw()) {
4315 offsetVoiceInputWindowLw(win);
4316 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004317 }
4318
satok1bc0a492012-04-25 22:47:12 +09004319 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004320 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004321 top += win.getGivenContentInsetsLw().top;
4322 if (mContentBottom > top) {
4323 mContentBottom = top;
4324 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004325 if (mVoiceContentBottom > top) {
4326 mVoiceContentBottom = top;
4327 }
satok1bc0a492012-04-25 22:47:12 +09004328 top = win.getVisibleFrameLw().top;
4329 top += win.getGivenVisibleInsetsLw().top;
4330 if (mCurBottom > top) {
4331 mCurBottom = top;
4332 }
Craig Mautnereda67292013-04-28 13:50:14 -07004333 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004334 + mDockBottom + " mContentBottom="
4335 + mContentBottom + " mCurBottom=" + mCurBottom);
4336 }
4337
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004338 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004339 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004340 top += win.getGivenContentInsetsLw().top;
4341 if (mVoiceContentBottom > top) {
4342 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004343 }
4344 }
4345
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004346 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004347 @Override
4348 public void finishLayoutLw() {
4349 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004350 }
4351
4352 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004353 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004354 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004355 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004356 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004357 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004358 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004359 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004360 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004361 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004362 mForcingShowNavBar = false;
4363 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004364
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004365 mHideLockScreen = false;
4366 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004367 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004368 mShowingLockscreen = false;
4369 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004370 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004371 mKeyguardSecure = isKeyguardSecure();
4372 mKeyguardSecureIncludingHidden = mKeyguardSecure
4373 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004374 }
4375
4376 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004377 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004378 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4379 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004380 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4381 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004382 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004383 if (mTopFullscreenOpaqueWindowState == null
4384 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4385 mForcingShowNavBar = true;
4386 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004387 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004388 if (attrs.type == TYPE_STATUS_BAR) {
4389 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4390 mForceStatusBarFromKeyguard = true;
Jorim Jaggie1de9f62015-09-23 14:59:50 -07004391 mShowingLockscreen = true;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004392 }
4393 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4394 mForceStatusBarTransparent = true;
4395 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004396 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004397
4398 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4399 && attrs.type < FIRST_SYSTEM_WINDOW;
4400 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4401 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4402
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004403 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004404 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004405 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004406 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004407 mForceStatusBarFromKeyguard = true;
4408 } else {
4409 mForceStatusBar = true;
4410 }
4411 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004412 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004413 // If the lockscreen was showing when the dream started then wait
4414 // for the dream to draw before hiding the lockscreen.
4415 if (!mDreamingLockscreen
4416 || (win.isVisibleLw() && win.hasDrawnLw())) {
4417 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004418 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004419 }
4420 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004421
Yohei Yukawad1a09222015-06-30 16:22:05 -07004422 final IApplicationToken appToken = win.getAppToken();
4423
4424 // For app windows that are not attached, we decide if all windows in the app they
4425 // represent should be hidden or if we should hide the lockscreen. For attached app
4426 // windows we defer the decision to the window it is attached to.
4427 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004428 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004429 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004430 mAppsToBeHidden.remove(appToken);
4431 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004432 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004433 if (dismissKeyguard && !mKeyguardSecure) {
4434 mAppsThatDismissKeyguard.add(appToken);
Selim Cinek90b5e072015-08-28 17:05:56 -07004435 } else if (win.isDrawnLw() || win.hasAppShownWindows()) {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004436 mWinShowWhenLocked = win;
4437 mHideLockScreen = true;
4438 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004439 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004440 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004441 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004442 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004443 mAppsToBeHidden.add(appToken);
4444 } else {
4445 mAppsToBeHidden.remove(appToken);
4446 }
4447 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004448 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004449 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004450 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004451 if (attrs.x == 0 && attrs.y == 0
4452 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4453 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4454 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4455 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004456 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4457 mTopFullscreenOpaqueOrDimmingWindowState = win;
4458 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004459 if (!mAppsThatDismissKeyguard.isEmpty() &&
4460 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4461 if (DEBUG_LAYOUT) Slog.v(TAG,
4462 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004463 mDismissKeyguard = (mWinDismissingKeyguard == win
4464 && mSecureDismissingKeyguard == mKeyguardSecure)
4465 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004466 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004467 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004468 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Selim Cinek90b5e072015-08-28 17:05:56 -07004469 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked
4470 && (win.isDrawnLw() || win.hasAppShownWindows())) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004471 if (DEBUG_LAYOUT) Slog.v(TAG,
4472 "Setting mHideLockScreen to true by win " + win);
4473 mHideLockScreen = true;
4474 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004475 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004476 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004477 mAllowLockscreenWhenOn = true;
4478 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004479 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004480
4481 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004482 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4483 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004484 win.hideLw(false);
4485 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004486 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004487 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4488 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4489 // that is being hidden in an animation - keep the
4490 // keyguard hidden until the new window shows up and
4491 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004492 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004493 mHideLockScreen = true;
4494 mWinShowWhenLocked = win;
4495 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004496 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004497 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4498 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4499 && win.isDimming()) {
4500 mTopFullscreenOpaqueOrDimmingWindowState = win;
4501 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004502 }
4503
4504 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004505 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004506 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004507 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4508 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4509 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004510 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4511 // fullscreen window.
4512 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4513 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4514 mTopFullscreenOpaqueWindowState.hideLw(false);
4515 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4516 }
4517
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004518 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004519 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004520
4521 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4522 ? mTopFullscreenOpaqueWindowState.getAttrs()
4523 : null;
4524
Jeff Brownc8018eb2012-10-29 21:33:27 -07004525 // If we are not currently showing a dream then remember the current
4526 // lockscreen state. We will use this to determine whether the dream
4527 // started while the lockscreen was showing and remember this state
4528 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004529 if (!mShowingDream) {
4530 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004531 if (mDreamingSleepTokenNeeded) {
4532 mDreamingSleepTokenNeeded = false;
4533 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4534 }
4535 } else {
4536 if (!mDreamingSleepTokenNeeded) {
4537 mDreamingSleepTokenNeeded = true;
4538 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4539 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004540 }
4541
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004542 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004543 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004544 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004545 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004546 boolean shouldBeTransparent = mForceStatusBarTransparent
4547 && !mForceStatusBar
4548 && !mForceStatusBarFromKeyguard;
4549 if (!shouldBeTransparent) {
4550 mStatusBarController.setShowTransparent(false /* transparent */);
4551 } else if (!mStatusBar.isVisibleLw()) {
4552 mStatusBarController.setShowTransparent(true /* transparent */);
4553 }
4554 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004555 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004556 if (mStatusBarController.setBarShowingLw(true)) {
4557 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4558 }
Craig Mautner81defc72013-10-29 11:10:42 -07004559 // Maintain fullscreen layout until incoming animation is complete.
4560 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004561 // Transient status bar on the lockscreen is not allowed
4562 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4563 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4564 mLastSystemUiFlags, mLastSystemUiFlags);
4565 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004566 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004567 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004568 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004569 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004570 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004571 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004572 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004573 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004574 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004575 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004576 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004577 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004578 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4579 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004580 if (mStatusBarController.isTransientShowing()) {
4581 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004582 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4583 }
4584 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004585 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004586 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004587 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004588 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004589 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004590 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004591 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004592 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004593 if (mStatusBarController.setBarShowingLw(true)) {
4594 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4595 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004596 }
4597 }
4598 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004599
Craig Mautner81defc72013-10-29 11:10:42 -07004600 if (mTopIsFullscreen != topIsFullscreen) {
4601 if (!topIsFullscreen) {
4602 // Force another layout when status bar becomes fully shown.
4603 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4604 }
4605 mTopIsFullscreen = topIsFullscreen;
4606 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004607
Craig Mautner39834192012-09-02 07:47:24 -07004608 // Hide the key guard if a visible window explicitly specifies that it wants to be
4609 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004610 if (mKeyguardDelegate != null && mStatusBar != null) {
4611 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4612 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004613 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004614 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004615 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004616 changes |= FINISH_LAYOUT_REDO_LAYOUT
4617 | FINISH_LAYOUT_REDO_CONFIG
4618 | FINISH_LAYOUT_REDO_WALLPAPER;
4619 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004620 if (mKeyguardDelegate.isShowing()) {
4621 mHandler.post(new Runnable() {
4622 @Override
4623 public void run() {
4624 mKeyguardDelegate.keyguardDone(false, false);
4625 }
4626 });
4627 }
4628 } else if (mHideLockScreen) {
4629 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004630 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004631 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004632 changes |= FINISH_LAYOUT_REDO_LAYOUT
4633 | FINISH_LAYOUT_REDO_CONFIG
4634 | FINISH_LAYOUT_REDO_WALLPAPER;
4635 }
4636 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004637 mKeyguardHidden = false;
4638 if (setKeyguardOccludedLw(false)) {
4639 changes |= FINISH_LAYOUT_REDO_LAYOUT
4640 | FINISH_LAYOUT_REDO_CONFIG
4641 | FINISH_LAYOUT_REDO_WALLPAPER;
4642 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004643 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4644 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004645 mHandler.post(new Runnable() {
4646 @Override
4647 public void run() {
4648 mKeyguardDelegate.dismiss();
4649 }
4650 });
4651 }
4652 } else {
4653 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004654 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004655 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004656 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004657 changes |= FINISH_LAYOUT_REDO_LAYOUT
4658 | FINISH_LAYOUT_REDO_CONFIG
4659 | FINISH_LAYOUT_REDO_WALLPAPER;
4660 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004661 }
4662 }
Joe Onorato664644d2011-01-23 17:53:23 -08004663
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004664 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004665 // If the navigation bar has been hidden or shown, we need to do another
4666 // layout pass to update that window.
4667 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4668 }
Joe Onorato664644d2011-01-23 17:53:23 -08004669
Mike Lockwood28569302010-01-28 11:54:40 -05004670 // update since mAllowLockscreenWhenOn might have changed
4671 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004672 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004673 }
4674
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004675 /**
Jim Millerab954542014-10-10 18:21:49 -07004676 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004677 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004678 * @return Whether the flags have changed and we have to redo the layout.
4679 */
Jim Millerab954542014-10-10 18:21:49 -07004680 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4681 boolean wasOccluded = mKeyguardOccluded;
4682 boolean showing = mKeyguardDelegate.isShowing();
4683 if (wasOccluded && !isOccluded && showing) {
4684 mKeyguardOccluded = false;
4685 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004686 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4687 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4688 return true;
Jim Millerab954542014-10-10 18:21:49 -07004689 } else if (!wasOccluded && isOccluded && showing) {
4690 mKeyguardOccluded = true;
4691 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004692 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4693 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4694 return true;
4695 } else {
4696 return false;
4697 }
4698 }
4699
4700 private boolean isStatusBarKeyguard() {
4701 return mStatusBar != null
4702 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4703 }
4704
Jose Lima9546b202014-07-02 17:21:51 -07004705 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004706 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004707 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004708 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004709 return false;
4710 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004711 return true;
4712 }
4713
Jose Lima9546b202014-07-02 17:21:51 -07004714 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004715 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004716 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004717 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004718 // If the navigation bar has been hidden or shown, we need to do another
4719 // layout pass to update that window.
4720 return FINISH_LAYOUT_REDO_LAYOUT;
4721 }
4722 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004723 }
4724
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004725 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004726 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004727 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4728 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004729 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4730 if (newLidState == mLidState) {
4731 return;
4732 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004733
Jeff Brownc458ce92012-04-30 14:58:40 -07004734 mLidState = newLidState;
4735 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004736 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004737
4738 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004739 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4740 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004741 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004742 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004743 }
4744 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004745
Michael Wright3818c922014-09-02 13:59:07 -07004746 @Override
4747 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4748 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4749 if (mCameraLensCoverState == lensCoverState) {
4750 return;
4751 }
4752 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4753 lensCoverState == CAMERA_LENS_UNCOVERED) {
4754 Intent intent;
4755 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4756 mKeyguardDelegate.isShowing();
4757 if (keyguardActive) {
4758 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4759 } else {
4760 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4761 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004762 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4763 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004764 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004765 }
4766 mCameraLensCoverState = lensCoverState;
4767 }
4768
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004769 void setHdmiPlugged(boolean plugged) {
4770 if (mHdmiPlugged != plugged) {
4771 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004772 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004773 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004774 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004775 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004776 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004777 }
4778 }
4779
Joe Onoratoea495d42011-04-06 11:41:11 -07004780 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004781 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004782 // watch for HDMI plug messages if the hdmi switch exists
4783 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4784 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4785
Joe Onoratoea495d42011-04-06 11:41:11 -07004786 final String filename = "/sys/class/switch/hdmi/state";
4787 FileReader reader = null;
4788 try {
4789 reader = new FileReader(filename);
4790 char[] buf = new char[15];
4791 int n = reader.read(buf);
4792 if (n > 1) {
4793 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4794 }
4795 } catch (IOException ex) {
4796 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4797 } catch (NumberFormatException ex) {
4798 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4799 } finally {
4800 if (reader != null) {
4801 try {
4802 reader.close();
4803 } catch (IOException ex) {
4804 }
Joe Onoratodc100302011-01-11 17:07:41 -08004805 }
4806 }
4807 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004808 // This dance forces the code in setHdmiPlugged to run.
4809 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4810 mHdmiPlugged = !plugged;
4811 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004812 }
4813
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004814 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004815 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004816
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004817 final Runnable mScreenshotTimeout = new Runnable() {
4818 @Override public void run() {
4819 synchronized (mScreenshotLock) {
4820 if (mScreenshotConnection != null) {
4821 mContext.unbindService(mScreenshotConnection);
4822 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004823 }
Winson Chung9112ec32011-06-27 13:15:32 -07004824 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004825 }
4826 };
4827
4828 // Assume this is called from the Handler thread.
4829 private void takeScreenshot() {
4830 synchronized (mScreenshotLock) {
4831 if (mScreenshotConnection != null) {
4832 return;
4833 }
4834 ComponentName cn = new ComponentName("com.android.systemui",
4835 "com.android.systemui.screenshot.TakeScreenshotService");
4836 Intent intent = new Intent();
4837 intent.setComponent(cn);
4838 ServiceConnection conn = new ServiceConnection() {
4839 @Override
4840 public void onServiceConnected(ComponentName name, IBinder service) {
4841 synchronized (mScreenshotLock) {
4842 if (mScreenshotConnection != this) {
4843 return;
4844 }
4845 Messenger messenger = new Messenger(service);
4846 Message msg = Message.obtain(null, 1);
4847 final ServiceConnection myConn = this;
4848 Handler h = new Handler(mHandler.getLooper()) {
4849 @Override
4850 public void handleMessage(Message msg) {
4851 synchronized (mScreenshotLock) {
4852 if (mScreenshotConnection == myConn) {
4853 mContext.unbindService(mScreenshotConnection);
4854 mScreenshotConnection = null;
4855 mHandler.removeCallbacks(mScreenshotTimeout);
4856 }
4857 }
4858 }
4859 };
4860 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004861 msg.arg1 = msg.arg2 = 0;
4862 if (mStatusBar != null && mStatusBar.isVisibleLw())
4863 msg.arg1 = 1;
4864 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4865 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004866 try {
4867 messenger.send(msg);
4868 } catch (RemoteException e) {
4869 }
4870 }
4871 }
4872 @Override
4873 public void onServiceDisconnected(ComponentName name) {}
4874 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004875 if (mContext.bindServiceAsUser(
4876 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004877 mScreenshotConnection = conn;
4878 mHandler.postDelayed(mScreenshotTimeout, 10000);
4879 }
4880 }
Winson Chung9112ec32011-06-27 13:15:32 -07004881 }
4882
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004883 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004884 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004885 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004886 if (!mSystemBooted) {
4887 // If we have not yet booted, don't let key events do anything.
4888 return 0;
4889 }
4890
Jeff Brown037c33e2014-04-09 00:31:55 -07004891 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004892 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4893 final boolean canceled = event.isCanceled();
4894 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004895
Jeff Brown3122e442010-10-11 23:32:49 -07004896 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004897
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004898 // If screen is off then we treat the case where the keyguard is open but hidden
4899 // the same as if it were open and in front.
4900 // This will prevent any keys other than the power button from waking the screen
4901 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004902 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004903 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004904 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004905 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004906
Jeff Brown40013652012-05-16 21:22:36 -07004907 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004908 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004909 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004910 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004911 }
4912
Jeff Brown037c33e2014-04-09 00:31:55 -07004913 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004914 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004915 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4916 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004917 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004918 // When the device is interactive or the key is injected pass the
4919 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004920 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004921 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004922 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4923 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4924 // to the application but preserve its wake key status to make sure we still move
4925 // from dozing to fully interactive if we would normally go from off to fully
4926 // interactive.
4927 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004928 } else {
4929 // When the screen is off and the key is not injected, determine whether
4930 // to wake the device but don't pass the key to the application.
4931 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004932 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4933 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004934 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004935 }
4936
Justin Kohd378ad72013-04-01 12:18:26 -07004937 // If the key would be handled globally, just return the result, don't worry about special
4938 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004939 if (isValidGlobalKey(keyCode)
4940 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004941 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004942 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07004943 }
Justin Kohd378ad72013-04-01 12:18:26 -07004944 return result;
4945 }
4946
Jeff Brownbae8e772014-06-12 19:59:45 -07004947 boolean useHapticFeedback = down
4948 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4949 && event.getRepeatCount() == 0;
4950
Jeff Brown4d396052010-10-29 21:50:21 -07004951 // Handle special keys.
4952 switch (keyCode) {
4953 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004954 case KeyEvent.KEYCODE_VOLUME_UP:
4955 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004956 if (mUseTvRouting) {
4957 // On TVs volume keys never go to the foreground app
4958 result &= ~ACTION_PASS_TO_USER;
4959 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004960 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4961 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004962 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004963 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004964 mScreenshotChordVolumeDownKeyTriggered = true;
4965 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4966 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004967 cancelPendingPowerKeyAction();
4968 interceptScreenshotChord();
4969 }
4970 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004971 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004972 cancelPendingScreenshotChordAction();
4973 }
4974 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4975 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004976 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004977 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004978 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004979 cancelPendingPowerKeyAction();
4980 cancelPendingScreenshotChordAction();
4981 }
4982 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004983 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004984 cancelPendingScreenshotChordAction();
4985 }
4986 }
Jeff Brown4d396052010-10-29 21:50:21 -07004987 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004988 TelecomManager telecomManager = getTelecommService();
4989 if (telecomManager != null) {
4990 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004991 // If an incoming call is ringing, either VOLUME key means
4992 // "silence ringer". We handle these keys here, rather than
4993 // in the InCallScreen, to make sure we'll respond to them
4994 // even if the InCallScreen hasn't come to the foreground yet.
4995 // Look for the DOWN event here, to agree with the "fallback"
4996 // behavior in the InCallScreen.
4997 Log.i(TAG, "interceptKeyBeforeQueueing:"
4998 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004999
Santos Cordon6848f722014-05-21 15:22:12 -07005000 // Silence the ringer. (It's safe to call this
5001 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005002 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07005003
Santos Cordon6848f722014-05-21 15:22:12 -07005004 // And *don't* pass this key thru to the current activity
5005 // (which is probably the InCallScreen.)
5006 result &= ~ACTION_PASS_TO_USER;
5007 break;
5008 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005009 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07005010 && (result & ACTION_PASS_TO_USER) == 0) {
5011 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07005012 // the application, just pass it to the session service.
5013
5014 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07005015 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005016 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005017 }
5018 }
5019
RoboErik430fc482014-06-12 15:49:20 -07005020 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08005021 if (mUseTvRouting) {
5022 dispatchDirectAudioEvent(event);
5023 } else {
5024 // If we aren't passing to the user and no one else
5025 // handled it send it to the session manager to
5026 // figure out.
5027 MediaSessionLegacyHelper.getHelper(mContext)
5028 .sendVolumeKeyEvent(event, true);
5029 }
Jeff Brown4d396052010-10-29 21:50:21 -07005030 break;
5031 }
5032 }
5033 break;
5034 }
5035
5036 case KeyEvent.KEYCODE_ENDCALL: {
5037 result &= ~ACTION_PASS_TO_USER;
5038 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005039 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005040 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005041 if (telecomManager != null) {
5042 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005043 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005044 if (interactive && !hungUp) {
5045 mEndCallKeyHandled = false;
5046 mHandler.postDelayed(mEndCallLongPress,
5047 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5048 } else {
5049 mEndCallKeyHandled = true;
5050 }
Jeff Brown4d396052010-10-29 21:50:21 -07005051 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005052 if (!mEndCallKeyHandled) {
5053 mHandler.removeCallbacks(mEndCallLongPress);
5054 if (!canceled) {
5055 if ((mEndcallBehavior
5056 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5057 if (goHome()) {
5058 break;
5059 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005060 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005061 if ((mEndcallBehavior
5062 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5063 mPowerManager.goToSleep(event.getEventTime(),
5064 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5065 isWakeKey = false;
5066 }
Jeff Brown4d396052010-10-29 21:50:21 -07005067 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005068 }
Jeff Brown4d396052010-10-29 21:50:21 -07005069 }
5070 break;
5071 }
5072
5073 case KeyEvent.KEYCODE_POWER: {
5074 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005075 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005076 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005077 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005078 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005079 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005080 }
5081 break;
5082 }
5083
Jeff Brown6212a492014-03-07 13:58:47 -08005084 case KeyEvent.KEYCODE_SLEEP: {
5085 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005086 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005087 if (!mPowerManager.isInteractive()) {
5088 useHapticFeedback = false; // suppress feedback if already non-interactive
5089 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005090 if (down) {
5091 sleepPress(event.getEventTime());
5092 } else {
5093 sleepRelease(event.getEventTime());
5094 }
Jeff Brown6212a492014-03-07 13:58:47 -08005095 break;
5096 }
5097
5098 case KeyEvent.KEYCODE_WAKEUP: {
5099 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005100 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005101 break;
5102 }
5103
Jeff Brown4d396052010-10-29 21:50:21 -07005104 case KeyEvent.KEYCODE_MEDIA_PLAY:
5105 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5106 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005107 case KeyEvent.KEYCODE_HEADSETHOOK:
5108 case KeyEvent.KEYCODE_MUTE:
5109 case KeyEvent.KEYCODE_MEDIA_STOP:
5110 case KeyEvent.KEYCODE_MEDIA_NEXT:
5111 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5112 case KeyEvent.KEYCODE_MEDIA_REWIND:
5113 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005114 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5115 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005116 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5117 // If the global session is active pass all media keys to it
5118 // instead of the active window.
5119 result &= ~ACTION_PASS_TO_USER;
5120 }
Jeff Brown4d396052010-10-29 21:50:21 -07005121 if ((result & ACTION_PASS_TO_USER) == 0) {
5122 // Only do this if we would otherwise not pass it to the user. In that
5123 // case, the PhoneWindow class will do the same thing, except it will
5124 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005125 // Note that we need to make a copy of the key event here because the
5126 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005127 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005128 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5129 new KeyEvent(event));
5130 msg.setAsynchronous(true);
5131 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005132 }
5133 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005134 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005135
Jeff Brown4d396052010-10-29 21:50:21 -07005136 case KeyEvent.KEYCODE_CALL: {
5137 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005138 TelecomManager telecomManager = getTelecommService();
5139 if (telecomManager != null) {
5140 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005141 Log.i(TAG, "interceptKeyBeforeQueueing:"
5142 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005143 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005144
Santos Cordon6848f722014-05-21 15:22:12 -07005145 // And *don't* pass this key thru to the current activity
5146 // (which is presumably the InCallScreen.)
5147 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005148 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005149 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005150 }
Jeff Brown4d396052010-10-29 21:50:21 -07005151 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005152 }
Michael Wright869a67c2014-08-26 19:33:06 -07005153 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5154 // Only do this if we would otherwise not pass it to the user. In that case,
5155 // interceptKeyBeforeDispatching would apply a similar but different policy in
5156 // order to invoke voice assist actions. Note that we need to make a copy of the
5157 // key event here because the original key event will be recycled when we return.
5158 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5159 mBroadcastWakeLock.acquire();
5160 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5161 keyguardActive ? 1 : 0, 0);
5162 msg.setAsynchronous(true);
5163 msg.sendToTarget();
5164 }
5165 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005166 }
Jeff Brown26875502014-01-30 21:47:47 -08005167
Jeff Brownbae8e772014-06-12 19:59:45 -07005168 if (useHapticFeedback) {
5169 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5170 }
5171
Jeff Brown26875502014-01-30 21:47:47 -08005172 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005173 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005174 }
Bryce Lee584a4452014-10-21 15:55:55 -07005175
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005176 return result;
5177 }
5178
Jeff Brown1c2e4942012-11-06 16:32:01 -08005179 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005180 * Returns true if the key can have global actions attached to it.
5181 * We reserve all power management keys for the system since they require
5182 * very careful handling.
5183 */
5184 private static boolean isValidGlobalKey(int keyCode) {
5185 switch (keyCode) {
5186 case KeyEvent.KEYCODE_POWER:
5187 case KeyEvent.KEYCODE_WAKEUP:
5188 case KeyEvent.KEYCODE_SLEEP:
5189 return false;
5190 default:
5191 return true;
5192 }
5193 }
5194
5195 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005196 * When the screen is off we ignore some keys that might otherwise typically
5197 * be considered wake keys. We filter them out here.
5198 *
5199 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5200 * is always considered a wake key.
5201 */
5202 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5203 switch (keyCode) {
5204 // ignore volume keys unless docked
5205 case KeyEvent.KEYCODE_VOLUME_UP:
5206 case KeyEvent.KEYCODE_VOLUME_DOWN:
5207 case KeyEvent.KEYCODE_VOLUME_MUTE:
5208 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5209
5210 // ignore media and camera keys
5211 case KeyEvent.KEYCODE_MUTE:
5212 case KeyEvent.KEYCODE_HEADSETHOOK:
5213 case KeyEvent.KEYCODE_MEDIA_PLAY:
5214 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5215 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5216 case KeyEvent.KEYCODE_MEDIA_STOP:
5217 case KeyEvent.KEYCODE_MEDIA_NEXT:
5218 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5219 case KeyEvent.KEYCODE_MEDIA_REWIND:
5220 case KeyEvent.KEYCODE_MEDIA_RECORD:
5221 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005222 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005223 case KeyEvent.KEYCODE_CAMERA:
5224 return false;
5225 }
5226 return true;
5227 }
5228
5229
Jeff Brown56194eb2011-03-02 19:23:13 -08005230 /** {@inheritDoc} */
5231 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005232 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5233 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005234 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5235 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005236 return 0;
5237 }
Michael Wright70af00a2014-09-03 19:30:20 -07005238 }
Bryce Lee5c138322014-11-03 08:26:09 -08005239
Michael Wright70af00a2014-09-03 19:30:20 -07005240 if (shouldDispatchInputWhenNonInteractive()) {
5241 return ACTION_PASS_TO_USER;
5242 }
Bryce Lee5c138322014-11-03 08:26:09 -08005243
Bryce Lee812d7022014-11-10 13:33:28 -08005244 // If we have not passed the action up and we are in theater mode without dreaming,
5245 // there will be no dream to intercept the touch and wake into ambient. The device should
5246 // wake up in this case.
5247 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005248 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5249 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005250 }
5251
Jeff Brown037c33e2014-04-09 00:31:55 -07005252 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005253 }
5254
Michael Wright70af00a2014-09-03 19:30:20 -07005255 private boolean shouldDispatchInputWhenNonInteractive() {
Michael Wright2ccf0c82015-08-04 23:03:03 +01005256 if (mDisplay == null || mDisplay.getState() == Display.STATE_OFF) {
5257 return false;
5258 }
5259 // Send events to keyguard while the screen is on and it's showing.
5260 if (isKeyguardShowingAndNotOccluded()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005261 return true;
5262 }
5263
5264 // Send events to a dozing dream even if the screen is off since the dream
5265 // is in control of the state of the screen.
5266 IDreamManager dreamManager = getDreamManager();
5267
5268 try {
5269 if (dreamManager != null && dreamManager.isDreaming()) {
5270 return true;
5271 }
5272 } catch (RemoteException e) {
5273 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5274 }
5275
5276 // Otherwise, consume events since the user can't see what is being
5277 // interacted with.
5278 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005279 }
5280
RoboErik001c59c2015-01-26 15:53:51 -08005281 private void dispatchDirectAudioEvent(KeyEvent event) {
5282 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5283 return;
5284 }
5285 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005286 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5287 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005288 String pkgName = mContext.getOpPackageName();
5289 switch (keyCode) {
5290 case KeyEvent.KEYCODE_VOLUME_UP:
5291 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005292 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005293 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005294 } catch (RemoteException e) {
5295 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5296 }
5297 break;
5298 case KeyEvent.KEYCODE_VOLUME_DOWN:
5299 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005300 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005301 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005302 } catch (RemoteException e) {
5303 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5304 }
5305 break;
5306 case KeyEvent.KEYCODE_VOLUME_MUTE:
5307 try {
5308 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005309 getAudioService().adjustSuggestedStreamVolume(
5310 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005311 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005312 }
5313 } catch (RemoteException e) {
5314 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5315 }
5316 break;
5317 }
5318 }
5319
Jeff Brown40013652012-05-16 21:22:36 -07005320 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5321 if (DEBUG_INPUT) {
5322 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005323 }
5324
Jeff Brown40013652012-05-16 21:22:36 -07005325 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5326 if (DEBUG_INPUT) {
5327 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5328 }
5329
5330 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5331 mHavePendingMediaKeyRepeatWithWakeLock = false;
5332 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5333 }
5334
5335 dispatchMediaKeyWithWakeLockToAudioService(event);
5336
5337 if (event.getAction() == KeyEvent.ACTION_DOWN
5338 && event.getRepeatCount() == 0) {
5339 mHavePendingMediaKeyRepeatWithWakeLock = true;
5340
5341 Message msg = mHandler.obtainMessage(
5342 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5343 msg.setAsynchronous(true);
5344 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5345 } else {
5346 mBroadcastWakeLock.release();
5347 }
5348 }
5349
5350 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5351 mHavePendingMediaKeyRepeatWithWakeLock = false;
5352
5353 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5354 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5355 if (DEBUG_INPUT) {
5356 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5357 }
5358
5359 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5360 mBroadcastWakeLock.release();
5361 }
5362
5363 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5364 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005365 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005366 }
5367 }
5368
Michael Wright869a67c2014-08-26 19:33:06 -07005369 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005370 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5371 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5372 if (dic != null) {
5373 try {
5374 dic.exitIdle("voice-search");
5375 } catch (RemoteException e) {
5376 }
5377 }
Michael Wright869a67c2014-08-26 19:33:06 -07005378 Intent voiceIntent =
5379 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5380 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005381 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005382 mBroadcastWakeLock.release();
5383 }
5384
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005385 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005386 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005387 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005388 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5389 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5390 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005391 } else {
5392 try {
5393 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5394 ServiceManager.getService(Context.UI_MODE_SERVICE));
5395 mUiMode = uiModeService.getCurrentModeType();
5396 } catch (RemoteException e) {
5397 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005398 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005399 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005400 synchronized (mLock) {
5401 updateOrientationListenerLp();
5402 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005403 }
5404 };
5405
Jeff Brown6aaf2952012-10-05 16:01:08 -07005406 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5407 @Override
5408 public void onReceive(Context context, Intent intent) {
5409 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005410 if (mKeyguardDelegate != null) {
5411 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005412 }
5413 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005414 if (mKeyguardDelegate != null) {
5415 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005416 }
5417 }
5418 }
5419 };
5420
Christopher Tate5e08af02012-09-21 17:17:22 -07005421 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5422 @Override
5423 public void onReceive(Context context, Intent intent) {
5424 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5425 // tickle the settings observer: this first ensures that we're
5426 // observing the relevant settings for the newly-active user,
5427 // and then updates our own bookkeeping based on the now-
5428 // current user.
5429 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005430
5431 // force a re-application of focused window sysui visibility.
5432 // the window may never have been shown for this user
5433 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005434 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005435 mLastSystemUiFlags = 0;
5436 updateSystemUiVisibilityLw();
5437 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005438 }
5439 }
5440 };
5441
Adrian Roosddc8b272015-05-21 16:28:27 -07005442 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005443 @Override
5444 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005445 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5446 if (!isUserSetupComplete()) {
5447 // Swipe-up for navigation bar is disabled during setup
5448 return;
5449 }
5450 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5451 mNavigationBarController.showTransient();
5452 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005453 }
5454 };
5455
John Spurlocke1f366f2013-08-05 12:22:40 -04005456 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005457 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005458 if (!isUserSetupComplete()) {
5459 // Swipe-up for navigation bar is disabled during setup
5460 return;
5461 }
John Spurlock27735a42013-08-14 17:57:38 -04005462 boolean sb = mStatusBarController.checkShowTransientBarLw();
5463 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005464 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005465 // Don't show status bar when swiping on already visible navigation bar
5466 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005467 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005468 return;
5469 }
John Spurlock27735a42013-08-14 17:57:38 -04005470 if (sb) mStatusBarController.showTransient();
5471 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005472 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005473 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005474 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005475 }
5476 }
5477
Jeff Brown3ee549c2014-09-22 20:14:39 -07005478 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005479 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005480 public void startedGoingToSleep(int why) {
5481 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005482 if (mKeyguardDelegate != null) {
5483 mKeyguardDelegate.onStartedGoingToSleep(why);
5484 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005485 }
5486
5487 // Called on the PowerManager's Notifier thread.
5488 @Override
5489 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005490 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005491 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005492 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005493
5494 // We must get this work done here because the power manager will drop
5495 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005496 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005497 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005498 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005499 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005500 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005501 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005502 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005503 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005504 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005505 }
5506
Jeff Brown3ee549c2014-09-22 20:14:39 -07005507 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005508 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005509 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005510 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005511 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005512
Jeff Brown3ee549c2014-09-22 20:14:39 -07005513 // Since goToSleep performs these functions synchronously, we must
5514 // do the same here. We cannot post this work to a handler because
5515 // that might cause it to become reordered with respect to what
5516 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005517 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005518 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005519
Jeff Browna20dda42014-05-27 20:57:24 -07005520 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005521 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005522 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005523 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005524
Jim Miller5ecd8112013-01-09 18:50:26 -08005525 if (mKeyguardDelegate != null) {
Jorim Jaggi740452e2015-07-09 12:13:59 -07005526 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005527 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005528 }
5529
Jeff Brown416c49c2015-05-26 19:50:18 -07005530 // Called on the PowerManager's Notifier thread.
5531 @Override
5532 public void finishedWakingUp() {
5533 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5534 }
5535
5536 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005537 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005538 }
5539
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005540 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005541 final boolean theaterModeEnabled = isTheaterModeEnabled();
5542 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005543 return false;
5544 }
5545
Bryce Leed3896842015-06-23 17:06:51 -07005546 if (theaterModeEnabled) {
5547 Settings.Global.putInt(mContext.getContentResolver(),
5548 Settings.Global.THEATER_MODE_ON, 0);
5549 }
5550
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005551 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005552 return true;
5553 }
5554
Jeff Brown36c4db82014-09-19 12:05:31 -07005555 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005556 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005557 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005558 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005559 }
5560
Jeff Brown36c4db82014-09-19 12:05:31 -07005561 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005562 if (mKeyguardDelegate != null) {
5563 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5564 }
Jorim Jaggi740452e2015-07-09 12:13:59 -07005565 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005566 }
5567
Jorim Jaggi740452e2015-07-09 12:13:59 -07005568 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5569 // as well as enabling the orientation change logic/sensor.
5570 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5571 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005572 }
5573
5574 // Called on the DisplayManager's DisplayPowerController thread.
5575 @Override
5576 public void screenTurnedOff() {
5577 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5578
Jeff Brown48d1b142015-06-10 16:36:03 -07005579 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005580 synchronized (mLock) {
5581 mScreenOnEarly = false;
5582 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005583 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005584 mWindowManagerDrawComplete = false;
5585 mScreenOnListener = null;
5586 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005587
5588 if (mKeyguardDelegate != null) {
5589 mKeyguardDelegate.onScreenTurnedOff();
5590 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005591 }
5592 }
5593
Jeff Brown3ee549c2014-09-22 20:14:39 -07005594 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005595 @Override
5596 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005597 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005598
Jeff Brown48d1b142015-06-10 16:36:03 -07005599 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005600 synchronized (mLock) {
5601 mScreenOnEarly = true;
5602 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005603 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005604 mWindowManagerDrawComplete = false;
5605 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005606
Jorim Jaggi740452e2015-07-09 12:13:59 -07005607 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005608 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5609 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi740452e2015-07-09 12:13:59 -07005610 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5611 } else {
5612 if (DEBUG_WAKEUP) Slog.d(TAG,
5613 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5614 finishKeyguardDrawn();
5615 }
5616 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005617 }
5618
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005619 // Called on the DisplayManager's DisplayPowerController thread.
5620 @Override
5621 public void screenTurnedOn() {
5622 synchronized (mLock) {
5623 if (mKeyguardDelegate != null) {
5624 mKeyguardDelegate.onScreenTurnedOn();
5625 }
5626 }
5627 }
5628
Jeff Brown36c4db82014-09-19 12:05:31 -07005629 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005630 synchronized (mLock) {
5631 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005632 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005633 }
5634
Jeff Brown36c4db82014-09-19 12:05:31 -07005635 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005636 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005637
5638 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005639 }
5640
Craig Mautner8a0da012014-05-31 15:13:37 -07005641 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005642 synchronized (mLock) {
5643 // We have just finished drawing screen content. Since the orientation listener
5644 // gets only installed when all windows are drawn, we try to install it again.
5645 updateOrientationListenerLp();
5646 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005647 final ScreenOnListener listener;
5648 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005649 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005650 if (DEBUG_WAKEUP) Slog.d(TAG,
5651 "finishScreenTurningOn: mAwake=" + mAwake
5652 + ", mScreenOnEarly=" + mScreenOnEarly
5653 + ", mScreenOnFully=" + mScreenOnFully
5654 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5655 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5656
5657 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5658 || (mAwake && !mKeyguardDrawComplete)) {
5659 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005660 }
5661
Jeff Brown3ee549c2014-09-22 20:14:39 -07005662 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5663 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005664 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005665 mScreenOnFully = true;
5666
5667 // Remember the first time we draw the keyguard so we know when we're done with
5668 // the main part of booting and can enable the screen and hide boot messages.
5669 if (!mKeyguardDrawnOnce && mAwake) {
5670 mKeyguardDrawnOnce = true;
5671 enableScreen = true;
5672 if (mBootMessageNeedsHiding) {
5673 mBootMessageNeedsHiding = false;
5674 hideBootMessages();
5675 }
5676 } else {
5677 enableScreen = false;
5678 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005679 }
5680
Jeff Brown3ee549c2014-09-22 20:14:39 -07005681 if (listener != null) {
5682 listener.onScreenOn();
5683 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005684
Jeff Brown3ee549c2014-09-22 20:14:39 -07005685 if (enableScreen) {
5686 try {
5687 mWindowManager.enableScreenIfNeeded();
5688 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005689 }
Craig Mautnera631d492014-08-05 15:16:01 -07005690 }
5691 }
5692
5693 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005694 synchronized (mLock) {
5695 if (!mKeyguardDrawnOnce) {
5696 mBootMessageNeedsHiding = true;
5697 return; // keyguard hasn't drawn the first time yet, not done booting
5698 }
Craig Mautnera631d492014-08-05 15:16:01 -07005699 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005700
5701 if (mBootMsgDialog != null) {
5702 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5703 mBootMsgDialog.dismiss();
5704 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005705 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005706 }
5707
5708 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005709 public boolean isScreenOn() {
5710 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005711 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005712
Dianne Hackborn08743722009-12-21 12:16:51 -08005713 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005714 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005715 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005716 if (mKeyguardDelegate != null) {
5717 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005718 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005719 }
5720
5721 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005722 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005723 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005724 if (mKeyguardDelegate != null) {
5725 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005726 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005727 }
5728
Jim Millerab954542014-10-10 18:21:49 -07005729 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005730 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005731 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005732 }
5733
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005734 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005735 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005736 public boolean isKeyguardLocked() {
5737 return keyguardOn();
5738 }
5739
5740 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005741 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005742 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005743 if (mKeyguardDelegate == null) return false;
5744 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005745 }
5746
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005747 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005748 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005749 public boolean isKeyguardShowingOrOccluded() {
5750 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5751 }
5752
5753 /** {@inheritDoc} */
5754 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005755 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005756 if (mKeyguardDelegate == null) return false;
5757 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005758 }
5759
Jose Lima9546b202014-07-02 17:21:51 -07005760 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005761 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005762 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005763 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005764 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005765 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005766 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005767 // ask the keyguard to prompt the user to authenticate if necessary
5768 mKeyguardDelegate.dismiss();
5769 }
5770 });
5771 }
5772 }
5773
5774 public void notifyActivityDrawnForKeyguardLw() {
5775 if (mKeyguardDelegate != null) {
5776 mHandler.post(new Runnable() {
5777 @Override
5778 public void run() {
5779 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005780 }
5781 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005782 }
5783 }
5784
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005785 @Override
5786 public boolean isKeyguardDrawnLw() {
5787 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005788 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005789 }
5790 }
5791
Jorim Jaggi0d674622014-05-21 01:34:15 +02005792 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005793 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005794 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005795 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005796 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005797 }
5798 }
5799
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005800 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005801 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005802 }
5803
5804 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005805 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005806 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005807
Jeff Brown01a98dd2011-09-20 15:08:29 -07005808 @Override
5809 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005810 if (false) {
5811 Slog.v(TAG, "rotationForOrientationLw(orient="
5812 + orientation + ", last=" + lastRotation
5813 + "); user=" + mUserRotation + " "
5814 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5815 ? "USER_ROTATION_LOCKED" : "")
5816 );
5817 }
5818
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005819 if (mForceDefaultOrientation) {
5820 return Surface.ROTATION_0;
5821 }
5822
The Android Open Source Project0727d222009-03-11 12:11:58 -07005823 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005824 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5825 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005826 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005827 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005828
Jeff Browndec6cf42011-11-15 14:08:20 -08005829 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005830 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005831 // Ignore sensor when lid switch is open and rotation is forced.
5832 preferredRotation = mLidOpenRotation;
5833 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005834 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005835 // Ignore sensor when in car dock unless explicitly enabled.
5836 // This case can override the behavior of NOSENSOR, and can also
5837 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005838 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005839 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005840 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5841 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5842 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005843 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005844 // Ignore sensor when in desk dock unless explicitly enabled.
5845 // This case can override the behavior of NOSENSOR, and can also
5846 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005847 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005848 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005849 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5850 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005851 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005852 preferredRotation = mDemoHdmiRotation;
5853 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5854 && mUndockedHdmiRotation >= 0) {
5855 // Ignore sensor when plugged into HDMI and an undocked orientation has
5856 // been specified in the configuration (only for legacy devices without
5857 // full multi-display support).
5858 // Note that the dock orientation overrides the HDMI orientation.
5859 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005860 } else if (mDemoRotationLock) {
5861 // Ignore sensor when demo rotation lock is enabled.
5862 // Note that the dock orientation and HDMI rotation lock override this.
5863 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005864 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5865 // Application just wants to remain locked in the last rotation.
5866 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005867 } else if (!mSupportAutoRotation) {
5868 // If we don't support auto-rotation then bail out here and ignore
5869 // the sensor and any rotation lock settings.
5870 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005871 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005872 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005873 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5874 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5875 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5876 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005877 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5878 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5879 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5880 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5881 // Otherwise, use sensor only if requested by the application or enabled
5882 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005883 if (mAllowAllRotations < 0) {
5884 // Can't read this during init() because the context doesn't
5885 // have display metrics at that time so we cannot determine
5886 // tablet vs. phone then.
5887 mAllowAllRotations = mContext.getResources().getBoolean(
5888 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5889 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005890 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005891 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005892 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5893 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005894 preferredRotation = sensorRotation;
5895 } else {
5896 preferredRotation = lastRotation;
5897 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005898 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5899 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5900 // Apply rotation lock. Does not apply to NOSENSOR.
5901 // The idea is that the user rotation expresses a weak preference for the direction
5902 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5903 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005904 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005905 } else {
5906 // No overriding preference.
5907 // We will do exactly what the application asked us to do.
5908 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005909 }
5910
Dianne Hackborne5439f22010-10-02 16:53:50 -07005911 switch (orientation) {
5912 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005913 // Return portrait unless overridden.
5914 if (isAnyPortrait(preferredRotation)) {
5915 return preferredRotation;
5916 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005917 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005918
Jeff Brown01a98dd2011-09-20 15:08:29 -07005919 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005920 // Return landscape unless overridden.
5921 if (isLandscapeOrSeascape(preferredRotation)) {
5922 return preferredRotation;
5923 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005924 return mLandscapeRotation;
5925
5926 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005927 // Return reverse portrait unless overridden.
5928 if (isAnyPortrait(preferredRotation)) {
5929 return preferredRotation;
5930 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005931 return mUpsideDownRotation;
5932
5933 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005934 // Return seascape unless overridden.
5935 if (isLandscapeOrSeascape(preferredRotation)) {
5936 return preferredRotation;
5937 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005938 return mSeascapeRotation;
5939
5940 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005941 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005942 // Return either landscape rotation.
5943 if (isLandscapeOrSeascape(preferredRotation)) {
5944 return preferredRotation;
5945 }
5946 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005947 return lastRotation;
5948 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005949 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005950
Jeff Brown01a98dd2011-09-20 15:08:29 -07005951 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005952 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005953 // Return either portrait rotation.
5954 if (isAnyPortrait(preferredRotation)) {
5955 return preferredRotation;
5956 }
5957 if (isAnyPortrait(lastRotation)) {
5958 return lastRotation;
5959 }
5960 return mPortraitRotation;
5961
5962 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005963 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5964 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005965 if (preferredRotation >= 0) {
5966 return preferredRotation;
5967 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005968 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005969 }
5970 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005971 }
5972
Jeff Brown01a98dd2011-09-20 15:08:29 -07005973 @Override
5974 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5975 switch (orientation) {
5976 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5977 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5978 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5979 return isAnyPortrait(rotation);
5980
5981 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5982 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5983 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5984 return isLandscapeOrSeascape(rotation);
5985
5986 default:
5987 return true;
5988 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005989 }
5990
Jeff Brownc0347aa2011-09-23 17:26:09 -07005991 @Override
5992 public void setRotationLw(int rotation) {
5993 mOrientationListener.setCurrentRotation(rotation);
5994 }
5995
Jeff Brown01a98dd2011-09-20 15:08:29 -07005996 private boolean isLandscapeOrSeascape(int rotation) {
5997 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005998 }
5999
Jeff Brown01a98dd2011-09-20 15:08:29 -07006000 private boolean isAnyPortrait(int rotation) {
6001 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006002 }
6003
Jose Lima9546b202014-07-02 17:21:51 -07006004 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006005 public int getUserRotationMode() {
6006 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07006007 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
6008 WindowManagerPolicy.USER_ROTATION_FREE :
6009 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006010 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006011
6012 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07006013 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006014 public void setUserRotationMode(int mode, int rot) {
6015 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006016
6017 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006018 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006019 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006020 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006021 rot,
6022 UserHandle.USER_CURRENT);
6023 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006024 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006025 0,
6026 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006027 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006028 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006029 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006030 1,
6031 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006032 }
6033 }
6034
Jose Lima9546b202014-07-02 17:21:51 -07006035 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006036 public void setSafeMode(boolean safeMode) {
6037 mSafeMode = safeMode;
6038 performHapticFeedbackLw(null, safeMode
6039 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6040 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006041 }
Craig Mautnereda67292013-04-28 13:50:14 -07006042
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006043 static long[] getLongIntArray(Resources r, int resid) {
6044 int[] ar = r.getIntArray(resid);
6045 if (ar == null) {
6046 return null;
6047 }
6048 long[] out = new long[ar.length];
6049 for (int i=0; i<ar.length; i++) {
6050 out[i] = ar[i];
6051 }
6052 return out;
6053 }
Craig Mautnereda67292013-04-28 13:50:14 -07006054
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006055 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006056 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006057 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006058 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006059 mKeyguardDelegate.onSystemReady();
6060
Michael Wright3818c922014-09-02 13:59:07 -07006061 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006062 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006063 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006064 synchronized (mLock) {
6065 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006066 mSystemReady = true;
6067 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006068 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006069 public void run() {
6070 updateSettings();
6071 }
6072 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006073
6074 bindKeyguardNow = mDeferBindKeyguard;
6075 if (bindKeyguardNow) {
6076 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6077 mDeferBindKeyguard = false;
6078 }
6079 }
6080
6081 if (bindKeyguardNow) {
6082 mKeyguardDelegate.bindService(mContext);
6083 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006084 }
Michael Wrighta4d22d72015-09-16 23:19:26 +01006085 mSystemGestures.systemReady();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006086 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006087
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006088 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006089 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006090 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006091 boolean bindKeyguardNow = false;
6092 synchronized (mLock) {
6093 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6094 // in systemReady if not.
6095 if (mKeyguardDelegate != null) {
6096 bindKeyguardNow = true;
6097 } else {
6098 // Because mKeyguardDelegate is null, we know that the synchronized block in
6099 // systemReady didn't run yet and setting this will actually have an effect.
6100 mDeferBindKeyguard = true;
6101 }
6102 }
6103 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006104 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006105 mKeyguardDelegate.onBootCompleted();
6106 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006107 synchronized (mLock) {
6108 mSystemBooted = true;
6109 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006110 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006111 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006112 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006113 }
6114
Dianne Hackborn661cd522011-08-22 00:26:20 -07006115 ProgressDialog mBootMsgDialog = null;
6116
6117 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006118 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006119 public void showBootMessage(final CharSequence msg, final boolean always) {
6120 mHandler.post(new Runnable() {
6121 @Override public void run() {
6122 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006123 int theme;
6124 if (mContext.getPackageManager().hasSystemFeature(
6125 PackageManager.FEATURE_WATCH)) {
6126 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6127 } else if (mContext.getPackageManager().hasSystemFeature(
6128 PackageManager.FEATURE_TELEVISION)) {
6129 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6130 } else {
6131 theme = 0;
6132 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006133
6134 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006135 // This dialog will consume all events coming in to
6136 // it, to avoid it trying to do things too early in boot.
6137 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6138 return true;
6139 }
6140 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6141 return true;
6142 }
6143 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6144 return true;
6145 }
6146 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6147 return true;
6148 }
6149 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6150 return true;
6151 }
6152 @Override public boolean dispatchPopulateAccessibilityEvent(
6153 AccessibilityEvent event) {
6154 return true;
6155 }
6156 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006157 if (mContext.getPackageManager().isUpgrade()) {
6158 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6159 } else {
6160 mBootMsgDialog.setTitle(R.string.android_start_title);
6161 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006162 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6163 mBootMsgDialog.setIndeterminate(true);
6164 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006165 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006166 mBootMsgDialog.getWindow().addFlags(
6167 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6168 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6169 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006170 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6171 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6172 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006173 mBootMsgDialog.setCancelable(false);
6174 mBootMsgDialog.show();
6175 }
6176 mBootMsgDialog.setMessage(msg);
6177 }
6178 });
6179 }
6180
6181 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006182 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006183 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006184 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006185 }
6186
Mike Lockwood28569302010-01-28 11:54:40 -05006187 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006188 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006189 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006190 // ***************************************
6191 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6192 // ***************************************
6193 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6194 // WITH ITS LOCKS HELD.
6195 //
6196 // This code must be VERY careful about the locks
6197 // it acquires.
6198 // In fact, the current code acquires way too many,
6199 // and probably has lurking deadlocks.
6200
Mike Lockwood28569302010-01-28 11:54:40 -05006201 synchronized (mScreenLockTimeout) {
6202 if (mLockScreenTimerActive) {
6203 // reset the timer
6204 mHandler.removeCallbacks(mScreenLockTimeout);
6205 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6206 }
6207 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006208 }
6209
Adam Cohenf7522022012-10-03 20:03:18 -07006210 class ScreenLockTimeout implements Runnable {
6211 Bundle options;
6212
6213 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006214 public void run() {
6215 synchronized (this) {
6216 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006217 if (mKeyguardDelegate != null) {
6218 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006219 }
Mike Lockwood28569302010-01-28 11:54:40 -05006220 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006221 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006222 }
6223 }
Mike Lockwood28569302010-01-28 11:54:40 -05006224
Adam Cohenf7522022012-10-03 20:03:18 -07006225 public void setLockOptions(Bundle options) {
6226 this.options = options;
6227 }
6228 }
6229
6230 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6231
Jose Lima9546b202014-07-02 17:21:51 -07006232 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006233 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006234 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6235 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006236 if (options != null) {
6237 // In case multiple calls are made to lockNow, we don't wipe out the options
6238 // until the runnable actually executes.
6239 mScreenLockTimeout.setLockOptions(options);
6240 }
Jim Miller93c518e2012-01-17 15:55:31 -08006241 mHandler.post(mScreenLockTimeout);
6242 }
6243
Mike Lockwood28569302010-01-28 11:54:40 -05006244 private void updateLockScreenTimeout() {
6245 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006246 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006247 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006248 if (mLockScreenTimerActive != enable) {
6249 if (enable) {
6250 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6251 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6252 } else {
6253 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6254 mHandler.removeCallbacks(mScreenLockTimeout);
6255 }
6256 mLockScreenTimerActive = enable;
6257 }
6258 }
6259 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006260
Jeff Brown061ea992015-04-17 19:55:47 -07006261 private void updateDreamingSleepToken(boolean acquire) {
6262 if (acquire) {
6263 if (mDreamingSleepToken == null) {
6264 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6265 }
6266 } else {
6267 if (mDreamingSleepToken != null) {
6268 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006269 mDreamingSleepToken = null;
6270 }
6271 }
6272 }
6273
6274 private void updateScreenOffSleepToken(boolean acquire) {
6275 if (acquire) {
6276 if (mScreenOffSleepToken == null) {
6277 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6278 }
6279 } else {
6280 if (mScreenOffSleepToken != null) {
6281 mScreenOffSleepToken.release();
6282 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006283 }
6284 }
6285 }
6286
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006287 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006288 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006289 public void enableScreenAfterBoot() {
6290 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006291 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006292 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006293 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006294
Jeff Brownc458ce92012-04-30 14:58:40 -07006295 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006296 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006297 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006298 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006299 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006300 }
Jeff Browna20dda42014-05-27 20:57:24 -07006301
6302 synchronized (mLock) {
6303 updateWakeGestureListenerLp();
6304 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006305 }
6306
Jeff Brown4f5fa282014-06-12 19:19:15 -07006307 void updateUiMode() {
6308 if (mUiModeManager == null) {
6309 mUiModeManager = IUiModeManager.Stub.asInterface(
6310 ServiceManager.getService(Context.UI_MODE_SERVICE));
6311 }
6312 try {
6313 mUiMode = mUiModeManager.getCurrentModeType();
6314 } catch (RemoteException e) {
6315 }
6316 }
6317
Jeff Brown01a98dd2011-09-20 15:08:29 -07006318 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006319 try {
6320 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006321 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6322 } catch (RemoteException e) {
6323 // Ignore
6324 }
6325 }
6326
6327 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6328 try {
6329 //set orientation on WindowManager
6330 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006331 } catch (RemoteException e) {
6332 // Ignore
6333 }
6334 }
6335
Daniel Sandler6396c722013-04-16 20:19:09 -04006336 /**
6337 * Return an Intent to launch the currently active dock app as home. Returns
6338 * null if the standard home should be launched, which is the case if any of the following is
6339 * true:
6340 * <ul>
6341 * <li>The device is not in either car mode or desk mode
6342 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6343 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6344 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6345 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6346 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006347 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006348 */
6349 Intent createHomeDockIntent() {
6350 Intent intent = null;
6351
6352 // What home does is based on the mode, not the dock state. That
6353 // is, when in car mode you should be taken to car home regardless
6354 // of whether we are actually in a car dock.
6355 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6356 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6357 intent = mCarDockIntent;
6358 }
6359 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6360 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6361 intent = mDeskDockIntent;
6362 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006363 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6364 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6365 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6366 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6367 // Always launch dock home from home when watch is docked, if it exists.
6368 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006369 }
6370
6371 if (intent == null) {
6372 return null;
6373 }
6374
6375 ActivityInfo ai = null;
6376 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6377 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006378 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006379 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006380 if (info != null) {
6381 ai = info.activityInfo;
6382 }
6383 if (ai != null
6384 && ai.metaData != null
6385 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6386 intent = new Intent(intent);
6387 intent.setClassName(ai.packageName, ai.name);
6388 return intent;
6389 }
6390
6391 return null;
6392 }
6393
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006394 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6395 if (awakenFromDreams) {
6396 awakenDreams();
6397 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006398
6399 Intent dock = createHomeDockIntent();
6400 if (dock != null) {
6401 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006402 if (fromHomeKey) {
6403 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6404 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006405 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006406 return;
6407 } catch (ActivityNotFoundException e) {
6408 }
6409 }
6410
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006411 Intent intent;
6412
6413 if (fromHomeKey) {
6414 intent = new Intent(mHomeIntent);
6415 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6416 } else {
6417 intent = mHomeIntent;
6418 }
6419
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006420 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006421 }
Craig Mautnereda67292013-04-28 13:50:14 -07006422
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006423 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006424 * goes to the home screen
6425 * @return whether it did anything
6426 */
6427 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006428 if (!isUserSetupComplete()) {
6429 Slog.i(TAG, "Not going home because user setup is in progress.");
6430 return false;
6431 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006432 if (false) {
6433 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006434 try {
6435 ActivityManagerNative.getDefault().stopAppSwitches();
6436 } catch (RemoteException e) {
6437 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006438 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006439 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006440 } else {
6441 // This code brings home to the front or, if it is already
6442 // at the front, puts the device to sleep.
6443 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006444 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6445 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6446 Log.d(TAG, "UTS-TEST-MODE");
6447 } else {
6448 ActivityManagerNative.getDefault().stopAppSwitches();
6449 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006450 Intent dock = createHomeDockIntent();
6451 if (dock != null) {
6452 int result = ActivityManagerNative.getDefault()
6453 .startActivityAsUser(null, null, dock,
6454 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6455 null, null, 0,
6456 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006457 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006458 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6459 return false;
6460 }
6461 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006462 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006463 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006464 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006465 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006466 null, null, 0,
6467 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006468 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006469 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006470 return false;
6471 }
6472 } catch (RemoteException ex) {
6473 // bummer, the activity manager, which is in this process, is dead
6474 }
6475 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006476 return true;
6477 }
Craig Mautnereda67292013-04-28 13:50:14 -07006478
6479 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006480 public void setCurrentOrientationLw(int newOrientation) {
6481 synchronized (mLock) {
6482 if (newOrientation != mCurrentAppOrientation) {
6483 mCurrentAppOrientation = newOrientation;
6484 updateOrientationListenerLp();
6485 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006486 }
6487 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006488
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006489 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6490 if (!isGlobalAccessibilityGestureEnabled()) {
6491 return;
6492 }
6493 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6494 Context.AUDIO_SERVICE);
6495 if (audioManager.isSilentMode()) {
6496 return;
6497 }
6498 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6499 Settings.System.DEFAULT_NOTIFICATION_URI);
6500 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6501 ringTone.play();
6502 }
Craig Mautnereda67292013-04-28 13:50:14 -07006503
Bryce Lee584a4452014-10-21 15:55:55 -07006504 private boolean isTheaterModeEnabled() {
6505 return Settings.Global.getInt(mContext.getContentResolver(),
6506 Settings.Global.THEATER_MODE_ON, 0) == 1;
6507 }
6508
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006509 private boolean isGlobalAccessibilityGestureEnabled() {
6510 return Settings.Global.getInt(mContext.getContentResolver(),
6511 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6512 }
6513
Craig Mautnereda67292013-04-28 13:50:14 -07006514 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006515 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006516 if (!mVibrator.hasVibrator()) {
6517 return false;
6518 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006519 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6520 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006521 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006522 return false;
6523 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006524 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006525 switch (effectId) {
6526 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006527 pattern = mLongPressVibePattern;
6528 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006529 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006530 pattern = mVirtualKeyVibePattern;
6531 break;
6532 case HapticFeedbackConstants.KEYBOARD_TAP:
6533 pattern = mKeyboardTapVibePattern;
6534 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006535 case HapticFeedbackConstants.CLOCK_TICK:
6536 pattern = mClockTickVibePattern;
6537 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006538 case HapticFeedbackConstants.CALENDAR_DATE:
6539 pattern = mCalendarDateVibePattern;
6540 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006541 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006542 pattern = mSafeModeDisabledVibePattern;
6543 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006544 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006545 pattern = mSafeModeEnabledVibePattern;
6546 break;
Mady Mellore8608912015-06-05 09:02:55 -07006547 case HapticFeedbackConstants.CONTEXT_CLICK:
6548 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006549 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006550 default:
6551 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006552 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006553 int owningUid;
6554 String owningPackage;
6555 if (win != null) {
6556 owningUid = win.getOwningUid();
6557 owningPackage = win.getOwningPackage();
6558 } else {
6559 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006560 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006561 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006562 if (pattern.length == 1) {
6563 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006564 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006565 } else {
6566 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006567 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006568 }
6569 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006570 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006571
6572 @Override
6573 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006574 }
6575
Jeff Brownc38c9be2012-10-04 13:16:19 -07006576 @Override
6577 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006578 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006579 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006580 }
6581 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006582
Dianne Hackborndf89e652011-10-06 22:35:11 -07006583 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006584 // If there is no window focused, there will be nobody to handle the events
6585 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006586 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6587 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006588 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006589 return 0;
6590 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006591 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006592 // We are updating at a point where the keyguard has gotten
6593 // focus, but we were last in a state where the top window is
6594 // hiding it. This is probably because the keyguard as been
6595 // shown while the top window was displayed, so we want to ignore
6596 // it here because this is just a very transient change and it
6597 // will quickly lose focus once it correctly gets hidden.
6598 return 0;
6599 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006600
John Spurlock1db8b682014-02-18 11:18:59 -05006601 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006602 & ~mResettingSystemUiFlags
6603 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006604 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006605 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006606 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006607 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006608 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006609 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006610 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006611 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006612 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006613 return 0;
6614 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006615 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006616 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006617 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006618 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006619 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006620 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006621 try {
6622 IStatusBarService statusbar = getStatusBarService();
6623 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006624 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006625 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006626 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006627 } catch (RemoteException e) {
6628 // re-acquire status bar service next time it is needed.
6629 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006630 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006631 }
6632 });
6633 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006634 }
6635
Adrian Rooscd3884d2015-02-18 17:25:23 +01006636 private int updateLightStatusBarLw(int vis) {
6637 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6638 ? mStatusBar
6639 : mTopFullscreenOpaqueOrDimmingWindowState;
6640
6641 if (statusColorWin != null) {
6642 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6643 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6644 // its light flag.
6645 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6646 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6647 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6648 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6649 // Otherwise if it's dimming, clear the light flag.
6650 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6651 }
6652 }
6653 return vis;
6654 }
6655
John Spurlock79da8332013-09-20 12:04:47 -04006656 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006657 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006658 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6659 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006660 : mTopFullscreenOpaqueWindowState;
6661 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6662 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6663
John Spurlock27735a42013-08-14 17:57:38 -04006664 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006665 int type = win.getAttrs().type;
6666 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006667 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006668 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6669 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006670 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006671 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6672 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006673 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006674 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6675 }
John Spurlockbd957402013-10-03 11:38:39 -04006676 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006677 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006678
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006679 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006680 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6681 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006682 }
6683
John Spurlock27735a42013-08-14 17:57:38 -04006684 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006685 boolean immersiveSticky =
6686 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006687 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006688 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006689 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006690 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6691 boolean hideStatusBarSysui =
6692 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006693 boolean hideNavBarSysui =
6694 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006695
John Spurlock27735a42013-08-14 17:57:38 -04006696 boolean transientStatusBarAllowed =
6697 mStatusBar != null && (
6698 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006699 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006700 || statusBarHasFocus);
6701
John Spurlockf1a36642013-10-12 17:50:42 -04006702 boolean transientNavBarAllowed =
6703 mNavigationBar != null &&
6704 hideNavBarSysui && immersiveSticky;
6705
Adrian Roosddc8b272015-05-21 16:28:27 -07006706 final long now = SystemClock.uptimeMillis();
6707 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6708 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6709 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6710 // The user performed the panic gesture recently, we're about to hide the bars,
6711 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6712 mPendingPanicGestureUptime = 0;
6713 mStatusBarController.showTransient();
6714 mNavigationBarController.showTransient();
6715 }
6716
John Spurlockf25706f2013-11-07 18:02:43 -05006717 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006718 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006719 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006720 && !transientNavBarAllowed;
6721 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006722 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006723 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006724 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006725 }
John Spurlock27735a42013-08-14 17:57:38 -04006726
Selim Cinekf98702e2015-05-20 22:48:40 -07006727 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6728 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6729 final boolean navAllowedHidden = immersive || immersiveSticky;
6730
Selim Cinekd6623612015-05-22 18:56:22 -07006731 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6732 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006733 // We can't hide the navbar from this window otherwise the input consumer would not get
6734 // the input events.
6735 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6736 }
6737
John Spurlock27735a42013-08-14 17:57:38 -04006738 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6739
6740 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006741 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6742 boolean newImmersiveMode = isImmersiveMode(vis);
6743 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006744 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006745 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6746 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006747 }
John Spurlock27735a42013-08-14 17:57:38 -04006748
John Spurlockf1a36642013-10-12 17:50:42 -04006749 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6750
John Spurlocke1f366f2013-08-05 12:22:40 -04006751 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006752 }
6753
John Spurlockf1a36642013-10-12 17:50:42 -04006754 private void clearClearableFlagsLw() {
6755 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6756 if (newVal != mResettingSystemUiFlags) {
6757 mResettingSystemUiFlags = newVal;
6758 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6759 }
6760 }
6761
6762 private boolean isImmersiveMode(int vis) {
6763 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006764 return mNavigationBar != null
6765 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006766 && (vis & flags) != 0
6767 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006768 }
6769
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006770 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006771 * @return whether the navigation or status bar can be made translucent
6772 *
6773 * This should return true unless touch exploration is not enabled or
6774 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006775 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006776 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006777 return mTranslucentDecorEnabled
6778 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006779 }
6780
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006781 // Use this instead of checking config_showNavigationBar so that it can be consistently
6782 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006783 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006784 public boolean hasNavigationBar() {
6785 return mHasNavigationBar;
6786 }
6787
satok1bc0a492012-04-25 22:47:12 +09006788 @Override
6789 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6790 mLastInputMethodWindow = ime;
6791 mLastInputMethodTargetWindow = target;
6792 }
6793
Craig Mautnerf1b67412012-09-19 13:18:29 -07006794 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006795 public int getInputMethodWindowVisibleHeightLw() {
6796 return mDockBottom - mCurBottom;
6797 }
6798
6799 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006800 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006801 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006802 if (mKeyguardDelegate != null) {
6803 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006804 }
John Spurlock13451a22012-09-28 14:40:41 -04006805 if (mStatusBarService != null) {
6806 try {
6807 mStatusBarService.setCurrentUser(newUserId);
6808 } catch (RemoteException e) {
6809 // oh well
6810 }
6811 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006812 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006813 }
6814
6815 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006816 public boolean canMagnifyWindow(int windowType) {
6817 switch (windowType) {
6818 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6819 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6820 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6821 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6822 return false;
6823 }
6824 }
6825 return true;
6826 }
6827
6828 @Override
6829 public boolean isTopLevelWindow(int windowType) {
6830 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6831 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6832 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6833 }
6834 return true;
6835 }
6836
Jim Miller4eeb4f62012-11-08 00:04:29 -08006837 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006838 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006839 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006840 pw.print(" mSystemReady="); pw.print(mSystemReady);
6841 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006842 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006843 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006844 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006845 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006846 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6847 || mForceClearedSystemUiFlags != 0) {
6848 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6849 pw.print(Integer.toHexString(mLastSystemUiFlags));
6850 pw.print(" mResettingSystemUiFlags=0x");
6851 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6852 pw.print(" mForceClearedSystemUiFlags=0x");
6853 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006854 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006855 if (mLastFocusNeedsMenu) {
6856 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6857 pw.println(mLastFocusNeedsMenu);
6858 }
Jeff Browna20dda42014-05-27 20:57:24 -07006859 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6860 pw.println(mWakeGestureEnabledSetting);
6861
Jeff Brownbcdfc622014-03-06 19:13:04 -08006862 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006863 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6864 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006865 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6866 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6867 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6868 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006869 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006870 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006871 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6872 pw.print(mCarDockEnablesAccelerometer);
6873 pw.print(" mDeskDockEnablesAccelerometer=");
6874 pw.println(mDeskDockEnablesAccelerometer);
6875 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6876 pw.print(mLidKeyboardAccessibility);
6877 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006878 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006879 pw.print(prefix);
6880 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6881 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006882 pw.print(prefix);
6883 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6884 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006885 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006886 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6887 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6888 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6889 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6890 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6891 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6892 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006893 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6894 pw.print(","); pw.print(mOverscanScreenTop);
6895 pw.print(") "); pw.print(mOverscanScreenWidth);
6896 pw.print("x"); pw.println(mOverscanScreenHeight);
6897 if (mOverscanLeft != 0 || mOverscanTop != 0
6898 || mOverscanRight != 0 || mOverscanBottom != 0) {
6899 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6900 pw.print(" top="); pw.print(mOverscanTop);
6901 pw.print(" right="); pw.print(mOverscanRight);
6902 pw.print(" bottom="); pw.println(mOverscanBottom);
6903 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006904 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6905 pw.print(mRestrictedOverscanScreenLeft);
6906 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6907 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6908 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006909 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6910 pw.print(","); pw.print(mUnrestrictedScreenTop);
6911 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6912 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6913 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6914 pw.print(","); pw.print(mRestrictedScreenTop);
6915 pw.print(") "); pw.print(mRestrictedScreenWidth);
6916 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006917 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6918 pw.print(","); pw.print(mStableFullscreenTop);
6919 pw.print(")-("); pw.print(mStableFullscreenRight);
6920 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006921 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6922 pw.print(","); pw.print(mStableTop);
6923 pw.print(")-("); pw.print(mStableRight);
6924 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006925 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6926 pw.print(","); pw.print(mSystemTop);
6927 pw.print(")-("); pw.print(mSystemRight);
6928 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006929 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6930 pw.print(","); pw.print(mCurTop);
6931 pw.print(")-("); pw.print(mCurRight);
6932 pw.print(","); pw.print(mCurBottom); pw.println(")");
6933 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6934 pw.print(","); pw.print(mContentTop);
6935 pw.print(")-("); pw.print(mContentRight);
6936 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006937 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6938 pw.print(","); pw.print(mVoiceContentTop);
6939 pw.print(")-("); pw.print(mVoiceContentRight);
6940 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006941 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6942 pw.print(","); pw.print(mDockTop);
6943 pw.print(")-("); pw.print(mDockRight);
6944 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006945 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6946 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006947 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6948 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006949 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6950 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006951 if (mLastInputMethodWindow != null) {
6952 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6953 pw.println(mLastInputMethodWindow);
6954 }
6955 if (mLastInputMethodTargetWindow != null) {
6956 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6957 pw.println(mLastInputMethodTargetWindow);
6958 }
6959 if (mStatusBar != null) {
6960 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006961 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6962 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006963 }
6964 if (mNavigationBar != null) {
6965 pw.print(prefix); pw.print("mNavigationBar=");
6966 pw.println(mNavigationBar);
6967 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006968 if (mFocusedWindow != null) {
6969 pw.print(prefix); pw.print("mFocusedWindow=");
6970 pw.println(mFocusedWindow);
6971 }
6972 if (mFocusedApp != null) {
6973 pw.print(prefix); pw.print("mFocusedApp=");
6974 pw.println(mFocusedApp);
6975 }
6976 if (mWinDismissingKeyguard != null) {
6977 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6978 pw.println(mWinDismissingKeyguard);
6979 }
6980 if (mTopFullscreenOpaqueWindowState != null) {
6981 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6982 pw.println(mTopFullscreenOpaqueWindowState);
6983 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006984 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6985 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6986 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6987 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006988 if (mForcingShowNavBar) {
6989 pw.print(prefix); pw.print("mForcingShowNavBar=");
6990 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6991 pw.println(mForcingShowNavBarLayer);
6992 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006993 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006994 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006995 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6996 pw.print(" mForceStatusBarFromKeyguard=");
6997 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006998 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006999 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007000 pw.print(" mHomePressed="); pw.println(mHomePressed);
7001 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
7002 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
7003 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
7004 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
7005 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
7006 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
7007 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
7008 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
7009 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
7010 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07007011 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
7012 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
7013 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07007014
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07007015 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04007016 mStatusBarController.dump(pw, prefix);
7017 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007018 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007019
Jeff Browna20dda42014-05-27 20:57:24 -07007020 if (mWakeGestureListener != null) {
7021 mWakeGestureListener.dump(pw, prefix);
7022 }
Jeff Brown600f0032014-05-22 17:06:00 -07007023 if (mOrientationListener != null) {
7024 mOrientationListener.dump(pw, prefix);
7025 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007026 if (mBurnInProtectionHelper != null) {
7027 mBurnInProtectionHelper.dump(prefix, pw);
7028 }
Jorim Jaggi84dc08a2015-09-11 17:45:22 -07007029 if (mKeyguardDelegate != null) {
7030 mKeyguardDelegate.dump(prefix, pw);
7031 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007032 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007033}