blob: 495346af19e7c789fa2481267b7184f031d765c1 [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() {
Tim Murray1f407642015-10-01 17:07:12 -0700770 // send interaction hint to improve redraw performance
771 mPowerManagerInternal.powerHint(PowerManagerInternal.POWER_HINT_INTERACTION, 0);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700772 updateRotation(false);
773 }
774 };
775
Craig Mautnereee29c42013-01-17 14:44:34 -0800776 MyOrientationListener(Context context, Handler handler) {
777 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800778 }
Craig Mautner967212c2013-04-13 21:10:58 -0700779
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800780 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700781 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700782 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700783 mHandler.post(mUpdateRotationRunnable);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700784 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800785 }
786 MyOrientationListener mOrientationListener;
787
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100788 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400789
John Spurlock27735a42013-08-14 17:57:38 -0400790 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400791 View.NAVIGATION_BAR_TRANSIENT,
792 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400793 View.NAVIGATION_BAR_TRANSLUCENT,
794 StatusBarManager.WINDOW_NAVIGATION_BAR,
795 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400796
John Spurlockf1a36642013-10-12 17:50:42 -0400797 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400798
Craig Mautner037aa8d2013-06-07 10:35:44 -0700799 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400800
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700801 IStatusBarService getStatusBarService() {
802 synchronized (mServiceAquireLock) {
803 if (mStatusBarService == null) {
804 mStatusBarService = IStatusBarService.Stub.asInterface(
805 ServiceManager.getService("statusbar"));
806 }
807 return mStatusBarService;
808 }
809 }
810
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700811 /*
812 * We always let the sensor be switched on by default except when
813 * the user has explicitly disabled sensor based rotation or when the
814 * screen is switched off.
815 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700816 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800817 if (mSupportAutoRotation) {
818 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
819 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
820 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
821 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
822 // If the application has explicitly requested to follow the
823 // orientation, then we need to turn the sensor on.
824 return true;
825 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800826 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700827 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800828 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
829 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
830 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400831 // enable accelerometer if we are docked in a dock that enables accelerometer
832 // orientation management,
833 return true;
834 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700835 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800836 // If the setting for using the sensor by default is enabled, then
837 // we will always leave it on. Note that the user could go to
838 // a window that forces an orientation that does not use the
839 // sensor and in theory we could turn it off... however, when next
840 // turning it on we won't have a good value for the current
841 // orientation for a little bit, which can cause orientation
842 // changes to lag, so we'd like to keep it always on. (It will
843 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700844 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800845 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800846 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800847 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700848
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800849 /*
850 * Various use cases for invoking this function
851 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700852 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800853 * if not already enabled
854 * screen turned on and current app does not have sensor orientation, disable listeners if
855 * already enabled
856 * screen turning on and current app has sensor based orientation, enable listeners if needed
857 * screen turning on and current app has nosensor based orientation, do nothing
858 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700859 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800860 if (!mOrientationListener.canDetectOrientation()) {
861 // If sensor is turned off or nonexistent for some reason
862 return;
863 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000864 // Could have been invoked due to screen turning on or off or
865 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700866 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
867 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000868 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
869 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
870 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800871 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000872 // Note: We postpone the rotating of the screen until the keyguard as well as the
873 // window manager have reported a draw complete.
874 if (mScreenOnEarly && mAwake &&
875 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700876 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800877 disable = false;
878 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700879 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800880 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700881 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800882 mOrientationSensorEnabled = true;
883 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700884 }
885 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800886 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700887 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800888 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700889 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800890 mOrientationSensorEnabled = false;
891 }
892 }
893
Jeff Brown13f00f02014-10-31 14:45:50 -0700894 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
895 // Hold a wake lock until the power key is released.
896 if (!mPowerKeyWakeLock.isHeld()) {
897 mPowerKeyWakeLock.acquire();
898 }
899
900 // Cancel multi-press detection timeout.
901 if (mPowerKeyPressCounter != 0) {
902 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
903 }
904
905 // Detect user pressing the power button in panic when an application has
906 // taken over the whole screen.
907 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800908 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700909 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700910 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700911 }
912
913 // Latch power key state to detect screenshot chord.
914 if (interactive && !mScreenshotChordPowerKeyTriggered
915 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
916 mScreenshotChordPowerKeyTriggered = true;
917 mScreenshotChordPowerKeyTime = event.getDownTime();
918 interceptScreenshotChord();
919 }
920
921 // Stop ringing or end call if configured to do so when power is pressed.
922 TelecomManager telecomManager = getTelecommService();
923 boolean hungUp = false;
924 if (telecomManager != null) {
925 if (telecomManager.isRinging()) {
926 // Pressing Power while there's a ringing incoming
927 // call should silence the ringer.
928 telecomManager.silenceRinger();
929 } else if ((mIncallPowerBehavior
930 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
931 && telecomManager.isInCall() && interactive) {
932 // Otherwise, if "Power button ends call" is enabled,
933 // the Power button will hang up any current active call.
934 hungUp = telecomManager.endCall();
935 }
936 }
937
Adrian Roos5941c982015-09-03 15:59:49 -0700938 GestureLauncherService gestureService = LocalServices.getService(
939 GestureLauncherService.class);
940 boolean gesturedServiceIntercepted = false;
941 if (gestureService != null) {
942 gesturedServiceIntercepted = gestureService.interceptPowerKeyDown(event, interactive);
943 }
944
Jeff Brown13f00f02014-10-31 14:45:50 -0700945 // If the power key has still not yet been handled, then detect short
946 // press, long press, or multi press and decide what to do.
947 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
Adrian Roos5941c982015-09-03 15:59:49 -0700948 || mScreenshotChordVolumeUpKeyTriggered || gesturedServiceIntercepted;
Jeff Brown13f00f02014-10-31 14:45:50 -0700949 if (!mPowerKeyHandled) {
950 if (interactive) {
951 // When interactive, we're already awake.
952 // Wait for a long press or for the button to be released to decide what to do.
953 if (hasLongPressOnPowerBehavior()) {
954 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
955 msg.setAsynchronous(true);
956 mHandler.sendMessageDelayed(msg,
957 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
958 }
959 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800960 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800961
Bryce Leed3b28402015-03-09 15:49:13 +0000962 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
963 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
964 msg.setAsynchronous(true);
965 mHandler.sendMessageDelayed(msg,
966 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800967 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000968 } else {
969 final int maxCount = getMaxMultiPressPowerCount();
970
971 if (maxCount <= 1) {
972 mPowerKeyHandled = true;
973 } else {
974 mBeganFromNonInteractive = true;
975 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700976 }
977 }
Jeff Brown4d396052010-10-29 21:50:21 -0700978 }
979 }
980
Jeff Brown13f00f02014-10-31 14:45:50 -0700981 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
982 final boolean handled = canceled || mPowerKeyHandled;
983 mScreenshotChordPowerKeyTriggered = false;
984 cancelPendingScreenshotChordAction();
985 cancelPendingPowerKeyAction();
986
987 if (!handled) {
988 // Figure out how to handle the key now that it has been released.
989 mPowerKeyPressCounter += 1;
990
991 final int maxCount = getMaxMultiPressPowerCount();
992 final long eventTime = event.getDownTime();
993 if (mPowerKeyPressCounter < maxCount) {
994 // This could be a multi-press. Wait a little bit longer to confirm.
995 // Continue holding the wake lock.
996 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
997 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
998 msg.setAsynchronous(true);
999 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
1000 return;
1001 }
1002
1003 // No other actions. Handle it immediately.
1004 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -07001005 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001006
1007 // Done. Reset our state.
1008 finishPowerKeyPress();
1009 }
1010
1011 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -08001012 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001013 mPowerKeyPressCounter = 0;
1014 if (mPowerKeyWakeLock.isHeld()) {
1015 mPowerKeyWakeLock.release();
1016 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001017 }
1018
1019 private void cancelPendingPowerKeyAction() {
1020 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001021 mPowerKeyHandled = true;
1022 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001023 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001024 }
1025
1026 private void powerPress(long eventTime, boolean interactive, int count) {
1027 if (mScreenOnEarly && !mScreenOnFully) {
1028 Slog.i(TAG, "Suppressed redundant power key press while "
1029 + "already in the process of turning the screen on.");
1030 return;
Jeff Brownff204712011-10-25 21:27:54 -07001031 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001032
1033 if (count == 2) {
1034 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1035 } else if (count == 3) {
1036 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001037 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001038 switch (mShortPressOnPowerBehavior) {
1039 case SHORT_PRESS_POWER_NOTHING:
1040 break;
1041 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1042 mPowerManager.goToSleep(eventTime,
1043 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1044 break;
1045 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1046 mPowerManager.goToSleep(eventTime,
1047 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1048 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1049 break;
1050 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1051 mPowerManager.goToSleep(eventTime,
1052 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1053 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1054 launchHomeFromHotKey();
1055 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001056 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001057 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001058 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001059 }
1060 }
1061 }
1062
1063 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1064 switch (behavior) {
1065 case MULTI_PRESS_POWER_NOTHING:
1066 break;
1067 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001068 if (!isUserSetupComplete()) {
1069 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1070 break;
1071 }
1072
Jeff Brown13f00f02014-10-31 14:45:50 -07001073 if (isTheaterModeEnabled()) {
1074 Slog.i(TAG, "Toggling theater mode off.");
1075 Settings.Global.putInt(mContext.getContentResolver(),
1076 Settings.Global.THEATER_MODE_ON, 0);
1077 if (!interactive) {
1078 wakeUpFromPowerKey(eventTime);
1079 }
1080 } else {
1081 Slog.i(TAG, "Toggling theater mode on.");
1082 Settings.Global.putInt(mContext.getContentResolver(),
1083 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001084
1085 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001086 mPowerManager.goToSleep(eventTime,
1087 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1088 }
1089 }
1090 break;
1091 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001092 Slog.i(TAG, "Starting brightness boost.");
1093 if (!interactive) {
1094 wakeUpFromPowerKey(eventTime);
1095 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001096 mPowerManager.boostScreenBrightness(eventTime);
1097 break;
1098 }
1099 }
1100
1101 private int getMaxMultiPressPowerCount() {
1102 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1103 return 3;
1104 }
1105 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1106 return 2;
1107 }
1108 return 1;
1109 }
1110
1111 private void powerLongPress() {
1112 final int behavior = getResolvedLongPressOnPowerBehavior();
1113 switch (behavior) {
1114 case LONG_PRESS_POWER_NOTHING:
1115 break;
1116 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1117 mPowerKeyHandled = true;
1118 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1119 performAuditoryFeedbackForAccessibilityIfNeed();
1120 }
1121 showGlobalActionsInternal();
1122 break;
1123 case LONG_PRESS_POWER_SHUT_OFF:
1124 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1125 mPowerKeyHandled = true;
1126 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1127 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1128 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1129 break;
1130 }
1131 }
1132
Nick Vaccarob593a812015-05-15 11:23:05 -07001133 private void sleepPress(long eventTime) {
1134 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1135 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1136 }
1137 }
1138
1139 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001140 switch (mShortPressOnSleepBehavior) {
1141 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001142 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001143 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1144 mPowerManager.goToSleep(eventTime,
1145 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001146 break;
1147 }
1148 }
1149
Jeff Brown13f00f02014-10-31 14:45:50 -07001150 private int getResolvedLongPressOnPowerBehavior() {
1151 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1152 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1153 }
1154 return mLongPressOnPowerBehavior;
1155 }
1156
1157 private boolean hasLongPressOnPowerBehavior() {
1158 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001159 }
1160
1161 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001162 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001163 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1164 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001165 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001166 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1167 && now <= mScreenshotChordPowerKeyTime
1168 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1169 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001170 cancelPendingPowerKeyAction();
1171
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001172 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001173 }
1174 }
1175 }
1176
Winson Chung1cea2f32012-10-08 20:42:01 -07001177 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001178 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001179 // Double the time it takes to take a screenshot from the keyguard
1180 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001181 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001182 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001183 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001184 }
1185
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001186 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001187 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001188 }
1189
Jeff Brown13f00f02014-10-31 14:45:50 -07001190 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001191 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001192 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001193 mEndCallKeyHandled = true;
1194 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1195 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001196 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001197 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001198 }
1199 };
1200
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001201 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001202 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001203 public void run() {
1204 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001205 }
1206 };
1207
Alan Viverettee34560b22014-07-10 14:50:06 -07001208 @Override
1209 public void showGlobalActions() {
1210 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1211 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1212 }
1213
1214 void showGlobalActionsInternal() {
1215 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001216 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001217 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001218 }
Jim Millerab954542014-10-10 18:21:49 -07001219 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001220 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1221 if (keyguardShowing) {
1222 // since it took two seconds of long press to bring this up,
1223 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001224 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001225 }
1226 }
1227
1228 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001229 return Settings.Global.getInt(
1230 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001231 }
1232
Maurice Lam99c6e072014-04-28 18:24:28 -07001233 boolean isUserSetupComplete() {
1234 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1235 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1236 }
1237
Jeff Brown13f00f02014-10-31 14:45:50 -07001238 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001239 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1240 getHdmiControl().turnOnTv();
1241
Jeff Brown13f00f02014-10-31 14:45:50 -07001242 // If there's a dream running then use home to escape the dream
1243 // but don't actually go home.
1244 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1245 mDreamManagerInternal.stopDream(false /*immediate*/);
1246 return;
1247 }
1248
1249 // Go home!
1250 launchHomeFromHotKey();
1251 }
1252
Jinsuk Kime601b712015-07-07 08:01:02 +09001253 /**
1254 * Creates an accessor to HDMI control service that performs the operation of
1255 * turning on TV (optional) and switching input to us. If HDMI control service
1256 * is not available or we're not a HDMI playback device, the operation is no-op.
1257 */
1258 private HdmiControl getHdmiControl() {
1259 if (null == mHdmiControl) {
1260 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1261 Context.HDMI_CONTROL_SERVICE);
1262 HdmiPlaybackClient client = null;
1263 if (manager != null) {
1264 client = manager.getPlaybackClient();
1265 }
1266 mHdmiControl = new HdmiControl(client);
1267 }
1268 return mHdmiControl;
1269 }
1270
1271 private static class HdmiControl {
1272 private final HdmiPlaybackClient mClient;
1273
1274 private HdmiControl(HdmiPlaybackClient client) {
1275 mClient = client;
1276 }
1277
1278 public void turnOnTv() {
1279 if (mClient == null) {
1280 return;
1281 }
1282 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1283 @Override
1284 public void onComplete(int result) {
1285 if (result != HdmiControlManager.RESULT_SUCCESS) {
1286 Log.w(TAG, "One touch play failed: " + result);
1287 }
1288 }
1289 });
1290 }
1291 }
1292
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001293 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001294 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001295 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001296 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001297
Jeff Browncaca8812013-05-09 13:34:33 -07001298 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1299 toggleRecentApps();
1300 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001301 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001302 }
1303 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001304 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001305
Jeff Browncaca8812013-05-09 13:34:33 -07001306 private void handleDoubleTapOnHome() {
1307 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1308 mHomeConsumed = true;
1309 toggleRecentApps();
1310 }
1311 }
1312
1313 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1314 @Override
1315 public void run() {
1316 if (mHomeDoubleTapPending) {
1317 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001318 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001319 }
1320 }
1321 };
1322
Mark Renoufc1256912015-03-11 14:38:23 -04001323 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001324 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001325 }
1326
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001327 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001328 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001329 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001330 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001331 mContext = context;
1332 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001333 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001334 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001335 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001336 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Michael Wrighta4d22d72015-09-16 23:19:26 +01001337 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001338 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001339
1340 // Init display burn-in protection
1341 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1342 com.android.internal.R.bool.config_enableBurnInProtection);
1343 // Allow a system property to override this. Used by developer settings.
1344 boolean burnInProtectionDevMode =
1345 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1346 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1347 final int minHorizontal;
1348 final int maxHorizontal;
1349 final int minVertical;
1350 final int maxVertical;
1351 final int maxRadius;
1352 if (burnInProtectionDevMode) {
1353 minHorizontal = -8;
1354 maxHorizontal = 8;
1355 minVertical = -8;
1356 maxVertical = -4;
1357 maxRadius = (isRoundWindow()) ? 6 : -1;
1358 } else {
1359 Resources resources = context.getResources();
1360 minHorizontal = resources.getInteger(
1361 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1362 maxHorizontal = resources.getInteger(
1363 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1364 minVertical = resources.getInteger(
1365 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1366 maxVertical = resources.getInteger(
1367 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1368 maxRadius = resources.getInteger(
1369 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1370 }
1371 mBurnInProtectionHelper = new BurnInProtectionHelper(
1372 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001373 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001374
Jeff Brown70825162012-03-28 17:27:48 -07001375 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001376 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001377 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001378 try {
1379 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1380 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001381 mSettingsObserver = new SettingsObserver(mHandler);
1382 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001383 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001384 mUiMode = context.getResources().getInteger(
1385 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001386 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1387 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1388 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1389 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001390 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1391 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1392 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1393 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1394 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1395 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1396 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1397 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001398
Jeff Brown96307042012-07-27 15:51:34 -07001399 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1400 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001401 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001402 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1403 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001404 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001405 mSupportAutoRotation = mContext.getResources().getBoolean(
1406 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001407 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001408 com.android.internal.R.integer.config_lidOpenRotation);
1409 mCarDockRotation = readRotation(
1410 com.android.internal.R.integer.config_carDockRotation);
1411 mDeskDockRotation = readRotation(
1412 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001413 mUndockedHdmiRotation = readRotation(
1414 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001415 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1416 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1417 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1418 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001419 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1420 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1421 mLidNavigationAccessibility = mContext.getResources().getInteger(
1422 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001423 mLidControlsSleep = mContext.getResources().getBoolean(
1424 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001425 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1426 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001427
1428 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1429 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1430 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1431 || mContext.getResources().getBoolean(
1432 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1433 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1434 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001435 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1436 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001437 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1438 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1439 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1440 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1441 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1442 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1443
Bryce Lee55e846d2014-11-04 12:43:44 -08001444 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1445 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1446
Bryce Leed3b28402015-03-09 15:49:13 +00001447 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1448 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1449
Jeff Brown13f00f02014-10-31 14:45:50 -07001450 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1451 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1452 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1453 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1454 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1455 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1456 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1457 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001458 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1459 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001460
John Spurlock61560172015-02-06 19:46:04 -05001461 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001462
Jeff Brownf71343d2013-05-31 17:59:11 -07001463 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001464
Svetoslav8e3feb12014-02-24 13:46:47 -08001465 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1466 Context.ACCESSIBILITY_SERVICE);
1467
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001468 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001469 IntentFilter filter = new IntentFilter();
1470 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1471 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1472 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1473 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001474 filter.addAction(Intent.ACTION_DOCK_EVENT);
1475 Intent intent = context.registerReceiver(mDockReceiver, filter);
1476 if (intent != null) {
1477 // Retrieve current sticky dock event broadcast.
1478 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1479 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1480 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001481
Jeff Brown6aaf2952012-10-05 16:01:08 -07001482 // register for dream-related broadcasts
1483 filter = new IntentFilter();
1484 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1485 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1486 context.registerReceiver(mDreamReceiver, filter);
1487
Christopher Tate5e08af02012-09-21 17:17:22 -07001488 // register for multiuser-relevant broadcasts
1489 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1490 context.registerReceiver(mMultiuserReceiver, filter);
1491
John Spurlock57306e62013-04-22 09:48:49 -04001492 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001493 mSystemGestures = new SystemGesturesPointerEventListener(context,
1494 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001495 @Override
1496 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001497 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001498 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001499 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001500 }
1501 @Override
1502 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001503 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001504 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001505 }
1506 }
1507 @Override
1508 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001509 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001510 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001511 }
1512 }
1513 @Override
Michael Wrighta4d22d72015-09-16 23:19:26 +01001514 public void onFling(int duration) {
1515 if (mPowerManagerInternal != null) {
1516 mPowerManagerInternal.powerHint(
1517 PowerManagerInternal.POWER_HINT_INTERACTION, duration);
1518 }
1519 }
1520 @Override
John Spurlockad3e6cb2013-04-30 08:47:43 -04001521 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001522 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001523 }
Adrian Roos3595be42015-03-05 16:31:15 +01001524 @Override
1525 public void onDown() {
1526 mOrientationListener.onTouchStart();
1527 }
1528 @Override
1529 public void onUpOrCancel() {
1530 mOrientationListener.onTouchEnd();
1531 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001532 });
John Spurlockf1a36642013-10-12 17:50:42 -04001533 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001534 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001535
Jeff Brownc2346132012-04-13 01:55:38 -07001536 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001537 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1538 com.android.internal.R.array.config_longPressVibePattern);
1539 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1540 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001541 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1542 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001543 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1544 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001545 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1546 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001547 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1548 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1549 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1550 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001551 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1552 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001553
Christopher Tatee90585f2012-03-05 18:56:25 -08001554 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1555 com.android.internal.R.bool.config_enableScreenshotChord);
1556
Justin Kohd378ad72013-04-01 12:18:26 -07001557 mGlobalKeyManager = new GlobalKeyManager(mContext);
1558
Joe Onoratoea495d42011-04-06 11:41:11 -07001559 // Controls rotation and the like.
1560 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001561
1562 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001563 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001564 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1565 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001566 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001567
1568 mWindowManagerInternal.registerAppTransitionListener(
1569 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001570 }
1571
Jeff Brownf71343d2013-05-31 17:59:11 -07001572 /**
1573 * Read values from config.xml that may be overridden depending on
1574 * the configuration of the device.
1575 * eg. Disable long press on home goes to recents on sw600dp.
1576 */
1577 private void readConfigurationDependentBehaviors() {
1578 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1579 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1580 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1581 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1582 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1583 }
1584
1585 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1586 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1587 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1588 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1589 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1590 }
1591 }
1592
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001593 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001594 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001595 // This method might be called before the policy has been fully initialized
1596 // or for other displays we don't care about.
1597 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1598 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001599 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001600 mDisplay = display;
1601
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001602 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001603 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001604 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001605 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001606 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001607 mLandscapeRotation = Surface.ROTATION_0;
1608 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001609 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001610 mPortraitRotation = Surface.ROTATION_90;
1611 mUpsideDownRotation = Surface.ROTATION_270;
1612 } else {
1613 mPortraitRotation = Surface.ROTATION_270;
1614 mUpsideDownRotation = Surface.ROTATION_90;
1615 }
1616 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001617 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001618 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001619 mPortraitRotation = Surface.ROTATION_0;
1620 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001621 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001622 mLandscapeRotation = Surface.ROTATION_270;
1623 mSeascapeRotation = Surface.ROTATION_90;
1624 } else {
1625 mLandscapeRotation = Surface.ROTATION_90;
1626 mSeascapeRotation = Surface.ROTATION_270;
1627 }
1628 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001629
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001630 mStatusBarHeight =
1631 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001632
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001633 // Height of the navigation bar when presented horizontally at bottom
1634 mNavigationBarHeightForRotation[mPortraitRotation] =
1635 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001636 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001637 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001638 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1639 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001640
1641 // Width of the navigation bar when presented vertically along one side
1642 mNavigationBarWidthForRotation[mPortraitRotation] =
1643 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1644 mNavigationBarWidthForRotation[mLandscapeRotation] =
1645 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001646 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001647
1648 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001649 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001650 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001651
Devin Kimd7b12b42014-05-05 14:34:58 -07001652 // Allow the navigation bar to move on non-square small devices (phones).
1653 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001654
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001655 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001656 // Allow a system property to override this. Used by the emulator.
1657 // See also hasNavigationBar().
1658 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1659 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001660 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001661 } else if ("0".equals(navBarOverride)) {
1662 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001663 }
1664
Jeff Brown27f1d672012-10-17 18:32:34 -07001665 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1666 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001667 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001668 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001669 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001670 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001671 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001672 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001673
Chong Zhangae6119ff2014-11-11 18:54:39 -08001674 // For demo purposes, allow the rotation of the remote display to be controlled.
1675 // By default, remote display locks rotation to landscape.
1676 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1677 mDemoRotation = mPortraitRotation;
1678 } else {
1679 mDemoRotation = mLandscapeRotation;
1680 }
1681 mDemoRotationLock = SystemProperties.getBoolean(
1682 "persist.demo.rotationlock", false);
1683
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001684 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1685 // http://developer.android.com/guide/practices/screens_support.html#range
1686 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1687 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1688 // For debug purposes the next line turns this feature off with:
1689 // $ adb shell setprop config.override_forced_orient true
1690 // $ adb shell wm size reset
1691 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1692 }
1693
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001694 /**
1695 * @return whether the navigation bar can be hidden, e.g. the device has a
1696 * navigation bar and touch exploration is not enabled
1697 */
1698 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001699 return mHasNavigationBar
1700 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001701 }
1702
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001703 @Override
1704 public boolean isDefaultOrientationForced() {
1705 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001706 }
1707
Dianne Hackbornc652de82013-02-15 16:32:56 -08001708 @Override
1709 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1710 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1711 mOverscanLeft = left;
1712 mOverscanTop = top;
1713 mOverscanRight = right;
1714 mOverscanBottom = bottom;
1715 }
1716 }
1717
Dianne Hackbornc777e072010-02-12 13:07:59 -08001718 public void updateSettings() {
1719 ContentResolver resolver = mContext.getContentResolver();
1720 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001721 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001722 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001723 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001724 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1725 UserHandle.USER_CURRENT);
1726 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001727 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001728 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1729 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001730
Jeff Browna20dda42014-05-27 20:57:24 -07001731 // Configure wake gesture.
1732 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1733 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1734 UserHandle.USER_CURRENT) != 0;
1735 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1736 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1737 updateWakeGestureListenerLp();
1738 }
1739
Jeff Brown207673cd2012-06-05 17:47:11 -07001740 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001741 int userRotation = Settings.System.getIntForUser(resolver,
1742 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1743 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001744 if (mUserRotation != userRotation) {
1745 mUserRotation = userRotation;
1746 updateRotation = true;
1747 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001748 int userRotationMode = Settings.System.getIntForUser(resolver,
1749 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001750 WindowManagerPolicy.USER_ROTATION_FREE :
1751 WindowManagerPolicy.USER_ROTATION_LOCKED;
1752 if (mUserRotationMode != userRotationMode) {
1753 mUserRotationMode = userRotationMode;
1754 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001755 updateOrientationListenerLp();
1756 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001757
Dianne Hackbornc777e072010-02-12 13:07:59 -08001758 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001759 int pointerLocation = Settings.System.getIntForUser(resolver,
1760 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001761 if (mPointerLocationMode != pointerLocation) {
1762 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001763 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1764 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001765 }
1766 }
1767 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001768 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1769 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1770 String imId = Settings.Secure.getStringForUser(resolver,
1771 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001772 boolean hasSoftInput = imId != null && imId.length() > 0;
1773 if (mHasSoftInput != hasSoftInput) {
1774 mHasSoftInput = hasSoftInput;
1775 updateRotation = true;
1776 }
John Spurlockf1a36642013-10-12 17:50:42 -04001777 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001778 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001779 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001780 }
1781 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001782 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001783 }
1784 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001785 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001786 }
Jeff Brown70825162012-03-28 17:27:48 -07001787 }
1788
Jeff Browna20dda42014-05-27 20:57:24 -07001789 private void updateWakeGestureListenerLp() {
1790 if (shouldEnableWakeGestureLp()) {
1791 mWakeGestureListener.requestWakeUpTrigger();
1792 } else {
1793 mWakeGestureListener.cancelWakeUpTrigger();
1794 }
1795 }
1796
1797 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001798 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001799 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1800 && mWakeGestureListener.isSupported();
1801 }
1802
Jeff Brown70825162012-03-28 17:27:48 -07001803 private void enablePointerLocation() {
1804 if (mPointerLocationView == null) {
1805 mPointerLocationView = new PointerLocationView(mContext);
1806 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001807 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1808 WindowManager.LayoutParams.MATCH_PARENT,
1809 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001810 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001811 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1812 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1813 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1814 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001815 if (ActivityManager.isHighEndGfx()) {
1816 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1817 lp.privateFlags |=
1818 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1819 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001820 lp.format = PixelFormat.TRANSLUCENT;
1821 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001822 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001823 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001824 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001825 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001826 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001827 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001828 }
Jeff Brown70825162012-03-28 17:27:48 -07001829
1830 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001831 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001832 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1833 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001834 wm.removeView(mPointerLocationView);
1835 mPointerLocationView = null;
1836 }
1837 }
1838
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001839 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001840 try {
1841 int rotation = mContext.getResources().getInteger(resID);
1842 switch (rotation) {
1843 case 0:
1844 return Surface.ROTATION_0;
1845 case 90:
1846 return Surface.ROTATION_90;
1847 case 180:
1848 return Surface.ROTATION_180;
1849 case 270:
1850 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001851 }
1852 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001853 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001854 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001855 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001856 }
1857
1858 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001859 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001860 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001861 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001862
1863 outAppOp[0] = AppOpsManager.OP_NONE;
1864
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001865 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1866 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1867 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1868 return WindowManagerGlobal.ADD_INVALID_TYPE;
1869 }
1870
1871 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1872 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001873 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001874 }
1875 String permission = null;
1876 switch (type) {
1877 case TYPE_TOAST:
1878 // XXX right now the app process has complete control over
1879 // this... should introduce a token to let the system
1880 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001881 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001882 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001883 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001884 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001885 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001886 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001887 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001888 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001889 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001890 break;
1891 case TYPE_PHONE:
1892 case TYPE_PRIORITY_PHONE:
1893 case TYPE_SYSTEM_ALERT:
1894 case TYPE_SYSTEM_ERROR:
1895 case TYPE_SYSTEM_OVERLAY:
1896 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001897 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001898 break;
1899 default:
1900 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1901 }
1902 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001903 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1904 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01001905 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01001906 if (callingUid == Process.SYSTEM_UID) {
1907 return WindowManagerGlobal.ADD_OKAY;
1908 }
1909
Billy Lau060275f2015-07-15 22:29:19 +01001910 // check if user has enabled this operation. SecurityException will be thrown if
1911 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01001912 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1913 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01001914 switch (mode) {
1915 case AppOpsManager.MODE_ALLOWED:
1916 case AppOpsManager.MODE_IGNORED:
1917 // although we return ADD_OKAY for MODE_IGNORED, the added window will
1918 // actually be hidden in WindowManagerService
1919 return WindowManagerGlobal.ADD_OKAY;
1920 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01001921 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01001922 default:
1923 // in the default mode, we will make a decision here based on
1924 // checkCallingPermission()
1925 if (mContext.checkCallingPermission(permission) !=
1926 PackageManager.PERMISSION_GRANTED) {
1927 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1928 } else {
1929 return WindowManagerGlobal.ADD_OKAY;
1930 }
Billy Laucbe540f2015-06-25 01:51:44 +01001931 }
Billy Laucbe540f2015-06-25 01:51:44 +01001932 }
1933
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001934 if (mContext.checkCallingOrSelfPermission(permission)
1935 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001936 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001937 }
1938 }
Jeff Brown98365d72012-08-19 20:30:52 -07001939 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001940 }
Craig Mautner88400d32012-09-30 12:35:45 -07001941
1942 @Override
1943 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1944
1945 // If this switch statement is modified, modify the comment in the declarations of
1946 // the type in {@link WindowManager.LayoutParams} as well.
1947 switch (attrs.type) {
1948 default:
1949 // These are the windows that by default are shown only to the user that created
1950 // them. If this needs to be overridden, set
1951 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1952 // {@link WindowManager.LayoutParams}. Note that permission
1953 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1954 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1955 return true;
1956 }
1957 break;
1958
1959 // These are the windows that by default are shown to all users. However, to
1960 // protect against spoofing, check permissions below.
1961 case TYPE_APPLICATION_STARTING:
1962 case TYPE_BOOT_PROGRESS:
1963 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001964 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001965 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001966 case TYPE_KEYGUARD_DIALOG:
1967 case TYPE_MAGNIFICATION_OVERLAY:
1968 case TYPE_NAVIGATION_BAR:
1969 case TYPE_NAVIGATION_BAR_PANEL:
1970 case TYPE_PHONE:
1971 case TYPE_POINTER:
1972 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001973 case TYPE_SEARCH_BAR:
1974 case TYPE_STATUS_BAR:
1975 case TYPE_STATUS_BAR_PANEL:
1976 case TYPE_STATUS_BAR_SUB_PANEL:
1977 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001978 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001979 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001980 break;
1981 }
1982
1983 // Check if third party app has set window to system window type.
1984 return mContext.checkCallingOrSelfPermission(
1985 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1986 != PackageManager.PERMISSION_GRANTED;
1987 }
1988
Craig Mautner967212c2013-04-13 21:10:58 -07001989 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001990 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1991 switch (attrs.type) {
1992 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001993 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001994 // These types of windows can't receive input events.
1995 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1996 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001997 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001998 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001999 case TYPE_STATUS_BAR:
2000
2001 // If the Keyguard is in a hidden state (occluded by another window), we force to
2002 // remove the wallpaper and keyguard flag so that any change in-flight after setting
2003 // the keyguard as occluded wouldn't set these flags again.
2004 // See {@link #processKeyguardSetHiddenResultLw}.
2005 if (mKeyguardHidden) {
2006 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2007 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2008 }
2009 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002010 }
Adrian Roos38502112014-04-09 21:04:11 +02002011
2012 if (attrs.type != TYPE_STATUS_BAR) {
2013 // The status bar is the only window allowed to exhibit keyguard behavior.
2014 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2015 }
Adrian Roosea562512014-05-05 13:33:03 +02002016
2017 if (ActivityManager.isHighEndGfx()
2018 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02002019 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02002020 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
2021 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002022 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002023
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002024 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07002025 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002026 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002027
Michael Wright3818c922014-09-02 13:59:07 -07002028 private void readCameraLensCoverState() {
2029 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2030 }
2031
Jeff Browndaa37532012-05-01 15:54:03 -07002032 private boolean isHidden(int accessibilityMode) {
2033 switch (accessibilityMode) {
2034 case 1:
2035 return mLidState == LID_CLOSED;
2036 case 2:
2037 return mLidState == LID_OPEN;
2038 default:
2039 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002040 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002041 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002042
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002043 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002044 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002045 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2046 int navigationPresence) {
2047 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2048
Jeff Brownf71343d2013-05-31 17:59:11 -07002049 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002050 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002051 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002052
Jeff Browndaa37532012-05-01 15:54:03 -07002053 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2054 || (keyboardPresence == PRESENCE_INTERNAL
2055 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002056 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002057 if (!mHasSoftInput) {
2058 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2059 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002060 }
2061
Jeff Browndaa37532012-05-01 15:54:03 -07002062 if (config.navigation == Configuration.NAVIGATION_NONAV
2063 || (navigationPresence == PRESENCE_INTERNAL
2064 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002065 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002066 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002067 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002068
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002069 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002070 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002071 public int windowTypeToLayerLw(int type) {
2072 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002073 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002074 }
2075 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002076 case TYPE_PRIVATE_PRESENTATION:
2077 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002078 case TYPE_WALLPAPER:
2079 // wallpaper is at the bottom, though the window manager may move it.
2080 return 2;
2081 case TYPE_PHONE:
2082 return 3;
2083 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002084 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002085 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002086 case TYPE_VOICE_INTERACTION:
2087 // voice interaction layer is almost immediately above apps.
2088 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002089 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002090 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002091 case TYPE_SYSTEM_DIALOG:
2092 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002093 case TYPE_TOAST:
2094 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002095 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002096 case TYPE_PRIORITY_PHONE:
2097 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002098 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002099 case TYPE_DREAM:
2100 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002101 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002102 case TYPE_SYSTEM_ALERT:
2103 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002104 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002105 case TYPE_INPUT_METHOD:
2106 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002107 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002108 case TYPE_INPUT_METHOD_DIALOG:
2109 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002110 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002111 case TYPE_KEYGUARD_SCRIM:
2112 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002113 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07002114 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002115 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07002116 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002117 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07002118 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002119 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002120 case TYPE_KEYGUARD_DIALOG:
2121 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002122 case TYPE_VOLUME_OVERLAY:
2123 // the on-screen volume indicator and controller shown when the user
2124 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002125 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002126 case TYPE_SYSTEM_OVERLAY:
2127 // the on-screen volume indicator and controller shown when the user
2128 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002129 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002130 case TYPE_NAVIGATION_BAR:
2131 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002132 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002133 case TYPE_NAVIGATION_BAR_PANEL:
2134 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002135 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002136 case TYPE_SYSTEM_ERROR:
2137 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002138 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002139 case TYPE_MAGNIFICATION_OVERLAY:
2140 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002141 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002142 case TYPE_DISPLAY_OVERLAY:
2143 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002144 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002145 case TYPE_DRAG:
2146 // the drag layer: input for drag-and-drop is associated with this window,
2147 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002148 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002149 case TYPE_ACCESSIBILITY_OVERLAY:
2150 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002151 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002152 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002153 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002154 case TYPE_BOOT_PROGRESS:
2155 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002156 case TYPE_POINTER:
2157 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002158 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002159 }
2160 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002161 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002162 }
2163
2164 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002165 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002166 public int subWindowTypeToLayerLw(int type) {
2167 switch (type) {
2168 case TYPE_APPLICATION_PANEL:
2169 case TYPE_APPLICATION_ATTACHED_DIALOG:
2170 return APPLICATION_PANEL_SUBLAYER;
2171 case TYPE_APPLICATION_MEDIA:
2172 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002173 case TYPE_APPLICATION_MEDIA_OVERLAY:
2174 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002175 case TYPE_APPLICATION_SUB_PANEL:
2176 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002177 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2178 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002179 }
2180 Log.e(TAG, "Unknown sub-window type: " + type);
2181 return 0;
2182 }
2183
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002184 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002185 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002186 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002187 }
2188
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002189 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002190 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002191 if (mHasNavigationBar) {
2192 // For a basic navigation bar, when we are in landscape mode we place
2193 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002194 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2195 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002196 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002197 }
2198 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002199 }
2200
Jose Lima9546b202014-07-02 17:21:51 -07002201 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002202 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002203 if (mHasNavigationBar) {
2204 // For a basic navigation bar, when we are in portrait mode we place
2205 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002206 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2207 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002208 }
2209 }
2210 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002211 }
2212
Jose Lima9546b202014-07-02 17:21:51 -07002213 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002214 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2215 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002216 }
2217
Jose Lima9546b202014-07-02 17:21:51 -07002218 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002219 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002220 // There is a separate status bar at the top of the display. We don't count that as part
2221 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002222 // we do want to exclude it since applications can't generally use that part
2223 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002224 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002225 }
2226
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002227 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002228 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2229 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002230 (isKeyguardHostWindow(attrs) &&
2231 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002232 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002233 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002234
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002235 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002236 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2237 return attrs.type == TYPE_STATUS_BAR;
2238 }
2239
2240 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002241 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002242 switch (attrs.type) {
2243 case TYPE_STATUS_BAR:
2244 case TYPE_NAVIGATION_BAR:
2245 case TYPE_WALLPAPER:
2246 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002247 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002248 return false;
2249 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002250 // Hide only windows below the keyguard host window.
2251 return windowTypeToLayerLw(win.getBaseType())
2252 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002253 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002254 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002255
Craig Mautner7d7808f2014-09-11 18:02:38 -07002256 @Override
2257 public WindowState getWinShowWhenLockedLw() {
2258 return mWinShowWhenLocked;
2259 }
2260
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002261 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002262 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002263 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2264 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002265 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002266 if (!SHOW_STARTING_ANIMATIONS) {
2267 return null;
2268 }
2269 if (packageName == null) {
2270 return null;
2271 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002272
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002273 WindowManager wm = null;
2274 View view = null;
2275
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002276 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002277 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002278 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2279 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2280 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002281 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002282 try {
2283 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002284 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002285 } catch (PackageManager.NameNotFoundException e) {
2286 // Ignore
2287 }
2288 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002289
Jorim Jaggia16cc152015-06-01 16:55:05 -07002290 PhoneWindow win = new PhoneWindow(context);
2291 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002292 final TypedArray ta = win.getWindowStyle();
2293 if (ta.getBoolean(
2294 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2295 || ta.getBoolean(
2296 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002297 return null;
2298 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002299
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002300 Resources r = context.getResources();
2301 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002302
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002303 win.setType(
2304 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002305
2306 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2307 // Assumes it's safe to show starting windows of launched apps while
2308 // the keyguard is being hidden. This is okay because starting windows never show
2309 // secret information.
2310 if (mKeyguardHidden) {
2311 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2312 }
2313 }
2314
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002315 // Force the window flags: this is a fake window, so it is not really
2316 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2317 // flag because we do know that the next window will take input
2318 // focus, so we want to get the IME window up on top of us right away.
2319 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002320 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002321 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2322 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2323 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002324 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002325 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2326 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2327 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002328
Adam Powell04fe6eb2013-05-31 14:39:48 -07002329 win.setDefaultIcon(icon);
2330 win.setDefaultLogo(logo);
2331
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002332 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002333 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002334
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002335 final WindowManager.LayoutParams params = win.getAttributes();
2336 params.token = appToken;
2337 params.packageName = packageName;
2338 params.windowAnimations = win.getWindowStyle().getResourceId(
2339 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002340 params.privateFlags |=
2341 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002342 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002343
2344 if (!compatInfo.supportsScreen()) {
2345 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2346 }
2347
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002348 params.setTitle("Starting " + packageName);
2349
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002350 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2351 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002352
2353 if (win.isFloating()) {
2354 // Whoops, there is no way to display an animation/preview
2355 // of such a thing! After all that work... let's skip it.
2356 // (Note that we must do this here because it is in
2357 // getDecorView() where the theme is evaluated... maybe
2358 // we should peek the floating attribute from the theme
2359 // earlier.)
2360 return null;
2361 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002362
Craig Mautner6fbda632012-07-03 09:26:39 -07002363 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002364 TAG, "Adding starting window for " + packageName
2365 + " / " + appToken + ": "
2366 + (view.getParent() != null ? view : null));
2367
2368 wm.addView(view, params);
2369
2370 // Only return the view if it was successfully added to the
2371 // window manager... which we can tell by it having a parent.
2372 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002373 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002374 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002375 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2376 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002377 } catch (RuntimeException e) {
2378 // don't crash if something else bad happens, for example a
2379 // failure loading resources because we are loading from an app
2380 // on external storage that has been unmounted.
2381 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002382 } finally {
2383 if (view != null && view.getParent() == null) {
2384 Log.w(TAG, "view not successfully added to wm, removing view");
2385 wm.removeViewImmediate(view);
2386 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002387 }
2388
2389 return null;
2390 }
2391
2392 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002393 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002394 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002395 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2396 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002397
2398 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002399 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002400 wm.removeView(window);
2401 }
2402 }
2403
2404 /**
2405 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002406 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002407 * Currently enforces that three window types are singletons:
2408 * <ul>
2409 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002410 * <li>KEYGUARD_TYPE</li>
2411 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002412 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002413 * @param win The window to be added
2414 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002415 *
Jeff Brown98365d72012-08-19 20:30:52 -07002416 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2417 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002418 */
Jose Lima9546b202014-07-02 17:21:51 -07002419 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002420 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2421 switch (attrs.type) {
2422 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002423 mContext.enforceCallingOrSelfPermission(
2424 android.Manifest.permission.STATUS_BAR_SERVICE,
2425 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002426 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002427 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002428 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002429 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002430 }
2431 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002432 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002433 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002434 case TYPE_NAVIGATION_BAR:
2435 mContext.enforceCallingOrSelfPermission(
2436 android.Manifest.permission.STATUS_BAR_SERVICE,
2437 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002438 if (mNavigationBar != null) {
2439 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002440 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002441 }
2442 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002443 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002444 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002445 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002446 break;
Jim Millere898ac52012-04-06 17:10:57 -07002447 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002448 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002449 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002450 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002451 mContext.enforceCallingOrSelfPermission(
2452 android.Manifest.permission.STATUS_BAR_SERVICE,
2453 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002454 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002455 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002456 if (mKeyguardScrim != null) {
2457 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2458 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002459 mKeyguardScrim = win;
2460 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002461 }
Jeff Brown98365d72012-08-19 20:30:52 -07002462 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002463 }
2464
2465 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002466 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002467 public void removeWindowLw(WindowState win) {
2468 if (mStatusBar == win) {
2469 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002470 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002471 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002472 } else if (mKeyguardScrim == win) {
2473 Log.v(TAG, "Removing keyguard scrim");
2474 mKeyguardScrim = null;
2475 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002476 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002477 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002478 }
2479 }
2480
2481 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002482
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002483 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002484 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002485 public int selectAnimationLw(WindowState win, int transit) {
2486 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2487 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002488 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002489 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002490 if (transit == TRANSIT_EXIT
2491 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002492 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002493 } else if (transit == TRANSIT_ENTER
2494 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002495 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002496 }
2497 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002498 if (win.getAttrs().windowAnimations != 0) {
2499 return 0;
2500 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002501 // This can be on either the bottom or the right.
2502 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002503 if (transit == TRANSIT_EXIT
2504 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002505 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002506 } else if (transit == TRANSIT_ENTER
2507 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002508 return R.anim.dock_bottom_enter;
2509 }
2510 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002511 if (transit == TRANSIT_EXIT
2512 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002513 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002514 } else if (transit == TRANSIT_ENTER
2515 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002516 return R.anim.dock_right_enter;
2517 }
2518 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002519 }
2520
2521 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002522 if (win.hasAppShownWindows()) {
2523 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2524 return com.android.internal.R.anim.app_starting_exit;
2525 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002526 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002527 && transit == TRANSIT_ENTER) {
2528 // Special case: we are animating in a dream, while the keyguard
2529 // is shown. We don't want an animation on the dream, because
2530 // we need it shown immediately with the keyguard animating away
2531 // to reveal it.
2532 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002533 }
2534
2535 return 0;
2536 }
2537
Craig Mautner3c174372013-02-21 17:54:37 -08002538 @Override
2539 public void selectRotationAnimationLw(int anim[]) {
2540 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2541 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2542 + (mTopFullscreenOpaqueWindowState == null ?
2543 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2544 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2545 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2546 case ROTATION_ANIMATION_CROSSFADE:
2547 anim[0] = R.anim.rotation_animation_xfade_exit;
2548 anim[1] = R.anim.rotation_animation_enter;
2549 break;
2550 case ROTATION_ANIMATION_JUMPCUT:
2551 anim[0] = R.anim.rotation_animation_jump_exit;
2552 anim[1] = R.anim.rotation_animation_enter;
2553 break;
2554 case ROTATION_ANIMATION_ROTATE:
2555 default:
2556 anim[0] = anim[1] = 0;
2557 break;
2558 }
2559 } else {
2560 anim[0] = anim[1] = 0;
2561 }
2562 }
2563
2564 @Override
2565 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2566 boolean forceDefault) {
2567 switch (exitAnimId) {
2568 case R.anim.rotation_animation_xfade_exit:
2569 case R.anim.rotation_animation_jump_exit:
2570 // These are the only cases that matter.
2571 if (forceDefault) {
2572 return false;
2573 }
2574 int anim[] = new int[2];
2575 selectRotationAnimationLw(anim);
2576 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2577 default:
2578 return true;
2579 }
2580 }
2581
2582 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002583 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2584 boolean goingToNotificationShade) {
2585 if (goingToNotificationShade) {
2586 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002587 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002588
2589 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2590 R.anim.lock_screen_behind_enter_wallpaper :
2591 R.anim.lock_screen_behind_enter);
2592
2593 // TODO: Use XML interpolators when we have log interpolators available in XML.
2594 final List<Animation> animations = set.getAnimations();
2595 for (int i = animations.size() - 1; i >= 0; --i) {
2596 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2597 }
2598
2599 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002600 }
2601
2602
2603 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002604 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2605 if (goingToNotificationShade) {
2606 return null;
2607 } else {
2608 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2609 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002610 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002611
2612 private static void awakenDreams() {
2613 IDreamManager dreamManager = getDreamManager();
2614 if (dreamManager != null) {
2615 try {
2616 dreamManager.awaken();
2617 } catch (RemoteException e) {
2618 // fine, stay asleep then
2619 }
2620 }
2621 }
2622
2623 static IDreamManager getDreamManager() {
2624 return IDreamManager.Stub.asInterface(
2625 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2626 }
2627
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002628 TelecomManager getTelecommService() {
2629 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002630 }
2631
Jeff Brown4d396052010-10-29 21:50:21 -07002632 static IAudioService getAudioService() {
2633 IAudioService audioService = IAudioService.Stub.asInterface(
2634 ServiceManager.checkService(Context.AUDIO_SERVICE));
2635 if (audioService == null) {
2636 Log.w(TAG, "Unable to find IAudioService interface.");
2637 }
2638 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002639 }
2640
2641 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002642 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002643 }
2644
2645 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2646 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2647 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2648 };
2649
2650 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002651 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002652 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002653 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002654 final int keyCode = event.getKeyCode();
2655 final int repeatCount = event.getRepeatCount();
2656 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002657 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002658 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2659 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002660
Jeff Brown40013652012-05-16 21:22:36 -07002661 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002662 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002663 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2664 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002665 }
2666
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002667 // If we think we might have a volume down & power key chord on the way
2668 // but we're not sure, then tell the dispatcher to wait a little while and
2669 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002670 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002671 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002672 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002673 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2674 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002675 if (now < timeoutTime) {
2676 return timeoutTime - now;
2677 }
2678 }
2679 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002680 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002681 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002682 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002683 }
2684 return -1;
2685 }
2686 }
2687
Michael Wright6a62e552014-06-03 19:19:48 -07002688 // Cancel any pending meta actions if we see any other keys being pressed between the down
2689 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002690 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002691 mPendingMetaAction = false;
2692 }
2693
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002694 // First we always handle the home key here, so applications
2695 // can never break it, although if keyguard is on, we do let
2696 // it handle it, because that gives us the correct 5 second
2697 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002698 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002699
Jeff Brown49ed71d2010-12-06 17:13:33 -08002700 // If we have released the home key, and didn't do anything else
2701 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002702 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002703 cancelPreloadRecentApps();
2704
Jeff Brown49ed71d2010-12-06 17:13:33 -08002705 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002706 if (mHomeConsumed) {
2707 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002708 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002709 }
Jeff Browncaca8812013-05-09 13:34:33 -07002710
2711 if (canceled) {
2712 Log.i(TAG, "Ignoring HOME; event canceled.");
2713 return -1;
2714 }
2715
Yorke Lee4f803242014-12-15 23:22:06 +00002716 // If an incoming call is ringing, HOME is totally disabled.
2717 // (The user is already on the InCallUI at this point,
2718 // and his ONLY options are to answer or reject the call.)
2719 TelecomManager telecomManager = getTelecommService();
2720 if (telecomManager != null && telecomManager.isRinging()) {
2721 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2722 return -1;
2723 }
2724
Jeff Browncaca8812013-05-09 13:34:33 -07002725 // Delay handling home if a double-tap is possible.
2726 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2727 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2728 mHomeDoubleTapPending = true;
2729 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2730 ViewConfiguration.getDoubleTapTimeout());
2731 return -1;
2732 }
2733
Jeff Brown13f00f02014-10-31 14:45:50 -07002734 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002735 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002736 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002737
2738 // If a system window has focus, then it doesn't make sense
2739 // right now to interact with applications.
2740 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2741 if (attrs != null) {
2742 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002743 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2744 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2745 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002746 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002747 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002748 }
2749 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2750 for (int i=0; i<typeCount; i++) {
2751 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2752 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002753 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002754 }
2755 }
2756 }
Jeff Browncaca8812013-05-09 13:34:33 -07002757
2758 // Remember that home is pressed and handle special actions.
2759 if (repeatCount == 0) {
2760 mHomePressed = true;
2761 if (mHomeDoubleTapPending) {
2762 mHomeDoubleTapPending = false;
2763 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2764 handleDoubleTapOnHome();
2765 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2766 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2767 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002768 }
Jeff Browncaca8812013-05-09 13:34:33 -07002769 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2770 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002771 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002772 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002773 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002774 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002775 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002776 // Hijack modified menu keys for debugging features
2777 final int chordBug = KeyEvent.META_SHIFT_ON;
2778
2779 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002780 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002781 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002782 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2783 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002784 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002785 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002786 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002787 Intent service = new Intent();
2788 service.setClassName(mContext, "com.android.server.LoadAverageService");
2789 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002790 boolean shown = Settings.Global.getInt(
2791 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002792 if (!shown) {
2793 mContext.startService(service);
2794 } else {
2795 mContext.stopService(service);
2796 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002797 Settings.Global.putInt(
2798 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002799 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002800 }
2801 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002802 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002803 if (down) {
2804 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002805 mSearchKeyShortcutPending = true;
2806 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002807 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002808 } else {
2809 mSearchKeyShortcutPending = false;
2810 if (mConsumeSearchKeyUp) {
2811 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002812 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002813 }
2814 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002815 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002816 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002817 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002818 if (down && repeatCount == 0) {
2819 preloadRecentApps();
2820 } else if (!down) {
2821 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002822 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002823 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002824 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002825 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2826 if (down) {
2827 IStatusBarService service = getStatusBarService();
2828 if (service != null) {
2829 try {
2830 service.expandNotificationsPanel();
2831 } catch (RemoteException e) {
2832 // do nothing.
2833 }
2834 }
2835 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002836 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2837 if (down) {
2838 if (repeatCount == 0) {
2839 mAssistKeyLongPressed = false;
2840 } else if (repeatCount == 1) {
2841 mAssistKeyLongPressed = true;
2842 if (!keyguardOn) {
2843 launchAssistLongPressAction();
2844 }
2845 }
2846 } else {
2847 if (mAssistKeyLongPressed) {
2848 mAssistKeyLongPressed = false;
2849 } else {
2850 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002851 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002852 }
2853 }
2854 }
2855 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002856 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2857 if (!down) {
2858 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002859 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002860 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2861 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002862 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2863 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2864 if (dic != null) {
2865 try {
2866 dic.exitIdle("voice-search");
2867 } catch (RemoteException e) {
2868 }
2869 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002870 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002871 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002872 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002873 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002874 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002875 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2876 if (down && repeatCount == 0) {
2877 mHandler.post(mScreenshotRunnable);
2878 }
2879 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002880 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2881 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2882 if (down) {
2883 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2884
2885 // Disable autobrightness if it's on
2886 int auto = Settings.System.getIntForUser(
2887 mContext.getContentResolver(),
2888 Settings.System.SCREEN_BRIGHTNESS_MODE,
2889 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2890 UserHandle.USER_CURRENT_OR_SELF);
2891 if (auto != 0) {
2892 Settings.System.putIntForUser(mContext.getContentResolver(),
2893 Settings.System.SCREEN_BRIGHTNESS_MODE,
2894 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2895 UserHandle.USER_CURRENT_OR_SELF);
2896 }
2897
2898 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2899 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2900 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2901 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2902 Settings.System.SCREEN_BRIGHTNESS,
2903 mPowerManager.getDefaultScreenBrightnessSetting(),
2904 UserHandle.USER_CURRENT_OR_SELF);
2905 brightness += step;
2906 // Make sure we don't go beyond the limits.
2907 brightness = Math.min(max, brightness);
2908 brightness = Math.max(min, brightness);
2909
2910 Settings.System.putIntForUser(mContext.getContentResolver(),
2911 Settings.System.SCREEN_BRIGHTNESS, brightness,
2912 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002913 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002914 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002915 }
2916 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002917 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002918 if (down) {
2919 mPendingMetaAction = true;
2920 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002921 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002922 }
2923 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002924 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002925
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002926 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002927 // Any printing key that is chorded with Search should be consumed
2928 // even if no shortcut was invoked. This prevents text from being
2929 // inadvertently inserted when using a keyboard that has built-in macro
2930 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002931 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002932 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2933 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002934 mConsumeSearchKeyUp = true;
2935 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002936 if (down && repeatCount == 0 && !keyguardOn) {
2937 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2938 if (shortcutIntent != null) {
2939 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002940 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002941 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002942 } catch (ActivityNotFoundException ex) {
2943 Slog.w(TAG, "Dropping shortcut key combination because "
2944 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002945 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002946 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002947 } else {
2948 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002949 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002950 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002951 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002952 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002953 }
2954 }
2955
Jeff Brown68b909d2011-12-07 16:36:01 -08002956 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002957 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002958 && (metaState & KeyEvent.META_META_ON) != 0) {
2959 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002960 if (kcm.isPrintingKey(keyCode)) {
2961 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2962 metaState & ~(KeyEvent.META_META_ON
2963 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2964 if (shortcutIntent != null) {
2965 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2966 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002967 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002968 } catch (ActivityNotFoundException ex) {
2969 Slog.w(TAG, "Dropping shortcut key combination because "
2970 + "the activity to which it is registered was not found: "
2971 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2972 }
2973 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002974 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002975 }
2976 }
2977
Jeff Brown6651a632011-11-28 12:59:11 -08002978 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002979 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002980 String category = sApplicationLaunchKeyCategories.get(keyCode);
2981 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002982 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002983 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2984 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002985 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002986 } catch (ActivityNotFoundException ex) {
2987 Slog.w(TAG, "Dropping application launch key because "
2988 + "the activity to which it is registered was not found: "
2989 + "keyCode=" + keyCode + ", category=" + category, ex);
2990 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002991 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002992 }
2993 }
2994
Michael Wright61c46752014-08-21 16:57:33 -07002995 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002996 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002997 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002998 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002999 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003000 mRecentAppsHeldModifiers = shiftlessModifiers;
3001 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08003002 return -1;
3003 }
3004 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07003005 } else if (!down && mRecentAppsHeldModifiers != 0
3006 && (metaState & mRecentAppsHeldModifiers) == 0) {
3007 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07003008 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08003009 }
3010
Jeff Browncf39bdf2012-05-18 14:41:19 -07003011 // Handle keyboard language switching.
3012 if (down && repeatCount == 0
3013 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3014 || (keyCode == KeyEvent.KEYCODE_SPACE
3015 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
3016 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
3017 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
3018 return -1;
3019 }
3020 if (mLanguageSwitchKeyPressed && !down
3021 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3022 || keyCode == KeyEvent.KEYCODE_SPACE)) {
3023 mLanguageSwitchKeyPressed = false;
3024 return -1;
3025 }
3026
Jeff Brown13f00f02014-10-31 14:45:50 -07003027 if (isValidGlobalKey(keyCode)
3028 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003029 return -1;
3030 }
3031
Michael Wright6a62e552014-06-03 19:19:48 -07003032 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003033 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003034 return -1;
3035 }
3036
Jeff Brown68b909d2011-12-07 16:36:01 -08003037 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003038 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003039 }
3040
Jeff Brown3915bb82010-11-05 15:02:16 -07003041 /** {@inheritDoc} */
3042 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003043 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003044 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003045 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003046 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3047 + ", flags=" + event.getFlags()
3048 + ", keyCode=" + event.getKeyCode()
3049 + ", scanCode=" + event.getScanCode()
3050 + ", metaState=" + event.getMetaState()
3051 + ", repeatCount=" + event.getRepeatCount()
3052 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003053 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003054
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003055 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003056 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3057 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003058 final int keyCode = event.getKeyCode();
3059 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003060 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3061 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003062
Jeff Brown54875002011-04-06 15:33:01 -07003063 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003064 final FallbackAction fallbackAction;
3065 if (initialDown) {
3066 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3067 } else {
3068 fallbackAction = mFallbackActions.get(keyCode);
3069 }
3070
3071 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003072 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003073 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3074 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003075 }
3076
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003077 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3078 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003079 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003080 event.getAction(), fallbackAction.keyCode,
3081 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003082 event.getDeviceId(), event.getScanCode(),
3083 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003084
3085 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3086 fallbackEvent.recycle();
3087 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003088 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003089
3090 if (initialDown) {
3091 mFallbackActions.put(keyCode, fallbackAction);
3092 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3093 mFallbackActions.remove(keyCode);
3094 fallbackAction.recycle();
3095 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003096 }
3097 }
3098
Jeff Brown40013652012-05-16 21:22:36 -07003099 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003100 if (fallbackEvent == null) {
3101 Slog.d(TAG, "No fallback.");
3102 } else {
3103 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3104 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003105 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003106 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003107 }
3108
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003109 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003110 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003111 if ((actions & ACTION_PASS_TO_USER) != 0) {
3112 long delayMillis = interceptKeyBeforeDispatching(
3113 win, fallbackEvent, policyFlags);
3114 if (delayMillis == 0) {
3115 return true;
3116 }
3117 }
3118 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003119 }
3120
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003121 private void launchAssistLongPressAction() {
3122 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3123 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3124
3125 // launch the search activity
3126 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3127 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3128 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003129 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003130 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003131 SearchManager searchManager = getSearchManager();
3132 if (searchManager != null) {
3133 searchManager.stopSearch();
3134 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003135 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003136 } catch (ActivityNotFoundException e) {
3137 Slog.w(TAG, "No activity to handle assist long press action.", e);
3138 }
3139 }
3140
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003141 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003142 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003143 if (!isUserSetupComplete()) {
3144 // Disable opening assist window during setup
3145 return;
3146 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003147 Bundle args = null;
3148 if (deviceId > Integer.MIN_VALUE) {
3149 args = new Bundle();
3150 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003151 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003152 if ((mContext.getResources().getConfiguration().uiMode
3153 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3154 // On TV, use legacy handling until assistants are implemented in the proper way.
3155 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3156 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3157 } else {
3158 try {
3159 if (hint != null) {
3160 if (args == null) {
3161 args = new Bundle();
3162 }
3163 args.putBoolean(hint, true);
3164 }
3165 IStatusBarService statusbar = getStatusBarService();
3166 if (statusbar != null) {
3167 statusbar.startAssist(args);
3168 }
3169 } catch (RemoteException e) {
3170 Slog.e(TAG, "RemoteException when starting assist", e);
3171 // re-acquire status bar service next time it is needed.
3172 mStatusBarService = null;
3173 }
3174 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003175 }
3176
Bart Sears8b1c27c2015-03-18 23:51:02 +00003177 private void startActivityAsUser(Intent intent, UserHandle handle) {
3178 if (isUserSetupComplete()) {
3179 mContext.startActivityAsUser(intent, handle);
3180 } else {
3181 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3182 }
3183 }
3184
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003185 private SearchManager getSearchManager() {
3186 if (mSearchManager == null) {
3187 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3188 }
3189 return mSearchManager;
3190 }
3191
Jeff Browncaca8812013-05-09 13:34:33 -07003192 private void preloadRecentApps() {
3193 mPreloadedRecentApps = true;
3194 try {
3195 IStatusBarService statusbar = getStatusBarService();
3196 if (statusbar != null) {
3197 statusbar.preloadRecentApps();
3198 }
3199 } catch (RemoteException e) {
3200 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3201 // re-acquire status bar service next time it is needed.
3202 mStatusBarService = null;
3203 }
3204 }
3205
3206 private void cancelPreloadRecentApps() {
3207 if (mPreloadedRecentApps) {
3208 mPreloadedRecentApps = false;
3209 try {
3210 IStatusBarService statusbar = getStatusBarService();
3211 if (statusbar != null) {
3212 statusbar.cancelPreloadRecentApps();
3213 }
3214 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003215 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003216 // re-acquire status bar service next time it is needed.
3217 mStatusBarService = null;
3218 }
3219 }
3220 }
3221
3222 private void toggleRecentApps() {
3223 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003224 try {
3225 IStatusBarService statusbar = getStatusBarService();
3226 if (statusbar != null) {
3227 statusbar.toggleRecentApps();
3228 }
3229 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003230 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3231 // re-acquire status bar service next time it is needed.
3232 mStatusBarService = null;
3233 }
3234 }
3235
Craig Mautner84984fa2014-06-19 11:19:20 -07003236 @Override
3237 public void showRecentApps() {
3238 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3239 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3240 }
3241
Winson Chung1e8d71b2014-05-16 17:05:22 -07003242 private void showRecentApps(boolean triggeredFromAltTab) {
3243 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3244 try {
3245 IStatusBarService statusbar = getStatusBarService();
3246 if (statusbar != null) {
3247 statusbar.showRecentApps(triggeredFromAltTab);
3248 }
3249 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003250 Slog.e(TAG, "RemoteException when showing recent apps", e);
3251 // re-acquire status bar service next time it is needed.
3252 mStatusBarService = null;
3253 }
3254 }
3255
Winson Chungcdcd4872014-08-05 18:00:13 -07003256 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003257 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3258 try {
3259 IStatusBarService statusbar = getStatusBarService();
3260 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003261 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003262 }
3263 } catch (RemoteException e) {
3264 Slog.e(TAG, "RemoteException when closing recent apps", e);
3265 // re-acquire status bar service next time it is needed.
3266 mStatusBarService = null;
3267 }
3268 }
3269
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003270 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003271 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003272 }
3273
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003274 /**
3275 * A home key -> launch home action was detected. Take the appropriate action
3276 * given the situation with the keyguard.
3277 */
Bryce Lee662ed802015-04-10 20:11:39 +00003278 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3279 if (respectKeyguard) {
3280 if (isKeyguardShowingAndNotOccluded()) {
3281 // don't launch home if keyguard showing
3282 return;
3283 }
3284
3285 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3286 // when in keyguard restricted mode, must first verify unlock
3287 // before launching home
3288 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3289 @Override
3290 public void onKeyguardExitResult(boolean success) {
3291 if (success) {
3292 try {
3293 ActivityManagerNative.getDefault().stopAppSwitches();
3294 } catch (RemoteException e) {
3295 }
3296 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3297 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003298 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003299 }
Bryce Lee662ed802015-04-10 20:11:39 +00003300 });
3301 return;
3302 }
3303 }
3304
3305 // no keyguard stuff to worry about, just launch home!
3306 try {
3307 ActivityManagerNative.getDefault().stopAppSwitches();
3308 } catch (RemoteException e) {
3309 }
3310 if (mRecentsVisible) {
3311 // Hide Recents and notify it to launch Home
3312 if (awakenFromDreams) {
3313 awakenDreams();
3314 }
3315 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3316 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003317 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003318 // Otherwise, just launch Home
3319 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3320 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003321 }
3322 }
3323
John Spurlock04db1762013-05-13 12:46:41 -04003324 private final Runnable mClearHideNavigationFlag = new Runnable() {
3325 @Override
3326 public void run() {
3327 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3328 // Clear flags.
3329 mForceClearedSystemUiFlags &=
3330 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3331 }
3332 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003333 }
3334 };
3335
3336 /**
3337 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3338 * to determine when the nav bar should be shown and prevent applications from
3339 * receiving those touches.
3340 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003341 final class HideNavInputEventReceiver extends InputEventReceiver {
3342 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3343 super(inputChannel, looper);
3344 }
3345
Dianne Hackborndf89e652011-10-06 22:35:11 -07003346 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003347 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003348 boolean handled = false;
3349 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003350 if (event instanceof MotionEvent
3351 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3352 final MotionEvent motionEvent = (MotionEvent)event;
3353 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003354 // When the user taps down, we re-show the nav bar.
3355 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003356 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003357 // Any user activity always causes us to show the
3358 // navigation controls, if they had been hidden.
3359 // We also clear the low profile and only content
3360 // flags so that tapping on the screen will atomically
3361 // restore all currently hidden screen decorations.
3362 int newVal = mResettingSystemUiFlags |
3363 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3364 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3365 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003366 if (mResettingSystemUiFlags != newVal) {
3367 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003368 changed = true;
3369 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003370 // We don't allow the system's nav bar to be hidden
3371 // again for 1 second, to prevent applications from
3372 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003373 newVal = mForceClearedSystemUiFlags |
3374 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003375 if (mForceClearedSystemUiFlags != newVal) {
3376 mForceClearedSystemUiFlags = newVal;
3377 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003378 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003379 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003380 }
3381 if (changed) {
3382 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3383 }
3384 }
3385 }
3386 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003387 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003388 }
3389 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003390 }
3391 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3392 new InputEventReceiver.Factory() {
3393 @Override
3394 public InputEventReceiver createInputEventReceiver(
3395 InputChannel inputChannel, Looper looper) {
3396 return new HideNavInputEventReceiver(inputChannel, looper);
3397 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003398 };
3399
3400 @Override
3401 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003402 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3403 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003404 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003405
Dianne Hackborndf89e652011-10-06 22:35:11 -07003406 // Reset any bits in mForceClearingStatusBarVisibility that
3407 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003408 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003409 // Clear any bits in the new visibility that are currently being
3410 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003411 return visibility & ~mResettingSystemUiFlags
3412 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003413 }
3414
Craig Mautner69b08182012-09-05 13:07:13 -07003415 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003416 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3417 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003418 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003419 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3420 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003421
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003422 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3423 if (useOutsets) {
3424 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3425 if (outset > 0) {
3426 if (displayRotation == Surface.ROTATION_0) {
3427 outOutsets.bottom += outset;
3428 } else if (displayRotation == Surface.ROTATION_90) {
3429 outOutsets.right += outset;
3430 } else if (displayRotation == Surface.ROTATION_180) {
3431 outOutsets.top += outset;
3432 } else if (displayRotation == Surface.ROTATION_270) {
3433 outOutsets.left += outset;
3434 }
3435 }
3436 }
3437
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003438 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003439 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003440 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003441 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003442 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003443 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3444 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3445 } else {
3446 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3447 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3448 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003449 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3450 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003451 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003452 availRight - mStableFullscreenRight,
3453 availBottom - mStableFullscreenBottom);
3454 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003455 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003456 availRight - mStableRight, availBottom - mStableBottom);
3457 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003458 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003459 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003460 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003461 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003462 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003463 availRight - mCurRight, availBottom - mCurBottom);
3464 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003465 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003466 availRight - mCurRight, availBottom - mCurBottom);
3467 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003468
3469 outStableInsets.set(mStableLeft, mStableTop,
3470 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003471 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003472 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003473 outContentInsets.setEmpty();
3474 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003475 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003476
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003477 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3478 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3479 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3480 }
3481
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003482 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003483 @Override
3484 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3485 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003486 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003487 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3488 if (isDefaultDisplay) {
3489 switch (displayRotation) {
3490 case Surface.ROTATION_90:
3491 overscanLeft = mOverscanTop;
3492 overscanTop = mOverscanRight;
3493 overscanRight = mOverscanBottom;
3494 overscanBottom = mOverscanLeft;
3495 break;
3496 case Surface.ROTATION_180:
3497 overscanLeft = mOverscanRight;
3498 overscanTop = mOverscanBottom;
3499 overscanRight = mOverscanLeft;
3500 overscanBottom = mOverscanTop;
3501 break;
3502 case Surface.ROTATION_270:
3503 overscanLeft = mOverscanBottom;
3504 overscanTop = mOverscanLeft;
3505 overscanRight = mOverscanTop;
3506 overscanBottom = mOverscanRight;
3507 break;
3508 default:
3509 overscanLeft = mOverscanLeft;
3510 overscanTop = mOverscanTop;
3511 overscanRight = mOverscanRight;
3512 overscanBottom = mOverscanBottom;
3513 break;
3514 }
3515 } else {
3516 overscanLeft = 0;
3517 overscanTop = 0;
3518 overscanRight = 0;
3519 overscanBottom = 0;
3520 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003521 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3522 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3523 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3524 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003525 mSystemLeft = 0;
3526 mSystemTop = 0;
3527 mSystemRight = displayWidth;
3528 mSystemBottom = displayHeight;
3529 mUnrestrictedScreenLeft = overscanLeft;
3530 mUnrestrictedScreenTop = overscanTop;
3531 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3532 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3533 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3534 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003535 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3536 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003537 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003538 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003539 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003540 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003541 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003542 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003543 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003544 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003545 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003546 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003547
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003548 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3549 final Rect pf = mTmpParentFrame;
3550 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003551 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003552 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003553 final Rect dcf = mTmpDecorFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003554 final Rect osf = mTmpOutsetFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003555 pf.left = df.left = of.left = vf.left = mDockLeft;
3556 pf.top = df.top = of.top = vf.top = mDockTop;
3557 pf.right = df.right = of.right = vf.right = mDockRight;
3558 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003559 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003560
Craig Mautner69b08182012-09-05 13:07:13 -07003561 if (isDefaultDisplay) {
3562 // For purposes of putting out fake window up to steal focus, we will
3563 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003564 final int sysui = mLastSystemUiFlags;
3565 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003566 boolean navTranslucent = (sysui
3567 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003568 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3569 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3570 boolean navAllowedHidden = immersive || immersiveSticky;
3571 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003572 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3573 if (!isKeyguardShowing) {
3574 navTranslucent &= areTranslucentBarsAllowed();
3575 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003576
Craig Mautner69b08182012-09-05 13:07:13 -07003577 // When the navigation bar isn't visible, we put up a fake
3578 // input window to catch all touch events. This way we can
3579 // detect when the user presses anywhere to bring back the nav
3580 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003581 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003582 if (mInputConsumer != null) {
3583 mInputConsumer.dismiss();
3584 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003585 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003586 } else if (mInputConsumer == null) {
3587 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3588 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003589 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003590
Craig Mautner69b08182012-09-05 13:07:13 -07003591 // For purposes of positioning and showing the nav bar, if we have
3592 // decided that it can't be hidden (because of the screen aspect ratio),
3593 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003594 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003595
John Spurlockad3e6cb2013-04-30 08:47:43 -04003596 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003597 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003598 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003599 // Force the navigation bar to its appropriate place and
3600 // size. We need to do this directly, instead of relying on
3601 // it to bubble up from the nav bar, because this needs to
3602 // change atomically with screen rotations.
3603 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3604 if (mNavigationBarOnBottom) {
3605 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003606 int top = displayHeight - overscanBottom
3607 - mNavigationBarHeightForRotation[displayRotation];
3608 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003609 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003610 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003611 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003612 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003613 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003614 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003615 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3616 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003617 } else {
3618 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003619 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003620 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003621 if (navVisible && !navTranslucent && !navAllowedHidden
3622 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003623 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003624 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003625 // and not in the process of animating on or off, then
3626 // we can tell the app that it is covered by it.
3627 mSystemBottom = mTmpNavigationFrame.top;
3628 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003629 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003630 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003631 int left = displayWidth - overscanRight
3632 - mNavigationBarWidthForRotation[displayRotation];
3633 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003634 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003635 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003636 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003637 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003638 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003639 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003640 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3641 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003642 } else {
3643 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003644 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003645 }
Adrian Roosfe836fa2015-08-11 17:36:43 -07003646 if (navVisible && !navTranslucent && !navAllowedHidden
3647 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003648 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003649 // If the nav bar is currently requested to be visible,
3650 // and not in the process of animating on or off, then
3651 // we can tell the app that it is covered by it.
3652 mSystemRight = mTmpNavigationFrame.left;
3653 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003654 }
Craig Mautner69b08182012-09-05 13:07:13 -07003655 // Make sure the content and current rectangles are updated to
3656 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003657 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3658 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3659 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3660 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003661 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3662 // And compute the final frame.
3663 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003664 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003665 mTmpNavigationFrame, mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003666 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003667 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003668 updateSysUiVisibility = true;
3669 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003670 }
Craig Mautnereda67292013-04-28 13:50:14 -07003671 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003672 mDockLeft, mDockTop, mDockRight, mDockBottom));
3673
3674 // decide where the status bar goes ahead of time
3675 if (mStatusBar != null) {
3676 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003677 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3678 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3679 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3680 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3681 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003682 vf.left = mStableLeft;
3683 vf.top = mStableTop;
3684 vf.right = mStableRight;
3685 vf.bottom = mStableBottom;
3686
3687 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3688
3689 // Let the status bar determine its size.
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003690 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3691 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3692 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
Craig Mautner69b08182012-09-05 13:07:13 -07003693
3694 // For layout, the status bar is always at the top with our fixed height.
3695 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3696
John Spurlocke1f366f2013-08-05 12:22:40 -04003697 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003698 boolean statusBarTranslucent = (sysui
3699 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003700 if (!isKeyguardShowing) {
3701 statusBarTranslucent &= areTranslucentBarsAllowed();
3702 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003703
Craig Mautner69b08182012-09-05 13:07:13 -07003704 // If the status bar is hidden, we don't want to cause
3705 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003706 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003707 // Status bar may go away, so the screen area it occupies
3708 // is available to apps but just covering them when the
3709 // status bar is visible.
3710 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3711
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003712 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3713 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3714 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3715 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003716
Craig Mautnereda67292013-04-28 13:50:14 -07003717 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003718 String.format(
3719 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3720 mDockLeft, mDockTop, mDockRight, mDockBottom,
3721 mContentLeft, mContentTop, mContentRight, mContentBottom,
3722 mCurLeft, mCurTop, mCurRight, mCurBottom));
3723 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003724 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003725 && !statusBarTransient && !statusBarTranslucent
3726 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003727 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003728 // and not in the process of animating on or off, then
3729 // we can tell the app that it is covered by it.
3730 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3731 }
John Spurlock27735a42013-08-14 17:57:38 -04003732 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003733 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003734 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003735 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003736 if (updateSysUiVisibility) {
3737 updateSystemUiVisibilityLw();
3738 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003739 }
3740 }
3741
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003742 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003743 @Override
John Spurlock46646232013-09-30 22:32:42 -04003744 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003745 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3746 return mStatusBar.getSurfaceLayer();
3747 }
3748
3749 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3750 return mNavigationBar.getSurfaceLayer();
3751 }
3752
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003753 return 0;
3754 }
3755
Craig Mautner967212c2013-04-13 21:10:58 -07003756 @Override
3757 public void getContentRectLw(Rect r) {
3758 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3759 }
3760
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003761 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3762 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003763 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3764 // Here's a special case: if this attached window is a panel that is
3765 // above the dock window, and the window it is attached to is below
3766 // the dock window, then the frames we computed for the window it is
3767 // attached to can not be used because the dock is effectively part
3768 // of the underlying window and the attached window is floating on top
3769 // of the whole thing. So, we ignore the attached window and explicitly
3770 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003771 df.left = of.left = cf.left = vf.left = mDockLeft;
3772 df.top = of.top = cf.top = vf.top = mDockTop;
3773 df.right = of.right = cf.right = vf.right = mDockRight;
3774 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003775 } else {
3776 // The effective display frame of the attached window depends on
3777 // whether it is taking care of insetting its content. If not,
3778 // we need to use the parent's content frame so that the entire
3779 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003780 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003781 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003782 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003783 // Set the content frame of the attached window to the parent's decor frame
3784 // (same as content frame when IME isn't present) if specifically requested by
3785 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3786 // Otherwise, use the overscan frame.
3787 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3788 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003789 } else {
3790 // If the window is resizing, then we want to base the content
3791 // frame on our attached content frame to resize... however,
3792 // things can be tricky if the attached window is NOT in resize
3793 // mode, in which case its content frame will be larger.
3794 // Ungh. So to deal with that, make sure the content frame
3795 // we end up using is not covering the IM dock.
3796 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003797 if (attached.isVoiceInteraction()) {
3798 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3799 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3800 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3801 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3802 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003803 if (cf.left < mContentLeft) cf.left = mContentLeft;
3804 if (cf.top < mContentTop) cf.top = mContentTop;
3805 if (cf.right > mContentRight) cf.right = mContentRight;
3806 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3807 }
3808 }
3809 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003810 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003811 vf.set(attached.getVisibleFrameLw());
3812 }
3813 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3814 // window should be positioned relative to its parent or the entire
3815 // screen.
3816 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3817 ? attached.getFrameLw() : df);
3818 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003819
3820 private void applyStableConstraints(int sysui, int fl, Rect r) {
3821 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3822 // If app is requesting a stable layout, don't let the
3823 // content insets go below the stable values.
3824 if ((fl & FLAG_FULLSCREEN) != 0) {
3825 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3826 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3827 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3828 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3829 } else {
3830 if (r.left < mStableLeft) r.left = mStableLeft;
3831 if (r.top < mStableTop) r.top = mStableTop;
3832 if (r.right > mStableRight) r.right = mStableRight;
3833 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3834 }
3835 }
3836 }
3837
Jorim Jaggiaa806142015-05-20 18:04:16 -07003838 private boolean canReceiveInput(WindowState win) {
3839 boolean notFocusable =
3840 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3841 boolean altFocusableIm =
3842 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3843 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3844 return !notFocusableForIm;
3845 }
3846
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003847 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003848 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003849 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003850 // We've already done the navigation bar and status bar. If the status bar can receive
3851 // input, we need to layout it again to accomodate for the IME window.
3852 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003853 return;
3854 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003855 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003856 final boolean isDefaultDisplay = win.isDefaultDisplay();
3857 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003858 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3859 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003860 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003861 offsetInputMethodWindowLw(mLastInputMethodWindow);
3862 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003863
John Spurlockc6d1c602014-01-17 15:22:06 -05003864 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003865 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003866 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003867
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003868 final Rect pf = mTmpParentFrame;
3869 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003870 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003871 final Rect cf = mTmpContentFrame;
3872 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003873 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003874 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003875 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003876 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003877
3878 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003879 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003880
Craig Mautnerf683b562012-10-02 11:10:57 -07003881 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3882
Adrian Roosfa104232014-06-20 16:10:14 -07003883 if (isDefaultDisplay) {
3884 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3885 } else {
3886 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3887 }
3888
Craig Mautner69b08182012-09-05 13:07:13 -07003889 if (!isDefaultDisplay) {
3890 if (attached != null) {
3891 // If this window is attached to another, our display
3892 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003893 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003894 } else {
3895 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003896 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3897 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3898 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003899 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003900 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003901 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003902 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003903 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003904 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3905 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3906 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003907 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003908 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003909 // ...with content insets above the nav bar
3910 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003911 // IM dock windows always go to the bottom of the screen.
3912 attrs.gravity = Gravity.BOTTOM;
3913 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003914 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003915 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003916 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003917 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3918 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003919 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003920 // Note: In Phone landscape mode, the button bar should also be excluded.
3921 cf.right = vf.right = mStableRight;
3922 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003923 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003924 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003925 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3926 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3927 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3928 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3929 cf.left = vf.left = mStableLeft;
3930 cf.top = vf.top = mStableTop;
3931 cf.right = vf.right = mStableRight;
3932 vf.bottom = mStableBottom;
3933 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003934 } else {
John Spurlock46646232013-09-30 22:32:42 -04003935
3936 // Default policy decor for the default display
3937 dcf.left = mSystemLeft;
3938 dcf.top = mSystemTop;
3939 dcf.right = mSystemRight;
3940 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003941 final boolean inheritTranslucentDecor = (attrs.privateFlags
3942 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003943 final boolean isAppWindow =
3944 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3945 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3946 final boolean topAtRest =
3947 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3948 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003949 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3950 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003951 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3952 && (fl & WindowManager.LayoutParams.
3953 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003954 // Ensure policy decor includes status bar
3955 dcf.top = mStableTop;
3956 }
John Spurlockbd957402013-10-03 11:38:39 -04003957 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003958 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3959 && (fl & WindowManager.LayoutParams.
3960 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003961 // Ensure policy decor includes navigation bar
3962 dcf.bottom = mStableBottom;
3963 dcf.right = mStableRight;
3964 }
3965 }
3966
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003967 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3968 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003969 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003970 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003971 // This is the case for a normal activity window: we want it
3972 // to cover all of the screen space, and it can take care of
3973 // moving its contents to account for screen decorations that
3974 // intrude into that space.
3975 if (attached != null) {
3976 // If this window is attached to another, our display
3977 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003978 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003979 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003980 if (attrs.type == TYPE_STATUS_BAR_PANEL
3981 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003982 // Status bar panels are the only windows who can go on top of
3983 // the status bar. They are protected by the STATUS_BAR_SERVICE
3984 // permission, so they have the same privileges as the status
3985 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003986 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003987 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003988
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003989 pf.left = df.left = of.left = hasNavBar
3990 ? mDockLeft : mUnrestrictedScreenLeft;
3991 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3992 pf.right = df.right = of.right = hasNavBar
3993 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3994 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3995 pf.bottom = df.bottom = of.bottom = hasNavBar
3996 ? mRestrictedScreenTop+mRestrictedScreenHeight
3997 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003998
Craig Mautnereda67292013-04-28 13:50:14 -07003999 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004000 "Laying out status bar window: (%d,%d - %d,%d)",
4001 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04004002 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004003 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4004 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4005 // Asking to layout into the overscan region, so give it that pure
4006 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004007 pf.left = df.left = of.left = mOverscanScreenLeft;
4008 pf.top = df.top = of.top = mOverscanScreenTop;
4009 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
4010 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
4011 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004012 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004013 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004014 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4015 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004016 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08004017 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004018 // only do this for application windows to ensure no window that
4019 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08004020 pf.left = df.left = mOverscanScreenLeft;
4021 pf.top = df.top = mOverscanScreenTop;
4022 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4023 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004024 // We need to tell the app about where the frame inside the overscan
4025 // is, so it can inset its content by that amount -- it didn't ask
4026 // to actually extend itself into the overscan region.
4027 of.left = mUnrestrictedScreenLeft;
4028 of.top = mUnrestrictedScreenTop;
4029 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4030 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004031 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004032 pf.left = df.left = mRestrictedOverscanScreenLeft;
4033 pf.top = df.top = mRestrictedOverscanScreenTop;
4034 pf.right = df.right = mRestrictedOverscanScreenLeft
4035 + mRestrictedOverscanScreenWidth;
4036 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4037 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004038 // We need to tell the app about where the frame inside the overscan
4039 // is, so it can inset its content by that amount -- it didn't ask
4040 // to actually extend itself into the overscan region.
4041 of.left = mUnrestrictedScreenLeft;
4042 of.top = mUnrestrictedScreenTop;
4043 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4044 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004045 }
Craig Mautner69b08182012-09-05 13:07:13 -07004046
John Spurlock46646232013-09-30 22:32:42 -04004047 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004048 if (win.isVoiceInteraction()) {
4049 cf.left = mVoiceContentLeft;
4050 cf.top = mVoiceContentTop;
4051 cf.right = mVoiceContentRight;
4052 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004053 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004054 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4055 cf.left = mDockLeft;
4056 cf.top = mDockTop;
4057 cf.right = mDockRight;
4058 cf.bottom = mDockBottom;
4059 } else {
4060 cf.left = mContentLeft;
4061 cf.top = mContentTop;
4062 cf.right = mContentRight;
4063 cf.bottom = mContentBottom;
4064 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004065 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004066 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004067 // Full screen windows are always given a layout that is as if the
4068 // status bar and other transient decors are gone. This is to avoid
4069 // bad states when moving from a window that is not hding the
4070 // status bar to one that is.
4071 cf.left = mRestrictedScreenLeft;
4072 cf.top = mRestrictedScreenTop;
4073 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4074 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004075 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004076 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004077 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4078 vf.left = mCurLeft;
4079 vf.top = mCurTop;
4080 vf.right = mCurRight;
4081 vf.bottom = mCurBottom;
4082 } else {
4083 vf.set(cf);
4084 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004085 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004086 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4087 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4088 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004089 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4090 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004091 // A window that has requested to fill the entire screen just
4092 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004093 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004094 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4095 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004096 pf.left = df.left = of.left = cf.left = hasNavBar
4097 ? mDockLeft : mUnrestrictedScreenLeft;
4098 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4099 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004100 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004101 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004102 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004103 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004104 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004105 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004106 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4107 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004108 } else if (attrs.type == TYPE_NAVIGATION_BAR
4109 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004110 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004111 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4112 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4113 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4114 + mUnrestrictedScreenWidth;
4115 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4116 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004117 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004118 "Laying out navigation bar window: (%d,%d - %d,%d)",
4119 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004120 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4121 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004122 && ((fl & FLAG_FULLSCREEN) != 0)) {
4123 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004124 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4125 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4126 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4127 + mOverscanScreenWidth;
4128 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4129 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004130 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004131 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004132 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4133 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4134 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4135 + mOverscanScreenWidth;
4136 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4137 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004138 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004139 // The wallpaper also has Real Ultimate Power, but we want to tell
4140 // it about the overscan area.
4141 pf.left = df.left = mOverscanScreenLeft;
4142 pf.top = df.top = mOverscanScreenTop;
4143 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4144 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4145 of.left = cf.left = mUnrestrictedScreenLeft;
4146 of.top = cf.top = mUnrestrictedScreenTop;
4147 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4148 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004149 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004150 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4151 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4152 // Asking to layout into the overscan region, so give it that pure
4153 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004154 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4155 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4156 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004157 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004158 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004159 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004160 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004161 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004162 && (attrs.type == TYPE_STATUS_BAR
4163 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004164 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004165 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4166 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004167 // Asking for layout as if the nav bar is hidden, lets the
4168 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004169 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004170 // can be above the nav bar can do this.
4171 // XXX This assumes that an app asking for this will also
4172 // ask for layout in only content. We can't currently figure out
4173 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004174 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4175 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4176 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4177 + mUnrestrictedScreenWidth;
4178 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4179 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004180 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004181 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4182 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4183 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4184 + mRestrictedScreenWidth;
4185 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4186 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004187 }
Craig Mautner69b08182012-09-05 13:07:13 -07004188
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004189 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004190
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004191 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4192 vf.left = mCurLeft;
4193 vf.top = mCurTop;
4194 vf.right = mCurRight;
4195 vf.bottom = mCurBottom;
4196 } else {
4197 vf.set(cf);
4198 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004199 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004200 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4201 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004202 // A child window should be placed inside of the same visible
4203 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004204 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004205 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004206 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4207 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004208 // Otherwise, a normal window must be placed inside the content
4209 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004210 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4211 // Status bar panels and the volume dialog are the only windows who can go on
4212 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004213 // permission, so they have the same privileges as the status
4214 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004215 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4216 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4217 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4218 + mRestrictedScreenWidth;
4219 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4220 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004221 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004222 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004223 pf.left = df.left = of.left = cf.left = mStableLeft;
4224 pf.top = df.top = of.top = cf.top = mStableTop;
4225 pf.right = df.right = of.right = cf.right = mStableRight;
4226 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004227 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004228 pf.left = mContentLeft;
4229 pf.top = mContentTop;
4230 pf.right = mContentRight;
4231 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004232 if (win.isVoiceInteraction()) {
4233 df.left = of.left = cf.left = mVoiceContentLeft;
4234 df.top = of.top = cf.top = mVoiceContentTop;
4235 df.right = of.right = cf.right = mVoiceContentRight;
4236 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4237 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004238 df.left = of.left = cf.left = mDockLeft;
4239 df.top = of.top = cf.top = mDockTop;
4240 df.right = of.right = cf.right = mDockRight;
4241 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004242 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004243 df.left = of.left = cf.left = mContentLeft;
4244 df.top = of.top = cf.top = mContentTop;
4245 df.right = of.right = cf.right = mContentRight;
4246 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004247 }
4248 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4249 vf.left = mCurLeft;
4250 vf.top = mCurTop;
4251 vf.right = mCurRight;
4252 vf.bottom = mCurBottom;
4253 } else {
4254 vf.set(cf);
4255 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004256 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004257 }
4258 }
Craig Mautner69b08182012-09-05 13:07:13 -07004259
Craig Mautnerb816bed2013-07-23 10:26:17 -07004260 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4261 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004262 df.left = df.top = -10000;
4263 df.right = df.bottom = 10000;
4264 if (attrs.type != TYPE_WALLPAPER) {
4265 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4266 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4267 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004268 }
4269
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004270 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4271 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004272 // We only want to apply outsets to certain types of windows. For example, we never want to
4273 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004274 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004275 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004276 osf = mTmpOutsetFrame;
4277 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4278 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4279 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004280 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004281 if (rotation == Surface.ROTATION_0) {
4282 osf.bottom += outset;
4283 } else if (rotation == Surface.ROTATION_90) {
4284 osf.right += outset;
4285 } else if (rotation == Surface.ROTATION_180) {
4286 osf.top -= outset;
4287 } else if (rotation == Surface.ROTATION_270) {
4288 osf.left -= outset;
4289 }
4290 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4291 + " with rotation " + rotation + ", result: " + osf);
4292 }
4293 }
4294
Craig Mautnereda67292013-04-28 13:50:14 -07004295 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004296 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004297 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004298 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004299 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004300 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004301 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004302 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004303 + " sf=" + sf.toShortString()
4304 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004305
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004306 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004307
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004308 // Dock windows carve out the bottom of the screen, so normal windows
4309 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004310 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4311 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004312 setLastInputMethodWindowLw(null, null);
4313 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004314 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004315 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4316 && !win.getGivenInsetsPendingLw()) {
4317 offsetVoiceInputWindowLw(win);
4318 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004319 }
4320
satok1bc0a492012-04-25 22:47:12 +09004321 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004322 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004323 top += win.getGivenContentInsetsLw().top;
4324 if (mContentBottom > top) {
4325 mContentBottom = top;
4326 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004327 if (mVoiceContentBottom > top) {
4328 mVoiceContentBottom = top;
4329 }
satok1bc0a492012-04-25 22:47:12 +09004330 top = win.getVisibleFrameLw().top;
4331 top += win.getGivenVisibleInsetsLw().top;
4332 if (mCurBottom > top) {
4333 mCurBottom = top;
4334 }
Craig Mautnereda67292013-04-28 13:50:14 -07004335 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004336 + mDockBottom + " mContentBottom="
4337 + mContentBottom + " mCurBottom=" + mCurBottom);
4338 }
4339
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004340 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004341 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004342 top += win.getGivenContentInsetsLw().top;
4343 if (mVoiceContentBottom > top) {
4344 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004345 }
4346 }
4347
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004348 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004349 @Override
4350 public void finishLayoutLw() {
4351 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004352 }
4353
4354 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004355 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004356 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004357 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004358 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004359 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004360 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004361 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004362 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004363 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004364 mForcingShowNavBar = false;
4365 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004366
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004367 mHideLockScreen = false;
4368 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004369 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004370 mShowingLockscreen = false;
4371 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004372 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004373 mKeyguardSecure = isKeyguardSecure();
4374 mKeyguardSecureIncludingHidden = mKeyguardSecure
4375 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004376 }
4377
4378 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004379 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004380 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4381 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004382 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4383 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004384 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004385 if (mTopFullscreenOpaqueWindowState == null
4386 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4387 mForcingShowNavBar = true;
4388 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004389 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004390 if (attrs.type == TYPE_STATUS_BAR) {
4391 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4392 mForceStatusBarFromKeyguard = true;
Jorim Jaggie1de9f62015-09-23 14:59:50 -07004393 mShowingLockscreen = true;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004394 }
4395 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4396 mForceStatusBarTransparent = true;
4397 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004398 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004399
4400 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4401 && attrs.type < FIRST_SYSTEM_WINDOW;
4402 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4403 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4404
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004405 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004406 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004407 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004408 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004409 mForceStatusBarFromKeyguard = true;
4410 } else {
4411 mForceStatusBar = true;
4412 }
4413 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004414 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004415 // If the lockscreen was showing when the dream started then wait
4416 // for the dream to draw before hiding the lockscreen.
4417 if (!mDreamingLockscreen
4418 || (win.isVisibleLw() && win.hasDrawnLw())) {
4419 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004420 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004421 }
4422 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004423
Yohei Yukawad1a09222015-06-30 16:22:05 -07004424 final IApplicationToken appToken = win.getAppToken();
4425
4426 // For app windows that are not attached, we decide if all windows in the app they
4427 // represent should be hidden or if we should hide the lockscreen. For attached app
4428 // windows we defer the decision to the window it is attached to.
4429 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004430 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004431 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004432 mAppsToBeHidden.remove(appToken);
4433 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004434 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004435 if (dismissKeyguard && !mKeyguardSecure) {
4436 mAppsThatDismissKeyguard.add(appToken);
Selim Cinek90b5e072015-08-28 17:05:56 -07004437 } else if (win.isDrawnLw() || win.hasAppShownWindows()) {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004438 mWinShowWhenLocked = win;
4439 mHideLockScreen = true;
4440 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004441 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004442 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004443 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004444 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004445 mAppsToBeHidden.add(appToken);
4446 } else {
4447 mAppsToBeHidden.remove(appToken);
4448 }
4449 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004450 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004451 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004452 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004453 if (attrs.x == 0 && attrs.y == 0
4454 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4455 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4456 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4457 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004458 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4459 mTopFullscreenOpaqueOrDimmingWindowState = win;
4460 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004461 if (!mAppsThatDismissKeyguard.isEmpty() &&
4462 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4463 if (DEBUG_LAYOUT) Slog.v(TAG,
4464 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004465 mDismissKeyguard = (mWinDismissingKeyguard == win
4466 && mSecureDismissingKeyguard == mKeyguardSecure)
4467 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004468 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004469 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004470 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Selim Cinek90b5e072015-08-28 17:05:56 -07004471 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked
4472 && (win.isDrawnLw() || win.hasAppShownWindows())) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004473 if (DEBUG_LAYOUT) Slog.v(TAG,
4474 "Setting mHideLockScreen to true by win " + win);
4475 mHideLockScreen = true;
4476 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004477 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004478 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004479 mAllowLockscreenWhenOn = true;
4480 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004481 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004482
4483 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004484 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4485 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004486 win.hideLw(false);
4487 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004488 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004489 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4490 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4491 // that is being hidden in an animation - keep the
4492 // keyguard hidden until the new window shows up and
4493 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004494 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004495 mHideLockScreen = true;
4496 mWinShowWhenLocked = win;
4497 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004498 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004499 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4500 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4501 && win.isDimming()) {
4502 mTopFullscreenOpaqueOrDimmingWindowState = win;
4503 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004504 }
4505
4506 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004507 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004508 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004509 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4510 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4511 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004512 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4513 // fullscreen window.
4514 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4515 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4516 mTopFullscreenOpaqueWindowState.hideLw(false);
4517 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4518 }
4519
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004520 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004521 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004522
4523 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4524 ? mTopFullscreenOpaqueWindowState.getAttrs()
4525 : null;
4526
Jeff Brownc8018eb2012-10-29 21:33:27 -07004527 // If we are not currently showing a dream then remember the current
4528 // lockscreen state. We will use this to determine whether the dream
4529 // started while the lockscreen was showing and remember this state
4530 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004531 if (!mShowingDream) {
4532 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004533 if (mDreamingSleepTokenNeeded) {
4534 mDreamingSleepTokenNeeded = false;
4535 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4536 }
4537 } else {
4538 if (!mDreamingSleepTokenNeeded) {
4539 mDreamingSleepTokenNeeded = true;
4540 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4541 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004542 }
4543
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004544 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004545 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004546 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004547 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004548 boolean shouldBeTransparent = mForceStatusBarTransparent
4549 && !mForceStatusBar
4550 && !mForceStatusBarFromKeyguard;
4551 if (!shouldBeTransparent) {
4552 mStatusBarController.setShowTransparent(false /* transparent */);
4553 } else if (!mStatusBar.isVisibleLw()) {
4554 mStatusBarController.setShowTransparent(true /* transparent */);
4555 }
4556 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004557 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004558 if (mStatusBarController.setBarShowingLw(true)) {
4559 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4560 }
Craig Mautner81defc72013-10-29 11:10:42 -07004561 // Maintain fullscreen layout until incoming animation is complete.
4562 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004563 // Transient status bar on the lockscreen is not allowed
4564 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4565 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4566 mLastSystemUiFlags, mLastSystemUiFlags);
4567 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004568 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004569 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004570 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004571 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004572 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004573 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004574 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004575 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004576 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004577 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004578 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004579 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004580 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4581 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004582 if (mStatusBarController.isTransientShowing()) {
4583 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004584 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4585 }
4586 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004587 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004588 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004589 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004590 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004591 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004592 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004593 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004594 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004595 if (mStatusBarController.setBarShowingLw(true)) {
4596 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4597 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004598 }
4599 }
4600 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004601
Craig Mautner81defc72013-10-29 11:10:42 -07004602 if (mTopIsFullscreen != topIsFullscreen) {
4603 if (!topIsFullscreen) {
4604 // Force another layout when status bar becomes fully shown.
4605 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4606 }
4607 mTopIsFullscreen = topIsFullscreen;
4608 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004609
Craig Mautner39834192012-09-02 07:47:24 -07004610 // Hide the key guard if a visible window explicitly specifies that it wants to be
4611 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004612 if (mKeyguardDelegate != null && mStatusBar != null) {
4613 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4614 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004615 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004616 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004617 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004618 changes |= FINISH_LAYOUT_REDO_LAYOUT
4619 | FINISH_LAYOUT_REDO_CONFIG
4620 | FINISH_LAYOUT_REDO_WALLPAPER;
4621 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004622 if (mKeyguardDelegate.isShowing()) {
4623 mHandler.post(new Runnable() {
4624 @Override
4625 public void run() {
4626 mKeyguardDelegate.keyguardDone(false, false);
4627 }
4628 });
4629 }
4630 } else if (mHideLockScreen) {
4631 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004632 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004633 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004634 changes |= FINISH_LAYOUT_REDO_LAYOUT
4635 | FINISH_LAYOUT_REDO_CONFIG
4636 | FINISH_LAYOUT_REDO_WALLPAPER;
4637 }
4638 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004639 mKeyguardHidden = false;
4640 if (setKeyguardOccludedLw(false)) {
4641 changes |= FINISH_LAYOUT_REDO_LAYOUT
4642 | FINISH_LAYOUT_REDO_CONFIG
4643 | FINISH_LAYOUT_REDO_WALLPAPER;
4644 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004645 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4646 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004647 mHandler.post(new Runnable() {
4648 @Override
4649 public void run() {
4650 mKeyguardDelegate.dismiss();
4651 }
4652 });
4653 }
4654 } else {
4655 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004656 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004657 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004658 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004659 changes |= FINISH_LAYOUT_REDO_LAYOUT
4660 | FINISH_LAYOUT_REDO_CONFIG
4661 | FINISH_LAYOUT_REDO_WALLPAPER;
4662 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004663 }
4664 }
Joe Onorato664644d2011-01-23 17:53:23 -08004665
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004666 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004667 // If the navigation bar has been hidden or shown, we need to do another
4668 // layout pass to update that window.
4669 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4670 }
Joe Onorato664644d2011-01-23 17:53:23 -08004671
Mike Lockwood28569302010-01-28 11:54:40 -05004672 // update since mAllowLockscreenWhenOn might have changed
4673 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004674 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004675 }
4676
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004677 /**
Jim Millerab954542014-10-10 18:21:49 -07004678 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004679 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004680 * @return Whether the flags have changed and we have to redo the layout.
4681 */
Jim Millerab954542014-10-10 18:21:49 -07004682 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4683 boolean wasOccluded = mKeyguardOccluded;
4684 boolean showing = mKeyguardDelegate.isShowing();
4685 if (wasOccluded && !isOccluded && showing) {
4686 mKeyguardOccluded = false;
4687 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004688 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4689 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4690 return true;
Jim Millerab954542014-10-10 18:21:49 -07004691 } else if (!wasOccluded && isOccluded && showing) {
4692 mKeyguardOccluded = true;
4693 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004694 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4695 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4696 return true;
4697 } else {
4698 return false;
4699 }
4700 }
4701
4702 private boolean isStatusBarKeyguard() {
4703 return mStatusBar != null
4704 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4705 }
4706
Jose Lima9546b202014-07-02 17:21:51 -07004707 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004708 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004709 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004710 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004711 return false;
4712 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004713 return true;
4714 }
4715
Jose Lima9546b202014-07-02 17:21:51 -07004716 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004717 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004718 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004719 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004720 // If the navigation bar has been hidden or shown, we need to do another
4721 // layout pass to update that window.
4722 return FINISH_LAYOUT_REDO_LAYOUT;
4723 }
4724 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004725 }
4726
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004727 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004728 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004729 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4730 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004731 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4732 if (newLidState == mLidState) {
4733 return;
4734 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004735
Jeff Brownc458ce92012-04-30 14:58:40 -07004736 mLidState = newLidState;
4737 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004738 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004739
4740 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004741 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4742 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004743 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004744 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004745 }
4746 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004747
Michael Wright3818c922014-09-02 13:59:07 -07004748 @Override
4749 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4750 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4751 if (mCameraLensCoverState == lensCoverState) {
4752 return;
4753 }
4754 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4755 lensCoverState == CAMERA_LENS_UNCOVERED) {
4756 Intent intent;
4757 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4758 mKeyguardDelegate.isShowing();
4759 if (keyguardActive) {
4760 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4761 } else {
4762 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4763 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004764 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4765 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004766 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004767 }
4768 mCameraLensCoverState = lensCoverState;
4769 }
4770
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004771 void setHdmiPlugged(boolean plugged) {
4772 if (mHdmiPlugged != plugged) {
4773 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004774 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004775 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004776 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004777 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004778 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004779 }
4780 }
4781
Joe Onoratoea495d42011-04-06 11:41:11 -07004782 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004783 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004784 // watch for HDMI plug messages if the hdmi switch exists
4785 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4786 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4787
Joe Onoratoea495d42011-04-06 11:41:11 -07004788 final String filename = "/sys/class/switch/hdmi/state";
4789 FileReader reader = null;
4790 try {
4791 reader = new FileReader(filename);
4792 char[] buf = new char[15];
4793 int n = reader.read(buf);
4794 if (n > 1) {
4795 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4796 }
4797 } catch (IOException ex) {
4798 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4799 } catch (NumberFormatException ex) {
4800 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4801 } finally {
4802 if (reader != null) {
4803 try {
4804 reader.close();
4805 } catch (IOException ex) {
4806 }
Joe Onoratodc100302011-01-11 17:07:41 -08004807 }
4808 }
4809 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004810 // This dance forces the code in setHdmiPlugged to run.
4811 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4812 mHdmiPlugged = !plugged;
4813 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004814 }
4815
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004816 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004817 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004818
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004819 final Runnable mScreenshotTimeout = new Runnable() {
4820 @Override public void run() {
4821 synchronized (mScreenshotLock) {
4822 if (mScreenshotConnection != null) {
4823 mContext.unbindService(mScreenshotConnection);
4824 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004825 }
Winson Chung9112ec32011-06-27 13:15:32 -07004826 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004827 }
4828 };
4829
4830 // Assume this is called from the Handler thread.
4831 private void takeScreenshot() {
4832 synchronized (mScreenshotLock) {
4833 if (mScreenshotConnection != null) {
4834 return;
4835 }
4836 ComponentName cn = new ComponentName("com.android.systemui",
4837 "com.android.systemui.screenshot.TakeScreenshotService");
4838 Intent intent = new Intent();
4839 intent.setComponent(cn);
4840 ServiceConnection conn = new ServiceConnection() {
4841 @Override
4842 public void onServiceConnected(ComponentName name, IBinder service) {
4843 synchronized (mScreenshotLock) {
4844 if (mScreenshotConnection != this) {
4845 return;
4846 }
4847 Messenger messenger = new Messenger(service);
4848 Message msg = Message.obtain(null, 1);
4849 final ServiceConnection myConn = this;
4850 Handler h = new Handler(mHandler.getLooper()) {
4851 @Override
4852 public void handleMessage(Message msg) {
4853 synchronized (mScreenshotLock) {
4854 if (mScreenshotConnection == myConn) {
4855 mContext.unbindService(mScreenshotConnection);
4856 mScreenshotConnection = null;
4857 mHandler.removeCallbacks(mScreenshotTimeout);
4858 }
4859 }
4860 }
4861 };
4862 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004863 msg.arg1 = msg.arg2 = 0;
4864 if (mStatusBar != null && mStatusBar.isVisibleLw())
4865 msg.arg1 = 1;
4866 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4867 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004868 try {
4869 messenger.send(msg);
4870 } catch (RemoteException e) {
4871 }
4872 }
4873 }
4874 @Override
4875 public void onServiceDisconnected(ComponentName name) {}
4876 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004877 if (mContext.bindServiceAsUser(
4878 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004879 mScreenshotConnection = conn;
4880 mHandler.postDelayed(mScreenshotTimeout, 10000);
4881 }
4882 }
Winson Chung9112ec32011-06-27 13:15:32 -07004883 }
4884
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004885 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004886 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004887 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004888 if (!mSystemBooted) {
4889 // If we have not yet booted, don't let key events do anything.
4890 return 0;
4891 }
4892
Jeff Brown037c33e2014-04-09 00:31:55 -07004893 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004894 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4895 final boolean canceled = event.isCanceled();
4896 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004897
Jeff Brown3122e442010-10-11 23:32:49 -07004898 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004899
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004900 // If screen is off then we treat the case where the keyguard is open but hidden
4901 // the same as if it were open and in front.
4902 // This will prevent any keys other than the power button from waking the screen
4903 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004904 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004905 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004906 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004907 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004908
Jeff Brown40013652012-05-16 21:22:36 -07004909 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004910 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004911 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004912 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004913 }
4914
Jeff Brown037c33e2014-04-09 00:31:55 -07004915 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004916 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004917 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4918 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004919 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004920 // When the device is interactive or the key is injected pass the
4921 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004922 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004923 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004924 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4925 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4926 // to the application but preserve its wake key status to make sure we still move
4927 // from dozing to fully interactive if we would normally go from off to fully
4928 // interactive.
4929 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004930 } else {
4931 // When the screen is off and the key is not injected, determine whether
4932 // to wake the device but don't pass the key to the application.
4933 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004934 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4935 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004936 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004937 }
4938
Justin Kohd378ad72013-04-01 12:18:26 -07004939 // If the key would be handled globally, just return the result, don't worry about special
4940 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004941 if (isValidGlobalKey(keyCode)
4942 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004943 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004944 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07004945 }
Justin Kohd378ad72013-04-01 12:18:26 -07004946 return result;
4947 }
4948
Jeff Brownbae8e772014-06-12 19:59:45 -07004949 boolean useHapticFeedback = down
4950 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4951 && event.getRepeatCount() == 0;
4952
Jeff Brown4d396052010-10-29 21:50:21 -07004953 // Handle special keys.
4954 switch (keyCode) {
4955 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004956 case KeyEvent.KEYCODE_VOLUME_UP:
4957 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004958 if (mUseTvRouting) {
4959 // On TVs volume keys never go to the foreground app
4960 result &= ~ACTION_PASS_TO_USER;
4961 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004962 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4963 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004964 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004965 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004966 mScreenshotChordVolumeDownKeyTriggered = true;
4967 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4968 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004969 cancelPendingPowerKeyAction();
4970 interceptScreenshotChord();
4971 }
4972 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004973 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004974 cancelPendingScreenshotChordAction();
4975 }
4976 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4977 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004978 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004979 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004980 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004981 cancelPendingPowerKeyAction();
4982 cancelPendingScreenshotChordAction();
4983 }
4984 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004985 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004986 cancelPendingScreenshotChordAction();
4987 }
4988 }
Jeff Brown4d396052010-10-29 21:50:21 -07004989 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004990 TelecomManager telecomManager = getTelecommService();
4991 if (telecomManager != null) {
4992 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004993 // If an incoming call is ringing, either VOLUME key means
4994 // "silence ringer". We handle these keys here, rather than
4995 // in the InCallScreen, to make sure we'll respond to them
4996 // even if the InCallScreen hasn't come to the foreground yet.
4997 // Look for the DOWN event here, to agree with the "fallback"
4998 // behavior in the InCallScreen.
4999 Log.i(TAG, "interceptKeyBeforeQueueing:"
5000 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07005001
Santos Cordon6848f722014-05-21 15:22:12 -07005002 // Silence the ringer. (It's safe to call this
5003 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005004 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07005005
Santos Cordon6848f722014-05-21 15:22:12 -07005006 // And *don't* pass this key thru to the current activity
5007 // (which is probably the InCallScreen.)
5008 result &= ~ACTION_PASS_TO_USER;
5009 break;
5010 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005011 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07005012 && (result & ACTION_PASS_TO_USER) == 0) {
5013 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07005014 // the application, just pass it to the session service.
5015
5016 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07005017 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005018 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005019 }
5020 }
5021
RoboErik430fc482014-06-12 15:49:20 -07005022 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08005023 if (mUseTvRouting) {
5024 dispatchDirectAudioEvent(event);
5025 } else {
5026 // If we aren't passing to the user and no one else
5027 // handled it send it to the session manager to
5028 // figure out.
5029 MediaSessionLegacyHelper.getHelper(mContext)
5030 .sendVolumeKeyEvent(event, true);
5031 }
Jeff Brown4d396052010-10-29 21:50:21 -07005032 break;
5033 }
5034 }
5035 break;
5036 }
5037
5038 case KeyEvent.KEYCODE_ENDCALL: {
5039 result &= ~ACTION_PASS_TO_USER;
5040 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005041 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005042 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005043 if (telecomManager != null) {
5044 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005045 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005046 if (interactive && !hungUp) {
5047 mEndCallKeyHandled = false;
5048 mHandler.postDelayed(mEndCallLongPress,
5049 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5050 } else {
5051 mEndCallKeyHandled = true;
5052 }
Jeff Brown4d396052010-10-29 21:50:21 -07005053 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005054 if (!mEndCallKeyHandled) {
5055 mHandler.removeCallbacks(mEndCallLongPress);
5056 if (!canceled) {
5057 if ((mEndcallBehavior
5058 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5059 if (goHome()) {
5060 break;
5061 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005062 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005063 if ((mEndcallBehavior
5064 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5065 mPowerManager.goToSleep(event.getEventTime(),
5066 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5067 isWakeKey = false;
5068 }
Jeff Brown4d396052010-10-29 21:50:21 -07005069 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005070 }
Jeff Brown4d396052010-10-29 21:50:21 -07005071 }
5072 break;
5073 }
5074
5075 case KeyEvent.KEYCODE_POWER: {
5076 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005077 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005078 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005079 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005080 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005081 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005082 }
5083 break;
5084 }
5085
Jeff Brown6212a492014-03-07 13:58:47 -08005086 case KeyEvent.KEYCODE_SLEEP: {
5087 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005088 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005089 if (!mPowerManager.isInteractive()) {
5090 useHapticFeedback = false; // suppress feedback if already non-interactive
5091 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005092 if (down) {
5093 sleepPress(event.getEventTime());
5094 } else {
5095 sleepRelease(event.getEventTime());
5096 }
Jeff Brown6212a492014-03-07 13:58:47 -08005097 break;
5098 }
5099
5100 case KeyEvent.KEYCODE_WAKEUP: {
5101 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005102 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005103 break;
5104 }
5105
Jeff Brown4d396052010-10-29 21:50:21 -07005106 case KeyEvent.KEYCODE_MEDIA_PLAY:
5107 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5108 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005109 case KeyEvent.KEYCODE_HEADSETHOOK:
5110 case KeyEvent.KEYCODE_MUTE:
5111 case KeyEvent.KEYCODE_MEDIA_STOP:
5112 case KeyEvent.KEYCODE_MEDIA_NEXT:
5113 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5114 case KeyEvent.KEYCODE_MEDIA_REWIND:
5115 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005116 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5117 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005118 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5119 // If the global session is active pass all media keys to it
5120 // instead of the active window.
5121 result &= ~ACTION_PASS_TO_USER;
5122 }
Jeff Brown4d396052010-10-29 21:50:21 -07005123 if ((result & ACTION_PASS_TO_USER) == 0) {
5124 // Only do this if we would otherwise not pass it to the user. In that
5125 // case, the PhoneWindow class will do the same thing, except it will
5126 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005127 // Note that we need to make a copy of the key event here because the
5128 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005129 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005130 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5131 new KeyEvent(event));
5132 msg.setAsynchronous(true);
5133 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005134 }
5135 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005136 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005137
Jeff Brown4d396052010-10-29 21:50:21 -07005138 case KeyEvent.KEYCODE_CALL: {
5139 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005140 TelecomManager telecomManager = getTelecommService();
5141 if (telecomManager != null) {
5142 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005143 Log.i(TAG, "interceptKeyBeforeQueueing:"
5144 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005145 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005146
Santos Cordon6848f722014-05-21 15:22:12 -07005147 // And *don't* pass this key thru to the current activity
5148 // (which is presumably the InCallScreen.)
5149 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005150 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005151 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005152 }
Jeff Brown4d396052010-10-29 21:50:21 -07005153 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005154 }
Michael Wright869a67c2014-08-26 19:33:06 -07005155 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5156 // Only do this if we would otherwise not pass it to the user. In that case,
5157 // interceptKeyBeforeDispatching would apply a similar but different policy in
5158 // order to invoke voice assist actions. Note that we need to make a copy of the
5159 // key event here because the original key event will be recycled when we return.
5160 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5161 mBroadcastWakeLock.acquire();
5162 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5163 keyguardActive ? 1 : 0, 0);
5164 msg.setAsynchronous(true);
5165 msg.sendToTarget();
5166 }
5167 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005168 }
Jeff Brown26875502014-01-30 21:47:47 -08005169
Jeff Brownbae8e772014-06-12 19:59:45 -07005170 if (useHapticFeedback) {
5171 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5172 }
5173
Jeff Brown26875502014-01-30 21:47:47 -08005174 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005175 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005176 }
Bryce Lee584a4452014-10-21 15:55:55 -07005177
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005178 return result;
5179 }
5180
Jeff Brown1c2e4942012-11-06 16:32:01 -08005181 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005182 * Returns true if the key can have global actions attached to it.
5183 * We reserve all power management keys for the system since they require
5184 * very careful handling.
5185 */
5186 private static boolean isValidGlobalKey(int keyCode) {
5187 switch (keyCode) {
5188 case KeyEvent.KEYCODE_POWER:
5189 case KeyEvent.KEYCODE_WAKEUP:
5190 case KeyEvent.KEYCODE_SLEEP:
5191 return false;
5192 default:
5193 return true;
5194 }
5195 }
5196
5197 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005198 * When the screen is off we ignore some keys that might otherwise typically
5199 * be considered wake keys. We filter them out here.
5200 *
5201 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5202 * is always considered a wake key.
5203 */
5204 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5205 switch (keyCode) {
5206 // ignore volume keys unless docked
5207 case KeyEvent.KEYCODE_VOLUME_UP:
5208 case KeyEvent.KEYCODE_VOLUME_DOWN:
5209 case KeyEvent.KEYCODE_VOLUME_MUTE:
5210 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5211
5212 // ignore media and camera keys
5213 case KeyEvent.KEYCODE_MUTE:
5214 case KeyEvent.KEYCODE_HEADSETHOOK:
5215 case KeyEvent.KEYCODE_MEDIA_PLAY:
5216 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5217 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5218 case KeyEvent.KEYCODE_MEDIA_STOP:
5219 case KeyEvent.KEYCODE_MEDIA_NEXT:
5220 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5221 case KeyEvent.KEYCODE_MEDIA_REWIND:
5222 case KeyEvent.KEYCODE_MEDIA_RECORD:
5223 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005224 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005225 case KeyEvent.KEYCODE_CAMERA:
5226 return false;
5227 }
5228 return true;
5229 }
5230
5231
Jeff Brown56194eb2011-03-02 19:23:13 -08005232 /** {@inheritDoc} */
5233 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005234 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5235 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005236 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5237 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005238 return 0;
5239 }
Michael Wright70af00a2014-09-03 19:30:20 -07005240 }
Bryce Lee5c138322014-11-03 08:26:09 -08005241
Michael Wright70af00a2014-09-03 19:30:20 -07005242 if (shouldDispatchInputWhenNonInteractive()) {
5243 return ACTION_PASS_TO_USER;
5244 }
Bryce Lee5c138322014-11-03 08:26:09 -08005245
Bryce Lee812d7022014-11-10 13:33:28 -08005246 // If we have not passed the action up and we are in theater mode without dreaming,
5247 // there will be no dream to intercept the touch and wake into ambient. The device should
5248 // wake up in this case.
5249 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005250 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5251 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005252 }
5253
Jeff Brown037c33e2014-04-09 00:31:55 -07005254 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005255 }
5256
Michael Wright70af00a2014-09-03 19:30:20 -07005257 private boolean shouldDispatchInputWhenNonInteractive() {
Michael Wright2ccf0c82015-08-04 23:03:03 +01005258 if (mDisplay == null || mDisplay.getState() == Display.STATE_OFF) {
5259 return false;
5260 }
5261 // Send events to keyguard while the screen is on and it's showing.
5262 if (isKeyguardShowingAndNotOccluded()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005263 return true;
5264 }
5265
5266 // Send events to a dozing dream even if the screen is off since the dream
5267 // is in control of the state of the screen.
5268 IDreamManager dreamManager = getDreamManager();
5269
5270 try {
5271 if (dreamManager != null && dreamManager.isDreaming()) {
5272 return true;
5273 }
5274 } catch (RemoteException e) {
5275 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5276 }
5277
5278 // Otherwise, consume events since the user can't see what is being
5279 // interacted with.
5280 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005281 }
5282
RoboErik001c59c2015-01-26 15:53:51 -08005283 private void dispatchDirectAudioEvent(KeyEvent event) {
5284 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5285 return;
5286 }
5287 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005288 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5289 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005290 String pkgName = mContext.getOpPackageName();
5291 switch (keyCode) {
5292 case KeyEvent.KEYCODE_VOLUME_UP:
5293 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005294 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005295 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005296 } catch (RemoteException e) {
5297 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5298 }
5299 break;
5300 case KeyEvent.KEYCODE_VOLUME_DOWN:
5301 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005302 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005303 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005304 } catch (RemoteException e) {
5305 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5306 }
5307 break;
5308 case KeyEvent.KEYCODE_VOLUME_MUTE:
5309 try {
5310 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005311 getAudioService().adjustSuggestedStreamVolume(
5312 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005313 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005314 }
5315 } catch (RemoteException e) {
5316 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5317 }
5318 break;
5319 }
5320 }
5321
Jeff Brown40013652012-05-16 21:22:36 -07005322 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5323 if (DEBUG_INPUT) {
5324 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005325 }
5326
Jeff Brown40013652012-05-16 21:22:36 -07005327 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5328 if (DEBUG_INPUT) {
5329 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5330 }
5331
5332 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5333 mHavePendingMediaKeyRepeatWithWakeLock = false;
5334 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5335 }
5336
5337 dispatchMediaKeyWithWakeLockToAudioService(event);
5338
5339 if (event.getAction() == KeyEvent.ACTION_DOWN
5340 && event.getRepeatCount() == 0) {
5341 mHavePendingMediaKeyRepeatWithWakeLock = true;
5342
5343 Message msg = mHandler.obtainMessage(
5344 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5345 msg.setAsynchronous(true);
5346 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5347 } else {
5348 mBroadcastWakeLock.release();
5349 }
5350 }
5351
5352 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5353 mHavePendingMediaKeyRepeatWithWakeLock = false;
5354
5355 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5356 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5357 if (DEBUG_INPUT) {
5358 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5359 }
5360
5361 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5362 mBroadcastWakeLock.release();
5363 }
5364
5365 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5366 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005367 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005368 }
5369 }
5370
Michael Wright869a67c2014-08-26 19:33:06 -07005371 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005372 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5373 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5374 if (dic != null) {
5375 try {
5376 dic.exitIdle("voice-search");
5377 } catch (RemoteException e) {
5378 }
5379 }
Michael Wright869a67c2014-08-26 19:33:06 -07005380 Intent voiceIntent =
5381 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5382 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005383 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005384 mBroadcastWakeLock.release();
5385 }
5386
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005387 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005388 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005389 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005390 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5391 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5392 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005393 } else {
5394 try {
5395 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5396 ServiceManager.getService(Context.UI_MODE_SERVICE));
5397 mUiMode = uiModeService.getCurrentModeType();
5398 } catch (RemoteException e) {
5399 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005400 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005401 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005402 synchronized (mLock) {
5403 updateOrientationListenerLp();
5404 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005405 }
5406 };
5407
Jeff Brown6aaf2952012-10-05 16:01:08 -07005408 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5409 @Override
5410 public void onReceive(Context context, Intent intent) {
5411 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005412 if (mKeyguardDelegate != null) {
5413 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005414 }
5415 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005416 if (mKeyguardDelegate != null) {
5417 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005418 }
5419 }
5420 }
5421 };
5422
Christopher Tate5e08af02012-09-21 17:17:22 -07005423 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5424 @Override
5425 public void onReceive(Context context, Intent intent) {
5426 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5427 // tickle the settings observer: this first ensures that we're
5428 // observing the relevant settings for the newly-active user,
5429 // and then updates our own bookkeeping based on the now-
5430 // current user.
5431 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005432
5433 // force a re-application of focused window sysui visibility.
5434 // the window may never have been shown for this user
5435 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005436 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005437 mLastSystemUiFlags = 0;
5438 updateSystemUiVisibilityLw();
5439 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005440 }
5441 }
5442 };
5443
Adrian Roosddc8b272015-05-21 16:28:27 -07005444 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005445 @Override
5446 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005447 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5448 if (!isUserSetupComplete()) {
5449 // Swipe-up for navigation bar is disabled during setup
5450 return;
5451 }
5452 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5453 mNavigationBarController.showTransient();
5454 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005455 }
5456 };
5457
John Spurlocke1f366f2013-08-05 12:22:40 -04005458 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005459 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005460 if (!isUserSetupComplete()) {
5461 // Swipe-up for navigation bar is disabled during setup
5462 return;
5463 }
John Spurlock27735a42013-08-14 17:57:38 -04005464 boolean sb = mStatusBarController.checkShowTransientBarLw();
5465 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005466 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005467 // Don't show status bar when swiping on already visible navigation bar
5468 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005469 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005470 return;
5471 }
John Spurlock27735a42013-08-14 17:57:38 -04005472 if (sb) mStatusBarController.showTransient();
5473 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005474 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005475 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005476 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005477 }
5478 }
5479
Jeff Brown3ee549c2014-09-22 20:14:39 -07005480 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005481 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005482 public void startedGoingToSleep(int why) {
5483 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005484 if (mKeyguardDelegate != null) {
5485 mKeyguardDelegate.onStartedGoingToSleep(why);
5486 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005487 }
5488
5489 // Called on the PowerManager's Notifier thread.
5490 @Override
5491 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005492 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005493 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005494 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005495
5496 // We must get this work done here because the power manager will drop
5497 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005498 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005499 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005500 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005501 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005502 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005503 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005504 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005505 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005506 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005507 }
5508
Jeff Brown3ee549c2014-09-22 20:14:39 -07005509 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005510 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005511 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005512 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005513 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005514
Jeff Brown3ee549c2014-09-22 20:14:39 -07005515 // Since goToSleep performs these functions synchronously, we must
5516 // do the same here. We cannot post this work to a handler because
5517 // that might cause it to become reordered with respect to what
5518 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005519 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005520 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005521
Jeff Browna20dda42014-05-27 20:57:24 -07005522 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005523 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005524 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005525 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005526
Jim Miller5ecd8112013-01-09 18:50:26 -08005527 if (mKeyguardDelegate != null) {
Jorim Jaggi740452e2015-07-09 12:13:59 -07005528 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005529 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005530 }
5531
Jeff Brown416c49c2015-05-26 19:50:18 -07005532 // Called on the PowerManager's Notifier thread.
5533 @Override
5534 public void finishedWakingUp() {
5535 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5536 }
5537
5538 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005539 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005540 }
5541
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005542 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005543 final boolean theaterModeEnabled = isTheaterModeEnabled();
5544 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005545 return false;
5546 }
5547
Bryce Leed3896842015-06-23 17:06:51 -07005548 if (theaterModeEnabled) {
5549 Settings.Global.putInt(mContext.getContentResolver(),
5550 Settings.Global.THEATER_MODE_ON, 0);
5551 }
5552
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005553 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005554 return true;
5555 }
5556
Jeff Brown36c4db82014-09-19 12:05:31 -07005557 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005558 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005559 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005560 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005561 }
5562
Jeff Brown36c4db82014-09-19 12:05:31 -07005563 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005564 if (mKeyguardDelegate != null) {
5565 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5566 }
Jorim Jaggi740452e2015-07-09 12:13:59 -07005567 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005568 }
5569
Jorim Jaggi740452e2015-07-09 12:13:59 -07005570 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5571 // as well as enabling the orientation change logic/sensor.
5572 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5573 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005574 }
5575
5576 // Called on the DisplayManager's DisplayPowerController thread.
5577 @Override
5578 public void screenTurnedOff() {
5579 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5580
Jeff Brown48d1b142015-06-10 16:36:03 -07005581 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005582 synchronized (mLock) {
5583 mScreenOnEarly = false;
5584 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005585 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005586 mWindowManagerDrawComplete = false;
5587 mScreenOnListener = null;
5588 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005589
5590 if (mKeyguardDelegate != null) {
5591 mKeyguardDelegate.onScreenTurnedOff();
5592 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005593 }
5594 }
5595
Jeff Brown3ee549c2014-09-22 20:14:39 -07005596 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005597 @Override
5598 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005599 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005600
Jeff Brown48d1b142015-06-10 16:36:03 -07005601 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005602 synchronized (mLock) {
5603 mScreenOnEarly = true;
5604 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005605 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005606 mWindowManagerDrawComplete = false;
5607 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005608
Jorim Jaggi740452e2015-07-09 12:13:59 -07005609 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005610 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5611 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi740452e2015-07-09 12:13:59 -07005612 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5613 } else {
5614 if (DEBUG_WAKEUP) Slog.d(TAG,
5615 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5616 finishKeyguardDrawn();
5617 }
5618 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005619 }
5620
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005621 // Called on the DisplayManager's DisplayPowerController thread.
5622 @Override
5623 public void screenTurnedOn() {
5624 synchronized (mLock) {
5625 if (mKeyguardDelegate != null) {
5626 mKeyguardDelegate.onScreenTurnedOn();
5627 }
5628 }
5629 }
5630
Jeff Brown36c4db82014-09-19 12:05:31 -07005631 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005632 synchronized (mLock) {
5633 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005634 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005635 }
5636
Jeff Brown36c4db82014-09-19 12:05:31 -07005637 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005638 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005639
5640 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005641 }
5642
Craig Mautner8a0da012014-05-31 15:13:37 -07005643 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005644 synchronized (mLock) {
5645 // We have just finished drawing screen content. Since the orientation listener
5646 // gets only installed when all windows are drawn, we try to install it again.
5647 updateOrientationListenerLp();
5648 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005649 final ScreenOnListener listener;
5650 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005651 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005652 if (DEBUG_WAKEUP) Slog.d(TAG,
5653 "finishScreenTurningOn: mAwake=" + mAwake
5654 + ", mScreenOnEarly=" + mScreenOnEarly
5655 + ", mScreenOnFully=" + mScreenOnFully
5656 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5657 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5658
5659 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5660 || (mAwake && !mKeyguardDrawComplete)) {
5661 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005662 }
5663
Jeff Brown3ee549c2014-09-22 20:14:39 -07005664 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5665 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005666 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005667 mScreenOnFully = true;
5668
5669 // Remember the first time we draw the keyguard so we know when we're done with
5670 // the main part of booting and can enable the screen and hide boot messages.
5671 if (!mKeyguardDrawnOnce && mAwake) {
5672 mKeyguardDrawnOnce = true;
5673 enableScreen = true;
5674 if (mBootMessageNeedsHiding) {
5675 mBootMessageNeedsHiding = false;
5676 hideBootMessages();
5677 }
5678 } else {
5679 enableScreen = false;
5680 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005681 }
5682
Jeff Brown3ee549c2014-09-22 20:14:39 -07005683 if (listener != null) {
5684 listener.onScreenOn();
5685 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005686
Jeff Brown3ee549c2014-09-22 20:14:39 -07005687 if (enableScreen) {
5688 try {
5689 mWindowManager.enableScreenIfNeeded();
5690 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005691 }
Craig Mautnera631d492014-08-05 15:16:01 -07005692 }
5693 }
5694
5695 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005696 synchronized (mLock) {
5697 if (!mKeyguardDrawnOnce) {
5698 mBootMessageNeedsHiding = true;
5699 return; // keyguard hasn't drawn the first time yet, not done booting
5700 }
Craig Mautnera631d492014-08-05 15:16:01 -07005701 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005702
5703 if (mBootMsgDialog != null) {
5704 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5705 mBootMsgDialog.dismiss();
5706 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005707 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005708 }
5709
5710 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005711 public boolean isScreenOn() {
5712 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005713 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005714
Dianne Hackborn08743722009-12-21 12:16:51 -08005715 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005716 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005717 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005718 if (mKeyguardDelegate != null) {
5719 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005720 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005721 }
5722
5723 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005724 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005725 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005726 if (mKeyguardDelegate != null) {
5727 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005728 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005729 }
5730
Jim Millerab954542014-10-10 18:21:49 -07005731 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005732 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005733 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005734 }
5735
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005736 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005737 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005738 public boolean isKeyguardLocked() {
5739 return keyguardOn();
5740 }
5741
5742 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005743 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005744 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005745 if (mKeyguardDelegate == null) return false;
5746 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005747 }
5748
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005749 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005750 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005751 public boolean isKeyguardShowingOrOccluded() {
5752 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5753 }
5754
5755 /** {@inheritDoc} */
5756 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005757 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005758 if (mKeyguardDelegate == null) return false;
5759 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005760 }
5761
Jose Lima9546b202014-07-02 17:21:51 -07005762 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005763 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005764 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005765 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005766 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005767 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005768 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005769 // ask the keyguard to prompt the user to authenticate if necessary
5770 mKeyguardDelegate.dismiss();
5771 }
5772 });
5773 }
5774 }
5775
5776 public void notifyActivityDrawnForKeyguardLw() {
5777 if (mKeyguardDelegate != null) {
5778 mHandler.post(new Runnable() {
5779 @Override
5780 public void run() {
5781 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005782 }
5783 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005784 }
5785 }
5786
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005787 @Override
5788 public boolean isKeyguardDrawnLw() {
5789 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005790 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005791 }
5792 }
5793
Jorim Jaggi0d674622014-05-21 01:34:15 +02005794 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005795 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005796 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005797 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005798 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005799 }
5800 }
5801
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005802 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005803 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005804 }
5805
5806 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005807 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005808 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005809
Jeff Brown01a98dd2011-09-20 15:08:29 -07005810 @Override
5811 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005812 if (false) {
5813 Slog.v(TAG, "rotationForOrientationLw(orient="
5814 + orientation + ", last=" + lastRotation
5815 + "); user=" + mUserRotation + " "
5816 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5817 ? "USER_ROTATION_LOCKED" : "")
5818 );
5819 }
5820
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005821 if (mForceDefaultOrientation) {
5822 return Surface.ROTATION_0;
5823 }
5824
The Android Open Source Project0727d222009-03-11 12:11:58 -07005825 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005826 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5827 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005828 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005829 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005830
Jeff Browndec6cf42011-11-15 14:08:20 -08005831 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005832 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005833 // Ignore sensor when lid switch is open and rotation is forced.
5834 preferredRotation = mLidOpenRotation;
5835 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005836 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005837 // Ignore sensor when in car dock unless explicitly enabled.
5838 // This case can override the behavior of NOSENSOR, and can also
5839 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005840 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005841 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005842 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5843 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5844 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005845 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005846 // Ignore sensor when in desk dock unless explicitly enabled.
5847 // This case can override the behavior of NOSENSOR, and can also
5848 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005849 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005850 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005851 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5852 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005853 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005854 preferredRotation = mDemoHdmiRotation;
5855 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5856 && mUndockedHdmiRotation >= 0) {
5857 // Ignore sensor when plugged into HDMI and an undocked orientation has
5858 // been specified in the configuration (only for legacy devices without
5859 // full multi-display support).
5860 // Note that the dock orientation overrides the HDMI orientation.
5861 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005862 } else if (mDemoRotationLock) {
5863 // Ignore sensor when demo rotation lock is enabled.
5864 // Note that the dock orientation and HDMI rotation lock override this.
5865 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005866 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5867 // Application just wants to remain locked in the last rotation.
5868 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005869 } else if (!mSupportAutoRotation) {
5870 // If we don't support auto-rotation then bail out here and ignore
5871 // the sensor and any rotation lock settings.
5872 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005873 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005874 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005875 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5876 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5877 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5878 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005879 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5880 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5881 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5882 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5883 // Otherwise, use sensor only if requested by the application or enabled
5884 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005885 if (mAllowAllRotations < 0) {
5886 // Can't read this during init() because the context doesn't
5887 // have display metrics at that time so we cannot determine
5888 // tablet vs. phone then.
5889 mAllowAllRotations = mContext.getResources().getBoolean(
5890 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5891 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005892 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005893 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005894 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5895 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005896 preferredRotation = sensorRotation;
5897 } else {
5898 preferredRotation = lastRotation;
5899 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005900 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5901 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5902 // Apply rotation lock. Does not apply to NOSENSOR.
5903 // The idea is that the user rotation expresses a weak preference for the direction
5904 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5905 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005906 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005907 } else {
5908 // No overriding preference.
5909 // We will do exactly what the application asked us to do.
5910 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005911 }
5912
Dianne Hackborne5439f22010-10-02 16:53:50 -07005913 switch (orientation) {
5914 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005915 // Return portrait unless overridden.
5916 if (isAnyPortrait(preferredRotation)) {
5917 return preferredRotation;
5918 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005919 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005920
Jeff Brown01a98dd2011-09-20 15:08:29 -07005921 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005922 // Return landscape unless overridden.
5923 if (isLandscapeOrSeascape(preferredRotation)) {
5924 return preferredRotation;
5925 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005926 return mLandscapeRotation;
5927
5928 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005929 // Return reverse portrait unless overridden.
5930 if (isAnyPortrait(preferredRotation)) {
5931 return preferredRotation;
5932 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005933 return mUpsideDownRotation;
5934
5935 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005936 // Return seascape unless overridden.
5937 if (isLandscapeOrSeascape(preferredRotation)) {
5938 return preferredRotation;
5939 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005940 return mSeascapeRotation;
5941
5942 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005943 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005944 // Return either landscape rotation.
5945 if (isLandscapeOrSeascape(preferredRotation)) {
5946 return preferredRotation;
5947 }
5948 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005949 return lastRotation;
5950 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005951 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005952
Jeff Brown01a98dd2011-09-20 15:08:29 -07005953 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005954 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005955 // Return either portrait rotation.
5956 if (isAnyPortrait(preferredRotation)) {
5957 return preferredRotation;
5958 }
5959 if (isAnyPortrait(lastRotation)) {
5960 return lastRotation;
5961 }
5962 return mPortraitRotation;
5963
5964 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005965 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5966 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005967 if (preferredRotation >= 0) {
5968 return preferredRotation;
5969 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005970 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005971 }
5972 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005973 }
5974
Jeff Brown01a98dd2011-09-20 15:08:29 -07005975 @Override
5976 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5977 switch (orientation) {
5978 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5979 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5980 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5981 return isAnyPortrait(rotation);
5982
5983 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5984 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5985 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5986 return isLandscapeOrSeascape(rotation);
5987
5988 default:
5989 return true;
5990 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005991 }
5992
Jeff Brownc0347aa2011-09-23 17:26:09 -07005993 @Override
5994 public void setRotationLw(int rotation) {
5995 mOrientationListener.setCurrentRotation(rotation);
5996 }
5997
Jeff Brown01a98dd2011-09-20 15:08:29 -07005998 private boolean isLandscapeOrSeascape(int rotation) {
5999 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006000 }
6001
Jeff Brown01a98dd2011-09-20 15:08:29 -07006002 private boolean isAnyPortrait(int rotation) {
6003 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006004 }
6005
Jose Lima9546b202014-07-02 17:21:51 -07006006 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006007 public int getUserRotationMode() {
6008 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07006009 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
6010 WindowManagerPolicy.USER_ROTATION_FREE :
6011 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006012 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006013
6014 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07006015 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006016 public void setUserRotationMode(int mode, int rot) {
6017 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006018
6019 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006020 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006021 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006022 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006023 rot,
6024 UserHandle.USER_CURRENT);
6025 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006026 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006027 0,
6028 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006029 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006030 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006031 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006032 1,
6033 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006034 }
6035 }
6036
Jose Lima9546b202014-07-02 17:21:51 -07006037 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006038 public void setSafeMode(boolean safeMode) {
6039 mSafeMode = safeMode;
6040 performHapticFeedbackLw(null, safeMode
6041 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6042 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006043 }
Craig Mautnereda67292013-04-28 13:50:14 -07006044
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006045 static long[] getLongIntArray(Resources r, int resid) {
6046 int[] ar = r.getIntArray(resid);
6047 if (ar == null) {
6048 return null;
6049 }
6050 long[] out = new long[ar.length];
6051 for (int i=0; i<ar.length; i++) {
6052 out[i] = ar[i];
6053 }
6054 return out;
6055 }
Craig Mautnereda67292013-04-28 13:50:14 -07006056
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006057 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006058 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006059 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006060 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006061 mKeyguardDelegate.onSystemReady();
6062
Michael Wright3818c922014-09-02 13:59:07 -07006063 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006064 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006065 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006066 synchronized (mLock) {
6067 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006068 mSystemReady = true;
6069 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006070 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006071 public void run() {
6072 updateSettings();
6073 }
6074 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006075
6076 bindKeyguardNow = mDeferBindKeyguard;
6077 if (bindKeyguardNow) {
6078 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6079 mDeferBindKeyguard = false;
6080 }
6081 }
6082
6083 if (bindKeyguardNow) {
6084 mKeyguardDelegate.bindService(mContext);
6085 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006086 }
Michael Wrighta4d22d72015-09-16 23:19:26 +01006087 mSystemGestures.systemReady();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006088 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006089
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006090 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006091 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006092 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006093 boolean bindKeyguardNow = false;
6094 synchronized (mLock) {
6095 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6096 // in systemReady if not.
6097 if (mKeyguardDelegate != null) {
6098 bindKeyguardNow = true;
6099 } else {
6100 // Because mKeyguardDelegate is null, we know that the synchronized block in
6101 // systemReady didn't run yet and setting this will actually have an effect.
6102 mDeferBindKeyguard = true;
6103 }
6104 }
6105 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006106 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006107 mKeyguardDelegate.onBootCompleted();
6108 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006109 synchronized (mLock) {
6110 mSystemBooted = true;
6111 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006112 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006113 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006114 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006115 }
6116
Dianne Hackborn661cd522011-08-22 00:26:20 -07006117 ProgressDialog mBootMsgDialog = null;
6118
6119 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006120 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006121 public void showBootMessage(final CharSequence msg, final boolean always) {
6122 mHandler.post(new Runnable() {
6123 @Override public void run() {
6124 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006125 int theme;
6126 if (mContext.getPackageManager().hasSystemFeature(
6127 PackageManager.FEATURE_WATCH)) {
6128 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6129 } else if (mContext.getPackageManager().hasSystemFeature(
6130 PackageManager.FEATURE_TELEVISION)) {
6131 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6132 } else {
6133 theme = 0;
6134 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006135
6136 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006137 // This dialog will consume all events coming in to
6138 // it, to avoid it trying to do things too early in boot.
6139 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6140 return true;
6141 }
6142 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6143 return true;
6144 }
6145 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6146 return true;
6147 }
6148 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6149 return true;
6150 }
6151 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6152 return true;
6153 }
6154 @Override public boolean dispatchPopulateAccessibilityEvent(
6155 AccessibilityEvent event) {
6156 return true;
6157 }
6158 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006159 if (mContext.getPackageManager().isUpgrade()) {
6160 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6161 } else {
6162 mBootMsgDialog.setTitle(R.string.android_start_title);
6163 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006164 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6165 mBootMsgDialog.setIndeterminate(true);
6166 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006167 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006168 mBootMsgDialog.getWindow().addFlags(
6169 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6170 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6171 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006172 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6173 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6174 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006175 mBootMsgDialog.setCancelable(false);
6176 mBootMsgDialog.show();
6177 }
6178 mBootMsgDialog.setMessage(msg);
6179 }
6180 });
6181 }
6182
6183 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006184 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006185 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006186 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006187 }
6188
Mike Lockwood28569302010-01-28 11:54:40 -05006189 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006190 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006191 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006192 // ***************************************
6193 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6194 // ***************************************
6195 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6196 // WITH ITS LOCKS HELD.
6197 //
6198 // This code must be VERY careful about the locks
6199 // it acquires.
6200 // In fact, the current code acquires way too many,
6201 // and probably has lurking deadlocks.
6202
Mike Lockwood28569302010-01-28 11:54:40 -05006203 synchronized (mScreenLockTimeout) {
6204 if (mLockScreenTimerActive) {
6205 // reset the timer
6206 mHandler.removeCallbacks(mScreenLockTimeout);
6207 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6208 }
6209 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006210 }
6211
Adam Cohenf7522022012-10-03 20:03:18 -07006212 class ScreenLockTimeout implements Runnable {
6213 Bundle options;
6214
6215 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006216 public void run() {
6217 synchronized (this) {
6218 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006219 if (mKeyguardDelegate != null) {
6220 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006221 }
Mike Lockwood28569302010-01-28 11:54:40 -05006222 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006223 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006224 }
6225 }
Mike Lockwood28569302010-01-28 11:54:40 -05006226
Adam Cohenf7522022012-10-03 20:03:18 -07006227 public void setLockOptions(Bundle options) {
6228 this.options = options;
6229 }
6230 }
6231
6232 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6233
Jose Lima9546b202014-07-02 17:21:51 -07006234 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006235 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006236 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6237 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006238 if (options != null) {
6239 // In case multiple calls are made to lockNow, we don't wipe out the options
6240 // until the runnable actually executes.
6241 mScreenLockTimeout.setLockOptions(options);
6242 }
Jim Miller93c518e2012-01-17 15:55:31 -08006243 mHandler.post(mScreenLockTimeout);
6244 }
6245
Mike Lockwood28569302010-01-28 11:54:40 -05006246 private void updateLockScreenTimeout() {
6247 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006248 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006249 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006250 if (mLockScreenTimerActive != enable) {
6251 if (enable) {
6252 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6253 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6254 } else {
6255 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6256 mHandler.removeCallbacks(mScreenLockTimeout);
6257 }
6258 mLockScreenTimerActive = enable;
6259 }
6260 }
6261 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006262
Jeff Brown061ea992015-04-17 19:55:47 -07006263 private void updateDreamingSleepToken(boolean acquire) {
6264 if (acquire) {
6265 if (mDreamingSleepToken == null) {
6266 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6267 }
6268 } else {
6269 if (mDreamingSleepToken != null) {
6270 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006271 mDreamingSleepToken = null;
6272 }
6273 }
6274 }
6275
6276 private void updateScreenOffSleepToken(boolean acquire) {
6277 if (acquire) {
6278 if (mScreenOffSleepToken == null) {
6279 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6280 }
6281 } else {
6282 if (mScreenOffSleepToken != null) {
6283 mScreenOffSleepToken.release();
6284 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006285 }
6286 }
6287 }
6288
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006289 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006290 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006291 public void enableScreenAfterBoot() {
6292 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006293 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006294 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006295 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006296
Jeff Brownc458ce92012-04-30 14:58:40 -07006297 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006298 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006299 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006300 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006301 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006302 }
Jeff Browna20dda42014-05-27 20:57:24 -07006303
6304 synchronized (mLock) {
6305 updateWakeGestureListenerLp();
6306 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006307 }
6308
Jeff Brown4f5fa282014-06-12 19:19:15 -07006309 void updateUiMode() {
6310 if (mUiModeManager == null) {
6311 mUiModeManager = IUiModeManager.Stub.asInterface(
6312 ServiceManager.getService(Context.UI_MODE_SERVICE));
6313 }
6314 try {
6315 mUiMode = mUiModeManager.getCurrentModeType();
6316 } catch (RemoteException e) {
6317 }
6318 }
6319
Jeff Brown01a98dd2011-09-20 15:08:29 -07006320 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006321 try {
6322 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006323 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6324 } catch (RemoteException e) {
6325 // Ignore
6326 }
6327 }
6328
6329 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6330 try {
6331 //set orientation on WindowManager
6332 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006333 } catch (RemoteException e) {
6334 // Ignore
6335 }
6336 }
6337
Daniel Sandler6396c722013-04-16 20:19:09 -04006338 /**
6339 * Return an Intent to launch the currently active dock app as home. Returns
6340 * null if the standard home should be launched, which is the case if any of the following is
6341 * true:
6342 * <ul>
6343 * <li>The device is not in either car mode or desk mode
6344 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6345 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6346 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6347 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6348 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006349 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006350 */
6351 Intent createHomeDockIntent() {
6352 Intent intent = null;
6353
6354 // What home does is based on the mode, not the dock state. That
6355 // is, when in car mode you should be taken to car home regardless
6356 // of whether we are actually in a car dock.
6357 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6358 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6359 intent = mCarDockIntent;
6360 }
6361 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6362 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6363 intent = mDeskDockIntent;
6364 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006365 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6366 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6367 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6368 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6369 // Always launch dock home from home when watch is docked, if it exists.
6370 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006371 }
6372
6373 if (intent == null) {
6374 return null;
6375 }
6376
6377 ActivityInfo ai = null;
6378 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6379 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006380 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006381 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006382 if (info != null) {
6383 ai = info.activityInfo;
6384 }
6385 if (ai != null
6386 && ai.metaData != null
6387 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6388 intent = new Intent(intent);
6389 intent.setClassName(ai.packageName, ai.name);
6390 return intent;
6391 }
6392
6393 return null;
6394 }
6395
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006396 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6397 if (awakenFromDreams) {
6398 awakenDreams();
6399 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006400
6401 Intent dock = createHomeDockIntent();
6402 if (dock != null) {
6403 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006404 if (fromHomeKey) {
6405 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6406 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006407 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006408 return;
6409 } catch (ActivityNotFoundException e) {
6410 }
6411 }
6412
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006413 Intent intent;
6414
6415 if (fromHomeKey) {
6416 intent = new Intent(mHomeIntent);
6417 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6418 } else {
6419 intent = mHomeIntent;
6420 }
6421
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006422 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006423 }
Craig Mautnereda67292013-04-28 13:50:14 -07006424
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006425 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006426 * goes to the home screen
6427 * @return whether it did anything
6428 */
6429 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006430 if (!isUserSetupComplete()) {
6431 Slog.i(TAG, "Not going home because user setup is in progress.");
6432 return false;
6433 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006434 if (false) {
6435 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006436 try {
6437 ActivityManagerNative.getDefault().stopAppSwitches();
6438 } catch (RemoteException e) {
6439 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006440 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006441 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006442 } else {
6443 // This code brings home to the front or, if it is already
6444 // at the front, puts the device to sleep.
6445 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006446 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6447 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6448 Log.d(TAG, "UTS-TEST-MODE");
6449 } else {
6450 ActivityManagerNative.getDefault().stopAppSwitches();
6451 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006452 Intent dock = createHomeDockIntent();
6453 if (dock != null) {
6454 int result = ActivityManagerNative.getDefault()
6455 .startActivityAsUser(null, null, dock,
6456 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6457 null, null, 0,
6458 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006459 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006460 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6461 return false;
6462 }
6463 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006464 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006465 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006466 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006467 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006468 null, null, 0,
6469 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006470 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006471 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006472 return false;
6473 }
6474 } catch (RemoteException ex) {
6475 // bummer, the activity manager, which is in this process, is dead
6476 }
6477 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006478 return true;
6479 }
Craig Mautnereda67292013-04-28 13:50:14 -07006480
6481 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006482 public void setCurrentOrientationLw(int newOrientation) {
6483 synchronized (mLock) {
6484 if (newOrientation != mCurrentAppOrientation) {
6485 mCurrentAppOrientation = newOrientation;
6486 updateOrientationListenerLp();
6487 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006488 }
6489 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006490
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006491 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6492 if (!isGlobalAccessibilityGestureEnabled()) {
6493 return;
6494 }
6495 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6496 Context.AUDIO_SERVICE);
6497 if (audioManager.isSilentMode()) {
6498 return;
6499 }
6500 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6501 Settings.System.DEFAULT_NOTIFICATION_URI);
6502 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6503 ringTone.play();
6504 }
Craig Mautnereda67292013-04-28 13:50:14 -07006505
Bryce Lee584a4452014-10-21 15:55:55 -07006506 private boolean isTheaterModeEnabled() {
6507 return Settings.Global.getInt(mContext.getContentResolver(),
6508 Settings.Global.THEATER_MODE_ON, 0) == 1;
6509 }
6510
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006511 private boolean isGlobalAccessibilityGestureEnabled() {
6512 return Settings.Global.getInt(mContext.getContentResolver(),
6513 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6514 }
6515
Craig Mautnereda67292013-04-28 13:50:14 -07006516 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006517 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006518 if (!mVibrator.hasVibrator()) {
6519 return false;
6520 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006521 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6522 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006523 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006524 return false;
6525 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006526 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006527 switch (effectId) {
6528 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006529 pattern = mLongPressVibePattern;
6530 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006531 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006532 pattern = mVirtualKeyVibePattern;
6533 break;
6534 case HapticFeedbackConstants.KEYBOARD_TAP:
6535 pattern = mKeyboardTapVibePattern;
6536 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006537 case HapticFeedbackConstants.CLOCK_TICK:
6538 pattern = mClockTickVibePattern;
6539 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006540 case HapticFeedbackConstants.CALENDAR_DATE:
6541 pattern = mCalendarDateVibePattern;
6542 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006543 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006544 pattern = mSafeModeDisabledVibePattern;
6545 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006546 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006547 pattern = mSafeModeEnabledVibePattern;
6548 break;
Mady Mellore8608912015-06-05 09:02:55 -07006549 case HapticFeedbackConstants.CONTEXT_CLICK:
6550 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006551 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006552 default:
6553 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006554 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006555 int owningUid;
6556 String owningPackage;
6557 if (win != null) {
6558 owningUid = win.getOwningUid();
6559 owningPackage = win.getOwningPackage();
6560 } else {
6561 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006562 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006563 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006564 if (pattern.length == 1) {
6565 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006566 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006567 } else {
6568 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006569 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006570 }
6571 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006572 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006573
6574 @Override
6575 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006576 }
6577
Jeff Brownc38c9be2012-10-04 13:16:19 -07006578 @Override
6579 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006580 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006581 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006582 }
6583 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006584
Dianne Hackborndf89e652011-10-06 22:35:11 -07006585 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006586 // If there is no window focused, there will be nobody to handle the events
6587 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006588 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6589 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006590 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006591 return 0;
6592 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006593 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006594 // We are updating at a point where the keyguard has gotten
6595 // focus, but we were last in a state where the top window is
6596 // hiding it. This is probably because the keyguard as been
6597 // shown while the top window was displayed, so we want to ignore
6598 // it here because this is just a very transient change and it
6599 // will quickly lose focus once it correctly gets hidden.
6600 return 0;
6601 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006602
John Spurlock1db8b682014-02-18 11:18:59 -05006603 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006604 & ~mResettingSystemUiFlags
6605 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006606 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006607 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006608 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006609 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006610 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006611 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006612 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006613 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006614 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006615 return 0;
6616 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006617 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006618 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006619 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006620 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006621 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006622 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006623 try {
6624 IStatusBarService statusbar = getStatusBarService();
6625 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006626 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006627 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006628 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006629 } catch (RemoteException e) {
6630 // re-acquire status bar service next time it is needed.
6631 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006632 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006633 }
6634 });
6635 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006636 }
6637
Adrian Rooscd3884d2015-02-18 17:25:23 +01006638 private int updateLightStatusBarLw(int vis) {
6639 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6640 ? mStatusBar
6641 : mTopFullscreenOpaqueOrDimmingWindowState;
6642
6643 if (statusColorWin != null) {
6644 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6645 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6646 // its light flag.
6647 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6648 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6649 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6650 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6651 // Otherwise if it's dimming, clear the light flag.
6652 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6653 }
6654 }
6655 return vis;
6656 }
6657
John Spurlock79da8332013-09-20 12:04:47 -04006658 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006659 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006660 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6661 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006662 : mTopFullscreenOpaqueWindowState;
6663 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6664 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6665
John Spurlock27735a42013-08-14 17:57:38 -04006666 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006667 int type = win.getAttrs().type;
6668 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006669 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006670 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6671 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006672 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006673 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6674 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006675 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006676 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6677 }
John Spurlockbd957402013-10-03 11:38:39 -04006678 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006679 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006680
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006681 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006682 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6683 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006684 }
6685
John Spurlock27735a42013-08-14 17:57:38 -04006686 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006687 boolean immersiveSticky =
6688 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006689 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006690 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006691 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006692 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6693 boolean hideStatusBarSysui =
6694 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006695 boolean hideNavBarSysui =
6696 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006697
John Spurlock27735a42013-08-14 17:57:38 -04006698 boolean transientStatusBarAllowed =
6699 mStatusBar != null && (
6700 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006701 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006702 || statusBarHasFocus);
6703
John Spurlockf1a36642013-10-12 17:50:42 -04006704 boolean transientNavBarAllowed =
6705 mNavigationBar != null &&
6706 hideNavBarSysui && immersiveSticky;
6707
Adrian Roosddc8b272015-05-21 16:28:27 -07006708 final long now = SystemClock.uptimeMillis();
6709 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6710 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6711 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6712 // The user performed the panic gesture recently, we're about to hide the bars,
6713 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6714 mPendingPanicGestureUptime = 0;
6715 mStatusBarController.showTransient();
6716 mNavigationBarController.showTransient();
6717 }
6718
John Spurlockf25706f2013-11-07 18:02:43 -05006719 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006720 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006721 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006722 && !transientNavBarAllowed;
6723 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006724 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006725 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006726 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006727 }
John Spurlock27735a42013-08-14 17:57:38 -04006728
Selim Cinekf98702e2015-05-20 22:48:40 -07006729 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6730 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6731 final boolean navAllowedHidden = immersive || immersiveSticky;
6732
Selim Cinekd6623612015-05-22 18:56:22 -07006733 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6734 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006735 // We can't hide the navbar from this window otherwise the input consumer would not get
6736 // the input events.
6737 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6738 }
6739
John Spurlock27735a42013-08-14 17:57:38 -04006740 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6741
6742 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006743 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6744 boolean newImmersiveMode = isImmersiveMode(vis);
6745 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006746 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006747 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6748 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006749 }
John Spurlock27735a42013-08-14 17:57:38 -04006750
John Spurlockf1a36642013-10-12 17:50:42 -04006751 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6752
John Spurlocke1f366f2013-08-05 12:22:40 -04006753 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006754 }
6755
John Spurlockf1a36642013-10-12 17:50:42 -04006756 private void clearClearableFlagsLw() {
6757 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6758 if (newVal != mResettingSystemUiFlags) {
6759 mResettingSystemUiFlags = newVal;
6760 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6761 }
6762 }
6763
6764 private boolean isImmersiveMode(int vis) {
6765 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006766 return mNavigationBar != null
6767 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006768 && (vis & flags) != 0
6769 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006770 }
6771
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006772 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006773 * @return whether the navigation or status bar can be made translucent
6774 *
6775 * This should return true unless touch exploration is not enabled or
6776 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006777 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006778 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006779 return mTranslucentDecorEnabled
6780 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006781 }
6782
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006783 // Use this instead of checking config_showNavigationBar so that it can be consistently
6784 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006785 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006786 public boolean hasNavigationBar() {
6787 return mHasNavigationBar;
6788 }
6789
satok1bc0a492012-04-25 22:47:12 +09006790 @Override
6791 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6792 mLastInputMethodWindow = ime;
6793 mLastInputMethodTargetWindow = target;
6794 }
6795
Craig Mautnerf1b67412012-09-19 13:18:29 -07006796 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006797 public int getInputMethodWindowVisibleHeightLw() {
6798 return mDockBottom - mCurBottom;
6799 }
6800
6801 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006802 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006803 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006804 if (mKeyguardDelegate != null) {
6805 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006806 }
John Spurlock13451a22012-09-28 14:40:41 -04006807 if (mStatusBarService != null) {
6808 try {
6809 mStatusBarService.setCurrentUser(newUserId);
6810 } catch (RemoteException e) {
6811 // oh well
6812 }
6813 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006814 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006815 }
6816
6817 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006818 public boolean canMagnifyWindow(int windowType) {
6819 switch (windowType) {
6820 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6821 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6822 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6823 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6824 return false;
6825 }
6826 }
6827 return true;
6828 }
6829
6830 @Override
6831 public boolean isTopLevelWindow(int windowType) {
6832 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6833 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6834 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6835 }
6836 return true;
6837 }
6838
Jim Miller4eeb4f62012-11-08 00:04:29 -08006839 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006840 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006841 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006842 pw.print(" mSystemReady="); pw.print(mSystemReady);
6843 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006844 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006845 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006846 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006847 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006848 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6849 || mForceClearedSystemUiFlags != 0) {
6850 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6851 pw.print(Integer.toHexString(mLastSystemUiFlags));
6852 pw.print(" mResettingSystemUiFlags=0x");
6853 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6854 pw.print(" mForceClearedSystemUiFlags=0x");
6855 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006856 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006857 if (mLastFocusNeedsMenu) {
6858 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6859 pw.println(mLastFocusNeedsMenu);
6860 }
Jeff Browna20dda42014-05-27 20:57:24 -07006861 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6862 pw.println(mWakeGestureEnabledSetting);
6863
Jeff Brownbcdfc622014-03-06 19:13:04 -08006864 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006865 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6866 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006867 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6868 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6869 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6870 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006871 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006872 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006873 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6874 pw.print(mCarDockEnablesAccelerometer);
6875 pw.print(" mDeskDockEnablesAccelerometer=");
6876 pw.println(mDeskDockEnablesAccelerometer);
6877 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6878 pw.print(mLidKeyboardAccessibility);
6879 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006880 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006881 pw.print(prefix);
6882 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6883 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006884 pw.print(prefix);
6885 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6886 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006887 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006888 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6889 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6890 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6891 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6892 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6893 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6894 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006895 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6896 pw.print(","); pw.print(mOverscanScreenTop);
6897 pw.print(") "); pw.print(mOverscanScreenWidth);
6898 pw.print("x"); pw.println(mOverscanScreenHeight);
6899 if (mOverscanLeft != 0 || mOverscanTop != 0
6900 || mOverscanRight != 0 || mOverscanBottom != 0) {
6901 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6902 pw.print(" top="); pw.print(mOverscanTop);
6903 pw.print(" right="); pw.print(mOverscanRight);
6904 pw.print(" bottom="); pw.println(mOverscanBottom);
6905 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006906 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6907 pw.print(mRestrictedOverscanScreenLeft);
6908 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6909 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6910 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006911 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6912 pw.print(","); pw.print(mUnrestrictedScreenTop);
6913 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6914 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6915 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6916 pw.print(","); pw.print(mRestrictedScreenTop);
6917 pw.print(") "); pw.print(mRestrictedScreenWidth);
6918 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006919 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6920 pw.print(","); pw.print(mStableFullscreenTop);
6921 pw.print(")-("); pw.print(mStableFullscreenRight);
6922 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006923 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6924 pw.print(","); pw.print(mStableTop);
6925 pw.print(")-("); pw.print(mStableRight);
6926 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006927 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6928 pw.print(","); pw.print(mSystemTop);
6929 pw.print(")-("); pw.print(mSystemRight);
6930 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006931 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6932 pw.print(","); pw.print(mCurTop);
6933 pw.print(")-("); pw.print(mCurRight);
6934 pw.print(","); pw.print(mCurBottom); pw.println(")");
6935 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6936 pw.print(","); pw.print(mContentTop);
6937 pw.print(")-("); pw.print(mContentRight);
6938 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006939 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6940 pw.print(","); pw.print(mVoiceContentTop);
6941 pw.print(")-("); pw.print(mVoiceContentRight);
6942 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006943 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6944 pw.print(","); pw.print(mDockTop);
6945 pw.print(")-("); pw.print(mDockRight);
6946 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006947 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6948 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006949 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6950 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006951 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6952 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006953 if (mLastInputMethodWindow != null) {
6954 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6955 pw.println(mLastInputMethodWindow);
6956 }
6957 if (mLastInputMethodTargetWindow != null) {
6958 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6959 pw.println(mLastInputMethodTargetWindow);
6960 }
6961 if (mStatusBar != null) {
6962 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006963 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6964 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006965 }
6966 if (mNavigationBar != null) {
6967 pw.print(prefix); pw.print("mNavigationBar=");
6968 pw.println(mNavigationBar);
6969 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006970 if (mFocusedWindow != null) {
6971 pw.print(prefix); pw.print("mFocusedWindow=");
6972 pw.println(mFocusedWindow);
6973 }
6974 if (mFocusedApp != null) {
6975 pw.print(prefix); pw.print("mFocusedApp=");
6976 pw.println(mFocusedApp);
6977 }
6978 if (mWinDismissingKeyguard != null) {
6979 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6980 pw.println(mWinDismissingKeyguard);
6981 }
6982 if (mTopFullscreenOpaqueWindowState != null) {
6983 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6984 pw.println(mTopFullscreenOpaqueWindowState);
6985 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006986 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6987 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6988 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6989 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006990 if (mForcingShowNavBar) {
6991 pw.print(prefix); pw.print("mForcingShowNavBar=");
6992 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6993 pw.println(mForcingShowNavBarLayer);
6994 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006995 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006996 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006997 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6998 pw.print(" mForceStatusBarFromKeyguard=");
6999 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007000 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07007001 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007002 pw.print(" mHomePressed="); pw.println(mHomePressed);
7003 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
7004 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
7005 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
7006 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
7007 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
7008 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
7009 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
7010 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
7011 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
7012 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07007013 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
7014 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
7015 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07007016
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07007017 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04007018 mStatusBarController.dump(pw, prefix);
7019 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007020 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007021
Jeff Browna20dda42014-05-27 20:57:24 -07007022 if (mWakeGestureListener != null) {
7023 mWakeGestureListener.dump(pw, prefix);
7024 }
Jeff Brown600f0032014-05-22 17:06:00 -07007025 if (mOrientationListener != null) {
7026 mOrientationListener.dump(pw, prefix);
7027 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007028 if (mBurnInProtectionHelper != null) {
7029 mBurnInProtectionHelper.dump(prefix, pw);
7030 }
Jorim Jaggi84dc08a2015-09-11 17:45:22 -07007031 if (mKeyguardDelegate != null) {
7032 mKeyguardDelegate.dump(prefix, pw);
7033 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007034 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007035}