blob: 978ed515aebf67b02f66fd2e9f7f9d234762ef92 [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;
Billy Laucbe540f2015-06-25 01:51:44 +010068import android.os.Process;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080069import android.os.RemoteException;
70import android.os.ServiceManager;
71import android.os.SystemClock;
72import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080073import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070074import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080075import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070076import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080077import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070078import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040079import android.service.dreams.DreamService;
80import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070081import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070082import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070083import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080084import android.util.EventLog;
85import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070086import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080087import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070088import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080089import android.view.Gravity;
90import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080091import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080092import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070093import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070094import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080095import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080096import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080097import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080098import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080099import android.view.KeyEvent;
100import android.view.MotionEvent;
Chris Wren9bb290b2015-06-29 12:02:13 -0400101
102import com.android.internal.logging.MetricsLogger;
Adam Powell6711f3b2015-05-06 15:57:09 -0700103import com.android.internal.policy.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800104import android.view.Surface;
105import android.view.View;
106import android.view.ViewConfiguration;
107import android.view.Window;
108import 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;
Craig Mautner8a0da012014-05-31 15:13:37 -0700121import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100122import com.android.server.policy.keyguard.KeyguardServiceDelegate;
123import com.android.server.policy.keyguard.KeyguardServiceDelegate.ShowListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800124
125import java.io.File;
126import java.io.FileReader;
127import java.io.IOException;
128import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700129import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800130import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800131
Dianne Hackbornc652de82013-02-15 16:32:56 -0800132import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700133import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
134import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
135import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700136import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
137import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
138import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800139
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800140/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700141 * WindowManagerPolicy implementation for the Android phone UI. This
142 * introduces a new method suffix, Lp, for an internal lock of the
143 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400144 * 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 -0700145 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800146 */
147public class PhoneWindowManager implements WindowManagerPolicy {
148 static final String TAG = "WindowManager";
149 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700150 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700151 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700152 static final boolean DEBUG_KEYGUARD = false;
153 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700154 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700155 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800156 static final boolean SHOW_STARTING_ANIMATIONS = true;
157 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400158
Daniel Sandler6396c722013-04-16 20:19:09 -0400159 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
160 // No longer recommended for desk docks; still useful in car docks.
161 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
162 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
163
Jeff Brown6d8fd272014-05-20 21:24:38 -0700164 static final int SHORT_PRESS_POWER_NOTHING = 0;
165 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
166 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
167 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800168 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700169
Joe Onoratod208e702010-10-08 16:22:43 -0400170 static final int LONG_PRESS_POWER_NOTHING = 0;
171 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
172 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700173 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700174
Jeff Brown13f00f02014-10-31 14:45:50 -0700175 static final int MULTI_PRESS_POWER_NOTHING = 0;
176 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
177 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
178
Michael Jurka3b1fc472011-06-13 10:54:40 -0700179 // These need to match the documentation/constant in
180 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800181 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800182 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700183 static final int LONG_PRESS_HOME_ASSIST = 2;
184
185 static final int DOUBLE_TAP_HOME_NOTHING = 0;
186 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800187
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000188 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
189 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
190
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700191 static final int APPLICATION_MEDIA_SUBLAYER = -2;
192 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800193 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800194 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700195 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700196
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800197 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
198 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
199 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500200 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700201 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800202
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700203 /**
204 * These are the system UI flags that, when changing, can cause the layout
205 * of the screen to change.
206 */
207 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400208 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400209 | View.SYSTEM_UI_FLAG_FULLSCREEN
210 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200211 | View.NAVIGATION_BAR_TRANSLUCENT
212 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700213
John Spurlock7b414672014-07-18 13:02:39 -0400214 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
215 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
216 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
217 .build();
218
Adrian Roosddc8b272015-05-21 16:28:27 -0700219 // The panic gesture may become active only after the keyguard is dismissed and the immersive
220 // app shows again. If that doesn't happen for 30s we drop the gesture.
221 private static final long PANIC_GESTURE_EXPIRATION = 30000;
222
Jim Miller5ecd8112013-01-09 18:50:26 -0800223 /**
224 * Keyguard stuff
225 */
226 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100227 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700228 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800229
Jeff Brown6651a632011-11-28 12:59:11 -0800230 /* Table of Application Launch keys. Maps from key codes to intent categories.
231 *
232 * These are special keys that are used to launch particular kinds of applications,
233 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
234 * usage page. We don't support quite that many yet...
235 */
236 static SparseArray<String> sApplicationLaunchKeyCategories;
237 static {
238 sApplicationLaunchKeyCategories = new SparseArray<String>();
239 sApplicationLaunchKeyCategories.append(
240 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
241 sApplicationLaunchKeyCategories.append(
242 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
243 sApplicationLaunchKeyCategories.append(
244 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
245 sApplicationLaunchKeyCategories.append(
246 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
247 sApplicationLaunchKeyCategories.append(
248 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
249 sApplicationLaunchKeyCategories.append(
250 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
251 }
252
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700253 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000254 static final int WAITING_FOR_DRAWN_TIMEOUT = 500;
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700255
Dianne Hackborndf89e652011-10-06 22:35:11 -0700256 /**
257 * Lock protecting internal state. Must not call out into window
258 * manager with lock held. (This lock will be acquired in places
259 * where the window manager is calling in with its own lock held.)
260 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800261 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700262
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800263 Context mContext;
264 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700265 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700266 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700267 PowerManager mPowerManager;
Jeff Brown061ea992015-04-17 19:55:47 -0700268 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700269 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400270 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700271 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700272 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800273 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700274 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800275 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000276 BurnInProtectionHelper mBurnInProtectionHelper;
Billy Laucbe540f2015-06-25 01:51:44 +0100277 AppOpsManager mAppOpsManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800278
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700279 // Vibrator pattern for haptic feedback of a long press.
280 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700281
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700282 // Vibrator pattern for haptic feedback of virtual key press.
283 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700284
Amith Yamasanic33cb712010-02-10 15:21:49 -0800285 // Vibrator pattern for a short vibration.
286 long[] mKeyboardTapVibePattern;
287
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700288 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
289 long[] mClockTickVibePattern;
290
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700291 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
292 long[] mCalendarDateVibePattern;
293
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700294 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
295 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700296
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700297 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
298 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700299
Mady Mellore8608912015-06-05 09:02:55 -0700300 // Vibrator pattern for haptic feedback of a context click.
301 long[] mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -0700302
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800303 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
304 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400305
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800306 boolean mSafeMode;
307 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700308 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400309 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400310 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700311 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400312 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
313 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
314 int[] mNavigationBarHeightForRotation = new int[4];
315 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400316
Craig Mautnera631d492014-08-05 15:16:01 -0700317 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800318 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700319 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700320 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700321 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700322 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
323 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
324 }
325 };
326 final ShowListener mKeyguardDelegateCallback = new ShowListener() {
327 @Override
328 public void onShown(IBinder windowToken) {
329 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onShown.");
330 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
331 }
332 };
333
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800334 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800335 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900336 WindowState mLastInputMethodWindow = null;
337 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800338
Jeff Brown13f00f02014-10-31 14:45:50 -0700339 // FIXME This state is shared between the input reader and handler thread.
340 // Technically it's broken and buggy but it has been like this for many years
341 // and we have not yet seen any problems. Someday we'll rewrite this logic
342 // so that only one thread is involved in handling input policy. Unfortunately
343 // it's on a critical path for power management so we can't just post the work to the
344 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
345 // to hold wakelocks during dispatch and eliminating the critical path.
346 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800347 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700348 volatile int mPowerKeyPressCounter;
349 volatile boolean mEndCallKeyHandled;
350
Winson Chungd42a6cf2014-06-03 16:24:04 -0700351 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700352 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700353 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800354
Jeff Brown2e7760e2012-04-11 15:14:55 -0700355 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700356 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700357 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800358
Dianne Hackbornc777e072010-02-12 13:07:59 -0800359 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700360 boolean mSystemBooted;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800361 boolean mHdmiPlugged;
Jinsuk Kime601b712015-07-07 08:01:02 +0900362 HdmiControl mHdmiControl;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700363 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400364 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700365 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700366 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400367 int mCarDockRotation;
368 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700369 int mUndockedHdmiRotation;
370 int mDemoHdmiRotation;
371 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800372 int mDemoRotation;
373 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400374
Jeff Browna20dda42014-05-27 20:57:24 -0700375 boolean mWakeGestureEnabledSetting;
376 MyWakeGestureListener mWakeGestureListener;
377
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700378 // Default display does not rotate, apps that require non-default orientation will have to
379 // have the orientation emulated.
380 private boolean mForceDefaultOrientation = false;
381
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400382 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
383 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700384 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400385
Jeff Brownbcdfc622014-03-06 19:13:04 -0800386 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700387 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400388 boolean mCarDockEnablesAccelerometer;
389 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700390 int mLidKeyboardAccessibility;
391 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700392 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700393 int mShortPressOnPowerBehavior;
394 int mLongPressOnPowerBehavior;
395 int mDoublePressOnPowerBehavior;
396 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000397 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700398 boolean mAwake;
399 boolean mScreenOnEarly;
400 boolean mScreenOnFully;
401 ScreenOnListener mScreenOnListener;
402 boolean mKeyguardDrawComplete;
403 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800404 boolean mOrientationSensorEnabled = false;
405 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800406 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400407 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800408 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700409
Jeff Brown70825162012-03-28 17:27:48 -0700410 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800411
412 // The last window we were told about in focusChanged.
413 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800414 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800415
Jeff Brown70825162012-03-28 17:27:48 -0700416 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800417
Dianne Hackbornc652de82013-02-15 16:32:56 -0800418 // The current size of the screen; really; extends into the overscan area of
419 // the screen and doesn't account for any system elements like the status bar.
420 int mOverscanScreenLeft, mOverscanScreenTop;
421 int mOverscanScreenWidth, mOverscanScreenHeight;
422 // The current visible size of the screen; really; (ir)regardless of whether the status
423 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800424 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
425 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800426 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
427 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
428 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700429 // The current size of the screen; these may be different than (0,0)-(dw,dh)
430 // if the status bar can't be hidden; in that case it effectively carves out
431 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800432 int mRestrictedScreenLeft, mRestrictedScreenTop;
433 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700434 // During layout, the current screen borders accounting for any currently
435 // visible system UI elements.
436 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700437 // For applications requesting stable content insets, these are them.
438 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700439 // For applications requesting stable content insets but have also set the
440 // fullscreen window flag, these are the stable dimensions without the status bar.
441 int mStableFullscreenLeft, mStableFullscreenTop;
442 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800443 // During layout, the current screen borders with all outer decoration
444 // (status bar, input method dock) accounted for.
445 int mCurLeft, mCurTop, mCurRight, mCurBottom;
446 // During layout, the frame in which content should be displayed
447 // to the user, accounting for all screen decoration except for any
448 // space they deem as available for other content. This is usually
449 // the same as mCur*, but may be larger if the screen decor has supplied
450 // content insets.
451 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700452 // During layout, the frame in which voice content should be displayed
453 // to the user, accounting for all screen decoration except for any
454 // space they deem as available for other content.
455 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800456 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800457 // windows are placed.
458 int mDockLeft, mDockTop, mDockRight, mDockBottom;
459 // During layout, the layer at which the doc window is placed.
460 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700461 // During layout, this is the layer of the status bar.
462 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700463 int mLastSystemUiFlags;
464 // Bits that we are in the process of clearing, so we want to prevent
465 // them from being set by applications until everything has been updated
466 // to have them clear.
467 int mResettingSystemUiFlags = 0;
468 // Bits that we are currently always keeping cleared.
469 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800470 // What we last reported to system UI about whether the compatibility
471 // menu needs to be displayed.
472 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700473 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
474 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700475
Selim Cinekf83e8242015-05-19 18:08:14 -0700476 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700477
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800478 static final Rect mTmpParentFrame = new Rect();
479 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800480 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800481 static final Rect mTmpContentFrame = new Rect();
482 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400483 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700484 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700485 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700486 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700487
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800488 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100489 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700490 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200491 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400492 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800493 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700494 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700495 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700496 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800497 boolean mForcingShowNavBar;
498 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700499
500 // States of keyguard dismiss.
501 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
502 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
503 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
504 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
505
506 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
507 * be done once per window. */
508 private WindowState mWinDismissingKeyguard;
509
tingna_sunge785ffa2015-05-12 13:23:15 +0800510 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
511 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
512 * lock SIM card. This variable is used to record the previous keyguard secure state for
513 * monitoring secure state change on window dismissing keyguard. */
514 private boolean mSecureDismissingKeyguard;
515
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700516 /** The window that is currently showing "over" the keyguard. If there is an app window
517 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
518 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
519 * the wallpaper. */
520 private WindowState mWinShowWhenLocked;
521
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700522 boolean mShowingLockscreen;
523 boolean mShowingDream;
524 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700525 boolean mDreamingSleepTokenNeeded;
526 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700527 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700528 boolean mKeyguardSecure;
529 boolean mKeyguardSecureIncludingHidden;
530 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800531 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700532 boolean mHomeConsumed;
533 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800534 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700535 Intent mCarDockIntent;
536 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700537 boolean mSearchKeyShortcutPending;
538 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700539 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700540 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800541
Mike Lockwood28569302010-01-28 11:54:40 -0500542 // support for activating the lock screen while the screen is on
543 boolean mAllowLockscreenWhenOn;
544 int mLockScreenTimeout;
545 boolean mLockScreenTimerActive;
546
David Brownbaf8d092010-03-08 21:52:59 -0800547 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800548 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800549
550 // Behavior of POWER button while in-call and screen on.
551 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
552 int mIncallPowerBehavior;
553
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700554 Display mDisplay;
555
Filip Gruszczynski2987f612015-06-30 15:03:30 -0700556 private int mDisplayRotation;
557
Dianne Hackborn9d132642011-04-21 17:26:39 -0700558 int mLandscapeRotation = 0; // default landscape rotation
559 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
560 int mPortraitRotation = 0; // default portrait rotation
561 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700562
Dianne Hackbornc652de82013-02-15 16:32:56 -0800563 int mOverscanLeft = 0;
564 int mOverscanTop = 0;
565 int mOverscanRight = 0;
566 int mOverscanBottom = 0;
567
Joe Onorato46b0d682010-11-22 17:37:27 -0800568 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700569 private int mLongPressOnHomeBehavior;
570
571 // What we do when the user double-taps on home
572 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800573
Bryce Lee584a4452014-10-21 15:55:55 -0700574 // Allowed theater mode wake actions
575 private boolean mAllowTheaterModeWakeFromKey;
576 private boolean mAllowTheaterModeWakeFromPowerKey;
577 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800578 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700579 private boolean mAllowTheaterModeWakeFromCameraLens;
580 private boolean mAllowTheaterModeWakeFromLidSwitch;
581 private boolean mAllowTheaterModeWakeFromWakeGesture;
582
Bryce Leed3b28402015-03-09 15:49:13 +0000583 // Whether to support long press from power button in non-interactive mode
584 private boolean mSupportLongPressPowerWhenNonInteractive;
585
Bryce Lee55e846d2014-11-04 12:43:44 -0800586 // Whether to go to sleep entering theater mode from power button
587 private boolean mGoToSleepOnButtonPressTheaterMode;
588
Winson Chung9112ec32011-06-27 13:15:32 -0700589 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700590 // Time to volume and power must be pressed within this interval of each other.
591 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700592 // Increase the chord delay when taking a screenshot from the keyguard
593 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800594 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700595 private boolean mScreenshotChordVolumeDownKeyTriggered;
596 private long mScreenshotChordVolumeDownKeyTime;
597 private boolean mScreenshotChordVolumeDownKeyConsumed;
598 private boolean mScreenshotChordVolumeUpKeyTriggered;
599 private boolean mScreenshotChordPowerKeyTriggered;
600 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700601
Michael Wrightb854e242013-02-05 17:54:02 -0800602 /* The number of steps between min and max brightness */
603 private static final int BRIGHTNESS_STEPS = 10;
604
Christopher Tate5e08af02012-09-21 17:17:22 -0700605 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800606 ShortcutManager mShortcutManager;
607 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700608 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700609 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800610
Craig Mautnerd625ab22013-09-06 13:40:31 -0700611 private int mCurrentUserId;
612
Justin Kohd378ad72013-04-01 12:18:26 -0700613 // Maps global key codes to the components that will handle them.
614 private GlobalKeyManager mGlobalKeyManager;
615
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700616 // Fallback actions by key code.
617 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
618 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800619
Jorim Jaggi76a16232014-08-08 17:00:47 +0200620 private final LogDecelerateInterpolator mLogDecelerateInterpolator
621 = new LogDecelerateInterpolator(100, 0);
622
Jeff Brown70825162012-03-28 17:27:48 -0700623 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
624 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700625 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
626 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700627 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
628 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
629 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700630 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700631 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700632 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700633 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700634 private static final int MSG_POWER_DELAYED_PRESS = 13;
635 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700636 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jeff Brown70825162012-03-28 17:27:48 -0700637
638 private class PolicyHandler extends Handler {
639 @Override
640 public void handleMessage(Message msg) {
641 switch (msg.what) {
642 case MSG_ENABLE_POINTER_LOCATION:
643 enablePointerLocation();
644 break;
645 case MSG_DISABLE_POINTER_LOCATION:
646 disablePointerLocation();
647 break;
Jeff Brown40013652012-05-16 21:22:36 -0700648 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
649 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
650 break;
651 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
652 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
653 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700654 case MSG_DISPATCH_SHOW_RECENTS:
655 showRecentApps(false);
656 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700657 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
658 showGlobalActionsInternal();
659 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700660 case MSG_KEYGUARD_DRAWN_COMPLETE:
661 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700662 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700663 break;
664 case MSG_KEYGUARD_DRAWN_TIMEOUT:
665 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700666 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700667 break;
668 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
669 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700670 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700671 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700672 case MSG_HIDE_BOOT_MESSAGE:
673 handleHideBootMessage();
674 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700675 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
676 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
677 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700678 case MSG_POWER_DELAYED_PRESS:
679 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
680 finishPowerKeyPress();
681 break;
682 case MSG_POWER_LONG_PRESS:
683 powerLongPress();
684 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700685 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
686 updateDreamingSleepToken(msg.arg1 != 0);
687 break;
Jeff Brown70825162012-03-28 17:27:48 -0700688 }
689 }
690 }
691
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800692 private UEventObserver mHDMIObserver = new UEventObserver() {
693 @Override
694 public void onUEvent(UEventObserver.UEvent event) {
695 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
696 }
697 };
698
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800699 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800700 SettingsObserver(Handler handler) {
701 super(handler);
702 }
David Brownbaf8d092010-03-08 21:52:59 -0800703
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800704 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700705 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800706 ContentResolver resolver = mContext.getContentResolver();
707 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700708 Settings.System.END_BUTTON_BEHAVIOR), false, this,
709 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800710 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700711 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
712 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700713 resolver.registerContentObserver(Settings.Secure.getUriFor(
714 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
715 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800716 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700717 Settings.System.ACCELEROMETER_ROTATION), false, this,
718 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500719 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700720 Settings.System.USER_ROTATION), false, this,
721 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400722 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700723 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
724 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800725 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700726 Settings.System.POINTER_LOCATION), false, this,
727 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800728 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700729 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
730 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500731 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400732 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700733 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500734 resolver.registerContentObserver(Settings.Global.getUriFor(
735 Settings.Global.POLICY_CONTROL), false, this,
736 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800737 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800738 }
739
740 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800741 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700742 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800743 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800744 }
Craig Mautner967212c2013-04-13 21:10:58 -0700745
Jeff Browna20dda42014-05-27 20:57:24 -0700746 class MyWakeGestureListener extends WakeGestureListener {
747 MyWakeGestureListener(Context context, Handler handler) {
748 super(context, handler);
749 }
750
751 @Override
752 public void onWakeUp() {
753 synchronized (mLock) {
754 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700755 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700756 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture,
757 "android.policy:GESTURE");
Jeff Browna20dda42014-05-27 20:57:24 -0700758 }
759 }
760 }
761 }
762
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800763 class MyOrientationListener extends WindowOrientationListener {
Craig Mautnereee29c42013-01-17 14:44:34 -0800764 MyOrientationListener(Context context, Handler handler) {
765 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800766 }
Craig Mautner967212c2013-04-13 21:10:58 -0700767
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800768 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700769 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700770 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700771 updateRotation(false);
772 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800773 }
774 MyOrientationListener mOrientationListener;
775
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100776 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400777
John Spurlock27735a42013-08-14 17:57:38 -0400778 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400779 View.NAVIGATION_BAR_TRANSIENT,
780 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400781 View.NAVIGATION_BAR_TRANSLUCENT,
782 StatusBarManager.WINDOW_NAVIGATION_BAR,
783 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400784
John Spurlockf1a36642013-10-12 17:50:42 -0400785 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400786
Craig Mautner037aa8d2013-06-07 10:35:44 -0700787 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400788
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700789 IStatusBarService getStatusBarService() {
790 synchronized (mServiceAquireLock) {
791 if (mStatusBarService == null) {
792 mStatusBarService = IStatusBarService.Stub.asInterface(
793 ServiceManager.getService("statusbar"));
794 }
795 return mStatusBarService;
796 }
797 }
798
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700799 /*
800 * We always let the sensor be switched on by default except when
801 * the user has explicitly disabled sensor based rotation or when the
802 * screen is switched off.
803 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700804 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800805 if (mSupportAutoRotation) {
806 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
807 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
808 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
809 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
810 // If the application has explicitly requested to follow the
811 // orientation, then we need to turn the sensor on.
812 return true;
813 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800814 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700815 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800816 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
817 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
818 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400819 // enable accelerometer if we are docked in a dock that enables accelerometer
820 // orientation management,
821 return true;
822 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700823 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800824 // If the setting for using the sensor by default is enabled, then
825 // we will always leave it on. Note that the user could go to
826 // a window that forces an orientation that does not use the
827 // sensor and in theory we could turn it off... however, when next
828 // turning it on we won't have a good value for the current
829 // orientation for a little bit, which can cause orientation
830 // changes to lag, so we'd like to keep it always on. (It will
831 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700832 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800833 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800834 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800835 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700836
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800837 /*
838 * Various use cases for invoking this function
839 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700840 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800841 * if not already enabled
842 * screen turned on and current app does not have sensor orientation, disable listeners if
843 * already enabled
844 * screen turning on and current app has sensor based orientation, enable listeners if needed
845 * screen turning on and current app has nosensor based orientation, do nothing
846 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700847 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800848 if (!mOrientationListener.canDetectOrientation()) {
849 // If sensor is turned off or nonexistent for some reason
850 return;
851 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000852 // Could have been invoked due to screen turning on or off or
853 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700854 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
855 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000856 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
857 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
858 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800859 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000860 // Note: We postpone the rotating of the screen until the keyguard as well as the
861 // window manager have reported a draw complete.
862 if (mScreenOnEarly && mAwake &&
863 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700864 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800865 disable = false;
866 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700867 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800868 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700869 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800870 mOrientationSensorEnabled = true;
871 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700872 }
873 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800874 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700875 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800876 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700877 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800878 mOrientationSensorEnabled = false;
879 }
880 }
881
Jeff Brown13f00f02014-10-31 14:45:50 -0700882 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
883 // Hold a wake lock until the power key is released.
884 if (!mPowerKeyWakeLock.isHeld()) {
885 mPowerKeyWakeLock.acquire();
886 }
887
888 // Cancel multi-press detection timeout.
889 if (mPowerKeyPressCounter != 0) {
890 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
891 }
892
893 // Detect user pressing the power button in panic when an application has
894 // taken over the whole screen.
895 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800896 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700897 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700898 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700899 }
900
901 // Latch power key state to detect screenshot chord.
902 if (interactive && !mScreenshotChordPowerKeyTriggered
903 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
904 mScreenshotChordPowerKeyTriggered = true;
905 mScreenshotChordPowerKeyTime = event.getDownTime();
906 interceptScreenshotChord();
907 }
908
909 // Stop ringing or end call if configured to do so when power is pressed.
910 TelecomManager telecomManager = getTelecommService();
911 boolean hungUp = false;
912 if (telecomManager != null) {
913 if (telecomManager.isRinging()) {
914 // Pressing Power while there's a ringing incoming
915 // call should silence the ringer.
916 telecomManager.silenceRinger();
917 } else if ((mIncallPowerBehavior
918 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
919 && telecomManager.isInCall() && interactive) {
920 // Otherwise, if "Power button ends call" is enabled,
921 // the Power button will hang up any current active call.
922 hungUp = telecomManager.endCall();
923 }
924 }
925
926 // If the power key has still not yet been handled, then detect short
927 // press, long press, or multi press and decide what to do.
928 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
929 || mScreenshotChordVolumeUpKeyTriggered;
930 if (!mPowerKeyHandled) {
931 if (interactive) {
932 // When interactive, we're already awake.
933 // Wait for a long press or for the button to be released to decide what to do.
934 if (hasLongPressOnPowerBehavior()) {
935 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
936 msg.setAsynchronous(true);
937 mHandler.sendMessageDelayed(msg,
938 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
939 }
940 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800941 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800942
Bryce Leed3b28402015-03-09 15:49:13 +0000943 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
944 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
945 msg.setAsynchronous(true);
946 mHandler.sendMessageDelayed(msg,
947 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800948 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000949 } else {
950 final int maxCount = getMaxMultiPressPowerCount();
951
952 if (maxCount <= 1) {
953 mPowerKeyHandled = true;
954 } else {
955 mBeganFromNonInteractive = true;
956 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700957 }
958 }
Jeff Brown4d396052010-10-29 21:50:21 -0700959 }
960 }
961
Jeff Brown13f00f02014-10-31 14:45:50 -0700962 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
963 final boolean handled = canceled || mPowerKeyHandled;
964 mScreenshotChordPowerKeyTriggered = false;
965 cancelPendingScreenshotChordAction();
966 cancelPendingPowerKeyAction();
967
968 if (!handled) {
969 // Figure out how to handle the key now that it has been released.
970 mPowerKeyPressCounter += 1;
971
972 final int maxCount = getMaxMultiPressPowerCount();
973 final long eventTime = event.getDownTime();
974 if (mPowerKeyPressCounter < maxCount) {
975 // This could be a multi-press. Wait a little bit longer to confirm.
976 // Continue holding the wake lock.
977 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
978 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
979 msg.setAsynchronous(true);
980 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
981 return;
982 }
983
984 // No other actions. Handle it immediately.
985 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700986 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700987
988 // Done. Reset our state.
989 finishPowerKeyPress();
990 }
991
992 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -0800993 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -0700994 mPowerKeyPressCounter = 0;
995 if (mPowerKeyWakeLock.isHeld()) {
996 mPowerKeyWakeLock.release();
997 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700998 }
999
1000 private void cancelPendingPowerKeyAction() {
1001 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001002 mPowerKeyHandled = true;
1003 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001004 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001005 }
1006
1007 private void powerPress(long eventTime, boolean interactive, int count) {
1008 if (mScreenOnEarly && !mScreenOnFully) {
1009 Slog.i(TAG, "Suppressed redundant power key press while "
1010 + "already in the process of turning the screen on.");
1011 return;
Jeff Brownff204712011-10-25 21:27:54 -07001012 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001013
1014 if (count == 2) {
1015 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1016 } else if (count == 3) {
1017 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001018 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001019 switch (mShortPressOnPowerBehavior) {
1020 case SHORT_PRESS_POWER_NOTHING:
1021 break;
1022 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1023 mPowerManager.goToSleep(eventTime,
1024 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1025 break;
1026 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1027 mPowerManager.goToSleep(eventTime,
1028 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1029 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1030 break;
1031 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1032 mPowerManager.goToSleep(eventTime,
1033 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1034 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1035 launchHomeFromHotKey();
1036 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001037 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001038 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001039 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001040 }
1041 }
1042 }
1043
1044 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1045 switch (behavior) {
1046 case MULTI_PRESS_POWER_NOTHING:
1047 break;
1048 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001049 if (!isUserSetupComplete()) {
1050 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1051 break;
1052 }
1053
Jeff Brown13f00f02014-10-31 14:45:50 -07001054 if (isTheaterModeEnabled()) {
1055 Slog.i(TAG, "Toggling theater mode off.");
1056 Settings.Global.putInt(mContext.getContentResolver(),
1057 Settings.Global.THEATER_MODE_ON, 0);
1058 if (!interactive) {
1059 wakeUpFromPowerKey(eventTime);
1060 }
1061 } else {
1062 Slog.i(TAG, "Toggling theater mode on.");
1063 Settings.Global.putInt(mContext.getContentResolver(),
1064 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001065
1066 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001067 mPowerManager.goToSleep(eventTime,
1068 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1069 }
1070 }
1071 break;
1072 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001073 Slog.i(TAG, "Starting brightness boost.");
1074 if (!interactive) {
1075 wakeUpFromPowerKey(eventTime);
1076 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001077 mPowerManager.boostScreenBrightness(eventTime);
1078 break;
1079 }
1080 }
1081
1082 private int getMaxMultiPressPowerCount() {
1083 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1084 return 3;
1085 }
1086 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1087 return 2;
1088 }
1089 return 1;
1090 }
1091
1092 private void powerLongPress() {
1093 final int behavior = getResolvedLongPressOnPowerBehavior();
1094 switch (behavior) {
1095 case LONG_PRESS_POWER_NOTHING:
1096 break;
1097 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1098 mPowerKeyHandled = true;
1099 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1100 performAuditoryFeedbackForAccessibilityIfNeed();
1101 }
1102 showGlobalActionsInternal();
1103 break;
1104 case LONG_PRESS_POWER_SHUT_OFF:
1105 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1106 mPowerKeyHandled = true;
1107 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1108 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1109 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1110 break;
1111 }
1112 }
1113
Nick Vaccarob593a812015-05-15 11:23:05 -07001114 private void sleepPress(long eventTime) {
1115 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1116 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1117 }
1118 }
1119
1120 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001121 switch (mShortPressOnSleepBehavior) {
1122 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001123 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001124 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1125 mPowerManager.goToSleep(eventTime,
1126 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001127 break;
1128 }
1129 }
1130
Jeff Brown13f00f02014-10-31 14:45:50 -07001131 private int getResolvedLongPressOnPowerBehavior() {
1132 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1133 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1134 }
1135 return mLongPressOnPowerBehavior;
1136 }
1137
1138 private boolean hasLongPressOnPowerBehavior() {
1139 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001140 }
1141
1142 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001143 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001144 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1145 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001146 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001147 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1148 && now <= mScreenshotChordPowerKeyTime
1149 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1150 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001151 cancelPendingPowerKeyAction();
1152
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001153 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001154 }
1155 }
1156 }
1157
Winson Chung1cea2f32012-10-08 20:42:01 -07001158 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001159 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001160 // Double the time it takes to take a screenshot from the keyguard
1161 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001162 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001163 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001164 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001165 }
1166
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001167 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001168 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001169 }
1170
Jeff Brown13f00f02014-10-31 14:45:50 -07001171 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001172 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001173 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001174 mEndCallKeyHandled = true;
1175 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1176 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001177 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001178 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001179 }
1180 };
1181
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001182 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001183 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001184 public void run() {
1185 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001186 }
1187 };
1188
Alan Viverettee34560b22014-07-10 14:50:06 -07001189 @Override
1190 public void showGlobalActions() {
1191 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1192 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1193 }
1194
1195 void showGlobalActionsInternal() {
1196 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001197 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001198 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001199 }
Jim Millerab954542014-10-10 18:21:49 -07001200 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001201 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1202 if (keyguardShowing) {
1203 // since it took two seconds of long press to bring this up,
1204 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001205 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001206 }
1207 }
1208
1209 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001210 return Settings.Global.getInt(
1211 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001212 }
1213
Maurice Lam99c6e072014-04-28 18:24:28 -07001214 boolean isUserSetupComplete() {
1215 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1216 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1217 }
1218
Jeff Brown13f00f02014-10-31 14:45:50 -07001219 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001220 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1221 getHdmiControl().turnOnTv();
1222
Jeff Brown13f00f02014-10-31 14:45:50 -07001223 // If there's a dream running then use home to escape the dream
1224 // but don't actually go home.
1225 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1226 mDreamManagerInternal.stopDream(false /*immediate*/);
1227 return;
1228 }
1229
1230 // Go home!
1231 launchHomeFromHotKey();
1232 }
1233
Jinsuk Kime601b712015-07-07 08:01:02 +09001234 /**
1235 * Creates an accessor to HDMI control service that performs the operation of
1236 * turning on TV (optional) and switching input to us. If HDMI control service
1237 * is not available or we're not a HDMI playback device, the operation is no-op.
1238 */
1239 private HdmiControl getHdmiControl() {
1240 if (null == mHdmiControl) {
1241 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1242 Context.HDMI_CONTROL_SERVICE);
1243 HdmiPlaybackClient client = null;
1244 if (manager != null) {
1245 client = manager.getPlaybackClient();
1246 }
1247 mHdmiControl = new HdmiControl(client);
1248 }
1249 return mHdmiControl;
1250 }
1251
1252 private static class HdmiControl {
1253 private final HdmiPlaybackClient mClient;
1254
1255 private HdmiControl(HdmiPlaybackClient client) {
1256 mClient = client;
1257 }
1258
1259 public void turnOnTv() {
1260 if (mClient == null) {
1261 return;
1262 }
1263 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1264 @Override
1265 public void onComplete(int result) {
1266 if (result != HdmiControlManager.RESULT_SUCCESS) {
1267 Log.w(TAG, "One touch play failed: " + result);
1268 }
1269 }
1270 });
1271 }
1272 }
1273
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001274 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001275 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001276 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001277 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001278
Jeff Browncaca8812013-05-09 13:34:33 -07001279 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1280 toggleRecentApps();
1281 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001282 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001283 }
1284 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001285 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001286
Jeff Browncaca8812013-05-09 13:34:33 -07001287 private void handleDoubleTapOnHome() {
1288 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1289 mHomeConsumed = true;
1290 toggleRecentApps();
1291 }
1292 }
1293
1294 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1295 @Override
1296 public void run() {
1297 if (mHomeDoubleTapPending) {
1298 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001299 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001300 }
1301 }
1302 };
1303
Mark Renoufc1256912015-03-11 14:38:23 -04001304 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001305 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001306 }
1307
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001308 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001309 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001310 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001311 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001312 mContext = context;
1313 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001314 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001315 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001316 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001317 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001318 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001319
1320 // Init display burn-in protection
1321 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1322 com.android.internal.R.bool.config_enableBurnInProtection);
1323 // Allow a system property to override this. Used by developer settings.
1324 boolean burnInProtectionDevMode =
1325 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1326 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1327 final int minHorizontal;
1328 final int maxHorizontal;
1329 final int minVertical;
1330 final int maxVertical;
1331 final int maxRadius;
1332 if (burnInProtectionDevMode) {
1333 minHorizontal = -8;
1334 maxHorizontal = 8;
1335 minVertical = -8;
1336 maxVertical = -4;
1337 maxRadius = (isRoundWindow()) ? 6 : -1;
1338 } else {
1339 Resources resources = context.getResources();
1340 minHorizontal = resources.getInteger(
1341 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1342 maxHorizontal = resources.getInteger(
1343 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1344 minVertical = resources.getInteger(
1345 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1346 maxVertical = resources.getInteger(
1347 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1348 maxRadius = resources.getInteger(
1349 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1350 }
1351 mBurnInProtectionHelper = new BurnInProtectionHelper(
1352 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001353 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001354
Jeff Brown70825162012-03-28 17:27:48 -07001355 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001356 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001357 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001358 try {
1359 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1360 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001361 mSettingsObserver = new SettingsObserver(mHandler);
1362 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001363 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001364 mUiMode = context.getResources().getInteger(
1365 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001366 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1367 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1368 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1369 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001370 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1371 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1372 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1373 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1374 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1375 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1376 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1377 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001378
Jeff Brown96307042012-07-27 15:51:34 -07001379 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1380 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001381 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001382 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1383 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001384 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001385 mSupportAutoRotation = mContext.getResources().getBoolean(
1386 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001387 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001388 com.android.internal.R.integer.config_lidOpenRotation);
1389 mCarDockRotation = readRotation(
1390 com.android.internal.R.integer.config_carDockRotation);
1391 mDeskDockRotation = readRotation(
1392 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001393 mUndockedHdmiRotation = readRotation(
1394 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001395 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1396 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1397 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1398 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001399 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1400 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1401 mLidNavigationAccessibility = mContext.getResources().getInteger(
1402 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001403 mLidControlsSleep = mContext.getResources().getBoolean(
1404 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001405 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1406 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001407
1408 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1409 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1410 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1411 || mContext.getResources().getBoolean(
1412 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1413 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1414 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001415 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1416 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001417 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1418 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1419 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1420 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1421 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1422 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1423
Bryce Lee55e846d2014-11-04 12:43:44 -08001424 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1425 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1426
Bryce Leed3b28402015-03-09 15:49:13 +00001427 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1428 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1429
Jeff Brown13f00f02014-10-31 14:45:50 -07001430 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1431 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1432 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1433 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1434 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1435 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1436 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1437 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001438 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1439 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001440
John Spurlock61560172015-02-06 19:46:04 -05001441 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001442
Jeff Brownf71343d2013-05-31 17:59:11 -07001443 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001444
Svetoslav8e3feb12014-02-24 13:46:47 -08001445 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1446 Context.ACCESSIBILITY_SERVICE);
1447
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001448 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001449 IntentFilter filter = new IntentFilter();
1450 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1451 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1452 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1453 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001454 filter.addAction(Intent.ACTION_DOCK_EVENT);
1455 Intent intent = context.registerReceiver(mDockReceiver, filter);
1456 if (intent != null) {
1457 // Retrieve current sticky dock event broadcast.
1458 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1459 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1460 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001461
Jeff Brown6aaf2952012-10-05 16:01:08 -07001462 // register for dream-related broadcasts
1463 filter = new IntentFilter();
1464 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1465 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1466 context.registerReceiver(mDreamReceiver, filter);
1467
Christopher Tate5e08af02012-09-21 17:17:22 -07001468 // register for multiuser-relevant broadcasts
1469 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1470 context.registerReceiver(mMultiuserReceiver, filter);
1471
John Spurlock57306e62013-04-22 09:48:49 -04001472 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001473 mSystemGestures = new SystemGesturesPointerEventListener(context,
1474 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001475 @Override
1476 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001477 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001478 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001479 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001480 }
1481 @Override
1482 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001483 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001484 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001485 }
1486 }
1487 @Override
1488 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001489 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001490 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001491 }
1492 }
1493 @Override
1494 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001495 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001496 }
Adrian Roos3595be42015-03-05 16:31:15 +01001497 @Override
1498 public void onDown() {
1499 mOrientationListener.onTouchStart();
1500 }
1501 @Override
1502 public void onUpOrCancel() {
1503 mOrientationListener.onTouchEnd();
1504 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001505 });
John Spurlockf1a36642013-10-12 17:50:42 -04001506 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001507 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001508
Jeff Brownc2346132012-04-13 01:55:38 -07001509 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001510 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1511 com.android.internal.R.array.config_longPressVibePattern);
1512 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1513 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001514 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1515 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001516 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1517 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001518 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1519 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001520 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1521 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1522 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1523 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001524 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1525 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001526
Christopher Tatee90585f2012-03-05 18:56:25 -08001527 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1528 com.android.internal.R.bool.config_enableScreenshotChord);
1529
Justin Kohd378ad72013-04-01 12:18:26 -07001530 mGlobalKeyManager = new GlobalKeyManager(mContext);
1531
Joe Onoratoea495d42011-04-06 11:41:11 -07001532 // Controls rotation and the like.
1533 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001534
1535 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001536 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001537 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1538 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001539 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001540
1541 mWindowManagerInternal.registerAppTransitionListener(
1542 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001543 }
1544
Jeff Brownf71343d2013-05-31 17:59:11 -07001545 /**
1546 * Read values from config.xml that may be overridden depending on
1547 * the configuration of the device.
1548 * eg. Disable long press on home goes to recents on sw600dp.
1549 */
1550 private void readConfigurationDependentBehaviors() {
1551 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1552 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1553 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1554 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1555 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1556 }
1557
1558 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1559 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1560 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1561 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1562 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1563 }
1564 }
1565
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001566 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001567 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001568 // This method might be called before the policy has been fully initialized
1569 // or for other displays we don't care about.
1570 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1571 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001572 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001573 mDisplay = display;
1574
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001575 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001576 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001577 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001578 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001579 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001580 mLandscapeRotation = Surface.ROTATION_0;
1581 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001582 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001583 mPortraitRotation = Surface.ROTATION_90;
1584 mUpsideDownRotation = Surface.ROTATION_270;
1585 } else {
1586 mPortraitRotation = Surface.ROTATION_270;
1587 mUpsideDownRotation = Surface.ROTATION_90;
1588 }
1589 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001590 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001591 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001592 mPortraitRotation = Surface.ROTATION_0;
1593 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001594 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001595 mLandscapeRotation = Surface.ROTATION_270;
1596 mSeascapeRotation = Surface.ROTATION_90;
1597 } else {
1598 mLandscapeRotation = Surface.ROTATION_90;
1599 mSeascapeRotation = Surface.ROTATION_270;
1600 }
1601 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001602
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001603 mStatusBarHeight =
1604 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001605
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001606 // Height of the navigation bar when presented horizontally at bottom
1607 mNavigationBarHeightForRotation[mPortraitRotation] =
1608 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001609 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001610 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001611 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1612 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001613
1614 // Width of the navigation bar when presented vertically along one side
1615 mNavigationBarWidthForRotation[mPortraitRotation] =
1616 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1617 mNavigationBarWidthForRotation[mLandscapeRotation] =
1618 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001619 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001620
1621 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001622 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001623 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001624
Devin Kimd7b12b42014-05-05 14:34:58 -07001625 // Allow the navigation bar to move on non-square small devices (phones).
1626 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001627
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001628 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001629 // Allow a system property to override this. Used by the emulator.
1630 // See also hasNavigationBar().
1631 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1632 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001633 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001634 } else if ("0".equals(navBarOverride)) {
1635 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001636 }
1637
Jeff Brown27f1d672012-10-17 18:32:34 -07001638 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1639 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001640 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001641 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001642 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001643 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001644 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001645 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001646
Chong Zhangae6119ff2014-11-11 18:54:39 -08001647 // For demo purposes, allow the rotation of the remote display to be controlled.
1648 // By default, remote display locks rotation to landscape.
1649 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1650 mDemoRotation = mPortraitRotation;
1651 } else {
1652 mDemoRotation = mLandscapeRotation;
1653 }
1654 mDemoRotationLock = SystemProperties.getBoolean(
1655 "persist.demo.rotationlock", false);
1656
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001657 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1658 // http://developer.android.com/guide/practices/screens_support.html#range
1659 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1660 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1661 // For debug purposes the next line turns this feature off with:
1662 // $ adb shell setprop config.override_forced_orient true
1663 // $ adb shell wm size reset
1664 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1665 }
1666
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001667 /**
1668 * @return whether the navigation bar can be hidden, e.g. the device has a
1669 * navigation bar and touch exploration is not enabled
1670 */
1671 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001672 return mHasNavigationBar
1673 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001674 }
1675
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001676 @Override
1677 public boolean isDefaultOrientationForced() {
1678 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001679 }
1680
Dianne Hackbornc652de82013-02-15 16:32:56 -08001681 @Override
1682 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1683 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1684 mOverscanLeft = left;
1685 mOverscanTop = top;
1686 mOverscanRight = right;
1687 mOverscanBottom = bottom;
1688 }
1689 }
1690
Dianne Hackbornc777e072010-02-12 13:07:59 -08001691 public void updateSettings() {
1692 ContentResolver resolver = mContext.getContentResolver();
1693 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001694 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001695 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001696 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001697 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1698 UserHandle.USER_CURRENT);
1699 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001700 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001701 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1702 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001703
Jeff Browna20dda42014-05-27 20:57:24 -07001704 // Configure wake gesture.
1705 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1706 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1707 UserHandle.USER_CURRENT) != 0;
1708 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1709 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1710 updateWakeGestureListenerLp();
1711 }
1712
Jeff Brown207673cd2012-06-05 17:47:11 -07001713 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001714 int userRotation = Settings.System.getIntForUser(resolver,
1715 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1716 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001717 if (mUserRotation != userRotation) {
1718 mUserRotation = userRotation;
1719 updateRotation = true;
1720 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001721 int userRotationMode = Settings.System.getIntForUser(resolver,
1722 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001723 WindowManagerPolicy.USER_ROTATION_FREE :
1724 WindowManagerPolicy.USER_ROTATION_LOCKED;
1725 if (mUserRotationMode != userRotationMode) {
1726 mUserRotationMode = userRotationMode;
1727 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001728 updateOrientationListenerLp();
1729 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001730
Dianne Hackbornc777e072010-02-12 13:07:59 -08001731 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001732 int pointerLocation = Settings.System.getIntForUser(resolver,
1733 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001734 if (mPointerLocationMode != pointerLocation) {
1735 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001736 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1737 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001738 }
1739 }
1740 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001741 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1742 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1743 String imId = Settings.Secure.getStringForUser(resolver,
1744 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001745 boolean hasSoftInput = imId != null && imId.length() > 0;
1746 if (mHasSoftInput != hasSoftInput) {
1747 mHasSoftInput = hasSoftInput;
1748 updateRotation = true;
1749 }
John Spurlockf1a36642013-10-12 17:50:42 -04001750 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001751 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001752 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001753 }
1754 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001755 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001756 }
1757 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001758 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001759 }
Jeff Brown70825162012-03-28 17:27:48 -07001760 }
1761
Jeff Browna20dda42014-05-27 20:57:24 -07001762 private void updateWakeGestureListenerLp() {
1763 if (shouldEnableWakeGestureLp()) {
1764 mWakeGestureListener.requestWakeUpTrigger();
1765 } else {
1766 mWakeGestureListener.cancelWakeUpTrigger();
1767 }
1768 }
1769
1770 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001771 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001772 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1773 && mWakeGestureListener.isSupported();
1774 }
1775
Jeff Brown70825162012-03-28 17:27:48 -07001776 private void enablePointerLocation() {
1777 if (mPointerLocationView == null) {
1778 mPointerLocationView = new PointerLocationView(mContext);
1779 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001780 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1781 WindowManager.LayoutParams.MATCH_PARENT,
1782 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001783 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001784 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1785 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1786 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1787 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001788 if (ActivityManager.isHighEndGfx()) {
1789 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1790 lp.privateFlags |=
1791 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1792 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001793 lp.format = PixelFormat.TRANSLUCENT;
1794 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001795 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001796 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001797 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001798 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001799 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001800 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001801 }
Jeff Brown70825162012-03-28 17:27:48 -07001802
1803 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001804 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001805 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1806 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001807 wm.removeView(mPointerLocationView);
1808 mPointerLocationView = null;
1809 }
1810 }
1811
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001812 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001813 try {
1814 int rotation = mContext.getResources().getInteger(resID);
1815 switch (rotation) {
1816 case 0:
1817 return Surface.ROTATION_0;
1818 case 90:
1819 return Surface.ROTATION_90;
1820 case 180:
1821 return Surface.ROTATION_180;
1822 case 270:
1823 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001824 }
1825 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001826 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001827 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001828 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001829 }
1830
1831 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001832 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001833 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001834 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001835
1836 outAppOp[0] = AppOpsManager.OP_NONE;
1837
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001838 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1839 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1840 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1841 return WindowManagerGlobal.ADD_INVALID_TYPE;
1842 }
1843
1844 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1845 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001846 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001847 }
1848 String permission = null;
1849 switch (type) {
1850 case TYPE_TOAST:
1851 // XXX right now the app process has complete control over
1852 // this... should introduce a token to let the system
1853 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001854 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001855 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001856 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001857 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001858 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001859 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001860 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001861 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001862 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001863 break;
1864 case TYPE_PHONE:
1865 case TYPE_PRIORITY_PHONE:
1866 case TYPE_SYSTEM_ALERT:
1867 case TYPE_SYSTEM_ERROR:
1868 case TYPE_SYSTEM_OVERLAY:
1869 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001870 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001871 break;
1872 default:
1873 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1874 }
1875 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001876 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1877 final int callingUid = Binder.getCallingUid();
1878 // check if this is a system uid first before bothering with
1879 // obtaining package name
1880 if (callingUid == Process.SYSTEM_UID) {
1881 return WindowManagerGlobal.ADD_OKAY;
1882 }
1883
1884 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1885 attrs.packageName);
1886 if (mode == AppOpsManager.MODE_DEFAULT) {
1887 if (mContext.checkCallingPermission(permission) !=
1888 PackageManager.PERMISSION_GRANTED) {
1889 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1890 }
1891 }
1892 return WindowManagerGlobal.ADD_OKAY;
1893 }
1894
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001895 if (mContext.checkCallingOrSelfPermission(permission)
1896 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001897 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001898 }
1899 }
Jeff Brown98365d72012-08-19 20:30:52 -07001900 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001901 }
Craig Mautner88400d32012-09-30 12:35:45 -07001902
1903 @Override
1904 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1905
1906 // If this switch statement is modified, modify the comment in the declarations of
1907 // the type in {@link WindowManager.LayoutParams} as well.
1908 switch (attrs.type) {
1909 default:
1910 // These are the windows that by default are shown only to the user that created
1911 // them. If this needs to be overridden, set
1912 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1913 // {@link WindowManager.LayoutParams}. Note that permission
1914 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1915 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1916 return true;
1917 }
1918 break;
1919
1920 // These are the windows that by default are shown to all users. However, to
1921 // protect against spoofing, check permissions below.
1922 case TYPE_APPLICATION_STARTING:
1923 case TYPE_BOOT_PROGRESS:
1924 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001925 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001926 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001927 case TYPE_KEYGUARD_DIALOG:
1928 case TYPE_MAGNIFICATION_OVERLAY:
1929 case TYPE_NAVIGATION_BAR:
1930 case TYPE_NAVIGATION_BAR_PANEL:
1931 case TYPE_PHONE:
1932 case TYPE_POINTER:
1933 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001934 case TYPE_SEARCH_BAR:
1935 case TYPE_STATUS_BAR:
1936 case TYPE_STATUS_BAR_PANEL:
1937 case TYPE_STATUS_BAR_SUB_PANEL:
1938 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001939 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001940 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001941 break;
1942 }
1943
1944 // Check if third party app has set window to system window type.
1945 return mContext.checkCallingOrSelfPermission(
1946 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1947 != PackageManager.PERMISSION_GRANTED;
1948 }
1949
Craig Mautner967212c2013-04-13 21:10:58 -07001950 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001951 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1952 switch (attrs.type) {
1953 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001954 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001955 // These types of windows can't receive input events.
1956 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1957 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001958 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001959 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001960 case TYPE_STATUS_BAR:
1961
1962 // If the Keyguard is in a hidden state (occluded by another window), we force to
1963 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1964 // the keyguard as occluded wouldn't set these flags again.
1965 // See {@link #processKeyguardSetHiddenResultLw}.
1966 if (mKeyguardHidden) {
1967 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1968 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1969 }
1970 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001971 }
Adrian Roos38502112014-04-09 21:04:11 +02001972
1973 if (attrs.type != TYPE_STATUS_BAR) {
1974 // The status bar is the only window allowed to exhibit keyguard behavior.
1975 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1976 }
Adrian Roosea562512014-05-05 13:33:03 +02001977
1978 if (ActivityManager.isHighEndGfx()
1979 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02001980 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02001981 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1982 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001983 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001984
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001985 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07001986 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001987 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001988
Michael Wright3818c922014-09-02 13:59:07 -07001989 private void readCameraLensCoverState() {
1990 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
1991 }
1992
Jeff Browndaa37532012-05-01 15:54:03 -07001993 private boolean isHidden(int accessibilityMode) {
1994 switch (accessibilityMode) {
1995 case 1:
1996 return mLidState == LID_CLOSED;
1997 case 2:
1998 return mLidState == LID_OPEN;
1999 default:
2000 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002001 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002002 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002003
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002004 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002005 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002006 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2007 int navigationPresence) {
2008 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2009
Jeff Brownf71343d2013-05-31 17:59:11 -07002010 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002011 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002012 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002013
Jeff Browndaa37532012-05-01 15:54:03 -07002014 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2015 || (keyboardPresence == PRESENCE_INTERNAL
2016 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002017 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002018 if (!mHasSoftInput) {
2019 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2020 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002021 }
2022
Jeff Browndaa37532012-05-01 15:54:03 -07002023 if (config.navigation == Configuration.NAVIGATION_NONAV
2024 || (navigationPresence == PRESENCE_INTERNAL
2025 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002026 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002027 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002028 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002029
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002030 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002031 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002032 public int windowTypeToLayerLw(int type) {
2033 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002034 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002035 }
2036 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002037 case TYPE_PRIVATE_PRESENTATION:
2038 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002039 case TYPE_WALLPAPER:
2040 // wallpaper is at the bottom, though the window manager may move it.
2041 return 2;
2042 case TYPE_PHONE:
2043 return 3;
2044 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002045 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002046 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002047 case TYPE_VOICE_INTERACTION:
2048 // voice interaction layer is almost immediately above apps.
2049 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002050 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002051 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002052 case TYPE_SYSTEM_DIALOG:
2053 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002054 case TYPE_TOAST:
2055 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002056 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002057 case TYPE_PRIORITY_PHONE:
2058 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002059 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002060 case TYPE_DREAM:
2061 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002062 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002063 case TYPE_SYSTEM_ALERT:
2064 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002065 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002066 case TYPE_INPUT_METHOD:
2067 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002068 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002069 case TYPE_INPUT_METHOD_DIALOG:
2070 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002071 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002072 case TYPE_KEYGUARD_SCRIM:
2073 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002074 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07002075 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002076 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07002077 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002078 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07002079 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002080 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002081 case TYPE_KEYGUARD_DIALOG:
2082 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002083 case TYPE_VOLUME_OVERLAY:
2084 // the on-screen volume indicator and controller shown when the user
2085 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002086 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002087 case TYPE_SYSTEM_OVERLAY:
2088 // the on-screen volume indicator and controller shown when the user
2089 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002090 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002091 case TYPE_NAVIGATION_BAR:
2092 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002093 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002094 case TYPE_NAVIGATION_BAR_PANEL:
2095 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002096 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002097 case TYPE_SYSTEM_ERROR:
2098 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002099 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002100 case TYPE_MAGNIFICATION_OVERLAY:
2101 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002102 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002103 case TYPE_DISPLAY_OVERLAY:
2104 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002105 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002106 case TYPE_DRAG:
2107 // the drag layer: input for drag-and-drop is associated with this window,
2108 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002109 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002110 case TYPE_ACCESSIBILITY_OVERLAY:
2111 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002112 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002113 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002114 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002115 case TYPE_BOOT_PROGRESS:
2116 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002117 case TYPE_POINTER:
2118 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002119 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002120 }
2121 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002122 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002123 }
2124
2125 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002126 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002127 public int subWindowTypeToLayerLw(int type) {
2128 switch (type) {
2129 case TYPE_APPLICATION_PANEL:
2130 case TYPE_APPLICATION_ATTACHED_DIALOG:
2131 return APPLICATION_PANEL_SUBLAYER;
2132 case TYPE_APPLICATION_MEDIA:
2133 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002134 case TYPE_APPLICATION_MEDIA_OVERLAY:
2135 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002136 case TYPE_APPLICATION_SUB_PANEL:
2137 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002138 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2139 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002140 }
2141 Log.e(TAG, "Unknown sub-window type: " + type);
2142 return 0;
2143 }
2144
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002145 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002146 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002147 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002148 }
2149
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002150 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002151 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002152 if (mHasNavigationBar) {
2153 // For a basic navigation bar, when we are in landscape mode we place
2154 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002155 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2156 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002157 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002158 }
2159 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002160 }
2161
Jose Lima9546b202014-07-02 17:21:51 -07002162 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002163 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002164 if (mHasNavigationBar) {
2165 // For a basic navigation bar, when we are in portrait mode we place
2166 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002167 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2168 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002169 }
2170 }
2171 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002172 }
2173
Jose Lima9546b202014-07-02 17:21:51 -07002174 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002175 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2176 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002177 }
2178
Jose Lima9546b202014-07-02 17:21:51 -07002179 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002180 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002181 // There is a separate status bar at the top of the display. We don't count that as part
2182 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002183 // we do want to exclude it since applications can't generally use that part
2184 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002185 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002186 }
2187
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002188 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002189 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2190 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002191 (isKeyguardHostWindow(attrs) &&
2192 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002193 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002194 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002195
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002196 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002197 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2198 return attrs.type == TYPE_STATUS_BAR;
2199 }
2200
2201 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002202 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002203 switch (attrs.type) {
2204 case TYPE_STATUS_BAR:
2205 case TYPE_NAVIGATION_BAR:
2206 case TYPE_WALLPAPER:
2207 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002208 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002209 return false;
2210 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002211 // Hide only windows below the keyguard host window.
2212 return windowTypeToLayerLw(win.getBaseType())
2213 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002214 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002215 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002216
Craig Mautner7d7808f2014-09-11 18:02:38 -07002217 @Override
2218 public WindowState getWinShowWhenLockedLw() {
2219 return mWinShowWhenLocked;
2220 }
2221
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002222 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002223 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002224 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2225 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002226 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002227 if (!SHOW_STARTING_ANIMATIONS) {
2228 return null;
2229 }
2230 if (packageName == null) {
2231 return null;
2232 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002233
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002234 WindowManager wm = null;
2235 View view = null;
2236
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002237 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002238 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002239 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2240 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2241 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002242 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002243 try {
2244 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002245 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002246 } catch (PackageManager.NameNotFoundException e) {
2247 // Ignore
2248 }
2249 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002250
Jorim Jaggia16cc152015-06-01 16:55:05 -07002251 PhoneWindow win = new PhoneWindow(context);
2252 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002253 final TypedArray ta = win.getWindowStyle();
2254 if (ta.getBoolean(
2255 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2256 || ta.getBoolean(
2257 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002258 return null;
2259 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002260
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002261 Resources r = context.getResources();
2262 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002263
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002264 win.setType(
2265 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002266
2267 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2268 // Assumes it's safe to show starting windows of launched apps while
2269 // the keyguard is being hidden. This is okay because starting windows never show
2270 // secret information.
2271 if (mKeyguardHidden) {
2272 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2273 }
2274 }
2275
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002276 // Force the window flags: this is a fake window, so it is not really
2277 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2278 // flag because we do know that the next window will take input
2279 // focus, so we want to get the IME window up on top of us right away.
2280 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002281 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002282 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2283 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2284 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002285 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002286 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2287 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2288 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002289
Adam Powell04fe6eb2013-05-31 14:39:48 -07002290 win.setDefaultIcon(icon);
2291 win.setDefaultLogo(logo);
2292
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002293 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002294 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002295
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002296 final WindowManager.LayoutParams params = win.getAttributes();
2297 params.token = appToken;
2298 params.packageName = packageName;
2299 params.windowAnimations = win.getWindowStyle().getResourceId(
2300 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002301 params.privateFlags |=
2302 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002303 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002304
2305 if (!compatInfo.supportsScreen()) {
2306 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2307 }
2308
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002309 params.setTitle("Starting " + packageName);
2310
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002311 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2312 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002313
2314 if (win.isFloating()) {
2315 // Whoops, there is no way to display an animation/preview
2316 // of such a thing! After all that work... let's skip it.
2317 // (Note that we must do this here because it is in
2318 // getDecorView() where the theme is evaluated... maybe
2319 // we should peek the floating attribute from the theme
2320 // earlier.)
2321 return null;
2322 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002323
Craig Mautner6fbda632012-07-03 09:26:39 -07002324 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002325 TAG, "Adding starting window for " + packageName
2326 + " / " + appToken + ": "
2327 + (view.getParent() != null ? view : null));
2328
2329 wm.addView(view, params);
2330
2331 // Only return the view if it was successfully added to the
2332 // window manager... which we can tell by it having a parent.
2333 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002334 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002335 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002336 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2337 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002338 } catch (RuntimeException e) {
2339 // don't crash if something else bad happens, for example a
2340 // failure loading resources because we are loading from an app
2341 // on external storage that has been unmounted.
2342 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002343 } finally {
2344 if (view != null && view.getParent() == null) {
2345 Log.w(TAG, "view not successfully added to wm, removing view");
2346 wm.removeViewImmediate(view);
2347 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002348 }
2349
2350 return null;
2351 }
2352
2353 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002354 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002355 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002356 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2357 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002358
2359 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002360 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002361 wm.removeView(window);
2362 }
2363 }
2364
2365 /**
2366 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002367 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002368 * Currently enforces that three window types are singletons:
2369 * <ul>
2370 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002371 * <li>KEYGUARD_TYPE</li>
2372 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002373 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002374 * @param win The window to be added
2375 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002376 *
Jeff Brown98365d72012-08-19 20:30:52 -07002377 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2378 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002379 */
Jose Lima9546b202014-07-02 17:21:51 -07002380 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002381 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2382 switch (attrs.type) {
2383 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002384 mContext.enforceCallingOrSelfPermission(
2385 android.Manifest.permission.STATUS_BAR_SERVICE,
2386 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002387 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002388 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002389 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002390 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002391 }
2392 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002393 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002394 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002395 case TYPE_NAVIGATION_BAR:
2396 mContext.enforceCallingOrSelfPermission(
2397 android.Manifest.permission.STATUS_BAR_SERVICE,
2398 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002399 if (mNavigationBar != null) {
2400 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002401 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002402 }
2403 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002404 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002405 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002406 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002407 break;
Jim Millere898ac52012-04-06 17:10:57 -07002408 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002409 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002410 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002411 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002412 mContext.enforceCallingOrSelfPermission(
2413 android.Manifest.permission.STATUS_BAR_SERVICE,
2414 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002415 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002416 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002417 if (mKeyguardScrim != null) {
2418 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2419 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002420 mKeyguardScrim = win;
2421 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002422 }
Jeff Brown98365d72012-08-19 20:30:52 -07002423 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002424 }
2425
2426 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002427 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002428 public void removeWindowLw(WindowState win) {
2429 if (mStatusBar == win) {
2430 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002431 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002432 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002433 } else if (mKeyguardScrim == win) {
2434 Log.v(TAG, "Removing keyguard scrim");
2435 mKeyguardScrim = null;
2436 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002437 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002438 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002439 }
2440 }
2441
2442 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002443
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002444 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002445 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002446 public int selectAnimationLw(WindowState win, int transit) {
2447 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2448 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002449 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002450 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002451 if (transit == TRANSIT_EXIT
2452 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002453 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002454 } else if (transit == TRANSIT_ENTER
2455 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002456 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002457 }
2458 } else if (win == mNavigationBar) {
2459 // This can be on either the bottom or the right.
2460 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002461 if (transit == TRANSIT_EXIT
2462 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002463 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002464 } else if (transit == TRANSIT_ENTER
2465 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002466 return R.anim.dock_bottom_enter;
2467 }
2468 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002469 if (transit == TRANSIT_EXIT
2470 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002471 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002472 } else if (transit == TRANSIT_ENTER
2473 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002474 return R.anim.dock_right_enter;
2475 }
2476 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002477 }
2478
2479 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002480 if (win.hasAppShownWindows()) {
2481 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2482 return com.android.internal.R.anim.app_starting_exit;
2483 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002484 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002485 && transit == TRANSIT_ENTER) {
2486 // Special case: we are animating in a dream, while the keyguard
2487 // is shown. We don't want an animation on the dream, because
2488 // we need it shown immediately with the keyguard animating away
2489 // to reveal it.
2490 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002491 }
2492
2493 return 0;
2494 }
2495
Craig Mautner3c174372013-02-21 17:54:37 -08002496 @Override
2497 public void selectRotationAnimationLw(int anim[]) {
2498 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2499 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2500 + (mTopFullscreenOpaqueWindowState == null ?
2501 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2502 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2503 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2504 case ROTATION_ANIMATION_CROSSFADE:
2505 anim[0] = R.anim.rotation_animation_xfade_exit;
2506 anim[1] = R.anim.rotation_animation_enter;
2507 break;
2508 case ROTATION_ANIMATION_JUMPCUT:
2509 anim[0] = R.anim.rotation_animation_jump_exit;
2510 anim[1] = R.anim.rotation_animation_enter;
2511 break;
2512 case ROTATION_ANIMATION_ROTATE:
2513 default:
2514 anim[0] = anim[1] = 0;
2515 break;
2516 }
2517 } else {
2518 anim[0] = anim[1] = 0;
2519 }
2520 }
2521
2522 @Override
2523 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2524 boolean forceDefault) {
2525 switch (exitAnimId) {
2526 case R.anim.rotation_animation_xfade_exit:
2527 case R.anim.rotation_animation_jump_exit:
2528 // These are the only cases that matter.
2529 if (forceDefault) {
2530 return false;
2531 }
2532 int anim[] = new int[2];
2533 selectRotationAnimationLw(anim);
2534 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2535 default:
2536 return true;
2537 }
2538 }
2539
2540 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002541 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2542 boolean goingToNotificationShade) {
2543 if (goingToNotificationShade) {
2544 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002545 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002546
2547 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2548 R.anim.lock_screen_behind_enter_wallpaper :
2549 R.anim.lock_screen_behind_enter);
2550
2551 // TODO: Use XML interpolators when we have log interpolators available in XML.
2552 final List<Animation> animations = set.getAnimations();
2553 for (int i = animations.size() - 1; i >= 0; --i) {
2554 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2555 }
2556
2557 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002558 }
2559
2560
2561 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002562 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2563 if (goingToNotificationShade) {
2564 return null;
2565 } else {
2566 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2567 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002568 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002569
2570 private static void awakenDreams() {
2571 IDreamManager dreamManager = getDreamManager();
2572 if (dreamManager != null) {
2573 try {
2574 dreamManager.awaken();
2575 } catch (RemoteException e) {
2576 // fine, stay asleep then
2577 }
2578 }
2579 }
2580
2581 static IDreamManager getDreamManager() {
2582 return IDreamManager.Stub.asInterface(
2583 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2584 }
2585
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002586 TelecomManager getTelecommService() {
2587 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002588 }
2589
Jeff Brown4d396052010-10-29 21:50:21 -07002590 static IAudioService getAudioService() {
2591 IAudioService audioService = IAudioService.Stub.asInterface(
2592 ServiceManager.checkService(Context.AUDIO_SERVICE));
2593 if (audioService == null) {
2594 Log.w(TAG, "Unable to find IAudioService interface.");
2595 }
2596 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002597 }
2598
2599 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002600 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002601 }
2602
2603 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2604 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2605 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2606 };
2607
2608 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002609 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002610 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002611 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002612 final int keyCode = event.getKeyCode();
2613 final int repeatCount = event.getRepeatCount();
2614 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002615 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002616 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2617 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002618
Jeff Brown40013652012-05-16 21:22:36 -07002619 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002620 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002621 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2622 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002623 }
2624
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002625 // If we think we might have a volume down & power key chord on the way
2626 // but we're not sure, then tell the dispatcher to wait a little while and
2627 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002628 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002629 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002630 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002631 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2632 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002633 if (now < timeoutTime) {
2634 return timeoutTime - now;
2635 }
2636 }
2637 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002638 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002639 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002640 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002641 }
2642 return -1;
2643 }
2644 }
2645
Michael Wright6a62e552014-06-03 19:19:48 -07002646 // Cancel any pending meta actions if we see any other keys being pressed between the down
2647 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002648 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002649 mPendingMetaAction = false;
2650 }
2651
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002652 // First we always handle the home key here, so applications
2653 // can never break it, although if keyguard is on, we do let
2654 // it handle it, because that gives us the correct 5 second
2655 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002656 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002657
Jeff Brown49ed71d2010-12-06 17:13:33 -08002658 // If we have released the home key, and didn't do anything else
2659 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002660 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002661 cancelPreloadRecentApps();
2662
Jeff Brown49ed71d2010-12-06 17:13:33 -08002663 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002664 if (mHomeConsumed) {
2665 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002666 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002667 }
Jeff Browncaca8812013-05-09 13:34:33 -07002668
2669 if (canceled) {
2670 Log.i(TAG, "Ignoring HOME; event canceled.");
2671 return -1;
2672 }
2673
Yorke Lee4f803242014-12-15 23:22:06 +00002674 // If an incoming call is ringing, HOME is totally disabled.
2675 // (The user is already on the InCallUI at this point,
2676 // and his ONLY options are to answer or reject the call.)
2677 TelecomManager telecomManager = getTelecommService();
2678 if (telecomManager != null && telecomManager.isRinging()) {
2679 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2680 return -1;
2681 }
2682
Jeff Browncaca8812013-05-09 13:34:33 -07002683 // Delay handling home if a double-tap is possible.
2684 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2685 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2686 mHomeDoubleTapPending = true;
2687 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2688 ViewConfiguration.getDoubleTapTimeout());
2689 return -1;
2690 }
2691
Jeff Brown13f00f02014-10-31 14:45:50 -07002692 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002693 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002694 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002695
2696 // If a system window has focus, then it doesn't make sense
2697 // right now to interact with applications.
2698 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2699 if (attrs != null) {
2700 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002701 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2702 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2703 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002704 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002705 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002706 }
2707 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2708 for (int i=0; i<typeCount; i++) {
2709 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2710 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002711 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002712 }
2713 }
2714 }
Jeff Browncaca8812013-05-09 13:34:33 -07002715
2716 // Remember that home is pressed and handle special actions.
2717 if (repeatCount == 0) {
2718 mHomePressed = true;
2719 if (mHomeDoubleTapPending) {
2720 mHomeDoubleTapPending = false;
2721 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2722 handleDoubleTapOnHome();
2723 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2724 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2725 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002726 }
Jeff Browncaca8812013-05-09 13:34:33 -07002727 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2728 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002729 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002730 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002731 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002732 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002733 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002734 // Hijack modified menu keys for debugging features
2735 final int chordBug = KeyEvent.META_SHIFT_ON;
2736
2737 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002738 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002739 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002740 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2741 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002742 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002743 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002744 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002745 Intent service = new Intent();
2746 service.setClassName(mContext, "com.android.server.LoadAverageService");
2747 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002748 boolean shown = Settings.Global.getInt(
2749 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002750 if (!shown) {
2751 mContext.startService(service);
2752 } else {
2753 mContext.stopService(service);
2754 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002755 Settings.Global.putInt(
2756 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002757 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002758 }
2759 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002760 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002761 if (down) {
2762 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002763 mSearchKeyShortcutPending = true;
2764 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002765 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002766 } else {
2767 mSearchKeyShortcutPending = false;
2768 if (mConsumeSearchKeyUp) {
2769 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002770 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002771 }
2772 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002773 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002774 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002775 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002776 if (down && repeatCount == 0) {
2777 preloadRecentApps();
2778 } else if (!down) {
2779 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002780 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002781 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002782 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002783 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2784 if (down) {
2785 IStatusBarService service = getStatusBarService();
2786 if (service != null) {
2787 try {
2788 service.expandNotificationsPanel();
2789 } catch (RemoteException e) {
2790 // do nothing.
2791 }
2792 }
2793 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002794 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2795 if (down) {
2796 if (repeatCount == 0) {
2797 mAssistKeyLongPressed = false;
2798 } else if (repeatCount == 1) {
2799 mAssistKeyLongPressed = true;
2800 if (!keyguardOn) {
2801 launchAssistLongPressAction();
2802 }
2803 }
2804 } else {
2805 if (mAssistKeyLongPressed) {
2806 mAssistKeyLongPressed = false;
2807 } else {
2808 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002809 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002810 }
2811 }
2812 }
2813 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002814 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2815 if (!down) {
2816 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002817 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002818 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2819 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002820 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2821 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2822 if (dic != null) {
2823 try {
2824 dic.exitIdle("voice-search");
2825 } catch (RemoteException e) {
2826 }
2827 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002828 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002829 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002830 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002831 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002832 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002833 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2834 if (down && repeatCount == 0) {
2835 mHandler.post(mScreenshotRunnable);
2836 }
2837 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002838 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2839 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2840 if (down) {
2841 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2842
2843 // Disable autobrightness if it's on
2844 int auto = Settings.System.getIntForUser(
2845 mContext.getContentResolver(),
2846 Settings.System.SCREEN_BRIGHTNESS_MODE,
2847 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2848 UserHandle.USER_CURRENT_OR_SELF);
2849 if (auto != 0) {
2850 Settings.System.putIntForUser(mContext.getContentResolver(),
2851 Settings.System.SCREEN_BRIGHTNESS_MODE,
2852 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2853 UserHandle.USER_CURRENT_OR_SELF);
2854 }
2855
2856 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2857 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2858 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2859 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2860 Settings.System.SCREEN_BRIGHTNESS,
2861 mPowerManager.getDefaultScreenBrightnessSetting(),
2862 UserHandle.USER_CURRENT_OR_SELF);
2863 brightness += step;
2864 // Make sure we don't go beyond the limits.
2865 brightness = Math.min(max, brightness);
2866 brightness = Math.max(min, brightness);
2867
2868 Settings.System.putIntForUser(mContext.getContentResolver(),
2869 Settings.System.SCREEN_BRIGHTNESS, brightness,
2870 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002871 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002872 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002873 }
2874 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002875 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002876 if (down) {
2877 mPendingMetaAction = true;
2878 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002879 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002880 }
2881 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002882 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002883
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002884 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002885 // Any printing key that is chorded with Search should be consumed
2886 // even if no shortcut was invoked. This prevents text from being
2887 // inadvertently inserted when using a keyboard that has built-in macro
2888 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002889 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002890 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2891 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002892 mConsumeSearchKeyUp = true;
2893 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002894 if (down && repeatCount == 0 && !keyguardOn) {
2895 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2896 if (shortcutIntent != null) {
2897 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002898 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002899 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002900 } catch (ActivityNotFoundException ex) {
2901 Slog.w(TAG, "Dropping shortcut key combination because "
2902 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002903 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002904 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002905 } else {
2906 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002907 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002908 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002909 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002910 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002911 }
2912 }
2913
Jeff Brown68b909d2011-12-07 16:36:01 -08002914 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002915 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002916 && (metaState & KeyEvent.META_META_ON) != 0) {
2917 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002918 if (kcm.isPrintingKey(keyCode)) {
2919 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2920 metaState & ~(KeyEvent.META_META_ON
2921 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2922 if (shortcutIntent != null) {
2923 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2924 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002925 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002926 } catch (ActivityNotFoundException ex) {
2927 Slog.w(TAG, "Dropping shortcut key combination because "
2928 + "the activity to which it is registered was not found: "
2929 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2930 }
2931 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002932 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002933 }
2934 }
2935
Jeff Brown6651a632011-11-28 12:59:11 -08002936 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002937 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002938 String category = sApplicationLaunchKeyCategories.get(keyCode);
2939 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002940 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002941 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2942 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002943 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002944 } catch (ActivityNotFoundException ex) {
2945 Slog.w(TAG, "Dropping application launch key because "
2946 + "the activity to which it is registered was not found: "
2947 + "keyCode=" + keyCode + ", category=" + category, ex);
2948 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002949 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002950 }
2951 }
2952
Michael Wright61c46752014-08-21 16:57:33 -07002953 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002954 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002955 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002956 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002957 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002958 mRecentAppsHeldModifiers = shiftlessModifiers;
2959 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002960 return -1;
2961 }
2962 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002963 } else if (!down && mRecentAppsHeldModifiers != 0
2964 && (metaState & mRecentAppsHeldModifiers) == 0) {
2965 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002966 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002967 }
2968
Jeff Browncf39bdf2012-05-18 14:41:19 -07002969 // Handle keyboard language switching.
2970 if (down && repeatCount == 0
2971 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2972 || (keyCode == KeyEvent.KEYCODE_SPACE
2973 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2974 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2975 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2976 return -1;
2977 }
2978 if (mLanguageSwitchKeyPressed && !down
2979 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2980 || keyCode == KeyEvent.KEYCODE_SPACE)) {
2981 mLanguageSwitchKeyPressed = false;
2982 return -1;
2983 }
2984
Jeff Brown13f00f02014-10-31 14:45:50 -07002985 if (isValidGlobalKey(keyCode)
2986 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07002987 return -1;
2988 }
2989
Michael Wright6a62e552014-06-03 19:19:48 -07002990 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07002991 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07002992 return -1;
2993 }
2994
Jeff Brown68b909d2011-12-07 16:36:01 -08002995 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002996 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002997 }
2998
Jeff Brown3915bb82010-11-05 15:02:16 -07002999 /** {@inheritDoc} */
3000 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003001 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003002 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003003 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003004 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3005 + ", flags=" + event.getFlags()
3006 + ", keyCode=" + event.getKeyCode()
3007 + ", scanCode=" + event.getScanCode()
3008 + ", metaState=" + event.getMetaState()
3009 + ", repeatCount=" + event.getRepeatCount()
3010 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003011 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003012
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003013 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003014 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3015 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003016 final int keyCode = event.getKeyCode();
3017 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003018 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3019 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003020
Jeff Brown54875002011-04-06 15:33:01 -07003021 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003022 final FallbackAction fallbackAction;
3023 if (initialDown) {
3024 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3025 } else {
3026 fallbackAction = mFallbackActions.get(keyCode);
3027 }
3028
3029 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003030 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003031 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3032 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003033 }
3034
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003035 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3036 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003037 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003038 event.getAction(), fallbackAction.keyCode,
3039 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003040 event.getDeviceId(), event.getScanCode(),
3041 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003042
3043 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3044 fallbackEvent.recycle();
3045 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003046 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003047
3048 if (initialDown) {
3049 mFallbackActions.put(keyCode, fallbackAction);
3050 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3051 mFallbackActions.remove(keyCode);
3052 fallbackAction.recycle();
3053 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003054 }
3055 }
3056
Jeff Brown40013652012-05-16 21:22:36 -07003057 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003058 if (fallbackEvent == null) {
3059 Slog.d(TAG, "No fallback.");
3060 } else {
3061 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3062 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003063 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003064 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003065 }
3066
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003067 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003068 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003069 if ((actions & ACTION_PASS_TO_USER) != 0) {
3070 long delayMillis = interceptKeyBeforeDispatching(
3071 win, fallbackEvent, policyFlags);
3072 if (delayMillis == 0) {
3073 return true;
3074 }
3075 }
3076 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003077 }
3078
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003079 private void launchAssistLongPressAction() {
3080 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3081 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3082
3083 // launch the search activity
3084 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3085 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3086 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003087 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003088 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003089 SearchManager searchManager = getSearchManager();
3090 if (searchManager != null) {
3091 searchManager.stopSearch();
3092 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003093 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003094 } catch (ActivityNotFoundException e) {
3095 Slog.w(TAG, "No activity to handle assist long press action.", e);
3096 }
3097 }
3098
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003099 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003100 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003101 Bundle args = null;
3102 if (deviceId > Integer.MIN_VALUE) {
3103 args = new Bundle();
3104 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003105 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003106 if ((mContext.getResources().getConfiguration().uiMode
3107 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3108 // On TV, use legacy handling until assistants are implemented in the proper way.
3109 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3110 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3111 } else {
3112 try {
3113 if (hint != null) {
3114 if (args == null) {
3115 args = new Bundle();
3116 }
3117 args.putBoolean(hint, true);
3118 }
3119 IStatusBarService statusbar = getStatusBarService();
3120 if (statusbar != null) {
3121 statusbar.startAssist(args);
3122 }
3123 } catch (RemoteException e) {
3124 Slog.e(TAG, "RemoteException when starting assist", e);
3125 // re-acquire status bar service next time it is needed.
3126 mStatusBarService = null;
3127 }
3128 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003129 }
3130
Bart Sears8b1c27c2015-03-18 23:51:02 +00003131 private void startActivityAsUser(Intent intent, UserHandle handle) {
3132 if (isUserSetupComplete()) {
3133 mContext.startActivityAsUser(intent, handle);
3134 } else {
3135 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3136 }
3137 }
3138
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003139 private SearchManager getSearchManager() {
3140 if (mSearchManager == null) {
3141 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3142 }
3143 return mSearchManager;
3144 }
3145
Jeff Browncaca8812013-05-09 13:34:33 -07003146 private void preloadRecentApps() {
3147 mPreloadedRecentApps = true;
3148 try {
3149 IStatusBarService statusbar = getStatusBarService();
3150 if (statusbar != null) {
3151 statusbar.preloadRecentApps();
3152 }
3153 } catch (RemoteException e) {
3154 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3155 // re-acquire status bar service next time it is needed.
3156 mStatusBarService = null;
3157 }
3158 }
3159
3160 private void cancelPreloadRecentApps() {
3161 if (mPreloadedRecentApps) {
3162 mPreloadedRecentApps = false;
3163 try {
3164 IStatusBarService statusbar = getStatusBarService();
3165 if (statusbar != null) {
3166 statusbar.cancelPreloadRecentApps();
3167 }
3168 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003169 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003170 // re-acquire status bar service next time it is needed.
3171 mStatusBarService = null;
3172 }
3173 }
3174 }
3175
3176 private void toggleRecentApps() {
3177 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003178 try {
3179 IStatusBarService statusbar = getStatusBarService();
3180 if (statusbar != null) {
3181 statusbar.toggleRecentApps();
3182 }
3183 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003184 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3185 // re-acquire status bar service next time it is needed.
3186 mStatusBarService = null;
3187 }
3188 }
3189
Craig Mautner84984fa2014-06-19 11:19:20 -07003190 @Override
3191 public void showRecentApps() {
3192 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3193 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3194 }
3195
Winson Chung1e8d71b2014-05-16 17:05:22 -07003196 private void showRecentApps(boolean triggeredFromAltTab) {
3197 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3198 try {
3199 IStatusBarService statusbar = getStatusBarService();
3200 if (statusbar != null) {
3201 statusbar.showRecentApps(triggeredFromAltTab);
3202 }
3203 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003204 Slog.e(TAG, "RemoteException when showing recent apps", e);
3205 // re-acquire status bar service next time it is needed.
3206 mStatusBarService = null;
3207 }
3208 }
3209
Winson Chungcdcd4872014-08-05 18:00:13 -07003210 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003211 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3212 try {
3213 IStatusBarService statusbar = getStatusBarService();
3214 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003215 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003216 }
3217 } catch (RemoteException e) {
3218 Slog.e(TAG, "RemoteException when closing recent apps", e);
3219 // re-acquire status bar service next time it is needed.
3220 mStatusBarService = null;
3221 }
3222 }
3223
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003224 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003225 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003226 }
3227
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003228 /**
3229 * A home key -> launch home action was detected. Take the appropriate action
3230 * given the situation with the keyguard.
3231 */
Bryce Lee662ed802015-04-10 20:11:39 +00003232 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3233 if (respectKeyguard) {
3234 if (isKeyguardShowingAndNotOccluded()) {
3235 // don't launch home if keyguard showing
3236 return;
3237 }
3238
3239 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3240 // when in keyguard restricted mode, must first verify unlock
3241 // before launching home
3242 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3243 @Override
3244 public void onKeyguardExitResult(boolean success) {
3245 if (success) {
3246 try {
3247 ActivityManagerNative.getDefault().stopAppSwitches();
3248 } catch (RemoteException e) {
3249 }
3250 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3251 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003252 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003253 }
Bryce Lee662ed802015-04-10 20:11:39 +00003254 });
3255 return;
3256 }
3257 }
3258
3259 // no keyguard stuff to worry about, just launch home!
3260 try {
3261 ActivityManagerNative.getDefault().stopAppSwitches();
3262 } catch (RemoteException e) {
3263 }
3264 if (mRecentsVisible) {
3265 // Hide Recents and notify it to launch Home
3266 if (awakenFromDreams) {
3267 awakenDreams();
3268 }
3269 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3270 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003271 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003272 // Otherwise, just launch Home
3273 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3274 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003275 }
3276 }
3277
John Spurlock04db1762013-05-13 12:46:41 -04003278 private final Runnable mClearHideNavigationFlag = new Runnable() {
3279 @Override
3280 public void run() {
3281 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3282 // Clear flags.
3283 mForceClearedSystemUiFlags &=
3284 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3285 }
3286 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003287 }
3288 };
3289
3290 /**
3291 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3292 * to determine when the nav bar should be shown and prevent applications from
3293 * receiving those touches.
3294 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003295 final class HideNavInputEventReceiver extends InputEventReceiver {
3296 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3297 super(inputChannel, looper);
3298 }
3299
Dianne Hackborndf89e652011-10-06 22:35:11 -07003300 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003301 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003302 boolean handled = false;
3303 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003304 if (event instanceof MotionEvent
3305 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3306 final MotionEvent motionEvent = (MotionEvent)event;
3307 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003308 // When the user taps down, we re-show the nav bar.
3309 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003310 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003311 // Any user activity always causes us to show the
3312 // navigation controls, if they had been hidden.
3313 // We also clear the low profile and only content
3314 // flags so that tapping on the screen will atomically
3315 // restore all currently hidden screen decorations.
3316 int newVal = mResettingSystemUiFlags |
3317 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3318 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3319 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003320 if (mResettingSystemUiFlags != newVal) {
3321 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003322 changed = true;
3323 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003324 // We don't allow the system's nav bar to be hidden
3325 // again for 1 second, to prevent applications from
3326 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003327 newVal = mForceClearedSystemUiFlags |
3328 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003329 if (mForceClearedSystemUiFlags != newVal) {
3330 mForceClearedSystemUiFlags = newVal;
3331 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003332 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003333 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003334 }
3335 if (changed) {
3336 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3337 }
3338 }
3339 }
3340 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003341 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003342 }
3343 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003344 }
3345 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3346 new InputEventReceiver.Factory() {
3347 @Override
3348 public InputEventReceiver createInputEventReceiver(
3349 InputChannel inputChannel, Looper looper) {
3350 return new HideNavInputEventReceiver(inputChannel, looper);
3351 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003352 };
3353
3354 @Override
3355 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003356 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3357 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003358 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003359
Dianne Hackborndf89e652011-10-06 22:35:11 -07003360 // Reset any bits in mForceClearingStatusBarVisibility that
3361 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003362 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003363 // Clear any bits in the new visibility that are currently being
3364 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003365 return visibility & ~mResettingSystemUiFlags
3366 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003367 }
3368
Craig Mautner69b08182012-09-05 13:07:13 -07003369 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003370 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3371 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003372 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003373 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3374 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003375
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003376 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3377 if (useOutsets) {
3378 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3379 if (outset > 0) {
3380 if (displayRotation == Surface.ROTATION_0) {
3381 outOutsets.bottom += outset;
3382 } else if (displayRotation == Surface.ROTATION_90) {
3383 outOutsets.right += outset;
3384 } else if (displayRotation == Surface.ROTATION_180) {
3385 outOutsets.top += outset;
3386 } else if (displayRotation == Surface.ROTATION_270) {
3387 outOutsets.left += outset;
3388 }
3389 }
3390 }
3391
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003392 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003393 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003394 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003395 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003396 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003397 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3398 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3399 } else {
3400 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3401 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3402 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003403 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3404 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003405 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003406 availRight - mStableFullscreenRight,
3407 availBottom - mStableFullscreenBottom);
3408 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003409 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003410 availRight - mStableRight, availBottom - mStableBottom);
3411 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003412 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003413 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003414 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003415 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003416 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003417 availRight - mCurRight, availBottom - mCurBottom);
3418 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003419 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003420 availRight - mCurRight, availBottom - mCurBottom);
3421 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003422
3423 outStableInsets.set(mStableLeft, mStableTop,
3424 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003425 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003426 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003427 outContentInsets.setEmpty();
3428 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003429 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003430
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003431 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3432 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3433 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3434 }
3435
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003436 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003437 @Override
3438 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3439 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003440 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003441 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3442 if (isDefaultDisplay) {
3443 switch (displayRotation) {
3444 case Surface.ROTATION_90:
3445 overscanLeft = mOverscanTop;
3446 overscanTop = mOverscanRight;
3447 overscanRight = mOverscanBottom;
3448 overscanBottom = mOverscanLeft;
3449 break;
3450 case Surface.ROTATION_180:
3451 overscanLeft = mOverscanRight;
3452 overscanTop = mOverscanBottom;
3453 overscanRight = mOverscanLeft;
3454 overscanBottom = mOverscanTop;
3455 break;
3456 case Surface.ROTATION_270:
3457 overscanLeft = mOverscanBottom;
3458 overscanTop = mOverscanLeft;
3459 overscanRight = mOverscanTop;
3460 overscanBottom = mOverscanRight;
3461 break;
3462 default:
3463 overscanLeft = mOverscanLeft;
3464 overscanTop = mOverscanTop;
3465 overscanRight = mOverscanRight;
3466 overscanBottom = mOverscanBottom;
3467 break;
3468 }
3469 } else {
3470 overscanLeft = 0;
3471 overscanTop = 0;
3472 overscanRight = 0;
3473 overscanBottom = 0;
3474 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003475 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3476 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3477 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3478 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003479 mSystemLeft = 0;
3480 mSystemTop = 0;
3481 mSystemRight = displayWidth;
3482 mSystemBottom = displayHeight;
3483 mUnrestrictedScreenLeft = overscanLeft;
3484 mUnrestrictedScreenTop = overscanTop;
3485 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3486 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3487 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3488 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003489 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3490 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003491 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003492 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003493 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003494 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003495 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003496 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003497 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003498 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003499 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003500 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003501
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003502 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3503 final Rect pf = mTmpParentFrame;
3504 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003505 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003506 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003507 final Rect dcf = mTmpDecorFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003508 final Rect osf = mTmpOutsetFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003509 pf.left = df.left = of.left = vf.left = mDockLeft;
3510 pf.top = df.top = of.top = vf.top = mDockTop;
3511 pf.right = df.right = of.right = vf.right = mDockRight;
3512 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003513 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003514
Craig Mautner69b08182012-09-05 13:07:13 -07003515 if (isDefaultDisplay) {
3516 // For purposes of putting out fake window up to steal focus, we will
3517 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003518 final int sysui = mLastSystemUiFlags;
3519 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003520 boolean navTranslucent = (sysui
3521 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003522 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3523 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3524 boolean navAllowedHidden = immersive || immersiveSticky;
3525 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003526 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3527 if (!isKeyguardShowing) {
3528 navTranslucent &= areTranslucentBarsAllowed();
3529 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003530
Craig Mautner69b08182012-09-05 13:07:13 -07003531 // When the navigation bar isn't visible, we put up a fake
3532 // input window to catch all touch events. This way we can
3533 // detect when the user presses anywhere to bring back the nav
3534 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003535 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003536 if (mInputConsumer != null) {
3537 mInputConsumer.dismiss();
3538 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003539 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003540 } else if (mInputConsumer == null) {
3541 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3542 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003543 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003544
Craig Mautner69b08182012-09-05 13:07:13 -07003545 // For purposes of positioning and showing the nav bar, if we have
3546 // decided that it can't be hidden (because of the screen aspect ratio),
3547 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003548 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003549
John Spurlockad3e6cb2013-04-30 08:47:43 -04003550 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003551 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003552 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003553 // Force the navigation bar to its appropriate place and
3554 // size. We need to do this directly, instead of relying on
3555 // it to bubble up from the nav bar, because this needs to
3556 // change atomically with screen rotations.
3557 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3558 if (mNavigationBarOnBottom) {
3559 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003560 int top = displayHeight - overscanBottom
3561 - mNavigationBarHeightForRotation[displayRotation];
3562 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003563 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003564 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003565 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003566 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003567 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003568 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003569 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3570 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003571 } else {
3572 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003573 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003574 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003575 if (navVisible && !navTranslucent && !navAllowedHidden
3576 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003577 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003578 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003579 // and not in the process of animating on or off, then
3580 // we can tell the app that it is covered by it.
3581 mSystemBottom = mTmpNavigationFrame.top;
3582 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003583 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003584 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003585 int left = displayWidth - overscanRight
3586 - mNavigationBarWidthForRotation[displayRotation];
3587 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003588 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003589 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003590 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003591 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003592 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003593 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003594 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3595 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003596 } else {
3597 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003598 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003599 }
John Spurlockbd957402013-10-03 11:38:39 -04003600 if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3601 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003602 // If the nav bar is currently requested to be visible,
3603 // and not in the process of animating on or off, then
3604 // we can tell the app that it is covered by it.
3605 mSystemRight = mTmpNavigationFrame.left;
3606 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003607 }
Craig Mautner69b08182012-09-05 13:07:13 -07003608 // Make sure the content and current rectangles are updated to
3609 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003610 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3611 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3612 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3613 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003614 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3615 // And compute the final frame.
3616 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003617 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003618 mTmpNavigationFrame, mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003619 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003620 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003621 updateSysUiVisibility = true;
3622 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003623 }
Craig Mautnereda67292013-04-28 13:50:14 -07003624 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003625 mDockLeft, mDockTop, mDockRight, mDockBottom));
3626
3627 // decide where the status bar goes ahead of time
3628 if (mStatusBar != null) {
3629 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003630 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3631 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3632 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3633 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3634 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003635 vf.left = mStableLeft;
3636 vf.top = mStableTop;
3637 vf.right = mStableRight;
3638 vf.bottom = mStableBottom;
3639
3640 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3641
3642 // Let the status bar determine its size.
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003643 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3644 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3645 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
Craig Mautner69b08182012-09-05 13:07:13 -07003646
3647 // For layout, the status bar is always at the top with our fixed height.
3648 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3649
John Spurlocke1f366f2013-08-05 12:22:40 -04003650 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003651 boolean statusBarTranslucent = (sysui
3652 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003653 if (!isKeyguardShowing) {
3654 statusBarTranslucent &= areTranslucentBarsAllowed();
3655 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003656
Craig Mautner69b08182012-09-05 13:07:13 -07003657 // If the status bar is hidden, we don't want to cause
3658 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003659 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003660 // Status bar may go away, so the screen area it occupies
3661 // is available to apps but just covering them when the
3662 // status bar is visible.
3663 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3664
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003665 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3666 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3667 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3668 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003669
Craig Mautnereda67292013-04-28 13:50:14 -07003670 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003671 String.format(
3672 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3673 mDockLeft, mDockTop, mDockRight, mDockBottom,
3674 mContentLeft, mContentTop, mContentRight, mContentBottom,
3675 mCurLeft, mCurTop, mCurRight, mCurBottom));
3676 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003677 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003678 && !statusBarTransient && !statusBarTranslucent
3679 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003680 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003681 // and not in the process of animating on or off, then
3682 // we can tell the app that it is covered by it.
3683 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3684 }
John Spurlock27735a42013-08-14 17:57:38 -04003685 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003686 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003687 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003688 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003689 if (updateSysUiVisibility) {
3690 updateSystemUiVisibilityLw();
3691 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003692 }
3693 }
3694
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003695 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003696 @Override
John Spurlock46646232013-09-30 22:32:42 -04003697 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003698 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3699 return mStatusBar.getSurfaceLayer();
3700 }
3701
3702 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3703 return mNavigationBar.getSurfaceLayer();
3704 }
3705
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003706 return 0;
3707 }
3708
Craig Mautner967212c2013-04-13 21:10:58 -07003709 @Override
3710 public void getContentRectLw(Rect r) {
3711 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3712 }
3713
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003714 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3715 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003716 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3717 // Here's a special case: if this attached window is a panel that is
3718 // above the dock window, and the window it is attached to is below
3719 // the dock window, then the frames we computed for the window it is
3720 // attached to can not be used because the dock is effectively part
3721 // of the underlying window and the attached window is floating on top
3722 // of the whole thing. So, we ignore the attached window and explicitly
3723 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003724 df.left = of.left = cf.left = vf.left = mDockLeft;
3725 df.top = of.top = cf.top = vf.top = mDockTop;
3726 df.right = of.right = cf.right = vf.right = mDockRight;
3727 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003728 } else {
3729 // The effective display frame of the attached window depends on
3730 // whether it is taking care of insetting its content. If not,
3731 // we need to use the parent's content frame so that the entire
3732 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003733 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003734 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003735 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003736 // Set the content frame of the attached window to the parent's decor frame
3737 // (same as content frame when IME isn't present) if specifically requested by
3738 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3739 // Otherwise, use the overscan frame.
3740 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3741 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003742 } else {
3743 // If the window is resizing, then we want to base the content
3744 // frame on our attached content frame to resize... however,
3745 // things can be tricky if the attached window is NOT in resize
3746 // mode, in which case its content frame will be larger.
3747 // Ungh. So to deal with that, make sure the content frame
3748 // we end up using is not covering the IM dock.
3749 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003750 if (attached.isVoiceInteraction()) {
3751 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3752 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3753 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3754 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3755 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003756 if (cf.left < mContentLeft) cf.left = mContentLeft;
3757 if (cf.top < mContentTop) cf.top = mContentTop;
3758 if (cf.right > mContentRight) cf.right = mContentRight;
3759 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3760 }
3761 }
3762 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003763 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003764 vf.set(attached.getVisibleFrameLw());
3765 }
3766 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3767 // window should be positioned relative to its parent or the entire
3768 // screen.
3769 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3770 ? attached.getFrameLw() : df);
3771 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003772
3773 private void applyStableConstraints(int sysui, int fl, Rect r) {
3774 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3775 // If app is requesting a stable layout, don't let the
3776 // content insets go below the stable values.
3777 if ((fl & FLAG_FULLSCREEN) != 0) {
3778 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3779 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3780 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3781 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3782 } else {
3783 if (r.left < mStableLeft) r.left = mStableLeft;
3784 if (r.top < mStableTop) r.top = mStableTop;
3785 if (r.right > mStableRight) r.right = mStableRight;
3786 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3787 }
3788 }
3789 }
3790
Jorim Jaggiaa806142015-05-20 18:04:16 -07003791 private boolean canReceiveInput(WindowState win) {
3792 boolean notFocusable =
3793 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3794 boolean altFocusableIm =
3795 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3796 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3797 return !notFocusableForIm;
3798 }
3799
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003800 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003801 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003802 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003803 // We've already done the navigation bar and status bar. If the status bar can receive
3804 // input, we need to layout it again to accomodate for the IME window.
3805 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003806 return;
3807 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003808 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003809 final boolean isDefaultDisplay = win.isDefaultDisplay();
3810 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003811 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3812 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003813 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003814 offsetInputMethodWindowLw(mLastInputMethodWindow);
3815 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003816
John Spurlockc6d1c602014-01-17 15:22:06 -05003817 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003818 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003819 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003820
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003821 final Rect pf = mTmpParentFrame;
3822 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003823 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003824 final Rect cf = mTmpContentFrame;
3825 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003826 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003827 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003828 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003829 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003830
3831 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003832 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003833
Craig Mautnerf683b562012-10-02 11:10:57 -07003834 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3835
Adrian Roosfa104232014-06-20 16:10:14 -07003836 if (isDefaultDisplay) {
3837 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3838 } else {
3839 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3840 }
3841
Craig Mautner69b08182012-09-05 13:07:13 -07003842 if (!isDefaultDisplay) {
3843 if (attached != null) {
3844 // If this window is attached to another, our display
3845 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003846 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003847 } else {
3848 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003849 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3850 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3851 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003852 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003853 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003854 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003855 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003856 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003857 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3858 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3859 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003860 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003861 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003862 // ...with content insets above the nav bar
3863 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003864 // IM dock windows always go to the bottom of the screen.
3865 attrs.gravity = Gravity.BOTTOM;
3866 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003867 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003868 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003869 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003870 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3871 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003872 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003873 // Note: In Phone landscape mode, the button bar should also be excluded.
3874 cf.right = vf.right = mStableRight;
3875 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003876 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003877 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003878 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3879 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3880 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3881 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3882 cf.left = vf.left = mStableLeft;
3883 cf.top = vf.top = mStableTop;
3884 cf.right = vf.right = mStableRight;
3885 vf.bottom = mStableBottom;
3886 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003887 } else {
John Spurlock46646232013-09-30 22:32:42 -04003888
3889 // Default policy decor for the default display
3890 dcf.left = mSystemLeft;
3891 dcf.top = mSystemTop;
3892 dcf.right = mSystemRight;
3893 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003894 final boolean inheritTranslucentDecor = (attrs.privateFlags
3895 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003896 final boolean isAppWindow =
3897 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3898 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3899 final boolean topAtRest =
3900 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3901 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003902 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3903 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003904 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3905 && (fl & WindowManager.LayoutParams.
3906 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003907 // Ensure policy decor includes status bar
3908 dcf.top = mStableTop;
3909 }
John Spurlockbd957402013-10-03 11:38:39 -04003910 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003911 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3912 && (fl & WindowManager.LayoutParams.
3913 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003914 // Ensure policy decor includes navigation bar
3915 dcf.bottom = mStableBottom;
3916 dcf.right = mStableRight;
3917 }
3918 }
3919
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003920 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3921 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003922 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003923 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003924 // This is the case for a normal activity window: we want it
3925 // to cover all of the screen space, and it can take care of
3926 // moving its contents to account for screen decorations that
3927 // intrude into that space.
3928 if (attached != null) {
3929 // If this window is attached to another, our display
3930 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003931 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003932 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003933 if (attrs.type == TYPE_STATUS_BAR_PANEL
3934 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003935 // Status bar panels are the only windows who can go on top of
3936 // the status bar. They are protected by the STATUS_BAR_SERVICE
3937 // permission, so they have the same privileges as the status
3938 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003939 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003940 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003941
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003942 pf.left = df.left = of.left = hasNavBar
3943 ? mDockLeft : mUnrestrictedScreenLeft;
3944 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3945 pf.right = df.right = of.right = hasNavBar
3946 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3947 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3948 pf.bottom = df.bottom = of.bottom = hasNavBar
3949 ? mRestrictedScreenTop+mRestrictedScreenHeight
3950 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003951
Craig Mautnereda67292013-04-28 13:50:14 -07003952 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003953 "Laying out status bar window: (%d,%d - %d,%d)",
3954 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003955 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003956 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3957 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3958 // Asking to layout into the overscan region, so give it that pure
3959 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003960 pf.left = df.left = of.left = mOverscanScreenLeft;
3961 pf.top = df.top = of.top = mOverscanScreenTop;
3962 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3963 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3964 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003965 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003966 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003967 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3968 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003969 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003970 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003971 // only do this for application windows to ensure no window that
3972 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08003973 pf.left = df.left = mOverscanScreenLeft;
3974 pf.top = df.top = mOverscanScreenTop;
3975 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3976 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003977 // We need to tell the app about where the frame inside the overscan
3978 // is, so it can inset its content by that amount -- it didn't ask
3979 // to actually extend itself into the overscan region.
3980 of.left = mUnrestrictedScreenLeft;
3981 of.top = mUnrestrictedScreenTop;
3982 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3983 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003984 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08003985 pf.left = df.left = mRestrictedOverscanScreenLeft;
3986 pf.top = df.top = mRestrictedOverscanScreenTop;
3987 pf.right = df.right = mRestrictedOverscanScreenLeft
3988 + mRestrictedOverscanScreenWidth;
3989 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
3990 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003991 // We need to tell the app about where the frame inside the overscan
3992 // is, so it can inset its content by that amount -- it didn't ask
3993 // to actually extend itself into the overscan region.
3994 of.left = mUnrestrictedScreenLeft;
3995 of.top = mUnrestrictedScreenTop;
3996 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3997 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003998 }
Craig Mautner69b08182012-09-05 13:07:13 -07003999
John Spurlock46646232013-09-30 22:32:42 -04004000 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004001 if (win.isVoiceInteraction()) {
4002 cf.left = mVoiceContentLeft;
4003 cf.top = mVoiceContentTop;
4004 cf.right = mVoiceContentRight;
4005 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004006 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004007 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4008 cf.left = mDockLeft;
4009 cf.top = mDockTop;
4010 cf.right = mDockRight;
4011 cf.bottom = mDockBottom;
4012 } else {
4013 cf.left = mContentLeft;
4014 cf.top = mContentTop;
4015 cf.right = mContentRight;
4016 cf.bottom = mContentBottom;
4017 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004018 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004019 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004020 // Full screen windows are always given a layout that is as if the
4021 // status bar and other transient decors are gone. This is to avoid
4022 // bad states when moving from a window that is not hding the
4023 // status bar to one that is.
4024 cf.left = mRestrictedScreenLeft;
4025 cf.top = mRestrictedScreenTop;
4026 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4027 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004028 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004029 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004030 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4031 vf.left = mCurLeft;
4032 vf.top = mCurTop;
4033 vf.right = mCurRight;
4034 vf.bottom = mCurBottom;
4035 } else {
4036 vf.set(cf);
4037 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004038 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004039 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4040 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4041 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004042 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4043 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004044 // A window that has requested to fill the entire screen just
4045 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004046 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004047 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4048 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004049 pf.left = df.left = of.left = cf.left = hasNavBar
4050 ? mDockLeft : mUnrestrictedScreenLeft;
4051 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4052 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004053 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004054 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004055 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004056 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004057 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004058 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004059 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4060 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004061 } else if (attrs.type == TYPE_NAVIGATION_BAR
4062 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004063 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004064 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4065 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4066 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4067 + mUnrestrictedScreenWidth;
4068 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4069 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004070 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004071 "Laying out navigation bar window: (%d,%d - %d,%d)",
4072 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004073 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4074 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004075 && ((fl & FLAG_FULLSCREEN) != 0)) {
4076 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004077 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4078 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4079 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4080 + mOverscanScreenWidth;
4081 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4082 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004083 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004084 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004085 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4086 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4087 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4088 + mOverscanScreenWidth;
4089 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4090 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004091 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004092 // The wallpaper also has Real Ultimate Power, but we want to tell
4093 // it about the overscan area.
4094 pf.left = df.left = mOverscanScreenLeft;
4095 pf.top = df.top = mOverscanScreenTop;
4096 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4097 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4098 of.left = cf.left = mUnrestrictedScreenLeft;
4099 of.top = cf.top = mUnrestrictedScreenTop;
4100 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4101 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004102 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004103 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4104 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4105 // Asking to layout into the overscan region, so give it that pure
4106 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004107 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4108 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4109 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004110 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004111 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004112 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004113 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004114 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004115 && (attrs.type == TYPE_STATUS_BAR
4116 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004117 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004118 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4119 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004120 // Asking for layout as if the nav bar is hidden, lets the
4121 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004122 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004123 // can be above the nav bar can do this.
4124 // XXX This assumes that an app asking for this will also
4125 // ask for layout in only content. We can't currently figure out
4126 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004127 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4128 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4129 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4130 + mUnrestrictedScreenWidth;
4131 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4132 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004133 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004134 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4135 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4136 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4137 + mRestrictedScreenWidth;
4138 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4139 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004140 }
Craig Mautner69b08182012-09-05 13:07:13 -07004141
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004142 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004143
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004144 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4145 vf.left = mCurLeft;
4146 vf.top = mCurTop;
4147 vf.right = mCurRight;
4148 vf.bottom = mCurBottom;
4149 } else {
4150 vf.set(cf);
4151 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004152 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004153 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4154 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004155 // A child window should be placed inside of the same visible
4156 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004157 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004158 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004159 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4160 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004161 // Otherwise, a normal window must be placed inside the content
4162 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004163 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4164 // Status bar panels and the volume dialog are the only windows who can go on
4165 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004166 // permission, so they have the same privileges as the status
4167 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004168 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4169 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4170 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4171 + mRestrictedScreenWidth;
4172 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4173 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004174 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004175 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004176 pf.left = df.left = of.left = cf.left = mStableLeft;
4177 pf.top = df.top = of.top = cf.top = mStableTop;
4178 pf.right = df.right = of.right = cf.right = mStableRight;
4179 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004180 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004181 pf.left = mContentLeft;
4182 pf.top = mContentTop;
4183 pf.right = mContentRight;
4184 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004185 if (win.isVoiceInteraction()) {
4186 df.left = of.left = cf.left = mVoiceContentLeft;
4187 df.top = of.top = cf.top = mVoiceContentTop;
4188 df.right = of.right = cf.right = mVoiceContentRight;
4189 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4190 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004191 df.left = of.left = cf.left = mDockLeft;
4192 df.top = of.top = cf.top = mDockTop;
4193 df.right = of.right = cf.right = mDockRight;
4194 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004195 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004196 df.left = of.left = cf.left = mContentLeft;
4197 df.top = of.top = cf.top = mContentTop;
4198 df.right = of.right = cf.right = mContentRight;
4199 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004200 }
4201 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4202 vf.left = mCurLeft;
4203 vf.top = mCurTop;
4204 vf.right = mCurRight;
4205 vf.bottom = mCurBottom;
4206 } else {
4207 vf.set(cf);
4208 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004209 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004210 }
4211 }
Craig Mautner69b08182012-09-05 13:07:13 -07004212
Craig Mautnerb816bed2013-07-23 10:26:17 -07004213 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4214 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004215 df.left = df.top = -10000;
4216 df.right = df.bottom = 10000;
4217 if (attrs.type != TYPE_WALLPAPER) {
4218 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4219 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4220 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004221 }
4222
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004223 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4224 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004225 // We only want to apply outsets to certain types of windows. For example, we never want to
4226 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004227 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004228 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004229 osf = mTmpOutsetFrame;
4230 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4231 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4232 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004233 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004234 if (rotation == Surface.ROTATION_0) {
4235 osf.bottom += outset;
4236 } else if (rotation == Surface.ROTATION_90) {
4237 osf.right += outset;
4238 } else if (rotation == Surface.ROTATION_180) {
4239 osf.top -= outset;
4240 } else if (rotation == Surface.ROTATION_270) {
4241 osf.left -= outset;
4242 }
4243 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4244 + " with rotation " + rotation + ", result: " + osf);
4245 }
4246 }
4247
Craig Mautnereda67292013-04-28 13:50:14 -07004248 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004249 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004250 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004251 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004252 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004253 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004254 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004255 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004256 + " sf=" + sf.toShortString()
4257 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004258
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004259 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004260
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004261 // Dock windows carve out the bottom of the screen, so normal windows
4262 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004263 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4264 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004265 setLastInputMethodWindowLw(null, null);
4266 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004267 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004268 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4269 && !win.getGivenInsetsPendingLw()) {
4270 offsetVoiceInputWindowLw(win);
4271 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004272 }
4273
satok1bc0a492012-04-25 22:47:12 +09004274 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004275 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004276 top += win.getGivenContentInsetsLw().top;
4277 if (mContentBottom > top) {
4278 mContentBottom = top;
4279 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004280 if (mVoiceContentBottom > top) {
4281 mVoiceContentBottom = top;
4282 }
satok1bc0a492012-04-25 22:47:12 +09004283 top = win.getVisibleFrameLw().top;
4284 top += win.getGivenVisibleInsetsLw().top;
4285 if (mCurBottom > top) {
4286 mCurBottom = top;
4287 }
Craig Mautnereda67292013-04-28 13:50:14 -07004288 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004289 + mDockBottom + " mContentBottom="
4290 + mContentBottom + " mCurBottom=" + mCurBottom);
4291 }
4292
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004293 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004294 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004295 top += win.getGivenContentInsetsLw().top;
4296 if (mVoiceContentBottom > top) {
4297 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004298 }
4299 }
4300
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004301 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004302 @Override
4303 public void finishLayoutLw() {
4304 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004305 }
4306
4307 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004308 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004309 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004310 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004311 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004312 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004313 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004314 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004315 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004316 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004317 mForcingShowNavBar = false;
4318 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004319
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004320 mHideLockScreen = false;
4321 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004322 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004323 mShowingLockscreen = false;
4324 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004325 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004326 mKeyguardSecure = isKeyguardSecure();
4327 mKeyguardSecureIncludingHidden = mKeyguardSecure
4328 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004329 }
4330
4331 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004332 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004333 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4334 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004335 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4336 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004337 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004338 if (mTopFullscreenOpaqueWindowState == null
4339 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4340 mForcingShowNavBar = true;
4341 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004342 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004343 if (attrs.type == TYPE_STATUS_BAR) {
4344 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4345 mForceStatusBarFromKeyguard = true;
4346 }
4347 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4348 mForceStatusBarTransparent = true;
4349 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004350 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004351
4352 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4353 && attrs.type < FIRST_SYSTEM_WINDOW;
4354 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4355 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4356
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004357 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004358 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004359 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004360 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004361 mForceStatusBarFromKeyguard = true;
4362 } else {
4363 mForceStatusBar = true;
4364 }
4365 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004366 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004367 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004368 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004369 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004370 // If the lockscreen was showing when the dream started then wait
4371 // for the dream to draw before hiding the lockscreen.
4372 if (!mDreamingLockscreen
4373 || (win.isVisibleLw() && win.hasDrawnLw())) {
4374 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004375 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004376 }
4377 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004378
Yohei Yukawad1a09222015-06-30 16:22:05 -07004379 final IApplicationToken appToken = win.getAppToken();
4380
4381 // For app windows that are not attached, we decide if all windows in the app they
4382 // represent should be hidden or if we should hide the lockscreen. For attached app
4383 // windows we defer the decision to the window it is attached to.
4384 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004385 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004386 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004387 mAppsToBeHidden.remove(appToken);
4388 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004389 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004390 if (dismissKeyguard && !mKeyguardSecure) {
4391 mAppsThatDismissKeyguard.add(appToken);
4392 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004393 mWinShowWhenLocked = win;
4394 mHideLockScreen = true;
4395 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004396 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004397 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004398 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004399 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004400 mAppsToBeHidden.add(appToken);
4401 } else {
4402 mAppsToBeHidden.remove(appToken);
4403 }
4404 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004405 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004406 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004407 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004408 if (attrs.x == 0 && attrs.y == 0
4409 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4410 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4411 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4412 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004413 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4414 mTopFullscreenOpaqueOrDimmingWindowState = win;
4415 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004416 if (!mAppsThatDismissKeyguard.isEmpty() &&
4417 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4418 if (DEBUG_LAYOUT) Slog.v(TAG,
4419 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004420 mDismissKeyguard = (mWinDismissingKeyguard == win
4421 && mSecureDismissingKeyguard == mKeyguardSecure)
4422 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004423 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004424 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004425 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004426 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4427 if (DEBUG_LAYOUT) Slog.v(TAG,
4428 "Setting mHideLockScreen to true by win " + win);
4429 mHideLockScreen = true;
4430 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004431 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004432 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004433 mAllowLockscreenWhenOn = true;
4434 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004435 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004436
4437 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004438 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4439 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004440 win.hideLw(false);
4441 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004442 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004443 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4444 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4445 // that is being hidden in an animation - keep the
4446 // keyguard hidden until the new window shows up and
4447 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004448 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004449 mHideLockScreen = true;
4450 mWinShowWhenLocked = win;
4451 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004452 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004453 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4454 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4455 && win.isDimming()) {
4456 mTopFullscreenOpaqueOrDimmingWindowState = win;
4457 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004458 }
4459
4460 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004461 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004462 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004463 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4464 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4465 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004466 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4467 // fullscreen window.
4468 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4469 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4470 mTopFullscreenOpaqueWindowState.hideLw(false);
4471 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4472 }
4473
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004474 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004475 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004476
4477 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4478 ? mTopFullscreenOpaqueWindowState.getAttrs()
4479 : null;
4480
Jeff Brownc8018eb2012-10-29 21:33:27 -07004481 // If we are not currently showing a dream then remember the current
4482 // lockscreen state. We will use this to determine whether the dream
4483 // started while the lockscreen was showing and remember this state
4484 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004485 if (!mShowingDream) {
4486 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004487 if (mDreamingSleepTokenNeeded) {
4488 mDreamingSleepTokenNeeded = false;
4489 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4490 }
4491 } else {
4492 if (!mDreamingSleepTokenNeeded) {
4493 mDreamingSleepTokenNeeded = true;
4494 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4495 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004496 }
4497
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004498 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004499 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004500 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004501 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004502 boolean shouldBeTransparent = mForceStatusBarTransparent
4503 && !mForceStatusBar
4504 && !mForceStatusBarFromKeyguard;
4505 if (!shouldBeTransparent) {
4506 mStatusBarController.setShowTransparent(false /* transparent */);
4507 } else if (!mStatusBar.isVisibleLw()) {
4508 mStatusBarController.setShowTransparent(true /* transparent */);
4509 }
4510 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004511 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004512 if (mStatusBarController.setBarShowingLw(true)) {
4513 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4514 }
Craig Mautner81defc72013-10-29 11:10:42 -07004515 // Maintain fullscreen layout until incoming animation is complete.
4516 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004517 // Transient status bar on the lockscreen is not allowed
4518 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4519 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4520 mLastSystemUiFlags, mLastSystemUiFlags);
4521 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004522 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004523 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004524 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004525 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004526 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004527 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004528 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004529 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004530 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004531 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004532 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004533 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004534 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4535 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004536 if (mStatusBarController.isTransientShowing()) {
4537 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004538 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4539 }
4540 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004541 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004542 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004543 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004544 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004545 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004546 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004547 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004548 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004549 if (mStatusBarController.setBarShowingLw(true)) {
4550 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4551 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004552 }
4553 }
4554 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004555
Craig Mautner81defc72013-10-29 11:10:42 -07004556 if (mTopIsFullscreen != topIsFullscreen) {
4557 if (!topIsFullscreen) {
4558 // Force another layout when status bar becomes fully shown.
4559 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4560 }
4561 mTopIsFullscreen = topIsFullscreen;
4562 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004563
Craig Mautner39834192012-09-02 07:47:24 -07004564 // Hide the key guard if a visible window explicitly specifies that it wants to be
4565 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004566 if (mKeyguardDelegate != null && mStatusBar != null) {
4567 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4568 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004569 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004570 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004571 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004572 changes |= FINISH_LAYOUT_REDO_LAYOUT
4573 | FINISH_LAYOUT_REDO_CONFIG
4574 | FINISH_LAYOUT_REDO_WALLPAPER;
4575 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004576 if (mKeyguardDelegate.isShowing()) {
4577 mHandler.post(new Runnable() {
4578 @Override
4579 public void run() {
4580 mKeyguardDelegate.keyguardDone(false, false);
4581 }
4582 });
4583 }
4584 } else if (mHideLockScreen) {
4585 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004586 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004587 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004588 changes |= FINISH_LAYOUT_REDO_LAYOUT
4589 | FINISH_LAYOUT_REDO_CONFIG
4590 | FINISH_LAYOUT_REDO_WALLPAPER;
4591 }
4592 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004593 mKeyguardHidden = false;
4594 if (setKeyguardOccludedLw(false)) {
4595 changes |= FINISH_LAYOUT_REDO_LAYOUT
4596 | FINISH_LAYOUT_REDO_CONFIG
4597 | FINISH_LAYOUT_REDO_WALLPAPER;
4598 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004599 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4600 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004601 mHandler.post(new Runnable() {
4602 @Override
4603 public void run() {
4604 mKeyguardDelegate.dismiss();
4605 }
4606 });
4607 }
4608 } else {
4609 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004610 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004611 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004612 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004613 changes |= FINISH_LAYOUT_REDO_LAYOUT
4614 | FINISH_LAYOUT_REDO_CONFIG
4615 | FINISH_LAYOUT_REDO_WALLPAPER;
4616 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004617 }
4618 }
Joe Onorato664644d2011-01-23 17:53:23 -08004619
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004620 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004621 // If the navigation bar has been hidden or shown, we need to do another
4622 // layout pass to update that window.
4623 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4624 }
Joe Onorato664644d2011-01-23 17:53:23 -08004625
Mike Lockwood28569302010-01-28 11:54:40 -05004626 // update since mAllowLockscreenWhenOn might have changed
4627 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004628 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004629 }
4630
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004631 /**
Jim Millerab954542014-10-10 18:21:49 -07004632 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004633 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004634 * @return Whether the flags have changed and we have to redo the layout.
4635 */
Jim Millerab954542014-10-10 18:21:49 -07004636 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4637 boolean wasOccluded = mKeyguardOccluded;
4638 boolean showing = mKeyguardDelegate.isShowing();
4639 if (wasOccluded && !isOccluded && showing) {
4640 mKeyguardOccluded = false;
4641 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004642 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4643 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4644 return true;
Jim Millerab954542014-10-10 18:21:49 -07004645 } else if (!wasOccluded && isOccluded && showing) {
4646 mKeyguardOccluded = true;
4647 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004648 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4649 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4650 return true;
4651 } else {
4652 return false;
4653 }
4654 }
4655
4656 private boolean isStatusBarKeyguard() {
4657 return mStatusBar != null
4658 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4659 }
4660
Jose Lima9546b202014-07-02 17:21:51 -07004661 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004662 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004663 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004664 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004665 return false;
4666 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004667 return true;
4668 }
4669
Jose Lima9546b202014-07-02 17:21:51 -07004670 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004671 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004672 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004673 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004674 // If the navigation bar has been hidden or shown, we need to do another
4675 // layout pass to update that window.
4676 return FINISH_LAYOUT_REDO_LAYOUT;
4677 }
4678 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004679 }
4680
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004681 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004682 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004683 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4684 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004685 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4686 if (newLidState == mLidState) {
4687 return;
4688 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004689
Jeff Brownc458ce92012-04-30 14:58:40 -07004690 mLidState = newLidState;
4691 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004692 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004693
4694 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004695 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4696 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004697 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004698 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004699 }
4700 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004701
Michael Wright3818c922014-09-02 13:59:07 -07004702 @Override
4703 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4704 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4705 if (mCameraLensCoverState == lensCoverState) {
4706 return;
4707 }
4708 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4709 lensCoverState == CAMERA_LENS_UNCOVERED) {
4710 Intent intent;
4711 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4712 mKeyguardDelegate.isShowing();
4713 if (keyguardActive) {
4714 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4715 } else {
4716 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4717 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004718 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4719 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004720 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004721 }
4722 mCameraLensCoverState = lensCoverState;
4723 }
4724
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004725 void setHdmiPlugged(boolean plugged) {
4726 if (mHdmiPlugged != plugged) {
4727 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004728 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004729 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004730 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004731 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004732 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004733 }
4734 }
4735
Joe Onoratoea495d42011-04-06 11:41:11 -07004736 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004737 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004738 // watch for HDMI plug messages if the hdmi switch exists
4739 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4740 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4741
Joe Onoratoea495d42011-04-06 11:41:11 -07004742 final String filename = "/sys/class/switch/hdmi/state";
4743 FileReader reader = null;
4744 try {
4745 reader = new FileReader(filename);
4746 char[] buf = new char[15];
4747 int n = reader.read(buf);
4748 if (n > 1) {
4749 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4750 }
4751 } catch (IOException ex) {
4752 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4753 } catch (NumberFormatException ex) {
4754 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4755 } finally {
4756 if (reader != null) {
4757 try {
4758 reader.close();
4759 } catch (IOException ex) {
4760 }
Joe Onoratodc100302011-01-11 17:07:41 -08004761 }
4762 }
4763 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004764 // This dance forces the code in setHdmiPlugged to run.
4765 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4766 mHdmiPlugged = !plugged;
4767 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004768 }
4769
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004770 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004771 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004772
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004773 final Runnable mScreenshotTimeout = new Runnable() {
4774 @Override public void run() {
4775 synchronized (mScreenshotLock) {
4776 if (mScreenshotConnection != null) {
4777 mContext.unbindService(mScreenshotConnection);
4778 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004779 }
Winson Chung9112ec32011-06-27 13:15:32 -07004780 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004781 }
4782 };
4783
4784 // Assume this is called from the Handler thread.
4785 private void takeScreenshot() {
4786 synchronized (mScreenshotLock) {
4787 if (mScreenshotConnection != null) {
4788 return;
4789 }
4790 ComponentName cn = new ComponentName("com.android.systemui",
4791 "com.android.systemui.screenshot.TakeScreenshotService");
4792 Intent intent = new Intent();
4793 intent.setComponent(cn);
4794 ServiceConnection conn = new ServiceConnection() {
4795 @Override
4796 public void onServiceConnected(ComponentName name, IBinder service) {
4797 synchronized (mScreenshotLock) {
4798 if (mScreenshotConnection != this) {
4799 return;
4800 }
4801 Messenger messenger = new Messenger(service);
4802 Message msg = Message.obtain(null, 1);
4803 final ServiceConnection myConn = this;
4804 Handler h = new Handler(mHandler.getLooper()) {
4805 @Override
4806 public void handleMessage(Message msg) {
4807 synchronized (mScreenshotLock) {
4808 if (mScreenshotConnection == myConn) {
4809 mContext.unbindService(mScreenshotConnection);
4810 mScreenshotConnection = null;
4811 mHandler.removeCallbacks(mScreenshotTimeout);
4812 }
4813 }
4814 }
4815 };
4816 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004817 msg.arg1 = msg.arg2 = 0;
4818 if (mStatusBar != null && mStatusBar.isVisibleLw())
4819 msg.arg1 = 1;
4820 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4821 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004822 try {
4823 messenger.send(msg);
4824 } catch (RemoteException e) {
4825 }
4826 }
4827 }
4828 @Override
4829 public void onServiceDisconnected(ComponentName name) {}
4830 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004831 if (mContext.bindServiceAsUser(
4832 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004833 mScreenshotConnection = conn;
4834 mHandler.postDelayed(mScreenshotTimeout, 10000);
4835 }
4836 }
Winson Chung9112ec32011-06-27 13:15:32 -07004837 }
4838
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004839 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004840 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004841 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004842 if (!mSystemBooted) {
4843 // If we have not yet booted, don't let key events do anything.
4844 return 0;
4845 }
4846
Jeff Brown037c33e2014-04-09 00:31:55 -07004847 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004848 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4849 final boolean canceled = event.isCanceled();
4850 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004851
Jeff Brown3122e442010-10-11 23:32:49 -07004852 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004853
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004854 // If screen is off then we treat the case where the keyguard is open but hidden
4855 // the same as if it were open and in front.
4856 // This will prevent any keys other than the power button from waking the screen
4857 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004858 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004859 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004860 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004861 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004862
Jeff Brown40013652012-05-16 21:22:36 -07004863 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004864 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004865 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004866 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004867 }
4868
Jeff Brown037c33e2014-04-09 00:31:55 -07004869 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004870 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004871 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4872 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004873 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004874 // When the device is interactive or the key is injected pass the
4875 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004876 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004877 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004878 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4879 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4880 // to the application but preserve its wake key status to make sure we still move
4881 // from dozing to fully interactive if we would normally go from off to fully
4882 // interactive.
4883 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004884 } else {
4885 // When the screen is off and the key is not injected, determine whether
4886 // to wake the device but don't pass the key to the application.
4887 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004888 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4889 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004890 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004891 }
4892
Justin Kohd378ad72013-04-01 12:18:26 -07004893 // If the key would be handled globally, just return the result, don't worry about special
4894 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004895 if (isValidGlobalKey(keyCode)
4896 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004897 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004898 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07004899 }
Justin Kohd378ad72013-04-01 12:18:26 -07004900 return result;
4901 }
4902
Jeff Brownbae8e772014-06-12 19:59:45 -07004903 boolean useHapticFeedback = down
4904 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4905 && event.getRepeatCount() == 0;
4906
Jeff Brown4d396052010-10-29 21:50:21 -07004907 // Handle special keys.
4908 switch (keyCode) {
4909 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004910 case KeyEvent.KEYCODE_VOLUME_UP:
4911 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004912 if (mUseTvRouting) {
4913 // On TVs volume keys never go to the foreground app
4914 result &= ~ACTION_PASS_TO_USER;
4915 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004916 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4917 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004918 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004919 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004920 mScreenshotChordVolumeDownKeyTriggered = true;
4921 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4922 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004923 cancelPendingPowerKeyAction();
4924 interceptScreenshotChord();
4925 }
4926 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004927 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004928 cancelPendingScreenshotChordAction();
4929 }
4930 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4931 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004932 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004933 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004934 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004935 cancelPendingPowerKeyAction();
4936 cancelPendingScreenshotChordAction();
4937 }
4938 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004939 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004940 cancelPendingScreenshotChordAction();
4941 }
4942 }
Jeff Brown4d396052010-10-29 21:50:21 -07004943 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004944 TelecomManager telecomManager = getTelecommService();
4945 if (telecomManager != null) {
4946 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004947 // If an incoming call is ringing, either VOLUME key means
4948 // "silence ringer". We handle these keys here, rather than
4949 // in the InCallScreen, to make sure we'll respond to them
4950 // even if the InCallScreen hasn't come to the foreground yet.
4951 // Look for the DOWN event here, to agree with the "fallback"
4952 // behavior in the InCallScreen.
4953 Log.i(TAG, "interceptKeyBeforeQueueing:"
4954 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004955
Santos Cordon6848f722014-05-21 15:22:12 -07004956 // Silence the ringer. (It's safe to call this
4957 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004958 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004959
Santos Cordon6848f722014-05-21 15:22:12 -07004960 // And *don't* pass this key thru to the current activity
4961 // (which is probably the InCallScreen.)
4962 result &= ~ACTION_PASS_TO_USER;
4963 break;
4964 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004965 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004966 && (result & ACTION_PASS_TO_USER) == 0) {
4967 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004968 // the application, just pass it to the session service.
4969
4970 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004971 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07004972 break;
Jeff Brown4d396052010-10-29 21:50:21 -07004973 }
4974 }
4975
RoboErik430fc482014-06-12 15:49:20 -07004976 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08004977 if (mUseTvRouting) {
4978 dispatchDirectAudioEvent(event);
4979 } else {
4980 // If we aren't passing to the user and no one else
4981 // handled it send it to the session manager to
4982 // figure out.
4983 MediaSessionLegacyHelper.getHelper(mContext)
4984 .sendVolumeKeyEvent(event, true);
4985 }
Jeff Brown4d396052010-10-29 21:50:21 -07004986 break;
4987 }
4988 }
4989 break;
4990 }
4991
4992 case KeyEvent.KEYCODE_ENDCALL: {
4993 result &= ~ACTION_PASS_TO_USER;
4994 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004995 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07004996 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004997 if (telecomManager != null) {
4998 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07004999 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005000 if (interactive && !hungUp) {
5001 mEndCallKeyHandled = false;
5002 mHandler.postDelayed(mEndCallLongPress,
5003 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5004 } else {
5005 mEndCallKeyHandled = true;
5006 }
Jeff Brown4d396052010-10-29 21:50:21 -07005007 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005008 if (!mEndCallKeyHandled) {
5009 mHandler.removeCallbacks(mEndCallLongPress);
5010 if (!canceled) {
5011 if ((mEndcallBehavior
5012 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5013 if (goHome()) {
5014 break;
5015 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005016 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005017 if ((mEndcallBehavior
5018 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5019 mPowerManager.goToSleep(event.getEventTime(),
5020 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5021 isWakeKey = false;
5022 }
Jeff Brown4d396052010-10-29 21:50:21 -07005023 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005024 }
Jeff Brown4d396052010-10-29 21:50:21 -07005025 }
5026 break;
5027 }
5028
5029 case KeyEvent.KEYCODE_POWER: {
5030 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005031 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005032 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005033 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005034 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005035 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005036 }
5037 break;
5038 }
5039
Jeff Brown6212a492014-03-07 13:58:47 -08005040 case KeyEvent.KEYCODE_SLEEP: {
5041 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005042 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005043 if (!mPowerManager.isInteractive()) {
5044 useHapticFeedback = false; // suppress feedback if already non-interactive
5045 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005046 if (down) {
5047 sleepPress(event.getEventTime());
5048 } else {
5049 sleepRelease(event.getEventTime());
5050 }
Jeff Brown6212a492014-03-07 13:58:47 -08005051 break;
5052 }
5053
5054 case KeyEvent.KEYCODE_WAKEUP: {
5055 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005056 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005057 break;
5058 }
5059
Jeff Brown4d396052010-10-29 21:50:21 -07005060 case KeyEvent.KEYCODE_MEDIA_PLAY:
5061 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5062 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005063 case KeyEvent.KEYCODE_HEADSETHOOK:
5064 case KeyEvent.KEYCODE_MUTE:
5065 case KeyEvent.KEYCODE_MEDIA_STOP:
5066 case KeyEvent.KEYCODE_MEDIA_NEXT:
5067 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5068 case KeyEvent.KEYCODE_MEDIA_REWIND:
5069 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005070 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5071 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005072 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5073 // If the global session is active pass all media keys to it
5074 // instead of the active window.
5075 result &= ~ACTION_PASS_TO_USER;
5076 }
Jeff Brown4d396052010-10-29 21:50:21 -07005077 if ((result & ACTION_PASS_TO_USER) == 0) {
5078 // Only do this if we would otherwise not pass it to the user. In that
5079 // case, the PhoneWindow class will do the same thing, except it will
5080 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005081 // Note that we need to make a copy of the key event here because the
5082 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005083 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005084 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5085 new KeyEvent(event));
5086 msg.setAsynchronous(true);
5087 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005088 }
5089 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005090 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005091
Jeff Brown4d396052010-10-29 21:50:21 -07005092 case KeyEvent.KEYCODE_CALL: {
5093 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005094 TelecomManager telecomManager = getTelecommService();
5095 if (telecomManager != null) {
5096 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005097 Log.i(TAG, "interceptKeyBeforeQueueing:"
5098 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005099 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005100
Santos Cordon6848f722014-05-21 15:22:12 -07005101 // And *don't* pass this key thru to the current activity
5102 // (which is presumably the InCallScreen.)
5103 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005104 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005105 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005106 }
Jeff Brown4d396052010-10-29 21:50:21 -07005107 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005108 }
Michael Wright869a67c2014-08-26 19:33:06 -07005109 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5110 // Only do this if we would otherwise not pass it to the user. In that case,
5111 // interceptKeyBeforeDispatching would apply a similar but different policy in
5112 // order to invoke voice assist actions. Note that we need to make a copy of the
5113 // key event here because the original key event will be recycled when we return.
5114 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5115 mBroadcastWakeLock.acquire();
5116 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5117 keyguardActive ? 1 : 0, 0);
5118 msg.setAsynchronous(true);
5119 msg.sendToTarget();
5120 }
5121 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005122 }
Jeff Brown26875502014-01-30 21:47:47 -08005123
Jeff Brownbae8e772014-06-12 19:59:45 -07005124 if (useHapticFeedback) {
5125 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5126 }
5127
Jeff Brown26875502014-01-30 21:47:47 -08005128 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005129 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005130 }
Bryce Lee584a4452014-10-21 15:55:55 -07005131
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005132 return result;
5133 }
5134
Jeff Brown1c2e4942012-11-06 16:32:01 -08005135 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005136 * Returns true if the key can have global actions attached to it.
5137 * We reserve all power management keys for the system since they require
5138 * very careful handling.
5139 */
5140 private static boolean isValidGlobalKey(int keyCode) {
5141 switch (keyCode) {
5142 case KeyEvent.KEYCODE_POWER:
5143 case KeyEvent.KEYCODE_WAKEUP:
5144 case KeyEvent.KEYCODE_SLEEP:
5145 return false;
5146 default:
5147 return true;
5148 }
5149 }
5150
5151 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005152 * When the screen is off we ignore some keys that might otherwise typically
5153 * be considered wake keys. We filter them out here.
5154 *
5155 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5156 * is always considered a wake key.
5157 */
5158 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5159 switch (keyCode) {
5160 // ignore volume keys unless docked
5161 case KeyEvent.KEYCODE_VOLUME_UP:
5162 case KeyEvent.KEYCODE_VOLUME_DOWN:
5163 case KeyEvent.KEYCODE_VOLUME_MUTE:
5164 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5165
5166 // ignore media and camera keys
5167 case KeyEvent.KEYCODE_MUTE:
5168 case KeyEvent.KEYCODE_HEADSETHOOK:
5169 case KeyEvent.KEYCODE_MEDIA_PLAY:
5170 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5171 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5172 case KeyEvent.KEYCODE_MEDIA_STOP:
5173 case KeyEvent.KEYCODE_MEDIA_NEXT:
5174 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5175 case KeyEvent.KEYCODE_MEDIA_REWIND:
5176 case KeyEvent.KEYCODE_MEDIA_RECORD:
5177 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005178 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005179 case KeyEvent.KEYCODE_CAMERA:
5180 return false;
5181 }
5182 return true;
5183 }
5184
5185
Jeff Brown56194eb2011-03-02 19:23:13 -08005186 /** {@inheritDoc} */
5187 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005188 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5189 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005190 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5191 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005192 return 0;
5193 }
Michael Wright70af00a2014-09-03 19:30:20 -07005194 }
Bryce Lee5c138322014-11-03 08:26:09 -08005195
Michael Wright70af00a2014-09-03 19:30:20 -07005196 if (shouldDispatchInputWhenNonInteractive()) {
5197 return ACTION_PASS_TO_USER;
5198 }
Bryce Lee5c138322014-11-03 08:26:09 -08005199
Bryce Lee812d7022014-11-10 13:33:28 -08005200 // If we have not passed the action up and we are in theater mode without dreaming,
5201 // there will be no dream to intercept the touch and wake into ambient. The device should
5202 // wake up in this case.
5203 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005204 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5205 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005206 }
5207
Jeff Brown037c33e2014-04-09 00:31:55 -07005208 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005209 }
5210
Michael Wright70af00a2014-09-03 19:30:20 -07005211 private boolean shouldDispatchInputWhenNonInteractive() {
Bryce Lee5c138322014-11-03 08:26:09 -08005212 // Send events to keyguard while the screen is on.
Jim Millerab954542014-10-10 18:21:49 -07005213 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
5214 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08005215 return true;
5216 }
5217
5218 // Send events to a dozing dream even if the screen is off since the dream
5219 // is in control of the state of the screen.
5220 IDreamManager dreamManager = getDreamManager();
5221
5222 try {
5223 if (dreamManager != null && dreamManager.isDreaming()) {
5224 return true;
5225 }
5226 } catch (RemoteException e) {
5227 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5228 }
5229
5230 // Otherwise, consume events since the user can't see what is being
5231 // interacted with.
5232 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005233 }
5234
RoboErik001c59c2015-01-26 15:53:51 -08005235 private void dispatchDirectAudioEvent(KeyEvent event) {
5236 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5237 return;
5238 }
5239 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005240 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5241 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005242 String pkgName = mContext.getOpPackageName();
5243 switch (keyCode) {
5244 case KeyEvent.KEYCODE_VOLUME_UP:
5245 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005246 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005247 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005248 } catch (RemoteException e) {
5249 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5250 }
5251 break;
5252 case KeyEvent.KEYCODE_VOLUME_DOWN:
5253 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005254 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005255 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005256 } catch (RemoteException e) {
5257 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5258 }
5259 break;
5260 case KeyEvent.KEYCODE_VOLUME_MUTE:
5261 try {
5262 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005263 getAudioService().adjustSuggestedStreamVolume(
5264 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005265 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005266 }
5267 } catch (RemoteException e) {
5268 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5269 }
5270 break;
5271 }
5272 }
5273
Jeff Brown40013652012-05-16 21:22:36 -07005274 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5275 if (DEBUG_INPUT) {
5276 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005277 }
5278
Jeff Brown40013652012-05-16 21:22:36 -07005279 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5280 if (DEBUG_INPUT) {
5281 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5282 }
5283
5284 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5285 mHavePendingMediaKeyRepeatWithWakeLock = false;
5286 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5287 }
5288
5289 dispatchMediaKeyWithWakeLockToAudioService(event);
5290
5291 if (event.getAction() == KeyEvent.ACTION_DOWN
5292 && event.getRepeatCount() == 0) {
5293 mHavePendingMediaKeyRepeatWithWakeLock = true;
5294
5295 Message msg = mHandler.obtainMessage(
5296 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5297 msg.setAsynchronous(true);
5298 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5299 } else {
5300 mBroadcastWakeLock.release();
5301 }
5302 }
5303
5304 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5305 mHavePendingMediaKeyRepeatWithWakeLock = false;
5306
5307 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5308 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5309 if (DEBUG_INPUT) {
5310 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5311 }
5312
5313 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5314 mBroadcastWakeLock.release();
5315 }
5316
5317 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5318 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005319 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005320 }
5321 }
5322
Michael Wright869a67c2014-08-26 19:33:06 -07005323 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005324 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5325 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5326 if (dic != null) {
5327 try {
5328 dic.exitIdle("voice-search");
5329 } catch (RemoteException e) {
5330 }
5331 }
Michael Wright869a67c2014-08-26 19:33:06 -07005332 Intent voiceIntent =
5333 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5334 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005335 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005336 mBroadcastWakeLock.release();
5337 }
5338
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005339 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005340 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005341 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005342 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5343 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5344 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005345 } else {
5346 try {
5347 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5348 ServiceManager.getService(Context.UI_MODE_SERVICE));
5349 mUiMode = uiModeService.getCurrentModeType();
5350 } catch (RemoteException e) {
5351 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005352 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005353 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005354 synchronized (mLock) {
5355 updateOrientationListenerLp();
5356 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005357 }
5358 };
5359
Jeff Brown6aaf2952012-10-05 16:01:08 -07005360 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5361 @Override
5362 public void onReceive(Context context, Intent intent) {
5363 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005364 if (mKeyguardDelegate != null) {
5365 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005366 }
5367 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005368 if (mKeyguardDelegate != null) {
5369 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005370 }
5371 }
5372 }
5373 };
5374
Christopher Tate5e08af02012-09-21 17:17:22 -07005375 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5376 @Override
5377 public void onReceive(Context context, Intent intent) {
5378 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5379 // tickle the settings observer: this first ensures that we're
5380 // observing the relevant settings for the newly-active user,
5381 // and then updates our own bookkeeping based on the now-
5382 // current user.
5383 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005384
5385 // force a re-application of focused window sysui visibility.
5386 // the window may never have been shown for this user
5387 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005388 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005389 mLastSystemUiFlags = 0;
5390 updateSystemUiVisibilityLw();
5391 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005392 }
5393 }
5394 };
5395
Adrian Roosddc8b272015-05-21 16:28:27 -07005396 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005397 @Override
5398 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005399 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5400 if (!isUserSetupComplete()) {
5401 // Swipe-up for navigation bar is disabled during setup
5402 return;
5403 }
5404 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5405 mNavigationBarController.showTransient();
5406 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005407 }
5408 };
5409
John Spurlocke1f366f2013-08-05 12:22:40 -04005410 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005411 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005412 if (!isUserSetupComplete()) {
5413 // Swipe-up for navigation bar is disabled during setup
5414 return;
5415 }
John Spurlock27735a42013-08-14 17:57:38 -04005416 boolean sb = mStatusBarController.checkShowTransientBarLw();
5417 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005418 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005419 // Don't show status bar when swiping on already visible navigation bar
5420 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005421 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005422 return;
5423 }
John Spurlock27735a42013-08-14 17:57:38 -04005424 if (sb) mStatusBarController.showTransient();
5425 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005426 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005427 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005428 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005429 }
5430 }
5431
Jeff Brown3ee549c2014-09-22 20:14:39 -07005432 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005433 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005434 public void startedGoingToSleep(int why) {
5435 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005436 if (mKeyguardDelegate != null) {
5437 mKeyguardDelegate.onStartedGoingToSleep(why);
5438 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005439 }
5440
5441 // Called on the PowerManager's Notifier thread.
5442 @Override
5443 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005444 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005445 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005446 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005447
5448 // We must get this work done here because the power manager will drop
5449 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005450 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005451 mAwake = false;
5452 mKeyguardDrawComplete = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005453 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005454 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005455 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005456 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005457 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005458 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005459 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005460 }
5461
Jeff Brown3ee549c2014-09-22 20:14:39 -07005462 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005463 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005464 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005465 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005466 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005467
Jeff Brown3ee549c2014-09-22 20:14:39 -07005468 // Since goToSleep performs these functions synchronously, we must
5469 // do the same here. We cannot post this work to a handler because
5470 // that might cause it to become reordered with respect to what
5471 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005472 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005473 mAwake = true;
5474 mKeyguardDrawComplete = false;
5475 if (mKeyguardDelegate != null) {
5476 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5477 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
5478 }
5479
Jeff Browna20dda42014-05-27 20:57:24 -07005480 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005481 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005482 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005483 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005484
Jim Miller5ecd8112013-01-09 18:50:26 -08005485 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005486 mKeyguardDelegate.onStartedWakingUp(mKeyguardDelegateCallback);
Jeff Brown36c4db82014-09-19 12:05:31 -07005487 // ... eventually calls finishKeyguardDrawn
Jeff Brownc38c9be2012-10-04 13:16:19 -07005488 } else {
Craig Mautner8a0da012014-05-31 15:13:37 -07005489 if (DEBUG_WAKEUP) Slog.d(TAG, "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
Jeff Brown36c4db82014-09-19 12:05:31 -07005490 finishKeyguardDrawn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005491 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005492 }
5493
Jeff Brown416c49c2015-05-26 19:50:18 -07005494 // Called on the PowerManager's Notifier thread.
5495 @Override
5496 public void finishedWakingUp() {
5497 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5498 }
5499
5500 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005501 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005502 }
5503
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005504 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005505 final boolean theaterModeEnabled = isTheaterModeEnabled();
5506 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005507 return false;
5508 }
5509
Bryce Leed3896842015-06-23 17:06:51 -07005510 if (theaterModeEnabled) {
5511 Settings.Global.putInt(mContext.getContentResolver(),
5512 Settings.Global.THEATER_MODE_ON, 0);
5513 }
5514
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005515 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005516 return true;
5517 }
5518
Jeff Brown36c4db82014-09-19 12:05:31 -07005519 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005520 synchronized (mLock) {
5521 if (!mAwake || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005522 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005523 }
5524
Jeff Brown36c4db82014-09-19 12:05:31 -07005525 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005526 if (mKeyguardDelegate != null) {
5527 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5528 }
5529 }
5530
5531 finishScreenTurningOn();
5532 }
5533
5534 // Called on the DisplayManager's DisplayPowerController thread.
5535 @Override
5536 public void screenTurnedOff() {
5537 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5538
Jeff Brown48d1b142015-06-10 16:36:03 -07005539 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005540 synchronized (mLock) {
5541 mScreenOnEarly = false;
5542 mScreenOnFully = false;
5543 mWindowManagerDrawComplete = false;
5544 mScreenOnListener = null;
5545 updateOrientationListenerLp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005546 }
5547 }
5548
Jeff Brown3ee549c2014-09-22 20:14:39 -07005549 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005550 @Override
5551 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005552 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005553
Jeff Brown48d1b142015-06-10 16:36:03 -07005554 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005555 synchronized (mLock) {
5556 mScreenOnEarly = true;
5557 mScreenOnFully = false;
5558 mWindowManagerDrawComplete = false;
5559 mScreenOnListener = screenOnListener;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005560 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005561
Craig Mautnerc3daedd2014-09-13 11:17:23 -07005562 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5563 WAITING_FOR_DRAWN_TIMEOUT);
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005564 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5565 // as well as enabling the orientation change logic/sensor.
Jeff Brown36c4db82014-09-19 12:05:31 -07005566 }
5567
Jeff Brown36c4db82014-09-19 12:05:31 -07005568 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005569 synchronized (mLock) {
5570 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005571 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005572 }
5573
Jeff Brown36c4db82014-09-19 12:05:31 -07005574 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005575 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005576
5577 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005578 }
5579
Craig Mautner8a0da012014-05-31 15:13:37 -07005580 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005581 synchronized (mLock) {
5582 // We have just finished drawing screen content. Since the orientation listener
5583 // gets only installed when all windows are drawn, we try to install it again.
5584 updateOrientationListenerLp();
5585 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005586 final ScreenOnListener listener;
5587 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005588 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005589 if (DEBUG_WAKEUP) Slog.d(TAG,
5590 "finishScreenTurningOn: mAwake=" + mAwake
5591 + ", mScreenOnEarly=" + mScreenOnEarly
5592 + ", mScreenOnFully=" + mScreenOnFully
5593 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5594 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5595
5596 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5597 || (mAwake && !mKeyguardDrawComplete)) {
5598 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005599 }
5600
Jeff Brown3ee549c2014-09-22 20:14:39 -07005601 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5602 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005603 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005604 mScreenOnFully = true;
5605
5606 // Remember the first time we draw the keyguard so we know when we're done with
5607 // the main part of booting and can enable the screen and hide boot messages.
5608 if (!mKeyguardDrawnOnce && mAwake) {
5609 mKeyguardDrawnOnce = true;
5610 enableScreen = true;
5611 if (mBootMessageNeedsHiding) {
5612 mBootMessageNeedsHiding = false;
5613 hideBootMessages();
5614 }
5615 } else {
5616 enableScreen = false;
5617 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005618 }
5619
Jeff Brown3ee549c2014-09-22 20:14:39 -07005620 if (listener != null) {
5621 listener.onScreenOn();
5622 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005623
Jeff Brown3ee549c2014-09-22 20:14:39 -07005624 if (enableScreen) {
5625 try {
5626 mWindowManager.enableScreenIfNeeded();
5627 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005628 }
Craig Mautnera631d492014-08-05 15:16:01 -07005629 }
5630 }
5631
5632 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005633 synchronized (mLock) {
5634 if (!mKeyguardDrawnOnce) {
5635 mBootMessageNeedsHiding = true;
5636 return; // keyguard hasn't drawn the first time yet, not done booting
5637 }
Craig Mautnera631d492014-08-05 15:16:01 -07005638 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005639
5640 if (mBootMsgDialog != null) {
5641 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5642 mBootMsgDialog.dismiss();
5643 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005644 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005645 }
5646
5647 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005648 public boolean isScreenOn() {
5649 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005650 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005651
Dianne Hackborn08743722009-12-21 12:16:51 -08005652 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005653 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005654 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005655 if (mKeyguardDelegate != null) {
5656 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005657 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005658 }
5659
5660 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005661 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005662 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005663 if (mKeyguardDelegate != null) {
5664 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005665 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005666 }
5667
Jim Millerab954542014-10-10 18:21:49 -07005668 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005669 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005670 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005671 }
5672
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005673 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005674 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005675 public boolean isKeyguardLocked() {
5676 return keyguardOn();
5677 }
5678
5679 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005680 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005681 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005682 if (mKeyguardDelegate == null) return false;
5683 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005684 }
5685
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005686 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005687 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005688 public boolean isKeyguardShowingOrOccluded() {
5689 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5690 }
5691
5692 /** {@inheritDoc} */
5693 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005694 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005695 if (mKeyguardDelegate == null) return false;
5696 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005697 }
5698
Jose Lima9546b202014-07-02 17:21:51 -07005699 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005700 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005701 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005702 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005703 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005704 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005705 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005706 // ask the keyguard to prompt the user to authenticate if necessary
5707 mKeyguardDelegate.dismiss();
5708 }
5709 });
5710 }
5711 }
5712
5713 public void notifyActivityDrawnForKeyguardLw() {
5714 if (mKeyguardDelegate != null) {
5715 mHandler.post(new Runnable() {
5716 @Override
5717 public void run() {
5718 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005719 }
5720 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005721 }
5722 }
5723
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005724 @Override
5725 public boolean isKeyguardDrawnLw() {
5726 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005727 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005728 }
5729 }
5730
Jorim Jaggi0d674622014-05-21 01:34:15 +02005731 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005732 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005733 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005734 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005735 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005736 }
5737 }
5738
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005739 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005740 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005741 }
5742
5743 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005744 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005745 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005746
Jeff Brown01a98dd2011-09-20 15:08:29 -07005747 @Override
5748 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005749 if (false) {
5750 Slog.v(TAG, "rotationForOrientationLw(orient="
5751 + orientation + ", last=" + lastRotation
5752 + "); user=" + mUserRotation + " "
5753 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5754 ? "USER_ROTATION_LOCKED" : "")
5755 );
5756 }
5757
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005758 if (mForceDefaultOrientation) {
5759 return Surface.ROTATION_0;
5760 }
5761
The Android Open Source Project0727d222009-03-11 12:11:58 -07005762 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005763 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5764 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005765 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005766 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005767
Jeff Browndec6cf42011-11-15 14:08:20 -08005768 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005769 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005770 // Ignore sensor when lid switch is open and rotation is forced.
5771 preferredRotation = mLidOpenRotation;
5772 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005773 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005774 // Ignore sensor when in car dock unless explicitly enabled.
5775 // This case can override the behavior of NOSENSOR, and can also
5776 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005777 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005778 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005779 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5780 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5781 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005782 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005783 // Ignore sensor when in desk dock unless explicitly enabled.
5784 // This case can override the behavior of NOSENSOR, and can also
5785 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005786 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005787 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005788 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5789 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005790 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005791 preferredRotation = mDemoHdmiRotation;
5792 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5793 && mUndockedHdmiRotation >= 0) {
5794 // Ignore sensor when plugged into HDMI and an undocked orientation has
5795 // been specified in the configuration (only for legacy devices without
5796 // full multi-display support).
5797 // Note that the dock orientation overrides the HDMI orientation.
5798 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005799 } else if (mDemoRotationLock) {
5800 // Ignore sensor when demo rotation lock is enabled.
5801 // Note that the dock orientation and HDMI rotation lock override this.
5802 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005803 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5804 // Application just wants to remain locked in the last rotation.
5805 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005806 } else if (!mSupportAutoRotation) {
5807 // If we don't support auto-rotation then bail out here and ignore
5808 // the sensor and any rotation lock settings.
5809 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005810 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005811 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005812 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5813 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5814 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5815 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005816 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5817 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5818 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5819 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5820 // Otherwise, use sensor only if requested by the application or enabled
5821 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005822 if (mAllowAllRotations < 0) {
5823 // Can't read this during init() because the context doesn't
5824 // have display metrics at that time so we cannot determine
5825 // tablet vs. phone then.
5826 mAllowAllRotations = mContext.getResources().getBoolean(
5827 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5828 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005829 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005830 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005831 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5832 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005833 preferredRotation = sensorRotation;
5834 } else {
5835 preferredRotation = lastRotation;
5836 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005837 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5838 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5839 // Apply rotation lock. Does not apply to NOSENSOR.
5840 // The idea is that the user rotation expresses a weak preference for the direction
5841 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5842 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005843 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005844 } else {
5845 // No overriding preference.
5846 // We will do exactly what the application asked us to do.
5847 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005848 }
5849
Dianne Hackborne5439f22010-10-02 16:53:50 -07005850 switch (orientation) {
5851 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005852 // Return portrait unless overridden.
5853 if (isAnyPortrait(preferredRotation)) {
5854 return preferredRotation;
5855 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005856 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005857
Jeff Brown01a98dd2011-09-20 15:08:29 -07005858 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005859 // Return landscape unless overridden.
5860 if (isLandscapeOrSeascape(preferredRotation)) {
5861 return preferredRotation;
5862 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005863 return mLandscapeRotation;
5864
5865 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005866 // Return reverse portrait unless overridden.
5867 if (isAnyPortrait(preferredRotation)) {
5868 return preferredRotation;
5869 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005870 return mUpsideDownRotation;
5871
5872 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005873 // Return seascape unless overridden.
5874 if (isLandscapeOrSeascape(preferredRotation)) {
5875 return preferredRotation;
5876 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005877 return mSeascapeRotation;
5878
5879 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005880 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005881 // Return either landscape rotation.
5882 if (isLandscapeOrSeascape(preferredRotation)) {
5883 return preferredRotation;
5884 }
5885 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005886 return lastRotation;
5887 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005888 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005889
Jeff Brown01a98dd2011-09-20 15:08:29 -07005890 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005891 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005892 // Return either portrait rotation.
5893 if (isAnyPortrait(preferredRotation)) {
5894 return preferredRotation;
5895 }
5896 if (isAnyPortrait(lastRotation)) {
5897 return lastRotation;
5898 }
5899 return mPortraitRotation;
5900
5901 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005902 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5903 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005904 if (preferredRotation >= 0) {
5905 return preferredRotation;
5906 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005907 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005908 }
5909 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005910 }
5911
Jeff Brown01a98dd2011-09-20 15:08:29 -07005912 @Override
5913 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5914 switch (orientation) {
5915 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5916 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5917 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5918 return isAnyPortrait(rotation);
5919
5920 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5921 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5922 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5923 return isLandscapeOrSeascape(rotation);
5924
5925 default:
5926 return true;
5927 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005928 }
5929
Jeff Brownc0347aa2011-09-23 17:26:09 -07005930 @Override
5931 public void setRotationLw(int rotation) {
5932 mOrientationListener.setCurrentRotation(rotation);
5933 }
5934
Jeff Brown01a98dd2011-09-20 15:08:29 -07005935 private boolean isLandscapeOrSeascape(int rotation) {
5936 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005937 }
5938
Jeff Brown01a98dd2011-09-20 15:08:29 -07005939 private boolean isAnyPortrait(int rotation) {
5940 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005941 }
5942
Jose Lima9546b202014-07-02 17:21:51 -07005943 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005944 public int getUserRotationMode() {
5945 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005946 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5947 WindowManagerPolicy.USER_ROTATION_FREE :
5948 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005949 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005950
5951 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005952 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005953 public void setUserRotationMode(int mode, int rot) {
5954 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005955
5956 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005957 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07005958 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005959 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005960 rot,
5961 UserHandle.USER_CURRENT);
5962 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005963 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005964 0,
5965 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005966 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07005967 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005968 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005969 1,
5970 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005971 }
5972 }
5973
Jose Lima9546b202014-07-02 17:21:51 -07005974 @Override
Jeff Brownac143512012-04-05 18:57:33 -07005975 public void setSafeMode(boolean safeMode) {
5976 mSafeMode = safeMode;
5977 performHapticFeedbackLw(null, safeMode
5978 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
5979 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005980 }
Craig Mautnereda67292013-04-28 13:50:14 -07005981
Dianne Hackborn181ceb52009-08-27 22:16:40 -07005982 static long[] getLongIntArray(Resources r, int resid) {
5983 int[] ar = r.getIntArray(resid);
5984 if (ar == null) {
5985 return null;
5986 }
5987 long[] out = new long[ar.length];
5988 for (int i=0; i<ar.length; i++) {
5989 out[i] = ar[i];
5990 }
5991 return out;
5992 }
Craig Mautnereda67292013-04-28 13:50:14 -07005993
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005994 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005995 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005996 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07005997 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08005998 mKeyguardDelegate.onSystemReady();
5999
Michael Wright3818c922014-09-02 13:59:07 -07006000 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006001 updateUiMode();
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006002 synchronized (mLock) {
6003 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006004 mSystemReady = true;
6005 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006006 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006007 public void run() {
6008 updateSettings();
6009 }
6010 });
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006011 }
6012 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006013
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006014 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006015 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006016 public void systemBooted() {
Jim Millere5f910a2013-10-16 18:15:46 -07006017 if (mKeyguardDelegate != null) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006018 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006019 mKeyguardDelegate.onBootCompleted();
6020 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006021 synchronized (mLock) {
6022 mSystemBooted = true;
6023 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006024 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006025 screenTurningOn(null);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006026 }
6027
Dianne Hackborn661cd522011-08-22 00:26:20 -07006028 ProgressDialog mBootMsgDialog = null;
6029
6030 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006031 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006032 public void showBootMessage(final CharSequence msg, final boolean always) {
6033 mHandler.post(new Runnable() {
6034 @Override public void run() {
6035 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006036 int theme;
6037 if (mContext.getPackageManager().hasSystemFeature(
6038 PackageManager.FEATURE_WATCH)) {
6039 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6040 } else if (mContext.getPackageManager().hasSystemFeature(
6041 PackageManager.FEATURE_TELEVISION)) {
6042 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6043 } else {
6044 theme = 0;
6045 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006046
6047 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006048 // This dialog will consume all events coming in to
6049 // it, to avoid it trying to do things too early in boot.
6050 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6051 return true;
6052 }
6053 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6054 return true;
6055 }
6056 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6057 return true;
6058 }
6059 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6060 return true;
6061 }
6062 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6063 return true;
6064 }
6065 @Override public boolean dispatchPopulateAccessibilityEvent(
6066 AccessibilityEvent event) {
6067 return true;
6068 }
6069 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006070 if (mContext.getPackageManager().isUpgrade()) {
6071 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6072 } else {
6073 mBootMsgDialog.setTitle(R.string.android_start_title);
6074 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006075 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6076 mBootMsgDialog.setIndeterminate(true);
6077 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006078 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006079 mBootMsgDialog.getWindow().addFlags(
6080 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6081 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6082 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006083 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6084 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6085 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006086 mBootMsgDialog.setCancelable(false);
6087 mBootMsgDialog.show();
6088 }
6089 mBootMsgDialog.setMessage(msg);
6090 }
6091 });
6092 }
6093
6094 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006095 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006096 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006097 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006098 }
6099
Mike Lockwood28569302010-01-28 11:54:40 -05006100 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006101 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006102 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006103 // ***************************************
6104 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6105 // ***************************************
6106 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6107 // WITH ITS LOCKS HELD.
6108 //
6109 // This code must be VERY careful about the locks
6110 // it acquires.
6111 // In fact, the current code acquires way too many,
6112 // and probably has lurking deadlocks.
6113
Mike Lockwood28569302010-01-28 11:54:40 -05006114 synchronized (mScreenLockTimeout) {
6115 if (mLockScreenTimerActive) {
6116 // reset the timer
6117 mHandler.removeCallbacks(mScreenLockTimeout);
6118 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6119 }
6120 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006121 }
6122
Adam Cohenf7522022012-10-03 20:03:18 -07006123 class ScreenLockTimeout implements Runnable {
6124 Bundle options;
6125
6126 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006127 public void run() {
6128 synchronized (this) {
6129 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006130 if (mKeyguardDelegate != null) {
6131 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006132 }
Mike Lockwood28569302010-01-28 11:54:40 -05006133 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006134 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006135 }
6136 }
Mike Lockwood28569302010-01-28 11:54:40 -05006137
Adam Cohenf7522022012-10-03 20:03:18 -07006138 public void setLockOptions(Bundle options) {
6139 this.options = options;
6140 }
6141 }
6142
6143 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6144
Jose Lima9546b202014-07-02 17:21:51 -07006145 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006146 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006147 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6148 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006149 if (options != null) {
6150 // In case multiple calls are made to lockNow, we don't wipe out the options
6151 // until the runnable actually executes.
6152 mScreenLockTimeout.setLockOptions(options);
6153 }
Jim Miller93c518e2012-01-17 15:55:31 -08006154 mHandler.post(mScreenLockTimeout);
6155 }
6156
Mike Lockwood28569302010-01-28 11:54:40 -05006157 private void updateLockScreenTimeout() {
6158 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006159 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006160 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006161 if (mLockScreenTimerActive != enable) {
6162 if (enable) {
6163 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6164 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6165 } else {
6166 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6167 mHandler.removeCallbacks(mScreenLockTimeout);
6168 }
6169 mLockScreenTimerActive = enable;
6170 }
6171 }
6172 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006173
Jeff Brown061ea992015-04-17 19:55:47 -07006174 private void updateDreamingSleepToken(boolean acquire) {
6175 if (acquire) {
6176 if (mDreamingSleepToken == null) {
6177 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6178 }
6179 } else {
6180 if (mDreamingSleepToken != null) {
6181 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006182 mDreamingSleepToken = null;
6183 }
6184 }
6185 }
6186
6187 private void updateScreenOffSleepToken(boolean acquire) {
6188 if (acquire) {
6189 if (mScreenOffSleepToken == null) {
6190 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6191 }
6192 } else {
6193 if (mScreenOffSleepToken != null) {
6194 mScreenOffSleepToken.release();
6195 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006196 }
6197 }
6198 }
6199
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006200 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006201 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006202 public void enableScreenAfterBoot() {
6203 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006204 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006205 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006206 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006207
Jeff Brownc458ce92012-04-30 14:58:40 -07006208 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006209 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006210 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006211 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006212 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006213 }
Jeff Browna20dda42014-05-27 20:57:24 -07006214
6215 synchronized (mLock) {
6216 updateWakeGestureListenerLp();
6217 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006218 }
6219
Jeff Brown4f5fa282014-06-12 19:19:15 -07006220 void updateUiMode() {
6221 if (mUiModeManager == null) {
6222 mUiModeManager = IUiModeManager.Stub.asInterface(
6223 ServiceManager.getService(Context.UI_MODE_SERVICE));
6224 }
6225 try {
6226 mUiMode = mUiModeManager.getCurrentModeType();
6227 } catch (RemoteException e) {
6228 }
6229 }
6230
Jeff Brown01a98dd2011-09-20 15:08:29 -07006231 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006232 try {
6233 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006234 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6235 } catch (RemoteException e) {
6236 // Ignore
6237 }
6238 }
6239
6240 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6241 try {
6242 //set orientation on WindowManager
6243 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006244 } catch (RemoteException e) {
6245 // Ignore
6246 }
6247 }
6248
Daniel Sandler6396c722013-04-16 20:19:09 -04006249 /**
6250 * Return an Intent to launch the currently active dock app as home. Returns
6251 * null if the standard home should be launched, which is the case if any of the following is
6252 * true:
6253 * <ul>
6254 * <li>The device is not in either car mode or desk mode
6255 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6256 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6257 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6258 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6259 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006260 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006261 */
6262 Intent createHomeDockIntent() {
6263 Intent intent = null;
6264
6265 // What home does is based on the mode, not the dock state. That
6266 // is, when in car mode you should be taken to car home regardless
6267 // of whether we are actually in a car dock.
6268 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6269 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6270 intent = mCarDockIntent;
6271 }
6272 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6273 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6274 intent = mDeskDockIntent;
6275 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006276 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6277 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6278 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6279 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6280 // Always launch dock home from home when watch is docked, if it exists.
6281 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006282 }
6283
6284 if (intent == null) {
6285 return null;
6286 }
6287
6288 ActivityInfo ai = null;
6289 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6290 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006291 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006292 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006293 if (info != null) {
6294 ai = info.activityInfo;
6295 }
6296 if (ai != null
6297 && ai.metaData != null
6298 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6299 intent = new Intent(intent);
6300 intent.setClassName(ai.packageName, ai.name);
6301 return intent;
6302 }
6303
6304 return null;
6305 }
6306
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006307 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6308 if (awakenFromDreams) {
6309 awakenDreams();
6310 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006311
6312 Intent dock = createHomeDockIntent();
6313 if (dock != null) {
6314 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006315 if (fromHomeKey) {
6316 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6317 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006318 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006319 return;
6320 } catch (ActivityNotFoundException e) {
6321 }
6322 }
6323
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006324 Intent intent;
6325
6326 if (fromHomeKey) {
6327 intent = new Intent(mHomeIntent);
6328 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6329 } else {
6330 intent = mHomeIntent;
6331 }
6332
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006333 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006334 }
Craig Mautnereda67292013-04-28 13:50:14 -07006335
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006336 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006337 * goes to the home screen
6338 * @return whether it did anything
6339 */
6340 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006341 if (!isUserSetupComplete()) {
6342 Slog.i(TAG, "Not going home because user setup is in progress.");
6343 return false;
6344 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006345 if (false) {
6346 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006347 try {
6348 ActivityManagerNative.getDefault().stopAppSwitches();
6349 } catch (RemoteException e) {
6350 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006351 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006352 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006353 } else {
6354 // This code brings home to the front or, if it is already
6355 // at the front, puts the device to sleep.
6356 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006357 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6358 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6359 Log.d(TAG, "UTS-TEST-MODE");
6360 } else {
6361 ActivityManagerNative.getDefault().stopAppSwitches();
6362 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006363 Intent dock = createHomeDockIntent();
6364 if (dock != null) {
6365 int result = ActivityManagerNative.getDefault()
6366 .startActivityAsUser(null, null, dock,
6367 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6368 null, null, 0,
6369 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006370 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006371 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6372 return false;
6373 }
6374 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006375 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006376 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006377 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006378 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006379 null, null, 0,
6380 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006381 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006382 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006383 return false;
6384 }
6385 } catch (RemoteException ex) {
6386 // bummer, the activity manager, which is in this process, is dead
6387 }
6388 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006389 return true;
6390 }
Craig Mautnereda67292013-04-28 13:50:14 -07006391
6392 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006393 public void setCurrentOrientationLw(int newOrientation) {
6394 synchronized (mLock) {
6395 if (newOrientation != mCurrentAppOrientation) {
6396 mCurrentAppOrientation = newOrientation;
6397 updateOrientationListenerLp();
6398 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006399 }
6400 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006401
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006402 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6403 if (!isGlobalAccessibilityGestureEnabled()) {
6404 return;
6405 }
6406 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6407 Context.AUDIO_SERVICE);
6408 if (audioManager.isSilentMode()) {
6409 return;
6410 }
6411 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6412 Settings.System.DEFAULT_NOTIFICATION_URI);
6413 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6414 ringTone.play();
6415 }
Craig Mautnereda67292013-04-28 13:50:14 -07006416
Bryce Lee584a4452014-10-21 15:55:55 -07006417 private boolean isTheaterModeEnabled() {
6418 return Settings.Global.getInt(mContext.getContentResolver(),
6419 Settings.Global.THEATER_MODE_ON, 0) == 1;
6420 }
6421
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006422 private boolean isGlobalAccessibilityGestureEnabled() {
6423 return Settings.Global.getInt(mContext.getContentResolver(),
6424 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6425 }
6426
Craig Mautnereda67292013-04-28 13:50:14 -07006427 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006428 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006429 if (!mVibrator.hasVibrator()) {
6430 return false;
6431 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006432 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6433 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006434 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006435 return false;
6436 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006437 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006438 switch (effectId) {
6439 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006440 pattern = mLongPressVibePattern;
6441 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006442 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006443 pattern = mVirtualKeyVibePattern;
6444 break;
6445 case HapticFeedbackConstants.KEYBOARD_TAP:
6446 pattern = mKeyboardTapVibePattern;
6447 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006448 case HapticFeedbackConstants.CLOCK_TICK:
6449 pattern = mClockTickVibePattern;
6450 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006451 case HapticFeedbackConstants.CALENDAR_DATE:
6452 pattern = mCalendarDateVibePattern;
6453 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006454 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006455 pattern = mSafeModeDisabledVibePattern;
6456 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006457 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006458 pattern = mSafeModeEnabledVibePattern;
6459 break;
Mady Mellore8608912015-06-05 09:02:55 -07006460 case HapticFeedbackConstants.CONTEXT_CLICK:
6461 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006462 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006463 default:
6464 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006465 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006466 int owningUid;
6467 String owningPackage;
6468 if (win != null) {
6469 owningUid = win.getOwningUid();
6470 owningPackage = win.getOwningPackage();
6471 } else {
6472 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006473 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006474 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006475 if (pattern.length == 1) {
6476 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006477 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006478 } else {
6479 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006480 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006481 }
6482 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006483 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006484
6485 @Override
6486 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006487 }
6488
Jeff Brownc38c9be2012-10-04 13:16:19 -07006489 @Override
6490 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006491 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006492 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006493 }
6494 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006495
Dianne Hackborndf89e652011-10-06 22:35:11 -07006496 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006497 // If there is no window focused, there will be nobody to handle the events
6498 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006499 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6500 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006501 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006502 return 0;
6503 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006504 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006505 // We are updating at a point where the keyguard has gotten
6506 // focus, but we were last in a state where the top window is
6507 // hiding it. This is probably because the keyguard as been
6508 // shown while the top window was displayed, so we want to ignore
6509 // it here because this is just a very transient change and it
6510 // will quickly lose focus once it correctly gets hidden.
6511 return 0;
6512 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006513
John Spurlock1db8b682014-02-18 11:18:59 -05006514 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006515 & ~mResettingSystemUiFlags
6516 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006517 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006518 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006519 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006520 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006521 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006522 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006523 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006524 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006525 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006526 return 0;
6527 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006528 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006529 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006530 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006531 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006532 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006533 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006534 try {
6535 IStatusBarService statusbar = getStatusBarService();
6536 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006537 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006538 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006539 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006540 } catch (RemoteException e) {
6541 // re-acquire status bar service next time it is needed.
6542 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006543 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006544 }
6545 });
6546 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006547 }
6548
Adrian Rooscd3884d2015-02-18 17:25:23 +01006549 private int updateLightStatusBarLw(int vis) {
6550 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6551 ? mStatusBar
6552 : mTopFullscreenOpaqueOrDimmingWindowState;
6553
6554 if (statusColorWin != null) {
6555 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6556 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6557 // its light flag.
6558 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6559 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6560 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6561 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6562 // Otherwise if it's dimming, clear the light flag.
6563 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6564 }
6565 }
6566 return vis;
6567 }
6568
John Spurlock79da8332013-09-20 12:04:47 -04006569 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006570 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006571 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6572 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006573 : mTopFullscreenOpaqueWindowState;
6574 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6575 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6576
John Spurlock27735a42013-08-14 17:57:38 -04006577 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006578 int type = win.getAttrs().type;
6579 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006580 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006581 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6582 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006583 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006584 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6585 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006586 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006587 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6588 }
John Spurlockbd957402013-10-03 11:38:39 -04006589 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006590 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006591
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006592 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006593 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6594 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006595 }
6596
John Spurlock27735a42013-08-14 17:57:38 -04006597 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006598 boolean immersiveSticky =
6599 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006600 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006601 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006602 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006603 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6604 boolean hideStatusBarSysui =
6605 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006606 boolean hideNavBarSysui =
6607 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006608
John Spurlock27735a42013-08-14 17:57:38 -04006609 boolean transientStatusBarAllowed =
6610 mStatusBar != null && (
6611 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006612 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006613 || statusBarHasFocus);
6614
John Spurlockf1a36642013-10-12 17:50:42 -04006615 boolean transientNavBarAllowed =
6616 mNavigationBar != null &&
6617 hideNavBarSysui && immersiveSticky;
6618
Adrian Roosddc8b272015-05-21 16:28:27 -07006619 final long now = SystemClock.uptimeMillis();
6620 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6621 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6622 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6623 // The user performed the panic gesture recently, we're about to hide the bars,
6624 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6625 mPendingPanicGestureUptime = 0;
6626 mStatusBarController.showTransient();
6627 mNavigationBarController.showTransient();
6628 }
6629
John Spurlockf25706f2013-11-07 18:02:43 -05006630 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006631 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006632 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006633 && !transientNavBarAllowed;
6634 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006635 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006636 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006637 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006638 }
John Spurlock27735a42013-08-14 17:57:38 -04006639
Selim Cinekf98702e2015-05-20 22:48:40 -07006640 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6641 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6642 final boolean navAllowedHidden = immersive || immersiveSticky;
6643
Selim Cinekd6623612015-05-22 18:56:22 -07006644 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6645 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006646 // We can't hide the navbar from this window otherwise the input consumer would not get
6647 // the input events.
6648 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6649 }
6650
John Spurlock27735a42013-08-14 17:57:38 -04006651 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6652
6653 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006654 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6655 boolean newImmersiveMode = isImmersiveMode(vis);
6656 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006657 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006658 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6659 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006660 }
John Spurlock27735a42013-08-14 17:57:38 -04006661
John Spurlockf1a36642013-10-12 17:50:42 -04006662 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6663
John Spurlocke1f366f2013-08-05 12:22:40 -04006664 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006665 }
6666
John Spurlockf1a36642013-10-12 17:50:42 -04006667 private void clearClearableFlagsLw() {
6668 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6669 if (newVal != mResettingSystemUiFlags) {
6670 mResettingSystemUiFlags = newVal;
6671 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6672 }
6673 }
6674
6675 private boolean isImmersiveMode(int vis) {
6676 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006677 return mNavigationBar != null
6678 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006679 && (vis & flags) != 0
6680 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006681 }
6682
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006683 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006684 * @return whether the navigation or status bar can be made translucent
6685 *
6686 * This should return true unless touch exploration is not enabled or
6687 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006688 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006689 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006690 return mTranslucentDecorEnabled
6691 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006692 }
6693
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006694 // Use this instead of checking config_showNavigationBar so that it can be consistently
6695 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006696 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006697 public boolean hasNavigationBar() {
6698 return mHasNavigationBar;
6699 }
6700
satok1bc0a492012-04-25 22:47:12 +09006701 @Override
6702 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6703 mLastInputMethodWindow = ime;
6704 mLastInputMethodTargetWindow = target;
6705 }
6706
Craig Mautnerf1b67412012-09-19 13:18:29 -07006707 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006708 public int getInputMethodWindowVisibleHeightLw() {
6709 return mDockBottom - mCurBottom;
6710 }
6711
6712 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006713 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006714 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006715 if (mKeyguardDelegate != null) {
6716 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006717 }
John Spurlock13451a22012-09-28 14:40:41 -04006718 if (mStatusBarService != null) {
6719 try {
6720 mStatusBarService.setCurrentUser(newUserId);
6721 } catch (RemoteException e) {
6722 // oh well
6723 }
6724 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006725 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006726 }
6727
6728 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006729 public boolean canMagnifyWindow(int windowType) {
6730 switch (windowType) {
6731 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6732 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6733 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6734 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6735 return false;
6736 }
6737 }
6738 return true;
6739 }
6740
6741 @Override
6742 public boolean isTopLevelWindow(int windowType) {
6743 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6744 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6745 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6746 }
6747 return true;
6748 }
6749
Jim Miller4eeb4f62012-11-08 00:04:29 -08006750 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006751 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006752 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006753 pw.print(" mSystemReady="); pw.print(mSystemReady);
6754 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006755 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006756 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006757 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006758 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006759 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6760 || mForceClearedSystemUiFlags != 0) {
6761 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6762 pw.print(Integer.toHexString(mLastSystemUiFlags));
6763 pw.print(" mResettingSystemUiFlags=0x");
6764 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6765 pw.print(" mForceClearedSystemUiFlags=0x");
6766 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006767 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006768 if (mLastFocusNeedsMenu) {
6769 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6770 pw.println(mLastFocusNeedsMenu);
6771 }
Jeff Browna20dda42014-05-27 20:57:24 -07006772 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6773 pw.println(mWakeGestureEnabledSetting);
6774
Jeff Brownbcdfc622014-03-06 19:13:04 -08006775 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006776 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6777 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006778 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6779 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6780 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6781 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006782 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006783 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006784 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6785 pw.print(mCarDockEnablesAccelerometer);
6786 pw.print(" mDeskDockEnablesAccelerometer=");
6787 pw.println(mDeskDockEnablesAccelerometer);
6788 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6789 pw.print(mLidKeyboardAccessibility);
6790 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006791 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006792 pw.print(prefix);
6793 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6794 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006795 pw.print(prefix);
6796 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6797 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006798 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006799 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6800 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6801 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6802 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6803 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6804 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6805 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006806 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6807 pw.print(","); pw.print(mOverscanScreenTop);
6808 pw.print(") "); pw.print(mOverscanScreenWidth);
6809 pw.print("x"); pw.println(mOverscanScreenHeight);
6810 if (mOverscanLeft != 0 || mOverscanTop != 0
6811 || mOverscanRight != 0 || mOverscanBottom != 0) {
6812 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6813 pw.print(" top="); pw.print(mOverscanTop);
6814 pw.print(" right="); pw.print(mOverscanRight);
6815 pw.print(" bottom="); pw.println(mOverscanBottom);
6816 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006817 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6818 pw.print(mRestrictedOverscanScreenLeft);
6819 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6820 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6821 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006822 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6823 pw.print(","); pw.print(mUnrestrictedScreenTop);
6824 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6825 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6826 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6827 pw.print(","); pw.print(mRestrictedScreenTop);
6828 pw.print(") "); pw.print(mRestrictedScreenWidth);
6829 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006830 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6831 pw.print(","); pw.print(mStableFullscreenTop);
6832 pw.print(")-("); pw.print(mStableFullscreenRight);
6833 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006834 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6835 pw.print(","); pw.print(mStableTop);
6836 pw.print(")-("); pw.print(mStableRight);
6837 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006838 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6839 pw.print(","); pw.print(mSystemTop);
6840 pw.print(")-("); pw.print(mSystemRight);
6841 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006842 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6843 pw.print(","); pw.print(mCurTop);
6844 pw.print(")-("); pw.print(mCurRight);
6845 pw.print(","); pw.print(mCurBottom); pw.println(")");
6846 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6847 pw.print(","); pw.print(mContentTop);
6848 pw.print(")-("); pw.print(mContentRight);
6849 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006850 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6851 pw.print(","); pw.print(mVoiceContentTop);
6852 pw.print(")-("); pw.print(mVoiceContentRight);
6853 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006854 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6855 pw.print(","); pw.print(mDockTop);
6856 pw.print(")-("); pw.print(mDockRight);
6857 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006858 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6859 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006860 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6861 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006862 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6863 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006864 if (mLastInputMethodWindow != null) {
6865 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6866 pw.println(mLastInputMethodWindow);
6867 }
6868 if (mLastInputMethodTargetWindow != null) {
6869 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6870 pw.println(mLastInputMethodTargetWindow);
6871 }
6872 if (mStatusBar != null) {
6873 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006874 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6875 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006876 }
6877 if (mNavigationBar != null) {
6878 pw.print(prefix); pw.print("mNavigationBar=");
6879 pw.println(mNavigationBar);
6880 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006881 if (mFocusedWindow != null) {
6882 pw.print(prefix); pw.print("mFocusedWindow=");
6883 pw.println(mFocusedWindow);
6884 }
6885 if (mFocusedApp != null) {
6886 pw.print(prefix); pw.print("mFocusedApp=");
6887 pw.println(mFocusedApp);
6888 }
6889 if (mWinDismissingKeyguard != null) {
6890 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6891 pw.println(mWinDismissingKeyguard);
6892 }
6893 if (mTopFullscreenOpaqueWindowState != null) {
6894 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6895 pw.println(mTopFullscreenOpaqueWindowState);
6896 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006897 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6898 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6899 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6900 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006901 if (mForcingShowNavBar) {
6902 pw.print(prefix); pw.print("mForcingShowNavBar=");
6903 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6904 pw.println(mForcingShowNavBarLayer);
6905 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006906 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006907 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006908 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6909 pw.print(" mForceStatusBarFromKeyguard=");
6910 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006911 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006912 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006913 pw.print(" mHomePressed="); pw.println(mHomePressed);
6914 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6915 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6916 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6917 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6918 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6919 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6920 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6921 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6922 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6923 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006924 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6925 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6926 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006927
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006928 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006929 mStatusBarController.dump(pw, prefix);
6930 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05006931 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07006932
Jeff Browna20dda42014-05-27 20:57:24 -07006933 if (mWakeGestureListener != null) {
6934 mWakeGestureListener.dump(pw, prefix);
6935 }
Jeff Brown600f0032014-05-22 17:06:00 -07006936 if (mOrientationListener != null) {
6937 mOrientationListener.dump(pw, prefix);
6938 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00006939 if (mBurnInProtectionHelper != null) {
6940 mBurnInProtectionHelper.dump(prefix, pw);
6941 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006942 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006943}