blob: c7c5afd4ef551941e4061ae0fc9177a97c4552aa [file] [log] [blame]
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001/*
Jeff Brown37df39a92015-02-25 15:42:31 -08002 * Copyright (C) 2006 The Android Open Source Project
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jorim Jaggib10e33f2015-02-04 21:57:40 +010017package com.android.server.policy;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080018
Dianne Hackborna4972e92012-03-14 10:38:05 -070019import android.app.ActivityManager;
Jeff Brown061ea992015-04-17 19:55:47 -070020import android.app.ActivityManagerInternal;
21import android.app.ActivityManagerInternal.SleepToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080022import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080023import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040024import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070025import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070026import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040027import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080028import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070029import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080030import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040031import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080032import android.content.ContentResolver;
33import android.content.Context;
34import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070035import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070036import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080037import android.content.pm.ActivityInfo;
38import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040039import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070040import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080041import android.content.res.Configuration;
42import android.content.res.Resources;
Craig Mautner8e4df6c2012-05-23 16:57:23 -070043import android.content.res.TypedArray;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080044import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080045import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080046import android.graphics.Rect;
Jinsuk Kime601b712015-07-07 08:01:02 +090047import android.hardware.hdmi.HdmiControlManager;
48import android.hardware.hdmi.HdmiPlaybackClient;
49import android.hardware.hdmi.HdmiPlaybackClient.OneTouchPlayCallback;
John Spurlock7b414672014-07-18 13:02:39 -040050import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080051import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050052import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080053import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070054import android.media.Ringtone;
55import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070056import android.media.session.MediaSessionLegacyHelper;
Billy Laucbe540f2015-06-25 01:51:44 +010057import android.os.Binder;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070058import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080059import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070060import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080061import android.os.Handler;
62import android.os.IBinder;
Dianne Hackbornb6683c42015-06-18 17:40:33 -070063import android.os.IDeviceIdleController;
Jeff Brown32cbc38552011-12-01 14:01:49 -080064import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070065import android.os.Message;
66import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080067import android.os.PowerManager;
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -070068import android.os.PowerManagerInternal;
Billy Laucbe540f2015-06-25 01:51:44 +010069import android.os.Process;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080070import android.os.RemoteException;
71import android.os.ServiceManager;
72import android.os.SystemClock;
73import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080074import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070075import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080076import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070077import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080078import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070079import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040080import android.service.dreams.DreamService;
81import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070082import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070083import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070084import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080085import android.util.EventLog;
86import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070087import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080088import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070089import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080090import android.view.Gravity;
91import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080092import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080093import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070094import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070095import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080096import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080097import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080098import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080099import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800100import android.view.KeyEvent;
101import android.view.MotionEvent;
Chris Wren9bb290b2015-06-29 12:02:13 -0400102
103import com.android.internal.logging.MetricsLogger;
Adam Powell6711f3b2015-05-06 15:57:09 -0700104import com.android.internal.policy.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800105import android.view.Surface;
106import android.view.View;
107import android.view.ViewConfiguration;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800108import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800109import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700110import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800111import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800112import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800113import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800114import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200115import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800116import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800117import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800118import com.android.internal.statusbar.IStatusBarService;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700119import com.android.internal.util.ScreenShapeHelper;
Craig Mautnerae446592012-12-06 19:05:05 -0800120import com.android.internal.widget.PointerLocationView;
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;
Jorim Jaggi740452e2015-07-09 12:13:59 -0700123import com.android.server.policy.keyguard.KeyguardServiceDelegate.DrawnListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800124
125import java.io.File;
126import java.io.FileReader;
127import java.io.IOException;
128import java.io.PrintWriter;
Billy Lau060275f2015-07-15 22:29:19 +0100129import java.util.Arrays;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700130import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800131import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800132
Dianne Hackbornc652de82013-02-15 16:32:56 -0800133import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700134import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
135import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
136import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700137import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
138import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
139import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800140
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800141/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700142 * WindowManagerPolicy implementation for the Android phone UI. This
143 * introduces a new method suffix, Lp, for an internal lock of the
144 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400145 * can be acquired with either the Lw and Li lock held, so has the restrictions
The Android Open Source Project0727d222009-03-11 12:11:58 -0700146 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800147 */
148public class PhoneWindowManager implements WindowManagerPolicy {
149 static final String TAG = "WindowManager";
150 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700151 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700152 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700153 static final boolean DEBUG_KEYGUARD = false;
154 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700155 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700156 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800157 static final boolean SHOW_STARTING_ANIMATIONS = true;
158 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400159
Daniel Sandler6396c722013-04-16 20:19:09 -0400160 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
161 // No longer recommended for desk docks; still useful in car docks.
162 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
163 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
164
Jeff Brown6d8fd272014-05-20 21:24:38 -0700165 static final int SHORT_PRESS_POWER_NOTHING = 0;
166 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
167 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
168 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800169 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700170
Joe Onoratod208e702010-10-08 16:22:43 -0400171 static final int LONG_PRESS_POWER_NOTHING = 0;
172 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
173 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700174 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700175
Jeff Brown13f00f02014-10-31 14:45:50 -0700176 static final int MULTI_PRESS_POWER_NOTHING = 0;
177 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
178 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
179
Michael Jurka3b1fc472011-06-13 10:54:40 -0700180 // These need to match the documentation/constant in
181 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800182 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800183 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700184 static final int LONG_PRESS_HOME_ASSIST = 2;
185
186 static final int DOUBLE_TAP_HOME_NOTHING = 0;
187 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800188
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000189 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
190 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
191
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700192 static final int APPLICATION_MEDIA_SUBLAYER = -2;
193 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800194 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800195 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700196 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700197
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800198 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
199 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
200 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500201 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700202 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800203
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700204 /**
205 * These are the system UI flags that, when changing, can cause the layout
206 * of the screen to change.
207 */
208 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400209 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400210 | View.SYSTEM_UI_FLAG_FULLSCREEN
211 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200212 | View.NAVIGATION_BAR_TRANSLUCENT
213 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700214
John Spurlock7b414672014-07-18 13:02:39 -0400215 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
216 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
217 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
218 .build();
219
Adrian Roosddc8b272015-05-21 16:28:27 -0700220 // The panic gesture may become active only after the keyguard is dismissed and the immersive
221 // app shows again. If that doesn't happen for 30s we drop the gesture.
222 private static final long PANIC_GESTURE_EXPIRATION = 30000;
223
Jim Miller5ecd8112013-01-09 18:50:26 -0800224 /**
225 * Keyguard stuff
226 */
227 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100228 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700229 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800230
Jeff Brown6651a632011-11-28 12:59:11 -0800231 /* Table of Application Launch keys. Maps from key codes to intent categories.
232 *
233 * These are special keys that are used to launch particular kinds of applications,
234 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
235 * usage page. We don't support quite that many yet...
236 */
237 static SparseArray<String> sApplicationLaunchKeyCategories;
238 static {
239 sApplicationLaunchKeyCategories = new SparseArray<String>();
240 sApplicationLaunchKeyCategories.append(
241 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
242 sApplicationLaunchKeyCategories.append(
243 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
244 sApplicationLaunchKeyCategories.append(
245 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
246 sApplicationLaunchKeyCategories.append(
247 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
248 sApplicationLaunchKeyCategories.append(
249 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
250 sApplicationLaunchKeyCategories.append(
251 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
252 }
253
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700254 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
Jorim Jaggi0d210f62015-07-10 14:24:44 -0700255 static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700256
Dianne Hackborndf89e652011-10-06 22:35:11 -0700257 /**
258 * Lock protecting internal state. Must not call out into window
259 * manager with lock held. (This lock will be acquired in places
260 * where the window manager is calling in with its own lock held.)
261 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800262 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700263
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800264 Context mContext;
265 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700266 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700267 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700268 PowerManager mPowerManager;
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -0700269 PowerManagerInternal mPowerManagerInternal;
Jeff Brown061ea992015-04-17 19:55:47 -0700270 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700271 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400272 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700273 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700274 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800275 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700276 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800277 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000278 BurnInProtectionHelper mBurnInProtectionHelper;
Billy Laucbe540f2015-06-25 01:51:44 +0100279 AppOpsManager mAppOpsManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800280
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700281 // Vibrator pattern for haptic feedback of a long press.
282 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700283
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700284 // Vibrator pattern for haptic feedback of virtual key press.
285 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700286
Amith Yamasanic33cb712010-02-10 15:21:49 -0800287 // Vibrator pattern for a short vibration.
288 long[] mKeyboardTapVibePattern;
289
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700290 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
291 long[] mClockTickVibePattern;
292
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700293 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
294 long[] mCalendarDateVibePattern;
295
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700296 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
297 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700298
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700299 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
300 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700301
Mady Mellore8608912015-06-05 09:02:55 -0700302 // Vibrator pattern for haptic feedback of a context click.
303 long[] mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -0700304
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800305 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
306 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400307
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800308 boolean mSafeMode;
309 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700310 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400311 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400312 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700313 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400314 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
315 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
316 int[] mNavigationBarHeightForRotation = new int[4];
317 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400318
Craig Mautnera631d492014-08-05 15:16:01 -0700319 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800320 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700321 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700322 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700323 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700324 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
325 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
326 }
327 };
Jorim Jaggi740452e2015-07-09 12:13:59 -0700328 final DrawnListener mKeyguardDrawnCallback = new DrawnListener() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700329 @Override
Jorim Jaggi740452e2015-07-09 12:13:59 -0700330 public void onDrawn() {
331 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onDrawn.");
Craig Mautner8a0da012014-05-31 15:13:37 -0700332 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
333 }
334 };
335
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800336 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800337 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900338 WindowState mLastInputMethodWindow = null;
339 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800340
Jeff Brown13f00f02014-10-31 14:45:50 -0700341 // FIXME This state is shared between the input reader and handler thread.
342 // Technically it's broken and buggy but it has been like this for many years
343 // and we have not yet seen any problems. Someday we'll rewrite this logic
344 // so that only one thread is involved in handling input policy. Unfortunately
345 // it's on a critical path for power management so we can't just post the work to the
346 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
347 // to hold wakelocks during dispatch and eliminating the critical path.
348 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800349 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700350 volatile int mPowerKeyPressCounter;
351 volatile boolean mEndCallKeyHandled;
352
Winson Chungd42a6cf2014-06-03 16:24:04 -0700353 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700354 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700355 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800356
Jeff Brown2e7760e2012-04-11 15:14:55 -0700357 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700358 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700359 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800360
Dianne Hackbornc777e072010-02-12 13:07:59 -0800361 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700362 boolean mSystemBooted;
Adrian Roos3542f7d2015-07-13 15:57:53 -0700363 private boolean mDeferBindKeyguard;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800364 boolean mHdmiPlugged;
Jinsuk Kime601b712015-07-07 08:01:02 +0900365 HdmiControl mHdmiControl;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700366 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400367 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700368 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700369 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400370 int mCarDockRotation;
371 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700372 int mUndockedHdmiRotation;
373 int mDemoHdmiRotation;
374 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800375 int mDemoRotation;
376 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400377
Jeff Browna20dda42014-05-27 20:57:24 -0700378 boolean mWakeGestureEnabledSetting;
379 MyWakeGestureListener mWakeGestureListener;
380
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700381 // Default display does not rotate, apps that require non-default orientation will have to
382 // have the orientation emulated.
383 private boolean mForceDefaultOrientation = false;
384
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400385 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
386 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700387 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400388
Jeff Brownbcdfc622014-03-06 19:13:04 -0800389 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700390 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400391 boolean mCarDockEnablesAccelerometer;
392 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700393 int mLidKeyboardAccessibility;
394 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700395 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700396 int mShortPressOnPowerBehavior;
397 int mLongPressOnPowerBehavior;
398 int mDoublePressOnPowerBehavior;
399 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000400 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700401 boolean mAwake;
402 boolean mScreenOnEarly;
403 boolean mScreenOnFully;
404 ScreenOnListener mScreenOnListener;
405 boolean mKeyguardDrawComplete;
406 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800407 boolean mOrientationSensorEnabled = false;
408 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800409 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400410 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800411 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700412
Jeff Brown70825162012-03-28 17:27:48 -0700413 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800414
415 // The last window we were told about in focusChanged.
416 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800417 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800418
Jeff Brown70825162012-03-28 17:27:48 -0700419 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800420
Dianne Hackbornc652de82013-02-15 16:32:56 -0800421 // The current size of the screen; really; extends into the overscan area of
422 // the screen and doesn't account for any system elements like the status bar.
423 int mOverscanScreenLeft, mOverscanScreenTop;
424 int mOverscanScreenWidth, mOverscanScreenHeight;
425 // The current visible size of the screen; really; (ir)regardless of whether the status
426 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800427 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
428 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800429 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
430 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
431 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700432 // The current size of the screen; these may be different than (0,0)-(dw,dh)
433 // if the status bar can't be hidden; in that case it effectively carves out
434 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800435 int mRestrictedScreenLeft, mRestrictedScreenTop;
436 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700437 // During layout, the current screen borders accounting for any currently
438 // visible system UI elements.
439 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700440 // For applications requesting stable content insets, these are them.
441 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700442 // For applications requesting stable content insets but have also set the
443 // fullscreen window flag, these are the stable dimensions without the status bar.
444 int mStableFullscreenLeft, mStableFullscreenTop;
445 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800446 // During layout, the current screen borders with all outer decoration
447 // (status bar, input method dock) accounted for.
448 int mCurLeft, mCurTop, mCurRight, mCurBottom;
449 // During layout, the frame in which content should be displayed
450 // to the user, accounting for all screen decoration except for any
451 // space they deem as available for other content. This is usually
452 // the same as mCur*, but may be larger if the screen decor has supplied
453 // content insets.
454 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700455 // During layout, the frame in which voice content should be displayed
456 // to the user, accounting for all screen decoration except for any
457 // space they deem as available for other content.
458 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800459 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800460 // windows are placed.
461 int mDockLeft, mDockTop, mDockRight, mDockBottom;
462 // During layout, the layer at which the doc window is placed.
463 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700464 // During layout, this is the layer of the status bar.
465 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700466 int mLastSystemUiFlags;
467 // Bits that we are in the process of clearing, so we want to prevent
468 // them from being set by applications until everything has been updated
469 // to have them clear.
470 int mResettingSystemUiFlags = 0;
471 // Bits that we are currently always keeping cleared.
472 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800473 // What we last reported to system UI about whether the compatibility
474 // menu needs to be displayed.
475 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700476 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
477 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700478
Selim Cinekf83e8242015-05-19 18:08:14 -0700479 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700480
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800481 static final Rect mTmpParentFrame = new Rect();
482 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800483 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800484 static final Rect mTmpContentFrame = new Rect();
485 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400486 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700487 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700488 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700489 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700490
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800491 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100492 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700493 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200494 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400495 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800496 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700497 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700498 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700499 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800500 boolean mForcingShowNavBar;
501 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700502
503 // States of keyguard dismiss.
504 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
505 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
506 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
507 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
508
509 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
510 * be done once per window. */
511 private WindowState mWinDismissingKeyguard;
512
tingna_sunge785ffa2015-05-12 13:23:15 +0800513 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
514 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
515 * lock SIM card. This variable is used to record the previous keyguard secure state for
516 * monitoring secure state change on window dismissing keyguard. */
517 private boolean mSecureDismissingKeyguard;
518
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700519 /** The window that is currently showing "over" the keyguard. If there is an app window
520 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
521 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
522 * the wallpaper. */
523 private WindowState mWinShowWhenLocked;
524
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700525 boolean mShowingLockscreen;
526 boolean mShowingDream;
527 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700528 boolean mDreamingSleepTokenNeeded;
529 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700530 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700531 boolean mKeyguardSecure;
532 boolean mKeyguardSecureIncludingHidden;
533 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800534 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700535 boolean mHomeConsumed;
536 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800537 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700538 Intent mCarDockIntent;
539 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700540 boolean mSearchKeyShortcutPending;
541 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700542 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700543 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800544
Mike Lockwood28569302010-01-28 11:54:40 -0500545 // support for activating the lock screen while the screen is on
546 boolean mAllowLockscreenWhenOn;
547 int mLockScreenTimeout;
548 boolean mLockScreenTimerActive;
549
David Brownbaf8d092010-03-08 21:52:59 -0800550 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800551 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800552
553 // Behavior of POWER button while in-call and screen on.
554 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
555 int mIncallPowerBehavior;
556
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700557 Display mDisplay;
558
Filip Gruszczynski2987f612015-06-30 15:03:30 -0700559 private int mDisplayRotation;
560
Dianne Hackborn9d132642011-04-21 17:26:39 -0700561 int mLandscapeRotation = 0; // default landscape rotation
562 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
563 int mPortraitRotation = 0; // default portrait rotation
564 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700565
Dianne Hackbornc652de82013-02-15 16:32:56 -0800566 int mOverscanLeft = 0;
567 int mOverscanTop = 0;
568 int mOverscanRight = 0;
569 int mOverscanBottom = 0;
570
Joe Onorato46b0d682010-11-22 17:37:27 -0800571 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700572 private int mLongPressOnHomeBehavior;
573
574 // What we do when the user double-taps on home
575 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800576
Bryce Lee584a4452014-10-21 15:55:55 -0700577 // Allowed theater mode wake actions
578 private boolean mAllowTheaterModeWakeFromKey;
579 private boolean mAllowTheaterModeWakeFromPowerKey;
580 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800581 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700582 private boolean mAllowTheaterModeWakeFromCameraLens;
583 private boolean mAllowTheaterModeWakeFromLidSwitch;
584 private boolean mAllowTheaterModeWakeFromWakeGesture;
585
Bryce Leed3b28402015-03-09 15:49:13 +0000586 // Whether to support long press from power button in non-interactive mode
587 private boolean mSupportLongPressPowerWhenNonInteractive;
588
Bryce Lee55e846d2014-11-04 12:43:44 -0800589 // Whether to go to sleep entering theater mode from power button
590 private boolean mGoToSleepOnButtonPressTheaterMode;
591
Winson Chung9112ec32011-06-27 13:15:32 -0700592 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700593 // Time to volume and power must be pressed within this interval of each other.
594 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700595 // Increase the chord delay when taking a screenshot from the keyguard
596 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800597 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700598 private boolean mScreenshotChordVolumeDownKeyTriggered;
599 private long mScreenshotChordVolumeDownKeyTime;
600 private boolean mScreenshotChordVolumeDownKeyConsumed;
601 private boolean mScreenshotChordVolumeUpKeyTriggered;
602 private boolean mScreenshotChordPowerKeyTriggered;
603 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700604
Michael Wrightb854e242013-02-05 17:54:02 -0800605 /* The number of steps between min and max brightness */
606 private static final int BRIGHTNESS_STEPS = 10;
607
Christopher Tate5e08af02012-09-21 17:17:22 -0700608 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800609 ShortcutManager mShortcutManager;
610 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700611 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700612 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800613
Craig Mautnerd625ab22013-09-06 13:40:31 -0700614 private int mCurrentUserId;
615
Justin Kohd378ad72013-04-01 12:18:26 -0700616 // Maps global key codes to the components that will handle them.
617 private GlobalKeyManager mGlobalKeyManager;
618
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700619 // Fallback actions by key code.
620 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
621 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800622
Jorim Jaggi76a16232014-08-08 17:00:47 +0200623 private final LogDecelerateInterpolator mLogDecelerateInterpolator
624 = new LogDecelerateInterpolator(100, 0);
625
Jeff Brown70825162012-03-28 17:27:48 -0700626 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
627 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700628 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
629 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700630 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
631 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
632 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700633 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700634 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700635 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700636 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700637 private static final int MSG_POWER_DELAYED_PRESS = 13;
638 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700639 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jeff Brown70825162012-03-28 17:27:48 -0700640
641 private class PolicyHandler extends Handler {
642 @Override
643 public void handleMessage(Message msg) {
644 switch (msg.what) {
645 case MSG_ENABLE_POINTER_LOCATION:
646 enablePointerLocation();
647 break;
648 case MSG_DISABLE_POINTER_LOCATION:
649 disablePointerLocation();
650 break;
Jeff Brown40013652012-05-16 21:22:36 -0700651 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
652 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
653 break;
654 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
655 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
656 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700657 case MSG_DISPATCH_SHOW_RECENTS:
658 showRecentApps(false);
659 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700660 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
661 showGlobalActionsInternal();
662 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700663 case MSG_KEYGUARD_DRAWN_COMPLETE:
664 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700665 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700666 break;
667 case MSG_KEYGUARD_DRAWN_TIMEOUT:
668 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700669 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700670 break;
671 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
672 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700673 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700674 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700675 case MSG_HIDE_BOOT_MESSAGE:
676 handleHideBootMessage();
677 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700678 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
679 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
680 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700681 case MSG_POWER_DELAYED_PRESS:
682 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
683 finishPowerKeyPress();
684 break;
685 case MSG_POWER_LONG_PRESS:
686 powerLongPress();
687 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700688 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
689 updateDreamingSleepToken(msg.arg1 != 0);
690 break;
Jeff Brown70825162012-03-28 17:27:48 -0700691 }
692 }
693 }
694
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800695 private UEventObserver mHDMIObserver = new UEventObserver() {
696 @Override
697 public void onUEvent(UEventObserver.UEvent event) {
698 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
699 }
700 };
701
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800702 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800703 SettingsObserver(Handler handler) {
704 super(handler);
705 }
David Brownbaf8d092010-03-08 21:52:59 -0800706
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800707 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700708 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800709 ContentResolver resolver = mContext.getContentResolver();
710 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700711 Settings.System.END_BUTTON_BEHAVIOR), false, this,
712 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800713 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700714 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
715 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700716 resolver.registerContentObserver(Settings.Secure.getUriFor(
717 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
718 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800719 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700720 Settings.System.ACCELEROMETER_ROTATION), false, this,
721 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500722 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700723 Settings.System.USER_ROTATION), false, this,
724 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400725 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700726 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
727 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800728 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700729 Settings.System.POINTER_LOCATION), false, this,
730 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800731 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700732 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
733 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500734 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400735 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700736 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500737 resolver.registerContentObserver(Settings.Global.getUriFor(
738 Settings.Global.POLICY_CONTROL), false, this,
739 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800740 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800741 }
742
743 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800744 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700745 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800746 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800747 }
Craig Mautner967212c2013-04-13 21:10:58 -0700748
Jeff Browna20dda42014-05-27 20:57:24 -0700749 class MyWakeGestureListener extends WakeGestureListener {
750 MyWakeGestureListener(Context context, Handler handler) {
751 super(context, handler);
752 }
753
754 @Override
755 public void onWakeUp() {
756 synchronized (mLock) {
757 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700758 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700759 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture,
760 "android.policy:GESTURE");
Jeff Browna20dda42014-05-27 20:57:24 -0700761 }
762 }
763 }
764 }
765
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800766 class MyOrientationListener extends WindowOrientationListener {
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700767 private final Runnable mUpdateRotationRunnable = new Runnable() {
768 @Override
769 public void run() {
770 updateRotation(false);
771 }
772 };
773
Craig Mautnereee29c42013-01-17 14:44:34 -0800774 MyOrientationListener(Context context, Handler handler) {
775 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800776 }
Craig Mautner967212c2013-04-13 21:10:58 -0700777
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800778 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700779 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700780 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700781 mHandler.post(mUpdateRotationRunnable);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700782 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800783 }
784 MyOrientationListener mOrientationListener;
785
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100786 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400787
John Spurlock27735a42013-08-14 17:57:38 -0400788 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400789 View.NAVIGATION_BAR_TRANSIENT,
790 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400791 View.NAVIGATION_BAR_TRANSLUCENT,
792 StatusBarManager.WINDOW_NAVIGATION_BAR,
793 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400794
John Spurlockf1a36642013-10-12 17:50:42 -0400795 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400796
Craig Mautner037aa8d2013-06-07 10:35:44 -0700797 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400798
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700799 IStatusBarService getStatusBarService() {
800 synchronized (mServiceAquireLock) {
801 if (mStatusBarService == null) {
802 mStatusBarService = IStatusBarService.Stub.asInterface(
803 ServiceManager.getService("statusbar"));
804 }
805 return mStatusBarService;
806 }
807 }
808
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700809 /*
810 * We always let the sensor be switched on by default except when
811 * the user has explicitly disabled sensor based rotation or when the
812 * screen is switched off.
813 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700814 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800815 if (mSupportAutoRotation) {
816 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
817 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
818 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
819 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
820 // If the application has explicitly requested to follow the
821 // orientation, then we need to turn the sensor on.
822 return true;
823 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800824 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700825 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800826 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
827 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
828 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400829 // enable accelerometer if we are docked in a dock that enables accelerometer
830 // orientation management,
831 return true;
832 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700833 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800834 // If the setting for using the sensor by default is enabled, then
835 // we will always leave it on. Note that the user could go to
836 // a window that forces an orientation that does not use the
837 // sensor and in theory we could turn it off... however, when next
838 // turning it on we won't have a good value for the current
839 // orientation for a little bit, which can cause orientation
840 // changes to lag, so we'd like to keep it always on. (It will
841 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700842 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800843 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800844 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800845 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700846
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800847 /*
848 * Various use cases for invoking this function
849 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700850 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800851 * if not already enabled
852 * screen turned on and current app does not have sensor orientation, disable listeners if
853 * already enabled
854 * screen turning on and current app has sensor based orientation, enable listeners if needed
855 * screen turning on and current app has nosensor based orientation, do nothing
856 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700857 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800858 if (!mOrientationListener.canDetectOrientation()) {
859 // If sensor is turned off or nonexistent for some reason
860 return;
861 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000862 // Could have been invoked due to screen turning on or off or
863 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700864 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
865 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000866 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
867 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
868 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800869 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000870 // Note: We postpone the rotating of the screen until the keyguard as well as the
871 // window manager have reported a draw complete.
872 if (mScreenOnEarly && mAwake &&
873 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700874 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800875 disable = false;
876 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700877 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800878 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700879 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800880 mOrientationSensorEnabled = true;
881 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700882 }
883 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800884 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700885 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800886 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700887 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800888 mOrientationSensorEnabled = false;
889 }
890 }
891
Jeff Brown13f00f02014-10-31 14:45:50 -0700892 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
893 // Hold a wake lock until the power key is released.
894 if (!mPowerKeyWakeLock.isHeld()) {
895 mPowerKeyWakeLock.acquire();
896 }
897
898 // Cancel multi-press detection timeout.
899 if (mPowerKeyPressCounter != 0) {
900 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
901 }
902
903 // Detect user pressing the power button in panic when an application has
904 // taken over the whole screen.
905 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800906 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700907 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700908 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700909 }
910
911 // Latch power key state to detect screenshot chord.
912 if (interactive && !mScreenshotChordPowerKeyTriggered
913 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
914 mScreenshotChordPowerKeyTriggered = true;
915 mScreenshotChordPowerKeyTime = event.getDownTime();
916 interceptScreenshotChord();
917 }
918
919 // Stop ringing or end call if configured to do so when power is pressed.
920 TelecomManager telecomManager = getTelecommService();
921 boolean hungUp = false;
922 if (telecomManager != null) {
923 if (telecomManager.isRinging()) {
924 // Pressing Power while there's a ringing incoming
925 // call should silence the ringer.
926 telecomManager.silenceRinger();
927 } else if ((mIncallPowerBehavior
928 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
929 && telecomManager.isInCall() && interactive) {
930 // Otherwise, if "Power button ends call" is enabled,
931 // the Power button will hang up any current active call.
932 hungUp = telecomManager.endCall();
933 }
934 }
935
936 // If the power key has still not yet been handled, then detect short
937 // press, long press, or multi press and decide what to do.
938 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
939 || mScreenshotChordVolumeUpKeyTriggered;
940 if (!mPowerKeyHandled) {
941 if (interactive) {
942 // When interactive, we're already awake.
943 // Wait for a long press or for the button to be released to decide what to do.
944 if (hasLongPressOnPowerBehavior()) {
945 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
946 msg.setAsynchronous(true);
947 mHandler.sendMessageDelayed(msg,
948 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
949 }
950 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800951 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800952
Bryce Leed3b28402015-03-09 15:49:13 +0000953 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
954 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
955 msg.setAsynchronous(true);
956 mHandler.sendMessageDelayed(msg,
957 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800958 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000959 } else {
960 final int maxCount = getMaxMultiPressPowerCount();
961
962 if (maxCount <= 1) {
963 mPowerKeyHandled = true;
964 } else {
965 mBeganFromNonInteractive = true;
966 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700967 }
968 }
Jeff Brown4d396052010-10-29 21:50:21 -0700969 }
970 }
971
Jeff Brown13f00f02014-10-31 14:45:50 -0700972 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
973 final boolean handled = canceled || mPowerKeyHandled;
974 mScreenshotChordPowerKeyTriggered = false;
975 cancelPendingScreenshotChordAction();
976 cancelPendingPowerKeyAction();
977
978 if (!handled) {
979 // Figure out how to handle the key now that it has been released.
980 mPowerKeyPressCounter += 1;
981
982 final int maxCount = getMaxMultiPressPowerCount();
983 final long eventTime = event.getDownTime();
984 if (mPowerKeyPressCounter < maxCount) {
985 // This could be a multi-press. Wait a little bit longer to confirm.
986 // Continue holding the wake lock.
987 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
988 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
989 msg.setAsynchronous(true);
990 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
991 return;
992 }
993
994 // No other actions. Handle it immediately.
995 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700996 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700997
998 // Done. Reset our state.
999 finishPowerKeyPress();
1000 }
1001
1002 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -08001003 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001004 mPowerKeyPressCounter = 0;
1005 if (mPowerKeyWakeLock.isHeld()) {
1006 mPowerKeyWakeLock.release();
1007 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001008 }
1009
1010 private void cancelPendingPowerKeyAction() {
1011 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001012 mPowerKeyHandled = true;
1013 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001014 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001015 }
1016
1017 private void powerPress(long eventTime, boolean interactive, int count) {
1018 if (mScreenOnEarly && !mScreenOnFully) {
1019 Slog.i(TAG, "Suppressed redundant power key press while "
1020 + "already in the process of turning the screen on.");
1021 return;
Jeff Brownff204712011-10-25 21:27:54 -07001022 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001023
1024 if (count == 2) {
1025 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1026 } else if (count == 3) {
1027 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001028 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001029 switch (mShortPressOnPowerBehavior) {
1030 case SHORT_PRESS_POWER_NOTHING:
1031 break;
1032 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1033 mPowerManager.goToSleep(eventTime,
1034 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1035 break;
1036 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1037 mPowerManager.goToSleep(eventTime,
1038 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1039 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1040 break;
1041 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1042 mPowerManager.goToSleep(eventTime,
1043 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1044 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1045 launchHomeFromHotKey();
1046 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001047 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001048 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001049 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001050 }
1051 }
1052 }
1053
1054 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1055 switch (behavior) {
1056 case MULTI_PRESS_POWER_NOTHING:
1057 break;
1058 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001059 if (!isUserSetupComplete()) {
1060 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1061 break;
1062 }
1063
Jeff Brown13f00f02014-10-31 14:45:50 -07001064 if (isTheaterModeEnabled()) {
1065 Slog.i(TAG, "Toggling theater mode off.");
1066 Settings.Global.putInt(mContext.getContentResolver(),
1067 Settings.Global.THEATER_MODE_ON, 0);
1068 if (!interactive) {
1069 wakeUpFromPowerKey(eventTime);
1070 }
1071 } else {
1072 Slog.i(TAG, "Toggling theater mode on.");
1073 Settings.Global.putInt(mContext.getContentResolver(),
1074 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001075
1076 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001077 mPowerManager.goToSleep(eventTime,
1078 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1079 }
1080 }
1081 break;
1082 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001083 Slog.i(TAG, "Starting brightness boost.");
1084 if (!interactive) {
1085 wakeUpFromPowerKey(eventTime);
1086 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001087 mPowerManager.boostScreenBrightness(eventTime);
1088 break;
1089 }
1090 }
1091
1092 private int getMaxMultiPressPowerCount() {
1093 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1094 return 3;
1095 }
1096 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1097 return 2;
1098 }
1099 return 1;
1100 }
1101
1102 private void powerLongPress() {
1103 final int behavior = getResolvedLongPressOnPowerBehavior();
1104 switch (behavior) {
1105 case LONG_PRESS_POWER_NOTHING:
1106 break;
1107 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1108 mPowerKeyHandled = true;
1109 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1110 performAuditoryFeedbackForAccessibilityIfNeed();
1111 }
1112 showGlobalActionsInternal();
1113 break;
1114 case LONG_PRESS_POWER_SHUT_OFF:
1115 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1116 mPowerKeyHandled = true;
1117 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1118 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1119 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1120 break;
1121 }
1122 }
1123
Nick Vaccarob593a812015-05-15 11:23:05 -07001124 private void sleepPress(long eventTime) {
1125 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1126 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1127 }
1128 }
1129
1130 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001131 switch (mShortPressOnSleepBehavior) {
1132 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001133 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001134 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1135 mPowerManager.goToSleep(eventTime,
1136 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001137 break;
1138 }
1139 }
1140
Jeff Brown13f00f02014-10-31 14:45:50 -07001141 private int getResolvedLongPressOnPowerBehavior() {
1142 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1143 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1144 }
1145 return mLongPressOnPowerBehavior;
1146 }
1147
1148 private boolean hasLongPressOnPowerBehavior() {
1149 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001150 }
1151
1152 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001153 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001154 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1155 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001156 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001157 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1158 && now <= mScreenshotChordPowerKeyTime
1159 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1160 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001161 cancelPendingPowerKeyAction();
1162
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001163 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001164 }
1165 }
1166 }
1167
Winson Chung1cea2f32012-10-08 20:42:01 -07001168 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001169 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001170 // Double the time it takes to take a screenshot from the keyguard
1171 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001172 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001173 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001174 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001175 }
1176
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001177 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001178 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001179 }
1180
Jeff Brown13f00f02014-10-31 14:45:50 -07001181 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001182 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001183 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001184 mEndCallKeyHandled = true;
1185 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1186 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001187 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001188 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001189 }
1190 };
1191
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001192 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001193 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001194 public void run() {
1195 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001196 }
1197 };
1198
Alan Viverettee34560b22014-07-10 14:50:06 -07001199 @Override
1200 public void showGlobalActions() {
1201 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1202 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1203 }
1204
1205 void showGlobalActionsInternal() {
1206 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001207 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001208 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001209 }
Jim Millerab954542014-10-10 18:21:49 -07001210 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001211 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1212 if (keyguardShowing) {
1213 // since it took two seconds of long press to bring this up,
1214 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001215 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001216 }
1217 }
1218
1219 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001220 return Settings.Global.getInt(
1221 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001222 }
1223
Maurice Lam99c6e072014-04-28 18:24:28 -07001224 boolean isUserSetupComplete() {
1225 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1226 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1227 }
1228
Jeff Brown13f00f02014-10-31 14:45:50 -07001229 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001230 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1231 getHdmiControl().turnOnTv();
1232
Jeff Brown13f00f02014-10-31 14:45:50 -07001233 // If there's a dream running then use home to escape the dream
1234 // but don't actually go home.
1235 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1236 mDreamManagerInternal.stopDream(false /*immediate*/);
1237 return;
1238 }
1239
1240 // Go home!
1241 launchHomeFromHotKey();
1242 }
1243
Jinsuk Kime601b712015-07-07 08:01:02 +09001244 /**
1245 * Creates an accessor to HDMI control service that performs the operation of
1246 * turning on TV (optional) and switching input to us. If HDMI control service
1247 * is not available or we're not a HDMI playback device, the operation is no-op.
1248 */
1249 private HdmiControl getHdmiControl() {
1250 if (null == mHdmiControl) {
1251 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1252 Context.HDMI_CONTROL_SERVICE);
1253 HdmiPlaybackClient client = null;
1254 if (manager != null) {
1255 client = manager.getPlaybackClient();
1256 }
1257 mHdmiControl = new HdmiControl(client);
1258 }
1259 return mHdmiControl;
1260 }
1261
1262 private static class HdmiControl {
1263 private final HdmiPlaybackClient mClient;
1264
1265 private HdmiControl(HdmiPlaybackClient client) {
1266 mClient = client;
1267 }
1268
1269 public void turnOnTv() {
1270 if (mClient == null) {
1271 return;
1272 }
1273 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1274 @Override
1275 public void onComplete(int result) {
1276 if (result != HdmiControlManager.RESULT_SUCCESS) {
1277 Log.w(TAG, "One touch play failed: " + result);
1278 }
1279 }
1280 });
1281 }
1282 }
1283
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001284 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001285 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001286 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001287 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001288
Jeff Browncaca8812013-05-09 13:34:33 -07001289 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1290 toggleRecentApps();
1291 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001292 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001293 }
1294 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001295 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001296
Jeff Browncaca8812013-05-09 13:34:33 -07001297 private void handleDoubleTapOnHome() {
1298 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1299 mHomeConsumed = true;
1300 toggleRecentApps();
1301 }
1302 }
1303
1304 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1305 @Override
1306 public void run() {
1307 if (mHomeDoubleTapPending) {
1308 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001309 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001310 }
1311 }
1312 };
1313
Mark Renoufc1256912015-03-11 14:38:23 -04001314 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001315 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001316 }
1317
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001318 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001319 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001320 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001321 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001322 mContext = context;
1323 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001324 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001325 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001326 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001327 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001328 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -07001329 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
Mark Renoufc1256912015-03-11 14:38:23 -04001330
1331 // Init display burn-in protection
1332 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1333 com.android.internal.R.bool.config_enableBurnInProtection);
1334 // Allow a system property to override this. Used by developer settings.
1335 boolean burnInProtectionDevMode =
1336 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1337 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1338 final int minHorizontal;
1339 final int maxHorizontal;
1340 final int minVertical;
1341 final int maxVertical;
1342 final int maxRadius;
1343 if (burnInProtectionDevMode) {
1344 minHorizontal = -8;
1345 maxHorizontal = 8;
1346 minVertical = -8;
1347 maxVertical = -4;
1348 maxRadius = (isRoundWindow()) ? 6 : -1;
1349 } else {
1350 Resources resources = context.getResources();
1351 minHorizontal = resources.getInteger(
1352 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1353 maxHorizontal = resources.getInteger(
1354 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1355 minVertical = resources.getInteger(
1356 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1357 maxVertical = resources.getInteger(
1358 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1359 maxRadius = resources.getInteger(
1360 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1361 }
1362 mBurnInProtectionHelper = new BurnInProtectionHelper(
1363 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001364 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001365
Jeff Brown70825162012-03-28 17:27:48 -07001366 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001367 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001368 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001369 try {
1370 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1371 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001372 mSettingsObserver = new SettingsObserver(mHandler);
1373 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001374 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001375 mUiMode = context.getResources().getInteger(
1376 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001377 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1378 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1379 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1380 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001381 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1382 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1383 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1384 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1385 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1386 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1387 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1388 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001389
Jeff Brown96307042012-07-27 15:51:34 -07001390 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1391 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001392 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001393 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1394 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001395 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001396 mSupportAutoRotation = mContext.getResources().getBoolean(
1397 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001398 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001399 com.android.internal.R.integer.config_lidOpenRotation);
1400 mCarDockRotation = readRotation(
1401 com.android.internal.R.integer.config_carDockRotation);
1402 mDeskDockRotation = readRotation(
1403 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001404 mUndockedHdmiRotation = readRotation(
1405 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001406 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1407 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1408 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1409 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001410 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1411 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1412 mLidNavigationAccessibility = mContext.getResources().getInteger(
1413 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001414 mLidControlsSleep = mContext.getResources().getBoolean(
1415 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001416 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1417 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001418
1419 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1420 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1421 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1422 || mContext.getResources().getBoolean(
1423 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1424 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1425 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001426 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1427 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001428 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1429 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1430 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1431 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1432 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1433 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1434
Bryce Lee55e846d2014-11-04 12:43:44 -08001435 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1436 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1437
Bryce Leed3b28402015-03-09 15:49:13 +00001438 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1439 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1440
Jeff Brown13f00f02014-10-31 14:45:50 -07001441 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1442 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1443 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1444 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1445 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1446 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1447 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1448 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001449 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1450 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001451
John Spurlock61560172015-02-06 19:46:04 -05001452 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001453
Jeff Brownf71343d2013-05-31 17:59:11 -07001454 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001455
Svetoslav8e3feb12014-02-24 13:46:47 -08001456 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1457 Context.ACCESSIBILITY_SERVICE);
1458
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001459 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001460 IntentFilter filter = new IntentFilter();
1461 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1462 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1463 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1464 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001465 filter.addAction(Intent.ACTION_DOCK_EVENT);
1466 Intent intent = context.registerReceiver(mDockReceiver, filter);
1467 if (intent != null) {
1468 // Retrieve current sticky dock event broadcast.
1469 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1470 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1471 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001472
Jeff Brown6aaf2952012-10-05 16:01:08 -07001473 // register for dream-related broadcasts
1474 filter = new IntentFilter();
1475 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1476 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1477 context.registerReceiver(mDreamReceiver, filter);
1478
Christopher Tate5e08af02012-09-21 17:17:22 -07001479 // register for multiuser-relevant broadcasts
1480 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1481 context.registerReceiver(mMultiuserReceiver, filter);
1482
John Spurlock57306e62013-04-22 09:48:49 -04001483 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001484 mSystemGestures = new SystemGesturesPointerEventListener(context,
1485 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001486 @Override
1487 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001488 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001489 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001490 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001491 }
1492 @Override
1493 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001494 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001495 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001496 }
1497 }
1498 @Override
1499 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001500 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001501 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001502 }
1503 }
1504 @Override
1505 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001506 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001507 }
Adrian Roos3595be42015-03-05 16:31:15 +01001508 @Override
1509 public void onDown() {
1510 mOrientationListener.onTouchStart();
1511 }
1512 @Override
1513 public void onUpOrCancel() {
1514 mOrientationListener.onTouchEnd();
1515 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001516 });
John Spurlockf1a36642013-10-12 17:50:42 -04001517 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001518 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001519
Jeff Brownc2346132012-04-13 01:55:38 -07001520 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001521 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1522 com.android.internal.R.array.config_longPressVibePattern);
1523 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1524 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001525 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1526 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001527 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1528 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001529 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1530 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001531 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1532 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1533 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1534 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001535 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1536 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001537
Christopher Tatee90585f2012-03-05 18:56:25 -08001538 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1539 com.android.internal.R.bool.config_enableScreenshotChord);
1540
Justin Kohd378ad72013-04-01 12:18:26 -07001541 mGlobalKeyManager = new GlobalKeyManager(mContext);
1542
Joe Onoratoea495d42011-04-06 11:41:11 -07001543 // Controls rotation and the like.
1544 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001545
1546 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001547 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001548 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1549 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001550 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001551
1552 mWindowManagerInternal.registerAppTransitionListener(
1553 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001554 }
1555
Jeff Brownf71343d2013-05-31 17:59:11 -07001556 /**
1557 * Read values from config.xml that may be overridden depending on
1558 * the configuration of the device.
1559 * eg. Disable long press on home goes to recents on sw600dp.
1560 */
1561 private void readConfigurationDependentBehaviors() {
1562 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1563 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1564 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1565 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1566 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1567 }
1568
1569 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1570 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1571 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1572 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1573 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1574 }
1575 }
1576
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001577 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001578 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001579 // This method might be called before the policy has been fully initialized
1580 // or for other displays we don't care about.
1581 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1582 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001583 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001584 mDisplay = display;
1585
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001586 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001587 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001588 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001589 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001590 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001591 mLandscapeRotation = Surface.ROTATION_0;
1592 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001593 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001594 mPortraitRotation = Surface.ROTATION_90;
1595 mUpsideDownRotation = Surface.ROTATION_270;
1596 } else {
1597 mPortraitRotation = Surface.ROTATION_270;
1598 mUpsideDownRotation = Surface.ROTATION_90;
1599 }
1600 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001601 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001602 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001603 mPortraitRotation = Surface.ROTATION_0;
1604 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001605 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001606 mLandscapeRotation = Surface.ROTATION_270;
1607 mSeascapeRotation = Surface.ROTATION_90;
1608 } else {
1609 mLandscapeRotation = Surface.ROTATION_90;
1610 mSeascapeRotation = Surface.ROTATION_270;
1611 }
1612 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001613
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001614 mStatusBarHeight =
1615 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001616
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001617 // Height of the navigation bar when presented horizontally at bottom
1618 mNavigationBarHeightForRotation[mPortraitRotation] =
1619 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001620 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001621 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001622 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1623 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001624
1625 // Width of the navigation bar when presented vertically along one side
1626 mNavigationBarWidthForRotation[mPortraitRotation] =
1627 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1628 mNavigationBarWidthForRotation[mLandscapeRotation] =
1629 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001630 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001631
1632 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001633 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001634 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001635
Devin Kimd7b12b42014-05-05 14:34:58 -07001636 // Allow the navigation bar to move on non-square small devices (phones).
1637 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001638
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001639 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001640 // Allow a system property to override this. Used by the emulator.
1641 // See also hasNavigationBar().
1642 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1643 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001644 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001645 } else if ("0".equals(navBarOverride)) {
1646 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001647 }
1648
Jeff Brown27f1d672012-10-17 18:32:34 -07001649 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1650 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001651 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001652 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001653 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001654 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001655 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001656 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001657
Chong Zhangae6119ff2014-11-11 18:54:39 -08001658 // For demo purposes, allow the rotation of the remote display to be controlled.
1659 // By default, remote display locks rotation to landscape.
1660 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1661 mDemoRotation = mPortraitRotation;
1662 } else {
1663 mDemoRotation = mLandscapeRotation;
1664 }
1665 mDemoRotationLock = SystemProperties.getBoolean(
1666 "persist.demo.rotationlock", false);
1667
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001668 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1669 // http://developer.android.com/guide/practices/screens_support.html#range
1670 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1671 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1672 // For debug purposes the next line turns this feature off with:
1673 // $ adb shell setprop config.override_forced_orient true
1674 // $ adb shell wm size reset
1675 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1676 }
1677
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001678 /**
1679 * @return whether the navigation bar can be hidden, e.g. the device has a
1680 * navigation bar and touch exploration is not enabled
1681 */
1682 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001683 return mHasNavigationBar
1684 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001685 }
1686
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001687 @Override
1688 public boolean isDefaultOrientationForced() {
1689 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001690 }
1691
Dianne Hackbornc652de82013-02-15 16:32:56 -08001692 @Override
1693 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1694 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1695 mOverscanLeft = left;
1696 mOverscanTop = top;
1697 mOverscanRight = right;
1698 mOverscanBottom = bottom;
1699 }
1700 }
1701
Dianne Hackbornc777e072010-02-12 13:07:59 -08001702 public void updateSettings() {
1703 ContentResolver resolver = mContext.getContentResolver();
1704 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001705 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001706 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001707 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001708 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1709 UserHandle.USER_CURRENT);
1710 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001711 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001712 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1713 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001714
Jeff Browna20dda42014-05-27 20:57:24 -07001715 // Configure wake gesture.
1716 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1717 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1718 UserHandle.USER_CURRENT) != 0;
1719 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1720 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1721 updateWakeGestureListenerLp();
1722 }
1723
Jeff Brown207673cd2012-06-05 17:47:11 -07001724 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001725 int userRotation = Settings.System.getIntForUser(resolver,
1726 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1727 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001728 if (mUserRotation != userRotation) {
1729 mUserRotation = userRotation;
1730 updateRotation = true;
1731 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001732 int userRotationMode = Settings.System.getIntForUser(resolver,
1733 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001734 WindowManagerPolicy.USER_ROTATION_FREE :
1735 WindowManagerPolicy.USER_ROTATION_LOCKED;
1736 if (mUserRotationMode != userRotationMode) {
1737 mUserRotationMode = userRotationMode;
1738 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001739 updateOrientationListenerLp();
1740 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001741
Dianne Hackbornc777e072010-02-12 13:07:59 -08001742 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001743 int pointerLocation = Settings.System.getIntForUser(resolver,
1744 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001745 if (mPointerLocationMode != pointerLocation) {
1746 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001747 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1748 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001749 }
1750 }
1751 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001752 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1753 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1754 String imId = Settings.Secure.getStringForUser(resolver,
1755 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001756 boolean hasSoftInput = imId != null && imId.length() > 0;
1757 if (mHasSoftInput != hasSoftInput) {
1758 mHasSoftInput = hasSoftInput;
1759 updateRotation = true;
1760 }
John Spurlockf1a36642013-10-12 17:50:42 -04001761 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001762 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001763 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001764 }
1765 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001766 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001767 }
1768 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001769 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001770 }
Jeff Brown70825162012-03-28 17:27:48 -07001771 }
1772
Jeff Browna20dda42014-05-27 20:57:24 -07001773 private void updateWakeGestureListenerLp() {
1774 if (shouldEnableWakeGestureLp()) {
1775 mWakeGestureListener.requestWakeUpTrigger();
1776 } else {
1777 mWakeGestureListener.cancelWakeUpTrigger();
1778 }
1779 }
1780
1781 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001782 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001783 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1784 && mWakeGestureListener.isSupported();
1785 }
1786
Jeff Brown70825162012-03-28 17:27:48 -07001787 private void enablePointerLocation() {
1788 if (mPointerLocationView == null) {
1789 mPointerLocationView = new PointerLocationView(mContext);
1790 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001791 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1792 WindowManager.LayoutParams.MATCH_PARENT,
1793 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001794 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001795 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1796 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1797 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1798 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001799 if (ActivityManager.isHighEndGfx()) {
1800 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1801 lp.privateFlags |=
1802 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1803 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001804 lp.format = PixelFormat.TRANSLUCENT;
1805 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001806 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001807 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001808 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001809 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001810 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001811 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001812 }
Jeff Brown70825162012-03-28 17:27:48 -07001813
1814 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001815 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001816 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1817 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001818 wm.removeView(mPointerLocationView);
1819 mPointerLocationView = null;
1820 }
1821 }
1822
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001823 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001824 try {
1825 int rotation = mContext.getResources().getInteger(resID);
1826 switch (rotation) {
1827 case 0:
1828 return Surface.ROTATION_0;
1829 case 90:
1830 return Surface.ROTATION_90;
1831 case 180:
1832 return Surface.ROTATION_180;
1833 case 270:
1834 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001835 }
1836 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001837 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001838 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001839 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001840 }
1841
1842 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001843 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001844 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001845 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001846
1847 outAppOp[0] = AppOpsManager.OP_NONE;
1848
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001849 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1850 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1851 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1852 return WindowManagerGlobal.ADD_INVALID_TYPE;
1853 }
1854
1855 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1856 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001857 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001858 }
1859 String permission = null;
1860 switch (type) {
1861 case TYPE_TOAST:
1862 // XXX right now the app process has complete control over
1863 // this... should introduce a token to let the system
1864 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001865 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001866 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001867 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001868 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001869 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001870 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001871 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001872 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001873 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001874 break;
1875 case TYPE_PHONE:
1876 case TYPE_PRIORITY_PHONE:
1877 case TYPE_SYSTEM_ALERT:
1878 case TYPE_SYSTEM_ERROR:
1879 case TYPE_SYSTEM_OVERLAY:
1880 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001881 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001882 break;
1883 default:
1884 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1885 }
1886 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001887 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1888 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01001889 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01001890 if (callingUid == Process.SYSTEM_UID) {
1891 return WindowManagerGlobal.ADD_OKAY;
1892 }
1893
Billy Lau060275f2015-07-15 22:29:19 +01001894 // check if user has enabled this operation. SecurityException will be thrown if
1895 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01001896 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1897 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01001898 switch (mode) {
1899 case AppOpsManager.MODE_ALLOWED:
1900 case AppOpsManager.MODE_IGNORED:
1901 // although we return ADD_OKAY for MODE_IGNORED, the added window will
1902 // actually be hidden in WindowManagerService
1903 return WindowManagerGlobal.ADD_OKAY;
1904 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01001905 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01001906 default:
1907 // in the default mode, we will make a decision here based on
1908 // checkCallingPermission()
1909 if (mContext.checkCallingPermission(permission) !=
1910 PackageManager.PERMISSION_GRANTED) {
1911 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1912 } else {
1913 return WindowManagerGlobal.ADD_OKAY;
1914 }
Billy Laucbe540f2015-06-25 01:51:44 +01001915 }
Billy Laucbe540f2015-06-25 01:51:44 +01001916 }
1917
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001918 if (mContext.checkCallingOrSelfPermission(permission)
1919 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001920 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001921 }
1922 }
Jeff Brown98365d72012-08-19 20:30:52 -07001923 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001924 }
Craig Mautner88400d32012-09-30 12:35:45 -07001925
1926 @Override
1927 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1928
1929 // If this switch statement is modified, modify the comment in the declarations of
1930 // the type in {@link WindowManager.LayoutParams} as well.
1931 switch (attrs.type) {
1932 default:
1933 // These are the windows that by default are shown only to the user that created
1934 // them. If this needs to be overridden, set
1935 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1936 // {@link WindowManager.LayoutParams}. Note that permission
1937 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1938 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1939 return true;
1940 }
1941 break;
1942
1943 // These are the windows that by default are shown to all users. However, to
1944 // protect against spoofing, check permissions below.
1945 case TYPE_APPLICATION_STARTING:
1946 case TYPE_BOOT_PROGRESS:
1947 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001948 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001949 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001950 case TYPE_KEYGUARD_DIALOG:
1951 case TYPE_MAGNIFICATION_OVERLAY:
1952 case TYPE_NAVIGATION_BAR:
1953 case TYPE_NAVIGATION_BAR_PANEL:
1954 case TYPE_PHONE:
1955 case TYPE_POINTER:
1956 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001957 case TYPE_SEARCH_BAR:
1958 case TYPE_STATUS_BAR:
1959 case TYPE_STATUS_BAR_PANEL:
1960 case TYPE_STATUS_BAR_SUB_PANEL:
1961 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001962 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001963 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001964 break;
1965 }
1966
1967 // Check if third party app has set window to system window type.
1968 return mContext.checkCallingOrSelfPermission(
1969 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1970 != PackageManager.PERMISSION_GRANTED;
1971 }
1972
Craig Mautner967212c2013-04-13 21:10:58 -07001973 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001974 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1975 switch (attrs.type) {
1976 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001977 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001978 // These types of windows can't receive input events.
1979 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1980 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001981 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001982 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001983 case TYPE_STATUS_BAR:
1984
1985 // If the Keyguard is in a hidden state (occluded by another window), we force to
1986 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1987 // the keyguard as occluded wouldn't set these flags again.
1988 // See {@link #processKeyguardSetHiddenResultLw}.
1989 if (mKeyguardHidden) {
1990 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1991 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1992 }
1993 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001994 }
Adrian Roos38502112014-04-09 21:04:11 +02001995
1996 if (attrs.type != TYPE_STATUS_BAR) {
1997 // The status bar is the only window allowed to exhibit keyguard behavior.
1998 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1999 }
Adrian Roosea562512014-05-05 13:33:03 +02002000
2001 if (ActivityManager.isHighEndGfx()
2002 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02002003 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02002004 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
2005 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002006 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002007
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002008 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07002009 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002010 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002011
Michael Wright3818c922014-09-02 13:59:07 -07002012 private void readCameraLensCoverState() {
2013 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2014 }
2015
Jeff Browndaa37532012-05-01 15:54:03 -07002016 private boolean isHidden(int accessibilityMode) {
2017 switch (accessibilityMode) {
2018 case 1:
2019 return mLidState == LID_CLOSED;
2020 case 2:
2021 return mLidState == LID_OPEN;
2022 default:
2023 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002024 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002025 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002026
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002027 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002028 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002029 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2030 int navigationPresence) {
2031 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2032
Jeff Brownf71343d2013-05-31 17:59:11 -07002033 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002034 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002035 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002036
Jeff Browndaa37532012-05-01 15:54:03 -07002037 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2038 || (keyboardPresence == PRESENCE_INTERNAL
2039 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002040 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002041 if (!mHasSoftInput) {
2042 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2043 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002044 }
2045
Jeff Browndaa37532012-05-01 15:54:03 -07002046 if (config.navigation == Configuration.NAVIGATION_NONAV
2047 || (navigationPresence == PRESENCE_INTERNAL
2048 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002049 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002050 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002051 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002052
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002053 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002054 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002055 public int windowTypeToLayerLw(int type) {
2056 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002057 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002058 }
2059 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002060 case TYPE_PRIVATE_PRESENTATION:
2061 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002062 case TYPE_WALLPAPER:
2063 // wallpaper is at the bottom, though the window manager may move it.
2064 return 2;
2065 case TYPE_PHONE:
2066 return 3;
2067 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002068 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002069 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002070 case TYPE_VOICE_INTERACTION:
2071 // voice interaction layer is almost immediately above apps.
2072 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002073 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002074 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002075 case TYPE_SYSTEM_DIALOG:
2076 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002077 case TYPE_TOAST:
2078 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002079 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002080 case TYPE_PRIORITY_PHONE:
2081 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002082 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002083 case TYPE_DREAM:
2084 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002085 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002086 case TYPE_SYSTEM_ALERT:
2087 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002088 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002089 case TYPE_INPUT_METHOD:
2090 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002091 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002092 case TYPE_INPUT_METHOD_DIALOG:
2093 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002094 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002095 case TYPE_KEYGUARD_SCRIM:
2096 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002097 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07002098 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002099 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07002100 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002101 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07002102 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002103 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002104 case TYPE_KEYGUARD_DIALOG:
2105 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002106 case TYPE_VOLUME_OVERLAY:
2107 // the on-screen volume indicator and controller shown when the user
2108 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002109 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002110 case TYPE_SYSTEM_OVERLAY:
2111 // the on-screen volume indicator and controller shown when the user
2112 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002113 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002114 case TYPE_NAVIGATION_BAR:
2115 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002116 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002117 case TYPE_NAVIGATION_BAR_PANEL:
2118 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002119 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002120 case TYPE_SYSTEM_ERROR:
2121 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002122 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002123 case TYPE_MAGNIFICATION_OVERLAY:
2124 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002125 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002126 case TYPE_DISPLAY_OVERLAY:
2127 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002128 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002129 case TYPE_DRAG:
2130 // the drag layer: input for drag-and-drop is associated with this window,
2131 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002132 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002133 case TYPE_ACCESSIBILITY_OVERLAY:
2134 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002135 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002136 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002137 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002138 case TYPE_BOOT_PROGRESS:
2139 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002140 case TYPE_POINTER:
2141 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002142 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002143 }
2144 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002145 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002146 }
2147
2148 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002149 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002150 public int subWindowTypeToLayerLw(int type) {
2151 switch (type) {
2152 case TYPE_APPLICATION_PANEL:
2153 case TYPE_APPLICATION_ATTACHED_DIALOG:
2154 return APPLICATION_PANEL_SUBLAYER;
2155 case TYPE_APPLICATION_MEDIA:
2156 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002157 case TYPE_APPLICATION_MEDIA_OVERLAY:
2158 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002159 case TYPE_APPLICATION_SUB_PANEL:
2160 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002161 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2162 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002163 }
2164 Log.e(TAG, "Unknown sub-window type: " + type);
2165 return 0;
2166 }
2167
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002168 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002169 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002170 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002171 }
2172
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002173 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002174 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002175 if (mHasNavigationBar) {
2176 // For a basic navigation bar, when we are in landscape mode we place
2177 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002178 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2179 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002180 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002181 }
2182 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002183 }
2184
Jose Lima9546b202014-07-02 17:21:51 -07002185 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002186 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002187 if (mHasNavigationBar) {
2188 // For a basic navigation bar, when we are in portrait mode we place
2189 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002190 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2191 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002192 }
2193 }
2194 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002195 }
2196
Jose Lima9546b202014-07-02 17:21:51 -07002197 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002198 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2199 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002200 }
2201
Jose Lima9546b202014-07-02 17:21:51 -07002202 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002203 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002204 // There is a separate status bar at the top of the display. We don't count that as part
2205 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002206 // we do want to exclude it since applications can't generally use that part
2207 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002208 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002209 }
2210
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002211 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002212 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2213 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002214 (isKeyguardHostWindow(attrs) &&
2215 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002216 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002217 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002218
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002219 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002220 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2221 return attrs.type == TYPE_STATUS_BAR;
2222 }
2223
2224 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002225 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002226 switch (attrs.type) {
2227 case TYPE_STATUS_BAR:
2228 case TYPE_NAVIGATION_BAR:
2229 case TYPE_WALLPAPER:
2230 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002231 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002232 return false;
2233 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002234 // Hide only windows below the keyguard host window.
2235 return windowTypeToLayerLw(win.getBaseType())
2236 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002237 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002238 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002239
Craig Mautner7d7808f2014-09-11 18:02:38 -07002240 @Override
2241 public WindowState getWinShowWhenLockedLw() {
2242 return mWinShowWhenLocked;
2243 }
2244
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002245 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002246 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002247 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2248 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002249 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002250 if (!SHOW_STARTING_ANIMATIONS) {
2251 return null;
2252 }
2253 if (packageName == null) {
2254 return null;
2255 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002256
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002257 WindowManager wm = null;
2258 View view = null;
2259
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002260 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002261 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002262 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2263 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2264 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002265 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002266 try {
2267 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002268 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002269 } catch (PackageManager.NameNotFoundException e) {
2270 // Ignore
2271 }
2272 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002273
Jorim Jaggia16cc152015-06-01 16:55:05 -07002274 PhoneWindow win = new PhoneWindow(context);
2275 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002276 final TypedArray ta = win.getWindowStyle();
2277 if (ta.getBoolean(
2278 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2279 || ta.getBoolean(
2280 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002281 return null;
2282 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002283
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002284 Resources r = context.getResources();
2285 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002286
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002287 win.setType(
2288 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002289
2290 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2291 // Assumes it's safe to show starting windows of launched apps while
2292 // the keyguard is being hidden. This is okay because starting windows never show
2293 // secret information.
2294 if (mKeyguardHidden) {
2295 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2296 }
2297 }
2298
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002299 // Force the window flags: this is a fake window, so it is not really
2300 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2301 // flag because we do know that the next window will take input
2302 // focus, so we want to get the IME window up on top of us right away.
2303 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002304 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002305 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2306 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2307 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002308 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002309 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2310 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2311 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002312
Adam Powell04fe6eb2013-05-31 14:39:48 -07002313 win.setDefaultIcon(icon);
2314 win.setDefaultLogo(logo);
2315
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002316 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002317 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002318
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002319 final WindowManager.LayoutParams params = win.getAttributes();
2320 params.token = appToken;
2321 params.packageName = packageName;
2322 params.windowAnimations = win.getWindowStyle().getResourceId(
2323 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002324 params.privateFlags |=
2325 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002326 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002327
2328 if (!compatInfo.supportsScreen()) {
2329 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2330 }
2331
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002332 params.setTitle("Starting " + packageName);
2333
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002334 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2335 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002336
2337 if (win.isFloating()) {
2338 // Whoops, there is no way to display an animation/preview
2339 // of such a thing! After all that work... let's skip it.
2340 // (Note that we must do this here because it is in
2341 // getDecorView() where the theme is evaluated... maybe
2342 // we should peek the floating attribute from the theme
2343 // earlier.)
2344 return null;
2345 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002346
Craig Mautner6fbda632012-07-03 09:26:39 -07002347 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002348 TAG, "Adding starting window for " + packageName
2349 + " / " + appToken + ": "
2350 + (view.getParent() != null ? view : null));
2351
2352 wm.addView(view, params);
2353
2354 // Only return the view if it was successfully added to the
2355 // window manager... which we can tell by it having a parent.
2356 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002357 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002358 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002359 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2360 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002361 } catch (RuntimeException e) {
2362 // don't crash if something else bad happens, for example a
2363 // failure loading resources because we are loading from an app
2364 // on external storage that has been unmounted.
2365 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002366 } finally {
2367 if (view != null && view.getParent() == null) {
2368 Log.w(TAG, "view not successfully added to wm, removing view");
2369 wm.removeViewImmediate(view);
2370 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002371 }
2372
2373 return null;
2374 }
2375
2376 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002377 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002378 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002379 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2380 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002381
2382 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002383 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002384 wm.removeView(window);
2385 }
2386 }
2387
2388 /**
2389 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002390 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002391 * Currently enforces that three window types are singletons:
2392 * <ul>
2393 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002394 * <li>KEYGUARD_TYPE</li>
2395 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002396 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002397 * @param win The window to be added
2398 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002399 *
Jeff Brown98365d72012-08-19 20:30:52 -07002400 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2401 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002402 */
Jose Lima9546b202014-07-02 17:21:51 -07002403 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002404 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2405 switch (attrs.type) {
2406 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002407 mContext.enforceCallingOrSelfPermission(
2408 android.Manifest.permission.STATUS_BAR_SERVICE,
2409 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002410 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002411 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002412 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002413 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002414 }
2415 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002416 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002417 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002418 case TYPE_NAVIGATION_BAR:
2419 mContext.enforceCallingOrSelfPermission(
2420 android.Manifest.permission.STATUS_BAR_SERVICE,
2421 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002422 if (mNavigationBar != null) {
2423 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002424 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002425 }
2426 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002427 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002428 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002429 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002430 break;
Jim Millere898ac52012-04-06 17:10:57 -07002431 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002432 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002433 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002434 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002435 mContext.enforceCallingOrSelfPermission(
2436 android.Manifest.permission.STATUS_BAR_SERVICE,
2437 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002438 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002439 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002440 if (mKeyguardScrim != null) {
2441 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2442 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002443 mKeyguardScrim = win;
2444 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002445 }
Jeff Brown98365d72012-08-19 20:30:52 -07002446 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002447 }
2448
2449 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002450 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002451 public void removeWindowLw(WindowState win) {
2452 if (mStatusBar == win) {
2453 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002454 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002455 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002456 } else if (mKeyguardScrim == win) {
2457 Log.v(TAG, "Removing keyguard scrim");
2458 mKeyguardScrim = null;
2459 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002460 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002461 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002462 }
2463 }
2464
2465 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002466
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002467 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002468 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002469 public int selectAnimationLw(WindowState win, int transit) {
2470 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2471 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002472 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002473 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002474 if (transit == TRANSIT_EXIT
2475 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002476 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002477 } else if (transit == TRANSIT_ENTER
2478 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002479 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002480 }
2481 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002482 if (win.getAttrs().windowAnimations != 0) {
2483 return 0;
2484 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002485 // This can be on either the bottom or the right.
2486 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002487 if (transit == TRANSIT_EXIT
2488 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002489 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002490 } else if (transit == TRANSIT_ENTER
2491 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002492 return R.anim.dock_bottom_enter;
2493 }
2494 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002495 if (transit == TRANSIT_EXIT
2496 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002497 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002498 } else if (transit == TRANSIT_ENTER
2499 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002500 return R.anim.dock_right_enter;
2501 }
2502 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002503 }
2504
2505 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002506 if (win.hasAppShownWindows()) {
2507 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2508 return com.android.internal.R.anim.app_starting_exit;
2509 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002510 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002511 && transit == TRANSIT_ENTER) {
2512 // Special case: we are animating in a dream, while the keyguard
2513 // is shown. We don't want an animation on the dream, because
2514 // we need it shown immediately with the keyguard animating away
2515 // to reveal it.
2516 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002517 }
2518
2519 return 0;
2520 }
2521
Craig Mautner3c174372013-02-21 17:54:37 -08002522 @Override
2523 public void selectRotationAnimationLw(int anim[]) {
2524 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2525 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2526 + (mTopFullscreenOpaqueWindowState == null ?
2527 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2528 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2529 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2530 case ROTATION_ANIMATION_CROSSFADE:
2531 anim[0] = R.anim.rotation_animation_xfade_exit;
2532 anim[1] = R.anim.rotation_animation_enter;
2533 break;
2534 case ROTATION_ANIMATION_JUMPCUT:
2535 anim[0] = R.anim.rotation_animation_jump_exit;
2536 anim[1] = R.anim.rotation_animation_enter;
2537 break;
2538 case ROTATION_ANIMATION_ROTATE:
2539 default:
2540 anim[0] = anim[1] = 0;
2541 break;
2542 }
2543 } else {
2544 anim[0] = anim[1] = 0;
2545 }
2546 }
2547
2548 @Override
2549 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2550 boolean forceDefault) {
2551 switch (exitAnimId) {
2552 case R.anim.rotation_animation_xfade_exit:
2553 case R.anim.rotation_animation_jump_exit:
2554 // These are the only cases that matter.
2555 if (forceDefault) {
2556 return false;
2557 }
2558 int anim[] = new int[2];
2559 selectRotationAnimationLw(anim);
2560 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2561 default:
2562 return true;
2563 }
2564 }
2565
2566 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002567 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2568 boolean goingToNotificationShade) {
2569 if (goingToNotificationShade) {
2570 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002571 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002572
2573 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2574 R.anim.lock_screen_behind_enter_wallpaper :
2575 R.anim.lock_screen_behind_enter);
2576
2577 // TODO: Use XML interpolators when we have log interpolators available in XML.
2578 final List<Animation> animations = set.getAnimations();
2579 for (int i = animations.size() - 1; i >= 0; --i) {
2580 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2581 }
2582
2583 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002584 }
2585
2586
2587 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002588 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2589 if (goingToNotificationShade) {
2590 return null;
2591 } else {
2592 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2593 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002594 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002595
2596 private static void awakenDreams() {
2597 IDreamManager dreamManager = getDreamManager();
2598 if (dreamManager != null) {
2599 try {
2600 dreamManager.awaken();
2601 } catch (RemoteException e) {
2602 // fine, stay asleep then
2603 }
2604 }
2605 }
2606
2607 static IDreamManager getDreamManager() {
2608 return IDreamManager.Stub.asInterface(
2609 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2610 }
2611
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002612 TelecomManager getTelecommService() {
2613 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002614 }
2615
Jeff Brown4d396052010-10-29 21:50:21 -07002616 static IAudioService getAudioService() {
2617 IAudioService audioService = IAudioService.Stub.asInterface(
2618 ServiceManager.checkService(Context.AUDIO_SERVICE));
2619 if (audioService == null) {
2620 Log.w(TAG, "Unable to find IAudioService interface.");
2621 }
2622 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002623 }
2624
2625 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002626 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002627 }
2628
2629 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2630 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2631 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2632 };
2633
2634 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002635 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002636 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002637 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002638 final int keyCode = event.getKeyCode();
2639 final int repeatCount = event.getRepeatCount();
2640 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002641 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002642 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2643 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002644
Jeff Brown40013652012-05-16 21:22:36 -07002645 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002646 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002647 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2648 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002649 }
2650
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002651 // If we think we might have a volume down & power key chord on the way
2652 // but we're not sure, then tell the dispatcher to wait a little while and
2653 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002654 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002655 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002656 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002657 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2658 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002659 if (now < timeoutTime) {
2660 return timeoutTime - now;
2661 }
2662 }
2663 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002664 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002665 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002666 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002667 }
2668 return -1;
2669 }
2670 }
2671
Michael Wright6a62e552014-06-03 19:19:48 -07002672 // Cancel any pending meta actions if we see any other keys being pressed between the down
2673 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002674 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002675 mPendingMetaAction = false;
2676 }
2677
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002678 // First we always handle the home key here, so applications
2679 // can never break it, although if keyguard is on, we do let
2680 // it handle it, because that gives us the correct 5 second
2681 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002682 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002683
Jeff Brown49ed71d2010-12-06 17:13:33 -08002684 // If we have released the home key, and didn't do anything else
2685 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002686 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002687 cancelPreloadRecentApps();
2688
Jeff Brown49ed71d2010-12-06 17:13:33 -08002689 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002690 if (mHomeConsumed) {
2691 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002692 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002693 }
Jeff Browncaca8812013-05-09 13:34:33 -07002694
2695 if (canceled) {
2696 Log.i(TAG, "Ignoring HOME; event canceled.");
2697 return -1;
2698 }
2699
Yorke Lee4f803242014-12-15 23:22:06 +00002700 // If an incoming call is ringing, HOME is totally disabled.
2701 // (The user is already on the InCallUI at this point,
2702 // and his ONLY options are to answer or reject the call.)
2703 TelecomManager telecomManager = getTelecommService();
2704 if (telecomManager != null && telecomManager.isRinging()) {
2705 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2706 return -1;
2707 }
2708
Jeff Browncaca8812013-05-09 13:34:33 -07002709 // Delay handling home if a double-tap is possible.
2710 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2711 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2712 mHomeDoubleTapPending = true;
2713 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2714 ViewConfiguration.getDoubleTapTimeout());
2715 return -1;
2716 }
2717
Jeff Brown13f00f02014-10-31 14:45:50 -07002718 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002719 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002720 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002721
2722 // If a system window has focus, then it doesn't make sense
2723 // right now to interact with applications.
2724 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2725 if (attrs != null) {
2726 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002727 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2728 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2729 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002730 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002731 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002732 }
2733 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2734 for (int i=0; i<typeCount; i++) {
2735 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2736 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002737 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002738 }
2739 }
2740 }
Jeff Browncaca8812013-05-09 13:34:33 -07002741
2742 // Remember that home is pressed and handle special actions.
2743 if (repeatCount == 0) {
2744 mHomePressed = true;
2745 if (mHomeDoubleTapPending) {
2746 mHomeDoubleTapPending = false;
2747 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2748 handleDoubleTapOnHome();
2749 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2750 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2751 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002752 }
Jeff Browncaca8812013-05-09 13:34:33 -07002753 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2754 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002755 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002756 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002757 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002758 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002759 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002760 // Hijack modified menu keys for debugging features
2761 final int chordBug = KeyEvent.META_SHIFT_ON;
2762
2763 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002764 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002765 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002766 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2767 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002768 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002769 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002770 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002771 Intent service = new Intent();
2772 service.setClassName(mContext, "com.android.server.LoadAverageService");
2773 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002774 boolean shown = Settings.Global.getInt(
2775 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002776 if (!shown) {
2777 mContext.startService(service);
2778 } else {
2779 mContext.stopService(service);
2780 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002781 Settings.Global.putInt(
2782 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002783 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002784 }
2785 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002786 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002787 if (down) {
2788 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002789 mSearchKeyShortcutPending = true;
2790 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002791 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002792 } else {
2793 mSearchKeyShortcutPending = false;
2794 if (mConsumeSearchKeyUp) {
2795 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002796 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002797 }
2798 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002799 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002800 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002801 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002802 if (down && repeatCount == 0) {
2803 preloadRecentApps();
2804 } else if (!down) {
2805 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002806 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002807 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002808 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002809 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2810 if (down) {
2811 IStatusBarService service = getStatusBarService();
2812 if (service != null) {
2813 try {
2814 service.expandNotificationsPanel();
2815 } catch (RemoteException e) {
2816 // do nothing.
2817 }
2818 }
2819 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002820 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2821 if (down) {
2822 if (repeatCount == 0) {
2823 mAssistKeyLongPressed = false;
2824 } else if (repeatCount == 1) {
2825 mAssistKeyLongPressed = true;
2826 if (!keyguardOn) {
2827 launchAssistLongPressAction();
2828 }
2829 }
2830 } else {
2831 if (mAssistKeyLongPressed) {
2832 mAssistKeyLongPressed = false;
2833 } else {
2834 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002835 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002836 }
2837 }
2838 }
2839 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002840 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2841 if (!down) {
2842 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002843 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002844 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2845 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002846 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2847 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2848 if (dic != null) {
2849 try {
2850 dic.exitIdle("voice-search");
2851 } catch (RemoteException e) {
2852 }
2853 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002854 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002855 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002856 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002857 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002858 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002859 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2860 if (down && repeatCount == 0) {
2861 mHandler.post(mScreenshotRunnable);
2862 }
2863 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002864 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2865 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2866 if (down) {
2867 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2868
2869 // Disable autobrightness if it's on
2870 int auto = Settings.System.getIntForUser(
2871 mContext.getContentResolver(),
2872 Settings.System.SCREEN_BRIGHTNESS_MODE,
2873 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2874 UserHandle.USER_CURRENT_OR_SELF);
2875 if (auto != 0) {
2876 Settings.System.putIntForUser(mContext.getContentResolver(),
2877 Settings.System.SCREEN_BRIGHTNESS_MODE,
2878 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2879 UserHandle.USER_CURRENT_OR_SELF);
2880 }
2881
2882 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2883 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2884 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2885 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2886 Settings.System.SCREEN_BRIGHTNESS,
2887 mPowerManager.getDefaultScreenBrightnessSetting(),
2888 UserHandle.USER_CURRENT_OR_SELF);
2889 brightness += step;
2890 // Make sure we don't go beyond the limits.
2891 brightness = Math.min(max, brightness);
2892 brightness = Math.max(min, brightness);
2893
2894 Settings.System.putIntForUser(mContext.getContentResolver(),
2895 Settings.System.SCREEN_BRIGHTNESS, brightness,
2896 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002897 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002898 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002899 }
2900 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002901 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002902 if (down) {
2903 mPendingMetaAction = true;
2904 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002905 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002906 }
2907 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002908 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002909
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002910 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002911 // Any printing key that is chorded with Search should be consumed
2912 // even if no shortcut was invoked. This prevents text from being
2913 // inadvertently inserted when using a keyboard that has built-in macro
2914 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002915 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002916 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2917 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002918 mConsumeSearchKeyUp = true;
2919 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002920 if (down && repeatCount == 0 && !keyguardOn) {
2921 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2922 if (shortcutIntent != null) {
2923 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002924 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002925 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002926 } catch (ActivityNotFoundException ex) {
2927 Slog.w(TAG, "Dropping shortcut key combination because "
2928 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002929 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002930 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002931 } else {
2932 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002933 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002934 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002935 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002936 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002937 }
2938 }
2939
Jeff Brown68b909d2011-12-07 16:36:01 -08002940 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002941 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002942 && (metaState & KeyEvent.META_META_ON) != 0) {
2943 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002944 if (kcm.isPrintingKey(keyCode)) {
2945 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2946 metaState & ~(KeyEvent.META_META_ON
2947 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2948 if (shortcutIntent != null) {
2949 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2950 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002951 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002952 } catch (ActivityNotFoundException ex) {
2953 Slog.w(TAG, "Dropping shortcut key combination because "
2954 + "the activity to which it is registered was not found: "
2955 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2956 }
2957 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002958 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002959 }
2960 }
2961
Jeff Brown6651a632011-11-28 12:59:11 -08002962 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002963 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002964 String category = sApplicationLaunchKeyCategories.get(keyCode);
2965 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002966 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002967 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2968 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002969 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002970 } catch (ActivityNotFoundException ex) {
2971 Slog.w(TAG, "Dropping application launch key because "
2972 + "the activity to which it is registered was not found: "
2973 + "keyCode=" + keyCode + ", category=" + category, ex);
2974 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002975 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002976 }
2977 }
2978
Michael Wright61c46752014-08-21 16:57:33 -07002979 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002980 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002981 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002982 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002983 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002984 mRecentAppsHeldModifiers = shiftlessModifiers;
2985 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002986 return -1;
2987 }
2988 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002989 } else if (!down && mRecentAppsHeldModifiers != 0
2990 && (metaState & mRecentAppsHeldModifiers) == 0) {
2991 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002992 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002993 }
2994
Jeff Browncf39bdf2012-05-18 14:41:19 -07002995 // Handle keyboard language switching.
2996 if (down && repeatCount == 0
2997 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2998 || (keyCode == KeyEvent.KEYCODE_SPACE
2999 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
3000 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
3001 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
3002 return -1;
3003 }
3004 if (mLanguageSwitchKeyPressed && !down
3005 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3006 || keyCode == KeyEvent.KEYCODE_SPACE)) {
3007 mLanguageSwitchKeyPressed = false;
3008 return -1;
3009 }
3010
Jeff Brown13f00f02014-10-31 14:45:50 -07003011 if (isValidGlobalKey(keyCode)
3012 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003013 return -1;
3014 }
3015
Michael Wright6a62e552014-06-03 19:19:48 -07003016 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003017 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003018 return -1;
3019 }
3020
Jeff Brown68b909d2011-12-07 16:36:01 -08003021 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003022 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003023 }
3024
Jeff Brown3915bb82010-11-05 15:02:16 -07003025 /** {@inheritDoc} */
3026 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003027 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003028 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003029 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003030 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3031 + ", flags=" + event.getFlags()
3032 + ", keyCode=" + event.getKeyCode()
3033 + ", scanCode=" + event.getScanCode()
3034 + ", metaState=" + event.getMetaState()
3035 + ", repeatCount=" + event.getRepeatCount()
3036 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003037 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003038
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003039 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003040 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3041 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003042 final int keyCode = event.getKeyCode();
3043 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003044 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3045 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003046
Jeff Brown54875002011-04-06 15:33:01 -07003047 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003048 final FallbackAction fallbackAction;
3049 if (initialDown) {
3050 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3051 } else {
3052 fallbackAction = mFallbackActions.get(keyCode);
3053 }
3054
3055 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003056 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003057 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3058 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003059 }
3060
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003061 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3062 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003063 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003064 event.getAction(), fallbackAction.keyCode,
3065 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003066 event.getDeviceId(), event.getScanCode(),
3067 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003068
3069 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3070 fallbackEvent.recycle();
3071 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003072 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003073
3074 if (initialDown) {
3075 mFallbackActions.put(keyCode, fallbackAction);
3076 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3077 mFallbackActions.remove(keyCode);
3078 fallbackAction.recycle();
3079 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003080 }
3081 }
3082
Jeff Brown40013652012-05-16 21:22:36 -07003083 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003084 if (fallbackEvent == null) {
3085 Slog.d(TAG, "No fallback.");
3086 } else {
3087 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3088 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003089 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003090 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003091 }
3092
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003093 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003094 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003095 if ((actions & ACTION_PASS_TO_USER) != 0) {
3096 long delayMillis = interceptKeyBeforeDispatching(
3097 win, fallbackEvent, policyFlags);
3098 if (delayMillis == 0) {
3099 return true;
3100 }
3101 }
3102 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003103 }
3104
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003105 private void launchAssistLongPressAction() {
3106 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3107 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3108
3109 // launch the search activity
3110 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3111 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3112 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003113 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003114 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003115 SearchManager searchManager = getSearchManager();
3116 if (searchManager != null) {
3117 searchManager.stopSearch();
3118 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003119 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003120 } catch (ActivityNotFoundException e) {
3121 Slog.w(TAG, "No activity to handle assist long press action.", e);
3122 }
3123 }
3124
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003125 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003126 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003127 if (!isUserSetupComplete()) {
3128 // Disable opening assist window during setup
3129 return;
3130 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003131 Bundle args = null;
3132 if (deviceId > Integer.MIN_VALUE) {
3133 args = new Bundle();
3134 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003135 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003136 if ((mContext.getResources().getConfiguration().uiMode
3137 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3138 // On TV, use legacy handling until assistants are implemented in the proper way.
3139 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3140 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3141 } else {
3142 try {
3143 if (hint != null) {
3144 if (args == null) {
3145 args = new Bundle();
3146 }
3147 args.putBoolean(hint, true);
3148 }
3149 IStatusBarService statusbar = getStatusBarService();
3150 if (statusbar != null) {
3151 statusbar.startAssist(args);
3152 }
3153 } catch (RemoteException e) {
3154 Slog.e(TAG, "RemoteException when starting assist", e);
3155 // re-acquire status bar service next time it is needed.
3156 mStatusBarService = null;
3157 }
3158 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003159 }
3160
Bart Sears8b1c27c2015-03-18 23:51:02 +00003161 private void startActivityAsUser(Intent intent, UserHandle handle) {
3162 if (isUserSetupComplete()) {
3163 mContext.startActivityAsUser(intent, handle);
3164 } else {
3165 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3166 }
3167 }
3168
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003169 private SearchManager getSearchManager() {
3170 if (mSearchManager == null) {
3171 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3172 }
3173 return mSearchManager;
3174 }
3175
Jeff Browncaca8812013-05-09 13:34:33 -07003176 private void preloadRecentApps() {
3177 mPreloadedRecentApps = true;
3178 try {
3179 IStatusBarService statusbar = getStatusBarService();
3180 if (statusbar != null) {
3181 statusbar.preloadRecentApps();
3182 }
3183 } catch (RemoteException e) {
3184 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3185 // re-acquire status bar service next time it is needed.
3186 mStatusBarService = null;
3187 }
3188 }
3189
3190 private void cancelPreloadRecentApps() {
3191 if (mPreloadedRecentApps) {
3192 mPreloadedRecentApps = false;
3193 try {
3194 IStatusBarService statusbar = getStatusBarService();
3195 if (statusbar != null) {
3196 statusbar.cancelPreloadRecentApps();
3197 }
3198 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003199 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003200 // re-acquire status bar service next time it is needed.
3201 mStatusBarService = null;
3202 }
3203 }
3204 }
3205
3206 private void toggleRecentApps() {
3207 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003208 try {
3209 IStatusBarService statusbar = getStatusBarService();
3210 if (statusbar != null) {
3211 statusbar.toggleRecentApps();
3212 }
3213 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003214 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3215 // re-acquire status bar service next time it is needed.
3216 mStatusBarService = null;
3217 }
3218 }
3219
Craig Mautner84984fa2014-06-19 11:19:20 -07003220 @Override
3221 public void showRecentApps() {
3222 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3223 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3224 }
3225
Winson Chung1e8d71b2014-05-16 17:05:22 -07003226 private void showRecentApps(boolean triggeredFromAltTab) {
3227 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3228 try {
3229 IStatusBarService statusbar = getStatusBarService();
3230 if (statusbar != null) {
3231 statusbar.showRecentApps(triggeredFromAltTab);
3232 }
3233 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003234 Slog.e(TAG, "RemoteException when showing recent apps", e);
3235 // re-acquire status bar service next time it is needed.
3236 mStatusBarService = null;
3237 }
3238 }
3239
Winson Chungcdcd4872014-08-05 18:00:13 -07003240 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003241 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3242 try {
3243 IStatusBarService statusbar = getStatusBarService();
3244 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003245 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003246 }
3247 } catch (RemoteException e) {
3248 Slog.e(TAG, "RemoteException when closing recent apps", e);
3249 // re-acquire status bar service next time it is needed.
3250 mStatusBarService = null;
3251 }
3252 }
3253
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003254 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003255 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003256 }
3257
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003258 /**
3259 * A home key -> launch home action was detected. Take the appropriate action
3260 * given the situation with the keyguard.
3261 */
Bryce Lee662ed802015-04-10 20:11:39 +00003262 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3263 if (respectKeyguard) {
3264 if (isKeyguardShowingAndNotOccluded()) {
3265 // don't launch home if keyguard showing
3266 return;
3267 }
3268
3269 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3270 // when in keyguard restricted mode, must first verify unlock
3271 // before launching home
3272 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3273 @Override
3274 public void onKeyguardExitResult(boolean success) {
3275 if (success) {
3276 try {
3277 ActivityManagerNative.getDefault().stopAppSwitches();
3278 } catch (RemoteException e) {
3279 }
3280 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3281 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003282 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003283 }
Bryce Lee662ed802015-04-10 20:11:39 +00003284 });
3285 return;
3286 }
3287 }
3288
3289 // no keyguard stuff to worry about, just launch home!
3290 try {
3291 ActivityManagerNative.getDefault().stopAppSwitches();
3292 } catch (RemoteException e) {
3293 }
3294 if (mRecentsVisible) {
3295 // Hide Recents and notify it to launch Home
3296 if (awakenFromDreams) {
3297 awakenDreams();
3298 }
3299 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3300 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003301 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003302 // Otherwise, just launch Home
3303 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3304 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003305 }
3306 }
3307
John Spurlock04db1762013-05-13 12:46:41 -04003308 private final Runnable mClearHideNavigationFlag = new Runnable() {
3309 @Override
3310 public void run() {
3311 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3312 // Clear flags.
3313 mForceClearedSystemUiFlags &=
3314 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3315 }
3316 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003317 }
3318 };
3319
3320 /**
3321 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3322 * to determine when the nav bar should be shown and prevent applications from
3323 * receiving those touches.
3324 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003325 final class HideNavInputEventReceiver extends InputEventReceiver {
3326 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3327 super(inputChannel, looper);
3328 }
3329
Dianne Hackborndf89e652011-10-06 22:35:11 -07003330 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003331 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003332 boolean handled = false;
3333 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003334 if (event instanceof MotionEvent
3335 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3336 final MotionEvent motionEvent = (MotionEvent)event;
3337 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003338 // When the user taps down, we re-show the nav bar.
3339 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003340 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003341 // Any user activity always causes us to show the
3342 // navigation controls, if they had been hidden.
3343 // We also clear the low profile and only content
3344 // flags so that tapping on the screen will atomically
3345 // restore all currently hidden screen decorations.
3346 int newVal = mResettingSystemUiFlags |
3347 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3348 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3349 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003350 if (mResettingSystemUiFlags != newVal) {
3351 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003352 changed = true;
3353 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003354 // We don't allow the system's nav bar to be hidden
3355 // again for 1 second, to prevent applications from
3356 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003357 newVal = mForceClearedSystemUiFlags |
3358 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003359 if (mForceClearedSystemUiFlags != newVal) {
3360 mForceClearedSystemUiFlags = newVal;
3361 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003362 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003363 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003364 }
3365 if (changed) {
3366 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3367 }
3368 }
3369 }
3370 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003371 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003372 }
3373 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003374 }
3375 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3376 new InputEventReceiver.Factory() {
3377 @Override
3378 public InputEventReceiver createInputEventReceiver(
3379 InputChannel inputChannel, Looper looper) {
3380 return new HideNavInputEventReceiver(inputChannel, looper);
3381 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003382 };
3383
3384 @Override
3385 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003386 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3387 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003388 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003389
Dianne Hackborndf89e652011-10-06 22:35:11 -07003390 // Reset any bits in mForceClearingStatusBarVisibility that
3391 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003392 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003393 // Clear any bits in the new visibility that are currently being
3394 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003395 return visibility & ~mResettingSystemUiFlags
3396 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003397 }
3398
Craig Mautner69b08182012-09-05 13:07:13 -07003399 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003400 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3401 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003402 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003403 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3404 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003405
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003406 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3407 if (useOutsets) {
3408 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3409 if (outset > 0) {
3410 if (displayRotation == Surface.ROTATION_0) {
3411 outOutsets.bottom += outset;
3412 } else if (displayRotation == Surface.ROTATION_90) {
3413 outOutsets.right += outset;
3414 } else if (displayRotation == Surface.ROTATION_180) {
3415 outOutsets.top += outset;
3416 } else if (displayRotation == Surface.ROTATION_270) {
3417 outOutsets.left += outset;
3418 }
3419 }
3420 }
3421
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003422 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003423 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003424 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003425 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003426 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003427 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3428 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3429 } else {
3430 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3431 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3432 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003433 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3434 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003435 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003436 availRight - mStableFullscreenRight,
3437 availBottom - mStableFullscreenBottom);
3438 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003439 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003440 availRight - mStableRight, availBottom - mStableBottom);
3441 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003442 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003443 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003444 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003445 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003446 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003447 availRight - mCurRight, availBottom - mCurBottom);
3448 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003449 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003450 availRight - mCurRight, availBottom - mCurBottom);
3451 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003452
3453 outStableInsets.set(mStableLeft, mStableTop,
3454 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003455 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003456 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003457 outContentInsets.setEmpty();
3458 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003459 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003460
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003461 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3462 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3463 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3464 }
3465
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003466 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003467 @Override
3468 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3469 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003470 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003471 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3472 if (isDefaultDisplay) {
3473 switch (displayRotation) {
3474 case Surface.ROTATION_90:
3475 overscanLeft = mOverscanTop;
3476 overscanTop = mOverscanRight;
3477 overscanRight = mOverscanBottom;
3478 overscanBottom = mOverscanLeft;
3479 break;
3480 case Surface.ROTATION_180:
3481 overscanLeft = mOverscanRight;
3482 overscanTop = mOverscanBottom;
3483 overscanRight = mOverscanLeft;
3484 overscanBottom = mOverscanTop;
3485 break;
3486 case Surface.ROTATION_270:
3487 overscanLeft = mOverscanBottom;
3488 overscanTop = mOverscanLeft;
3489 overscanRight = mOverscanTop;
3490 overscanBottom = mOverscanRight;
3491 break;
3492 default:
3493 overscanLeft = mOverscanLeft;
3494 overscanTop = mOverscanTop;
3495 overscanRight = mOverscanRight;
3496 overscanBottom = mOverscanBottom;
3497 break;
3498 }
3499 } else {
3500 overscanLeft = 0;
3501 overscanTop = 0;
3502 overscanRight = 0;
3503 overscanBottom = 0;
3504 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003505 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3506 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3507 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3508 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003509 mSystemLeft = 0;
3510 mSystemTop = 0;
3511 mSystemRight = displayWidth;
3512 mSystemBottom = displayHeight;
3513 mUnrestrictedScreenLeft = overscanLeft;
3514 mUnrestrictedScreenTop = overscanTop;
3515 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3516 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3517 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3518 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003519 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3520 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003521 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003522 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003523 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003524 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003525 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003526 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003527 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003528 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003529 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003530 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003531
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003532 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3533 final Rect pf = mTmpParentFrame;
3534 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003535 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003536 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003537 final Rect dcf = mTmpDecorFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003538 final Rect osf = mTmpOutsetFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003539 pf.left = df.left = of.left = vf.left = mDockLeft;
3540 pf.top = df.top = of.top = vf.top = mDockTop;
3541 pf.right = df.right = of.right = vf.right = mDockRight;
3542 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003543 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003544
Craig Mautner69b08182012-09-05 13:07:13 -07003545 if (isDefaultDisplay) {
3546 // For purposes of putting out fake window up to steal focus, we will
3547 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003548 final int sysui = mLastSystemUiFlags;
3549 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003550 boolean navTranslucent = (sysui
3551 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003552 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3553 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3554 boolean navAllowedHidden = immersive || immersiveSticky;
3555 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003556 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3557 if (!isKeyguardShowing) {
3558 navTranslucent &= areTranslucentBarsAllowed();
3559 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003560
Craig Mautner69b08182012-09-05 13:07:13 -07003561 // When the navigation bar isn't visible, we put up a fake
3562 // input window to catch all touch events. This way we can
3563 // detect when the user presses anywhere to bring back the nav
3564 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003565 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003566 if (mInputConsumer != null) {
3567 mInputConsumer.dismiss();
3568 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003569 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003570 } else if (mInputConsumer == null) {
3571 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3572 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003573 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003574
Craig Mautner69b08182012-09-05 13:07:13 -07003575 // For purposes of positioning and showing the nav bar, if we have
3576 // decided that it can't be hidden (because of the screen aspect ratio),
3577 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003578 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003579
John Spurlockad3e6cb2013-04-30 08:47:43 -04003580 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003581 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003582 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003583 // Force the navigation bar to its appropriate place and
3584 // size. We need to do this directly, instead of relying on
3585 // it to bubble up from the nav bar, because this needs to
3586 // change atomically with screen rotations.
3587 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3588 if (mNavigationBarOnBottom) {
3589 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003590 int top = displayHeight - overscanBottom
3591 - mNavigationBarHeightForRotation[displayRotation];
3592 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003593 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003594 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003595 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003596 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003597 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003598 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003599 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3600 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003601 } else {
3602 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003603 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003604 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003605 if (navVisible && !navTranslucent && !navAllowedHidden
3606 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003607 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003608 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003609 // and not in the process of animating on or off, then
3610 // we can tell the app that it is covered by it.
3611 mSystemBottom = mTmpNavigationFrame.top;
3612 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003613 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003614 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003615 int left = displayWidth - overscanRight
3616 - mNavigationBarWidthForRotation[displayRotation];
3617 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003618 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003619 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003620 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003621 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003622 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003623 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003624 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3625 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003626 } else {
3627 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003628 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003629 }
Adrian Roosfe836fa2015-08-11 17:36:43 -07003630 if (navVisible && !navTranslucent && !navAllowedHidden
3631 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003632 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003633 // If the nav bar is currently requested to be visible,
3634 // and not in the process of animating on or off, then
3635 // we can tell the app that it is covered by it.
3636 mSystemRight = mTmpNavigationFrame.left;
3637 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003638 }
Craig Mautner69b08182012-09-05 13:07:13 -07003639 // Make sure the content and current rectangles are updated to
3640 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003641 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3642 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3643 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3644 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003645 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3646 // And compute the final frame.
3647 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003648 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003649 mTmpNavigationFrame, mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003650 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003651 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003652 updateSysUiVisibility = true;
3653 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003654 }
Craig Mautnereda67292013-04-28 13:50:14 -07003655 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003656 mDockLeft, mDockTop, mDockRight, mDockBottom));
3657
3658 // decide where the status bar goes ahead of time
3659 if (mStatusBar != null) {
3660 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003661 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3662 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3663 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3664 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3665 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003666 vf.left = mStableLeft;
3667 vf.top = mStableTop;
3668 vf.right = mStableRight;
3669 vf.bottom = mStableBottom;
3670
3671 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3672
3673 // Let the status bar determine its size.
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003674 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3675 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3676 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
Craig Mautner69b08182012-09-05 13:07:13 -07003677
3678 // For layout, the status bar is always at the top with our fixed height.
3679 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3680
John Spurlocke1f366f2013-08-05 12:22:40 -04003681 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003682 boolean statusBarTranslucent = (sysui
3683 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003684 if (!isKeyguardShowing) {
3685 statusBarTranslucent &= areTranslucentBarsAllowed();
3686 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003687
Craig Mautner69b08182012-09-05 13:07:13 -07003688 // If the status bar is hidden, we don't want to cause
3689 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003690 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003691 // Status bar may go away, so the screen area it occupies
3692 // is available to apps but just covering them when the
3693 // status bar is visible.
3694 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3695
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003696 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3697 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3698 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3699 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003700
Craig Mautnereda67292013-04-28 13:50:14 -07003701 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003702 String.format(
3703 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3704 mDockLeft, mDockTop, mDockRight, mDockBottom,
3705 mContentLeft, mContentTop, mContentRight, mContentBottom,
3706 mCurLeft, mCurTop, mCurRight, mCurBottom));
3707 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003708 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003709 && !statusBarTransient && !statusBarTranslucent
3710 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003711 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003712 // and not in the process of animating on or off, then
3713 // we can tell the app that it is covered by it.
3714 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3715 }
John Spurlock27735a42013-08-14 17:57:38 -04003716 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003717 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003718 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003719 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003720 if (updateSysUiVisibility) {
3721 updateSystemUiVisibilityLw();
3722 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003723 }
3724 }
3725
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003726 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003727 @Override
John Spurlock46646232013-09-30 22:32:42 -04003728 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003729 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3730 return mStatusBar.getSurfaceLayer();
3731 }
3732
3733 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3734 return mNavigationBar.getSurfaceLayer();
3735 }
3736
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003737 return 0;
3738 }
3739
Craig Mautner967212c2013-04-13 21:10:58 -07003740 @Override
3741 public void getContentRectLw(Rect r) {
3742 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3743 }
3744
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003745 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3746 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003747 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3748 // Here's a special case: if this attached window is a panel that is
3749 // above the dock window, and the window it is attached to is below
3750 // the dock window, then the frames we computed for the window it is
3751 // attached to can not be used because the dock is effectively part
3752 // of the underlying window and the attached window is floating on top
3753 // of the whole thing. So, we ignore the attached window and explicitly
3754 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003755 df.left = of.left = cf.left = vf.left = mDockLeft;
3756 df.top = of.top = cf.top = vf.top = mDockTop;
3757 df.right = of.right = cf.right = vf.right = mDockRight;
3758 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003759 } else {
3760 // The effective display frame of the attached window depends on
3761 // whether it is taking care of insetting its content. If not,
3762 // we need to use the parent's content frame so that the entire
3763 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003764 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003765 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003766 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003767 // Set the content frame of the attached window to the parent's decor frame
3768 // (same as content frame when IME isn't present) if specifically requested by
3769 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3770 // Otherwise, use the overscan frame.
3771 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3772 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003773 } else {
3774 // If the window is resizing, then we want to base the content
3775 // frame on our attached content frame to resize... however,
3776 // things can be tricky if the attached window is NOT in resize
3777 // mode, in which case its content frame will be larger.
3778 // Ungh. So to deal with that, make sure the content frame
3779 // we end up using is not covering the IM dock.
3780 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003781 if (attached.isVoiceInteraction()) {
3782 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3783 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3784 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3785 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3786 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003787 if (cf.left < mContentLeft) cf.left = mContentLeft;
3788 if (cf.top < mContentTop) cf.top = mContentTop;
3789 if (cf.right > mContentRight) cf.right = mContentRight;
3790 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3791 }
3792 }
3793 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003794 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003795 vf.set(attached.getVisibleFrameLw());
3796 }
3797 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3798 // window should be positioned relative to its parent or the entire
3799 // screen.
3800 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3801 ? attached.getFrameLw() : df);
3802 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003803
3804 private void applyStableConstraints(int sysui, int fl, Rect r) {
3805 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3806 // If app is requesting a stable layout, don't let the
3807 // content insets go below the stable values.
3808 if ((fl & FLAG_FULLSCREEN) != 0) {
3809 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3810 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3811 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3812 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3813 } else {
3814 if (r.left < mStableLeft) r.left = mStableLeft;
3815 if (r.top < mStableTop) r.top = mStableTop;
3816 if (r.right > mStableRight) r.right = mStableRight;
3817 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3818 }
3819 }
3820 }
3821
Jorim Jaggiaa806142015-05-20 18:04:16 -07003822 private boolean canReceiveInput(WindowState win) {
3823 boolean notFocusable =
3824 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3825 boolean altFocusableIm =
3826 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3827 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3828 return !notFocusableForIm;
3829 }
3830
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003831 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003832 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003833 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003834 // We've already done the navigation bar and status bar. If the status bar can receive
3835 // input, we need to layout it again to accomodate for the IME window.
3836 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003837 return;
3838 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003839 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003840 final boolean isDefaultDisplay = win.isDefaultDisplay();
3841 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003842 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3843 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003844 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003845 offsetInputMethodWindowLw(mLastInputMethodWindow);
3846 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003847
John Spurlockc6d1c602014-01-17 15:22:06 -05003848 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003849 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003850 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003851
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003852 final Rect pf = mTmpParentFrame;
3853 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003854 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003855 final Rect cf = mTmpContentFrame;
3856 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003857 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003858 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003859 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003860 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003861
3862 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003863 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003864
Craig Mautnerf683b562012-10-02 11:10:57 -07003865 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3866
Adrian Roosfa104232014-06-20 16:10:14 -07003867 if (isDefaultDisplay) {
3868 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3869 } else {
3870 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3871 }
3872
Craig Mautner69b08182012-09-05 13:07:13 -07003873 if (!isDefaultDisplay) {
3874 if (attached != null) {
3875 // If this window is attached to another, our display
3876 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003877 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003878 } else {
3879 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003880 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3881 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3882 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003883 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003884 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003885 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003886 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003887 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003888 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3889 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3890 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003891 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003892 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003893 // ...with content insets above the nav bar
3894 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003895 // IM dock windows always go to the bottom of the screen.
3896 attrs.gravity = Gravity.BOTTOM;
3897 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003898 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003899 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003900 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003901 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3902 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003903 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003904 // Note: In Phone landscape mode, the button bar should also be excluded.
3905 cf.right = vf.right = mStableRight;
3906 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003907 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003908 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003909 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3910 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3911 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3912 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3913 cf.left = vf.left = mStableLeft;
3914 cf.top = vf.top = mStableTop;
3915 cf.right = vf.right = mStableRight;
3916 vf.bottom = mStableBottom;
3917 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003918 } else {
John Spurlock46646232013-09-30 22:32:42 -04003919
3920 // Default policy decor for the default display
3921 dcf.left = mSystemLeft;
3922 dcf.top = mSystemTop;
3923 dcf.right = mSystemRight;
3924 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003925 final boolean inheritTranslucentDecor = (attrs.privateFlags
3926 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003927 final boolean isAppWindow =
3928 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3929 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3930 final boolean topAtRest =
3931 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3932 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003933 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3934 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003935 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3936 && (fl & WindowManager.LayoutParams.
3937 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003938 // Ensure policy decor includes status bar
3939 dcf.top = mStableTop;
3940 }
John Spurlockbd957402013-10-03 11:38:39 -04003941 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003942 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3943 && (fl & WindowManager.LayoutParams.
3944 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003945 // Ensure policy decor includes navigation bar
3946 dcf.bottom = mStableBottom;
3947 dcf.right = mStableRight;
3948 }
3949 }
3950
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003951 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3952 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003953 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003954 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003955 // This is the case for a normal activity window: we want it
3956 // to cover all of the screen space, and it can take care of
3957 // moving its contents to account for screen decorations that
3958 // intrude into that space.
3959 if (attached != null) {
3960 // If this window is attached to another, our display
3961 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003962 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003963 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003964 if (attrs.type == TYPE_STATUS_BAR_PANEL
3965 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003966 // Status bar panels are the only windows who can go on top of
3967 // the status bar. They are protected by the STATUS_BAR_SERVICE
3968 // permission, so they have the same privileges as the status
3969 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003970 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003971 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003972
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003973 pf.left = df.left = of.left = hasNavBar
3974 ? mDockLeft : mUnrestrictedScreenLeft;
3975 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3976 pf.right = df.right = of.right = hasNavBar
3977 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3978 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3979 pf.bottom = df.bottom = of.bottom = hasNavBar
3980 ? mRestrictedScreenTop+mRestrictedScreenHeight
3981 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003982
Craig Mautnereda67292013-04-28 13:50:14 -07003983 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003984 "Laying out status bar window: (%d,%d - %d,%d)",
3985 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003986 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003987 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3988 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3989 // Asking to layout into the overscan region, so give it that pure
3990 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003991 pf.left = df.left = of.left = mOverscanScreenLeft;
3992 pf.top = df.top = of.top = mOverscanScreenTop;
3993 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3994 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3995 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003996 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003997 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003998 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3999 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004000 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08004001 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004002 // only do this for application windows to ensure no window that
4003 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08004004 pf.left = df.left = mOverscanScreenLeft;
4005 pf.top = df.top = mOverscanScreenTop;
4006 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4007 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004008 // We need to tell the app about where the frame inside the overscan
4009 // is, so it can inset its content by that amount -- it didn't ask
4010 // to actually extend itself into the overscan region.
4011 of.left = mUnrestrictedScreenLeft;
4012 of.top = mUnrestrictedScreenTop;
4013 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4014 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004015 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004016 pf.left = df.left = mRestrictedOverscanScreenLeft;
4017 pf.top = df.top = mRestrictedOverscanScreenTop;
4018 pf.right = df.right = mRestrictedOverscanScreenLeft
4019 + mRestrictedOverscanScreenWidth;
4020 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4021 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004022 // We need to tell the app about where the frame inside the overscan
4023 // is, so it can inset its content by that amount -- it didn't ask
4024 // to actually extend itself into the overscan region.
4025 of.left = mUnrestrictedScreenLeft;
4026 of.top = mUnrestrictedScreenTop;
4027 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4028 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004029 }
Craig Mautner69b08182012-09-05 13:07:13 -07004030
John Spurlock46646232013-09-30 22:32:42 -04004031 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004032 if (win.isVoiceInteraction()) {
4033 cf.left = mVoiceContentLeft;
4034 cf.top = mVoiceContentTop;
4035 cf.right = mVoiceContentRight;
4036 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004037 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004038 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4039 cf.left = mDockLeft;
4040 cf.top = mDockTop;
4041 cf.right = mDockRight;
4042 cf.bottom = mDockBottom;
4043 } else {
4044 cf.left = mContentLeft;
4045 cf.top = mContentTop;
4046 cf.right = mContentRight;
4047 cf.bottom = mContentBottom;
4048 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004049 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004050 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004051 // Full screen windows are always given a layout that is as if the
4052 // status bar and other transient decors are gone. This is to avoid
4053 // bad states when moving from a window that is not hding the
4054 // status bar to one that is.
4055 cf.left = mRestrictedScreenLeft;
4056 cf.top = mRestrictedScreenTop;
4057 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4058 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004059 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004060 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004061 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4062 vf.left = mCurLeft;
4063 vf.top = mCurTop;
4064 vf.right = mCurRight;
4065 vf.bottom = mCurBottom;
4066 } else {
4067 vf.set(cf);
4068 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004069 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004070 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4071 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4072 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004073 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4074 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004075 // A window that has requested to fill the entire screen just
4076 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004077 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004078 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4079 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004080 pf.left = df.left = of.left = cf.left = hasNavBar
4081 ? mDockLeft : mUnrestrictedScreenLeft;
4082 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4083 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004084 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004085 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004086 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004087 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004088 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004089 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004090 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4091 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004092 } else if (attrs.type == TYPE_NAVIGATION_BAR
4093 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004094 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004095 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4096 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4097 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4098 + mUnrestrictedScreenWidth;
4099 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4100 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004101 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004102 "Laying out navigation bar window: (%d,%d - %d,%d)",
4103 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004104 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4105 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004106 && ((fl & FLAG_FULLSCREEN) != 0)) {
4107 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004108 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4109 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4110 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4111 + mOverscanScreenWidth;
4112 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4113 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004114 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004115 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004116 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4117 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4118 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4119 + mOverscanScreenWidth;
4120 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4121 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004122 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004123 // The wallpaper also has Real Ultimate Power, but we want to tell
4124 // it about the overscan area.
4125 pf.left = df.left = mOverscanScreenLeft;
4126 pf.top = df.top = mOverscanScreenTop;
4127 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4128 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4129 of.left = cf.left = mUnrestrictedScreenLeft;
4130 of.top = cf.top = mUnrestrictedScreenTop;
4131 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4132 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004133 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004134 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4135 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4136 // Asking to layout into the overscan region, so give it that pure
4137 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004138 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4139 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4140 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004141 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004142 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004143 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004144 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004145 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004146 && (attrs.type == TYPE_STATUS_BAR
4147 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004148 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004149 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4150 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004151 // Asking for layout as if the nav bar is hidden, lets the
4152 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004153 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004154 // can be above the nav bar can do this.
4155 // XXX This assumes that an app asking for this will also
4156 // ask for layout in only content. We can't currently figure out
4157 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004158 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4159 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4160 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4161 + mUnrestrictedScreenWidth;
4162 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4163 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004164 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004165 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4166 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4167 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4168 + mRestrictedScreenWidth;
4169 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4170 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004171 }
Craig Mautner69b08182012-09-05 13:07:13 -07004172
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004173 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004174
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004175 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4176 vf.left = mCurLeft;
4177 vf.top = mCurTop;
4178 vf.right = mCurRight;
4179 vf.bottom = mCurBottom;
4180 } else {
4181 vf.set(cf);
4182 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004183 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004184 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4185 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004186 // A child window should be placed inside of the same visible
4187 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004188 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004189 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004190 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4191 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004192 // Otherwise, a normal window must be placed inside the content
4193 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004194 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4195 // Status bar panels and the volume dialog are the only windows who can go on
4196 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004197 // permission, so they have the same privileges as the status
4198 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004199 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4200 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4201 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4202 + mRestrictedScreenWidth;
4203 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4204 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004205 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004206 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004207 pf.left = df.left = of.left = cf.left = mStableLeft;
4208 pf.top = df.top = of.top = cf.top = mStableTop;
4209 pf.right = df.right = of.right = cf.right = mStableRight;
4210 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004211 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004212 pf.left = mContentLeft;
4213 pf.top = mContentTop;
4214 pf.right = mContentRight;
4215 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004216 if (win.isVoiceInteraction()) {
4217 df.left = of.left = cf.left = mVoiceContentLeft;
4218 df.top = of.top = cf.top = mVoiceContentTop;
4219 df.right = of.right = cf.right = mVoiceContentRight;
4220 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4221 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004222 df.left = of.left = cf.left = mDockLeft;
4223 df.top = of.top = cf.top = mDockTop;
4224 df.right = of.right = cf.right = mDockRight;
4225 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004226 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004227 df.left = of.left = cf.left = mContentLeft;
4228 df.top = of.top = cf.top = mContentTop;
4229 df.right = of.right = cf.right = mContentRight;
4230 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004231 }
4232 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4233 vf.left = mCurLeft;
4234 vf.top = mCurTop;
4235 vf.right = mCurRight;
4236 vf.bottom = mCurBottom;
4237 } else {
4238 vf.set(cf);
4239 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004240 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004241 }
4242 }
Craig Mautner69b08182012-09-05 13:07:13 -07004243
Craig Mautnerb816bed2013-07-23 10:26:17 -07004244 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4245 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004246 df.left = df.top = -10000;
4247 df.right = df.bottom = 10000;
4248 if (attrs.type != TYPE_WALLPAPER) {
4249 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4250 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4251 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004252 }
4253
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004254 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4255 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004256 // We only want to apply outsets to certain types of windows. For example, we never want to
4257 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004258 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004259 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004260 osf = mTmpOutsetFrame;
4261 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4262 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4263 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004264 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004265 if (rotation == Surface.ROTATION_0) {
4266 osf.bottom += outset;
4267 } else if (rotation == Surface.ROTATION_90) {
4268 osf.right += outset;
4269 } else if (rotation == Surface.ROTATION_180) {
4270 osf.top -= outset;
4271 } else if (rotation == Surface.ROTATION_270) {
4272 osf.left -= outset;
4273 }
4274 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4275 + " with rotation " + rotation + ", result: " + osf);
4276 }
4277 }
4278
Craig Mautnereda67292013-04-28 13:50:14 -07004279 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004280 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004281 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004282 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004283 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004284 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004285 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004286 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004287 + " sf=" + sf.toShortString()
4288 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004289
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004290 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004291
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004292 // Dock windows carve out the bottom of the screen, so normal windows
4293 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004294 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4295 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004296 setLastInputMethodWindowLw(null, null);
4297 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004298 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004299 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4300 && !win.getGivenInsetsPendingLw()) {
4301 offsetVoiceInputWindowLw(win);
4302 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004303 }
4304
satok1bc0a492012-04-25 22:47:12 +09004305 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004306 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004307 top += win.getGivenContentInsetsLw().top;
4308 if (mContentBottom > top) {
4309 mContentBottom = top;
4310 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004311 if (mVoiceContentBottom > top) {
4312 mVoiceContentBottom = top;
4313 }
satok1bc0a492012-04-25 22:47:12 +09004314 top = win.getVisibleFrameLw().top;
4315 top += win.getGivenVisibleInsetsLw().top;
4316 if (mCurBottom > top) {
4317 mCurBottom = top;
4318 }
Craig Mautnereda67292013-04-28 13:50:14 -07004319 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004320 + mDockBottom + " mContentBottom="
4321 + mContentBottom + " mCurBottom=" + mCurBottom);
4322 }
4323
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004324 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004325 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004326 top += win.getGivenContentInsetsLw().top;
4327 if (mVoiceContentBottom > top) {
4328 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004329 }
4330 }
4331
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004332 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004333 @Override
4334 public void finishLayoutLw() {
4335 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004336 }
4337
4338 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004339 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004340 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004341 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004342 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004343 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004344 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004345 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004346 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004347 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004348 mForcingShowNavBar = false;
4349 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004350
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004351 mHideLockScreen = false;
4352 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004353 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004354 mShowingLockscreen = false;
4355 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004356 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004357 mKeyguardSecure = isKeyguardSecure();
4358 mKeyguardSecureIncludingHidden = mKeyguardSecure
4359 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004360 }
4361
4362 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004363 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004364 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4365 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004366 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4367 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004368 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004369 if (mTopFullscreenOpaqueWindowState == null
4370 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4371 mForcingShowNavBar = true;
4372 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004373 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004374 if (attrs.type == TYPE_STATUS_BAR) {
4375 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4376 mForceStatusBarFromKeyguard = true;
4377 }
4378 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4379 mForceStatusBarTransparent = true;
4380 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004381 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004382
4383 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4384 && attrs.type < FIRST_SYSTEM_WINDOW;
4385 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4386 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4387
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004388 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004389 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004390 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004391 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004392 mForceStatusBarFromKeyguard = true;
4393 } else {
4394 mForceStatusBar = true;
4395 }
4396 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004397 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004398 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004399 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004400 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004401 // If the lockscreen was showing when the dream started then wait
4402 // for the dream to draw before hiding the lockscreen.
4403 if (!mDreamingLockscreen
4404 || (win.isVisibleLw() && win.hasDrawnLw())) {
4405 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004406 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004407 }
4408 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004409
Yohei Yukawad1a09222015-06-30 16:22:05 -07004410 final IApplicationToken appToken = win.getAppToken();
4411
4412 // For app windows that are not attached, we decide if all windows in the app they
4413 // represent should be hidden or if we should hide the lockscreen. For attached app
4414 // windows we defer the decision to the window it is attached to.
4415 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004416 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004417 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004418 mAppsToBeHidden.remove(appToken);
4419 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004420 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004421 if (dismissKeyguard && !mKeyguardSecure) {
4422 mAppsThatDismissKeyguard.add(appToken);
Selim Cinek90b5e072015-08-28 17:05:56 -07004423 } else if (win.isDrawnLw() || win.hasAppShownWindows()) {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004424 mWinShowWhenLocked = win;
4425 mHideLockScreen = true;
4426 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004427 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004428 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004429 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004430 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004431 mAppsToBeHidden.add(appToken);
4432 } else {
4433 mAppsToBeHidden.remove(appToken);
4434 }
4435 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004436 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004437 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004438 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004439 if (attrs.x == 0 && attrs.y == 0
4440 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4441 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4442 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4443 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004444 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4445 mTopFullscreenOpaqueOrDimmingWindowState = win;
4446 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004447 if (!mAppsThatDismissKeyguard.isEmpty() &&
4448 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4449 if (DEBUG_LAYOUT) Slog.v(TAG,
4450 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004451 mDismissKeyguard = (mWinDismissingKeyguard == win
4452 && mSecureDismissingKeyguard == mKeyguardSecure)
4453 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004454 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004455 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004456 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Selim Cinek90b5e072015-08-28 17:05:56 -07004457 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked
4458 && (win.isDrawnLw() || win.hasAppShownWindows())) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004459 if (DEBUG_LAYOUT) Slog.v(TAG,
4460 "Setting mHideLockScreen to true by win " + win);
4461 mHideLockScreen = true;
4462 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004463 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004464 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004465 mAllowLockscreenWhenOn = true;
4466 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004467 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004468
4469 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004470 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4471 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004472 win.hideLw(false);
4473 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004474 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004475 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4476 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4477 // that is being hidden in an animation - keep the
4478 // keyguard hidden until the new window shows up and
4479 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004480 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004481 mHideLockScreen = true;
4482 mWinShowWhenLocked = win;
4483 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004484 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004485 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4486 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4487 && win.isDimming()) {
4488 mTopFullscreenOpaqueOrDimmingWindowState = win;
4489 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004490 }
4491
4492 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004493 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004494 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004495 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4496 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4497 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004498 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4499 // fullscreen window.
4500 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4501 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4502 mTopFullscreenOpaqueWindowState.hideLw(false);
4503 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4504 }
4505
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004506 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004507 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004508
4509 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4510 ? mTopFullscreenOpaqueWindowState.getAttrs()
4511 : null;
4512
Jeff Brownc8018eb2012-10-29 21:33:27 -07004513 // If we are not currently showing a dream then remember the current
4514 // lockscreen state. We will use this to determine whether the dream
4515 // started while the lockscreen was showing and remember this state
4516 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004517 if (!mShowingDream) {
4518 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004519 if (mDreamingSleepTokenNeeded) {
4520 mDreamingSleepTokenNeeded = false;
4521 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4522 }
4523 } else {
4524 if (!mDreamingSleepTokenNeeded) {
4525 mDreamingSleepTokenNeeded = true;
4526 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4527 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004528 }
4529
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004530 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004531 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004532 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004533 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004534 boolean shouldBeTransparent = mForceStatusBarTransparent
4535 && !mForceStatusBar
4536 && !mForceStatusBarFromKeyguard;
4537 if (!shouldBeTransparent) {
4538 mStatusBarController.setShowTransparent(false /* transparent */);
4539 } else if (!mStatusBar.isVisibleLw()) {
4540 mStatusBarController.setShowTransparent(true /* transparent */);
4541 }
4542 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004543 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004544 if (mStatusBarController.setBarShowingLw(true)) {
4545 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4546 }
Craig Mautner81defc72013-10-29 11:10:42 -07004547 // Maintain fullscreen layout until incoming animation is complete.
4548 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004549 // Transient status bar on the lockscreen is not allowed
4550 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4551 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4552 mLastSystemUiFlags, mLastSystemUiFlags);
4553 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004554 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004555 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004556 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004557 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004558 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004559 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004560 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004561 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004562 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004563 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004564 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004565 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004566 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4567 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004568 if (mStatusBarController.isTransientShowing()) {
4569 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004570 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4571 }
4572 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004573 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004574 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004575 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004576 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004577 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004578 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004579 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004580 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004581 if (mStatusBarController.setBarShowingLw(true)) {
4582 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4583 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004584 }
4585 }
4586 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004587
Craig Mautner81defc72013-10-29 11:10:42 -07004588 if (mTopIsFullscreen != topIsFullscreen) {
4589 if (!topIsFullscreen) {
4590 // Force another layout when status bar becomes fully shown.
4591 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4592 }
4593 mTopIsFullscreen = topIsFullscreen;
4594 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004595
Craig Mautner39834192012-09-02 07:47:24 -07004596 // Hide the key guard if a visible window explicitly specifies that it wants to be
4597 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004598 if (mKeyguardDelegate != null && mStatusBar != null) {
4599 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4600 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004601 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004602 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004603 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004604 changes |= FINISH_LAYOUT_REDO_LAYOUT
4605 | FINISH_LAYOUT_REDO_CONFIG
4606 | FINISH_LAYOUT_REDO_WALLPAPER;
4607 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004608 if (mKeyguardDelegate.isShowing()) {
4609 mHandler.post(new Runnable() {
4610 @Override
4611 public void run() {
4612 mKeyguardDelegate.keyguardDone(false, false);
4613 }
4614 });
4615 }
4616 } else if (mHideLockScreen) {
4617 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004618 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004619 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004620 changes |= FINISH_LAYOUT_REDO_LAYOUT
4621 | FINISH_LAYOUT_REDO_CONFIG
4622 | FINISH_LAYOUT_REDO_WALLPAPER;
4623 }
4624 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004625 mKeyguardHidden = false;
4626 if (setKeyguardOccludedLw(false)) {
4627 changes |= FINISH_LAYOUT_REDO_LAYOUT
4628 | FINISH_LAYOUT_REDO_CONFIG
4629 | FINISH_LAYOUT_REDO_WALLPAPER;
4630 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004631 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4632 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004633 mHandler.post(new Runnable() {
4634 @Override
4635 public void run() {
4636 mKeyguardDelegate.dismiss();
4637 }
4638 });
4639 }
4640 } else {
4641 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004642 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004643 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004644 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004645 changes |= FINISH_LAYOUT_REDO_LAYOUT
4646 | FINISH_LAYOUT_REDO_CONFIG
4647 | FINISH_LAYOUT_REDO_WALLPAPER;
4648 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004649 }
4650 }
Joe Onorato664644d2011-01-23 17:53:23 -08004651
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004652 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004653 // If the navigation bar has been hidden or shown, we need to do another
4654 // layout pass to update that window.
4655 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4656 }
Joe Onorato664644d2011-01-23 17:53:23 -08004657
Mike Lockwood28569302010-01-28 11:54:40 -05004658 // update since mAllowLockscreenWhenOn might have changed
4659 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004660 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004661 }
4662
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004663 /**
Jim Millerab954542014-10-10 18:21:49 -07004664 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004665 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004666 * @return Whether the flags have changed and we have to redo the layout.
4667 */
Jim Millerab954542014-10-10 18:21:49 -07004668 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4669 boolean wasOccluded = mKeyguardOccluded;
4670 boolean showing = mKeyguardDelegate.isShowing();
4671 if (wasOccluded && !isOccluded && showing) {
4672 mKeyguardOccluded = false;
4673 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004674 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4675 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4676 return true;
Jim Millerab954542014-10-10 18:21:49 -07004677 } else if (!wasOccluded && isOccluded && showing) {
4678 mKeyguardOccluded = true;
4679 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004680 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4681 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4682 return true;
4683 } else {
4684 return false;
4685 }
4686 }
4687
4688 private boolean isStatusBarKeyguard() {
4689 return mStatusBar != null
4690 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4691 }
4692
Jose Lima9546b202014-07-02 17:21:51 -07004693 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004694 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004695 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004696 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004697 return false;
4698 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004699 return true;
4700 }
4701
Jose Lima9546b202014-07-02 17:21:51 -07004702 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004703 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004704 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004705 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004706 // If the navigation bar has been hidden or shown, we need to do another
4707 // layout pass to update that window.
4708 return FINISH_LAYOUT_REDO_LAYOUT;
4709 }
4710 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004711 }
4712
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004713 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004714 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004715 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4716 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004717 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4718 if (newLidState == mLidState) {
4719 return;
4720 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004721
Jeff Brownc458ce92012-04-30 14:58:40 -07004722 mLidState = newLidState;
4723 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004724 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004725
4726 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004727 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4728 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004729 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004730 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004731 }
4732 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004733
Michael Wright3818c922014-09-02 13:59:07 -07004734 @Override
4735 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4736 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4737 if (mCameraLensCoverState == lensCoverState) {
4738 return;
4739 }
4740 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4741 lensCoverState == CAMERA_LENS_UNCOVERED) {
4742 Intent intent;
4743 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4744 mKeyguardDelegate.isShowing();
4745 if (keyguardActive) {
4746 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4747 } else {
4748 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4749 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004750 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4751 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004752 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004753 }
4754 mCameraLensCoverState = lensCoverState;
4755 }
4756
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004757 void setHdmiPlugged(boolean plugged) {
4758 if (mHdmiPlugged != plugged) {
4759 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004760 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004761 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004762 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004763 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004764 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004765 }
4766 }
4767
Joe Onoratoea495d42011-04-06 11:41:11 -07004768 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004769 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004770 // watch for HDMI plug messages if the hdmi switch exists
4771 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4772 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4773
Joe Onoratoea495d42011-04-06 11:41:11 -07004774 final String filename = "/sys/class/switch/hdmi/state";
4775 FileReader reader = null;
4776 try {
4777 reader = new FileReader(filename);
4778 char[] buf = new char[15];
4779 int n = reader.read(buf);
4780 if (n > 1) {
4781 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4782 }
4783 } catch (IOException ex) {
4784 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4785 } catch (NumberFormatException ex) {
4786 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4787 } finally {
4788 if (reader != null) {
4789 try {
4790 reader.close();
4791 } catch (IOException ex) {
4792 }
Joe Onoratodc100302011-01-11 17:07:41 -08004793 }
4794 }
4795 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004796 // This dance forces the code in setHdmiPlugged to run.
4797 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4798 mHdmiPlugged = !plugged;
4799 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004800 }
4801
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004802 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004803 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004804
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004805 final Runnable mScreenshotTimeout = new Runnable() {
4806 @Override public void run() {
4807 synchronized (mScreenshotLock) {
4808 if (mScreenshotConnection != null) {
4809 mContext.unbindService(mScreenshotConnection);
4810 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004811 }
Winson Chung9112ec32011-06-27 13:15:32 -07004812 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004813 }
4814 };
4815
4816 // Assume this is called from the Handler thread.
4817 private void takeScreenshot() {
4818 synchronized (mScreenshotLock) {
4819 if (mScreenshotConnection != null) {
4820 return;
4821 }
4822 ComponentName cn = new ComponentName("com.android.systemui",
4823 "com.android.systemui.screenshot.TakeScreenshotService");
4824 Intent intent = new Intent();
4825 intent.setComponent(cn);
4826 ServiceConnection conn = new ServiceConnection() {
4827 @Override
4828 public void onServiceConnected(ComponentName name, IBinder service) {
4829 synchronized (mScreenshotLock) {
4830 if (mScreenshotConnection != this) {
4831 return;
4832 }
4833 Messenger messenger = new Messenger(service);
4834 Message msg = Message.obtain(null, 1);
4835 final ServiceConnection myConn = this;
4836 Handler h = new Handler(mHandler.getLooper()) {
4837 @Override
4838 public void handleMessage(Message msg) {
4839 synchronized (mScreenshotLock) {
4840 if (mScreenshotConnection == myConn) {
4841 mContext.unbindService(mScreenshotConnection);
4842 mScreenshotConnection = null;
4843 mHandler.removeCallbacks(mScreenshotTimeout);
4844 }
4845 }
4846 }
4847 };
4848 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004849 msg.arg1 = msg.arg2 = 0;
4850 if (mStatusBar != null && mStatusBar.isVisibleLw())
4851 msg.arg1 = 1;
4852 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4853 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004854 try {
4855 messenger.send(msg);
4856 } catch (RemoteException e) {
4857 }
4858 }
4859 }
4860 @Override
4861 public void onServiceDisconnected(ComponentName name) {}
4862 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004863 if (mContext.bindServiceAsUser(
4864 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004865 mScreenshotConnection = conn;
4866 mHandler.postDelayed(mScreenshotTimeout, 10000);
4867 }
4868 }
Winson Chung9112ec32011-06-27 13:15:32 -07004869 }
4870
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004871 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004872 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004873 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004874 if (!mSystemBooted) {
4875 // If we have not yet booted, don't let key events do anything.
4876 return 0;
4877 }
4878
Jeff Brown037c33e2014-04-09 00:31:55 -07004879 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004880 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4881 final boolean canceled = event.isCanceled();
4882 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004883
Jeff Brown3122e442010-10-11 23:32:49 -07004884 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004885
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004886 // If screen is off then we treat the case where the keyguard is open but hidden
4887 // the same as if it were open and in front.
4888 // This will prevent any keys other than the power button from waking the screen
4889 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004890 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004891 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004892 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004893 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004894
Jeff Brown40013652012-05-16 21:22:36 -07004895 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004896 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004897 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004898 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004899 }
4900
Jeff Brown037c33e2014-04-09 00:31:55 -07004901 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004902 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004903 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4904 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004905 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004906 // When the device is interactive or the key is injected pass the
4907 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004908 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004909 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004910 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4911 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4912 // to the application but preserve its wake key status to make sure we still move
4913 // from dozing to fully interactive if we would normally go from off to fully
4914 // interactive.
4915 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004916 } else {
4917 // When the screen is off and the key is not injected, determine whether
4918 // to wake the device but don't pass the key to the application.
4919 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004920 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4921 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004922 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004923 }
4924
Justin Kohd378ad72013-04-01 12:18:26 -07004925 // If the key would be handled globally, just return the result, don't worry about special
4926 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004927 if (isValidGlobalKey(keyCode)
4928 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004929 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004930 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07004931 }
Justin Kohd378ad72013-04-01 12:18:26 -07004932 return result;
4933 }
4934
Jeff Brownbae8e772014-06-12 19:59:45 -07004935 boolean useHapticFeedback = down
4936 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4937 && event.getRepeatCount() == 0;
4938
Jeff Brown4d396052010-10-29 21:50:21 -07004939 // Handle special keys.
4940 switch (keyCode) {
4941 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004942 case KeyEvent.KEYCODE_VOLUME_UP:
4943 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004944 if (mUseTvRouting) {
4945 // On TVs volume keys never go to the foreground app
4946 result &= ~ACTION_PASS_TO_USER;
4947 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004948 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4949 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004950 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004951 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004952 mScreenshotChordVolumeDownKeyTriggered = true;
4953 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4954 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004955 cancelPendingPowerKeyAction();
4956 interceptScreenshotChord();
4957 }
4958 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004959 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004960 cancelPendingScreenshotChordAction();
4961 }
4962 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4963 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004964 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004965 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004966 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004967 cancelPendingPowerKeyAction();
4968 cancelPendingScreenshotChordAction();
4969 }
4970 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004971 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004972 cancelPendingScreenshotChordAction();
4973 }
4974 }
Jeff Brown4d396052010-10-29 21:50:21 -07004975 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004976 TelecomManager telecomManager = getTelecommService();
4977 if (telecomManager != null) {
4978 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004979 // If an incoming call is ringing, either VOLUME key means
4980 // "silence ringer". We handle these keys here, rather than
4981 // in the InCallScreen, to make sure we'll respond to them
4982 // even if the InCallScreen hasn't come to the foreground yet.
4983 // Look for the DOWN event here, to agree with the "fallback"
4984 // behavior in the InCallScreen.
4985 Log.i(TAG, "interceptKeyBeforeQueueing:"
4986 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004987
Santos Cordon6848f722014-05-21 15:22:12 -07004988 // Silence the ringer. (It's safe to call this
4989 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004990 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004991
Santos Cordon6848f722014-05-21 15:22:12 -07004992 // And *don't* pass this key thru to the current activity
4993 // (which is probably the InCallScreen.)
4994 result &= ~ACTION_PASS_TO_USER;
4995 break;
4996 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004997 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004998 && (result & ACTION_PASS_TO_USER) == 0) {
4999 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07005000 // the application, just pass it to the session service.
5001
5002 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07005003 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005004 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005005 }
5006 }
5007
RoboErik430fc482014-06-12 15:49:20 -07005008 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08005009 if (mUseTvRouting) {
5010 dispatchDirectAudioEvent(event);
5011 } else {
5012 // If we aren't passing to the user and no one else
5013 // handled it send it to the session manager to
5014 // figure out.
5015 MediaSessionLegacyHelper.getHelper(mContext)
5016 .sendVolumeKeyEvent(event, true);
5017 }
Jeff Brown4d396052010-10-29 21:50:21 -07005018 break;
5019 }
5020 }
5021 break;
5022 }
5023
5024 case KeyEvent.KEYCODE_ENDCALL: {
5025 result &= ~ACTION_PASS_TO_USER;
5026 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005027 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005028 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005029 if (telecomManager != null) {
5030 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005031 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005032 if (interactive && !hungUp) {
5033 mEndCallKeyHandled = false;
5034 mHandler.postDelayed(mEndCallLongPress,
5035 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5036 } else {
5037 mEndCallKeyHandled = true;
5038 }
Jeff Brown4d396052010-10-29 21:50:21 -07005039 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005040 if (!mEndCallKeyHandled) {
5041 mHandler.removeCallbacks(mEndCallLongPress);
5042 if (!canceled) {
5043 if ((mEndcallBehavior
5044 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5045 if (goHome()) {
5046 break;
5047 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005048 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005049 if ((mEndcallBehavior
5050 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5051 mPowerManager.goToSleep(event.getEventTime(),
5052 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5053 isWakeKey = false;
5054 }
Jeff Brown4d396052010-10-29 21:50:21 -07005055 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005056 }
Jeff Brown4d396052010-10-29 21:50:21 -07005057 }
5058 break;
5059 }
5060
5061 case KeyEvent.KEYCODE_POWER: {
5062 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005063 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005064 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005065 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005066 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005067 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005068 }
5069 break;
5070 }
5071
Jeff Brown6212a492014-03-07 13:58:47 -08005072 case KeyEvent.KEYCODE_SLEEP: {
5073 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005074 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005075 if (!mPowerManager.isInteractive()) {
5076 useHapticFeedback = false; // suppress feedback if already non-interactive
5077 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005078 if (down) {
5079 sleepPress(event.getEventTime());
5080 } else {
5081 sleepRelease(event.getEventTime());
5082 }
Jeff Brown6212a492014-03-07 13:58:47 -08005083 break;
5084 }
5085
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -07005086 case KeyEvent.KEYCODE_SOFT_SLEEP: {
5087 result &= ~ACTION_PASS_TO_USER;
5088 isWakeKey = false;
5089 if (!down) {
5090 mPowerManagerInternal.setUserInactiveOverrideFromWindowManager();
5091 }
5092 break;
5093 }
5094
Jeff Brown6212a492014-03-07 13:58:47 -08005095 case KeyEvent.KEYCODE_WAKEUP: {
5096 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005097 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005098 break;
5099 }
5100
Jeff Brown4d396052010-10-29 21:50:21 -07005101 case KeyEvent.KEYCODE_MEDIA_PLAY:
5102 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5103 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005104 case KeyEvent.KEYCODE_HEADSETHOOK:
5105 case KeyEvent.KEYCODE_MUTE:
5106 case KeyEvent.KEYCODE_MEDIA_STOP:
5107 case KeyEvent.KEYCODE_MEDIA_NEXT:
5108 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5109 case KeyEvent.KEYCODE_MEDIA_REWIND:
5110 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005111 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5112 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005113 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5114 // If the global session is active pass all media keys to it
5115 // instead of the active window.
5116 result &= ~ACTION_PASS_TO_USER;
5117 }
Jeff Brown4d396052010-10-29 21:50:21 -07005118 if ((result & ACTION_PASS_TO_USER) == 0) {
5119 // Only do this if we would otherwise not pass it to the user. In that
5120 // case, the PhoneWindow class will do the same thing, except it will
5121 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005122 // Note that we need to make a copy of the key event here because the
5123 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005124 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005125 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5126 new KeyEvent(event));
5127 msg.setAsynchronous(true);
5128 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005129 }
5130 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005131 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005132
Jeff Brown4d396052010-10-29 21:50:21 -07005133 case KeyEvent.KEYCODE_CALL: {
5134 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005135 TelecomManager telecomManager = getTelecommService();
5136 if (telecomManager != null) {
5137 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005138 Log.i(TAG, "interceptKeyBeforeQueueing:"
5139 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005140 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005141
Santos Cordon6848f722014-05-21 15:22:12 -07005142 // And *don't* pass this key thru to the current activity
5143 // (which is presumably the InCallScreen.)
5144 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005145 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005146 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005147 }
Jeff Brown4d396052010-10-29 21:50:21 -07005148 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005149 }
Michael Wright869a67c2014-08-26 19:33:06 -07005150 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5151 // Only do this if we would otherwise not pass it to the user. In that case,
5152 // interceptKeyBeforeDispatching would apply a similar but different policy in
5153 // order to invoke voice assist actions. Note that we need to make a copy of the
5154 // key event here because the original key event will be recycled when we return.
5155 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5156 mBroadcastWakeLock.acquire();
5157 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5158 keyguardActive ? 1 : 0, 0);
5159 msg.setAsynchronous(true);
5160 msg.sendToTarget();
5161 }
5162 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005163 }
Jeff Brown26875502014-01-30 21:47:47 -08005164
Jeff Brownbae8e772014-06-12 19:59:45 -07005165 if (useHapticFeedback) {
5166 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5167 }
5168
Jeff Brown26875502014-01-30 21:47:47 -08005169 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005170 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005171 }
Bryce Lee584a4452014-10-21 15:55:55 -07005172
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005173 return result;
5174 }
5175
Jeff Brown1c2e4942012-11-06 16:32:01 -08005176 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005177 * Returns true if the key can have global actions attached to it.
5178 * We reserve all power management keys for the system since they require
5179 * very careful handling.
5180 */
5181 private static boolean isValidGlobalKey(int keyCode) {
5182 switch (keyCode) {
5183 case KeyEvent.KEYCODE_POWER:
5184 case KeyEvent.KEYCODE_WAKEUP:
5185 case KeyEvent.KEYCODE_SLEEP:
5186 return false;
5187 default:
5188 return true;
5189 }
5190 }
5191
5192 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005193 * When the screen is off we ignore some keys that might otherwise typically
5194 * be considered wake keys. We filter them out here.
5195 *
5196 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5197 * is always considered a wake key.
5198 */
5199 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5200 switch (keyCode) {
5201 // ignore volume keys unless docked
5202 case KeyEvent.KEYCODE_VOLUME_UP:
5203 case KeyEvent.KEYCODE_VOLUME_DOWN:
5204 case KeyEvent.KEYCODE_VOLUME_MUTE:
5205 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5206
5207 // ignore media and camera keys
5208 case KeyEvent.KEYCODE_MUTE:
5209 case KeyEvent.KEYCODE_HEADSETHOOK:
5210 case KeyEvent.KEYCODE_MEDIA_PLAY:
5211 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5212 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5213 case KeyEvent.KEYCODE_MEDIA_STOP:
5214 case KeyEvent.KEYCODE_MEDIA_NEXT:
5215 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5216 case KeyEvent.KEYCODE_MEDIA_REWIND:
5217 case KeyEvent.KEYCODE_MEDIA_RECORD:
5218 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005219 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005220 case KeyEvent.KEYCODE_CAMERA:
5221 return false;
5222 }
5223 return true;
5224 }
5225
5226
Jeff Brown56194eb2011-03-02 19:23:13 -08005227 /** {@inheritDoc} */
5228 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005229 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5230 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005231 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5232 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005233 return 0;
5234 }
Michael Wright70af00a2014-09-03 19:30:20 -07005235 }
Bryce Lee5c138322014-11-03 08:26:09 -08005236
Michael Wright70af00a2014-09-03 19:30:20 -07005237 if (shouldDispatchInputWhenNonInteractive()) {
5238 return ACTION_PASS_TO_USER;
5239 }
Bryce Lee5c138322014-11-03 08:26:09 -08005240
Bryce Lee812d7022014-11-10 13:33:28 -08005241 // If we have not passed the action up and we are in theater mode without dreaming,
5242 // there will be no dream to intercept the touch and wake into ambient. The device should
5243 // wake up in this case.
5244 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005245 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5246 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005247 }
5248
Jeff Brown037c33e2014-04-09 00:31:55 -07005249 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005250 }
5251
Michael Wright70af00a2014-09-03 19:30:20 -07005252 private boolean shouldDispatchInputWhenNonInteractive() {
Michael Wright2ccf0c82015-08-04 23:03:03 +01005253 if (mDisplay == null || mDisplay.getState() == Display.STATE_OFF) {
5254 return false;
5255 }
5256 // Send events to keyguard while the screen is on and it's showing.
5257 if (isKeyguardShowingAndNotOccluded()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005258 return true;
5259 }
5260
5261 // Send events to a dozing dream even if the screen is off since the dream
5262 // is in control of the state of the screen.
5263 IDreamManager dreamManager = getDreamManager();
5264
5265 try {
5266 if (dreamManager != null && dreamManager.isDreaming()) {
5267 return true;
5268 }
5269 } catch (RemoteException e) {
5270 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5271 }
5272
5273 // Otherwise, consume events since the user can't see what is being
5274 // interacted with.
5275 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005276 }
5277
RoboErik001c59c2015-01-26 15:53:51 -08005278 private void dispatchDirectAudioEvent(KeyEvent event) {
5279 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5280 return;
5281 }
5282 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005283 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5284 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005285 String pkgName = mContext.getOpPackageName();
5286 switch (keyCode) {
5287 case KeyEvent.KEYCODE_VOLUME_UP:
5288 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005289 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005290 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005291 } catch (RemoteException e) {
5292 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5293 }
5294 break;
5295 case KeyEvent.KEYCODE_VOLUME_DOWN:
5296 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005297 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005298 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005299 } catch (RemoteException e) {
5300 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5301 }
5302 break;
5303 case KeyEvent.KEYCODE_VOLUME_MUTE:
5304 try {
5305 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005306 getAudioService().adjustSuggestedStreamVolume(
5307 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005308 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005309 }
5310 } catch (RemoteException e) {
5311 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5312 }
5313 break;
5314 }
5315 }
5316
Jeff Brown40013652012-05-16 21:22:36 -07005317 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5318 if (DEBUG_INPUT) {
5319 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005320 }
5321
Jeff Brown40013652012-05-16 21:22:36 -07005322 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5323 if (DEBUG_INPUT) {
5324 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5325 }
5326
5327 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5328 mHavePendingMediaKeyRepeatWithWakeLock = false;
5329 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5330 }
5331
5332 dispatchMediaKeyWithWakeLockToAudioService(event);
5333
5334 if (event.getAction() == KeyEvent.ACTION_DOWN
5335 && event.getRepeatCount() == 0) {
5336 mHavePendingMediaKeyRepeatWithWakeLock = true;
5337
5338 Message msg = mHandler.obtainMessage(
5339 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5340 msg.setAsynchronous(true);
5341 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5342 } else {
5343 mBroadcastWakeLock.release();
5344 }
5345 }
5346
5347 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5348 mHavePendingMediaKeyRepeatWithWakeLock = false;
5349
5350 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5351 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5352 if (DEBUG_INPUT) {
5353 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5354 }
5355
5356 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5357 mBroadcastWakeLock.release();
5358 }
5359
5360 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5361 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005362 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005363 }
5364 }
5365
Michael Wright869a67c2014-08-26 19:33:06 -07005366 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005367 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5368 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5369 if (dic != null) {
5370 try {
5371 dic.exitIdle("voice-search");
5372 } catch (RemoteException e) {
5373 }
5374 }
Michael Wright869a67c2014-08-26 19:33:06 -07005375 Intent voiceIntent =
5376 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5377 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005378 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005379 mBroadcastWakeLock.release();
5380 }
5381
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005382 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005383 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005384 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005385 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5386 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5387 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005388 } else {
5389 try {
5390 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5391 ServiceManager.getService(Context.UI_MODE_SERVICE));
5392 mUiMode = uiModeService.getCurrentModeType();
5393 } catch (RemoteException e) {
5394 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005395 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005396 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005397 synchronized (mLock) {
5398 updateOrientationListenerLp();
5399 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005400 }
5401 };
5402
Jeff Brown6aaf2952012-10-05 16:01:08 -07005403 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5404 @Override
5405 public void onReceive(Context context, Intent intent) {
5406 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005407 if (mKeyguardDelegate != null) {
5408 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005409 }
5410 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005411 if (mKeyguardDelegate != null) {
5412 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005413 }
5414 }
5415 }
5416 };
5417
Christopher Tate5e08af02012-09-21 17:17:22 -07005418 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5419 @Override
5420 public void onReceive(Context context, Intent intent) {
5421 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5422 // tickle the settings observer: this first ensures that we're
5423 // observing the relevant settings for the newly-active user,
5424 // and then updates our own bookkeeping based on the now-
5425 // current user.
5426 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005427
5428 // force a re-application of focused window sysui visibility.
5429 // the window may never have been shown for this user
5430 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005431 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005432 mLastSystemUiFlags = 0;
5433 updateSystemUiVisibilityLw();
5434 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005435 }
5436 }
5437 };
5438
Adrian Roosddc8b272015-05-21 16:28:27 -07005439 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005440 @Override
5441 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005442 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5443 if (!isUserSetupComplete()) {
5444 // Swipe-up for navigation bar is disabled during setup
5445 return;
5446 }
5447 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5448 mNavigationBarController.showTransient();
5449 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005450 }
5451 };
5452
John Spurlocke1f366f2013-08-05 12:22:40 -04005453 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005454 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005455 if (!isUserSetupComplete()) {
5456 // Swipe-up for navigation bar is disabled during setup
5457 return;
5458 }
John Spurlock27735a42013-08-14 17:57:38 -04005459 boolean sb = mStatusBarController.checkShowTransientBarLw();
5460 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005461 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005462 // Don't show status bar when swiping on already visible navigation bar
5463 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005464 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005465 return;
5466 }
John Spurlock27735a42013-08-14 17:57:38 -04005467 if (sb) mStatusBarController.showTransient();
5468 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005469 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005470 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005471 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005472 }
5473 }
5474
Jeff Brown3ee549c2014-09-22 20:14:39 -07005475 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005476 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005477 public void startedGoingToSleep(int why) {
5478 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005479 if (mKeyguardDelegate != null) {
5480 mKeyguardDelegate.onStartedGoingToSleep(why);
5481 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005482 }
5483
5484 // Called on the PowerManager's Notifier thread.
5485 @Override
5486 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005487 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005488 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005489 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005490
5491 // We must get this work done here because the power manager will drop
5492 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005493 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005494 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005495 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005496 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005497 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005498 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005499 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005500 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005501 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005502 }
5503
Jeff Brown3ee549c2014-09-22 20:14:39 -07005504 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005505 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005506 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005507 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005508 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005509
Jeff Brown3ee549c2014-09-22 20:14:39 -07005510 // Since goToSleep performs these functions synchronously, we must
5511 // do the same here. We cannot post this work to a handler because
5512 // that might cause it to become reordered with respect to what
5513 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005514 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005515 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005516
Jeff Browna20dda42014-05-27 20:57:24 -07005517 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005518 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005519 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005520 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005521
Jim Miller5ecd8112013-01-09 18:50:26 -08005522 if (mKeyguardDelegate != null) {
Jorim Jaggi740452e2015-07-09 12:13:59 -07005523 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005524 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005525 }
5526
Jeff Brown416c49c2015-05-26 19:50:18 -07005527 // Called on the PowerManager's Notifier thread.
5528 @Override
5529 public void finishedWakingUp() {
5530 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5531 }
5532
5533 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005534 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005535 }
5536
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005537 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005538 final boolean theaterModeEnabled = isTheaterModeEnabled();
5539 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005540 return false;
5541 }
5542
Bryce Leed3896842015-06-23 17:06:51 -07005543 if (theaterModeEnabled) {
5544 Settings.Global.putInt(mContext.getContentResolver(),
5545 Settings.Global.THEATER_MODE_ON, 0);
5546 }
5547
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005548 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005549 return true;
5550 }
5551
Jeff Brown36c4db82014-09-19 12:05:31 -07005552 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005553 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005554 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005555 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005556 }
5557
Jeff Brown36c4db82014-09-19 12:05:31 -07005558 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005559 if (mKeyguardDelegate != null) {
5560 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5561 }
Jorim Jaggi740452e2015-07-09 12:13:59 -07005562 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005563 }
5564
Jorim Jaggi740452e2015-07-09 12:13:59 -07005565 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5566 // as well as enabling the orientation change logic/sensor.
5567 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5568 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005569 }
5570
5571 // Called on the DisplayManager's DisplayPowerController thread.
5572 @Override
5573 public void screenTurnedOff() {
5574 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5575
Jeff Brown48d1b142015-06-10 16:36:03 -07005576 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005577 synchronized (mLock) {
5578 mScreenOnEarly = false;
5579 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005580 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005581 mWindowManagerDrawComplete = false;
5582 mScreenOnListener = null;
5583 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005584
5585 if (mKeyguardDelegate != null) {
5586 mKeyguardDelegate.onScreenTurnedOff();
5587 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005588 }
5589 }
5590
Jeff Brown3ee549c2014-09-22 20:14:39 -07005591 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005592 @Override
5593 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005594 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005595
Jeff Brown48d1b142015-06-10 16:36:03 -07005596 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005597 synchronized (mLock) {
5598 mScreenOnEarly = true;
5599 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005600 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005601 mWindowManagerDrawComplete = false;
5602 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005603
Jorim Jaggi740452e2015-07-09 12:13:59 -07005604 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005605 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5606 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi740452e2015-07-09 12:13:59 -07005607 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5608 } else {
5609 if (DEBUG_WAKEUP) Slog.d(TAG,
5610 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5611 finishKeyguardDrawn();
5612 }
5613 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005614 }
5615
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005616 // Called on the DisplayManager's DisplayPowerController thread.
5617 @Override
5618 public void screenTurnedOn() {
5619 synchronized (mLock) {
5620 if (mKeyguardDelegate != null) {
5621 mKeyguardDelegate.onScreenTurnedOn();
5622 }
5623 }
5624 }
5625
Jeff Brown36c4db82014-09-19 12:05:31 -07005626 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005627 synchronized (mLock) {
5628 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005629 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005630 }
5631
Jeff Brown36c4db82014-09-19 12:05:31 -07005632 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005633 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005634
5635 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005636 }
5637
Craig Mautner8a0da012014-05-31 15:13:37 -07005638 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005639 synchronized (mLock) {
5640 // We have just finished drawing screen content. Since the orientation listener
5641 // gets only installed when all windows are drawn, we try to install it again.
5642 updateOrientationListenerLp();
5643 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005644 final ScreenOnListener listener;
5645 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005646 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005647 if (DEBUG_WAKEUP) Slog.d(TAG,
5648 "finishScreenTurningOn: mAwake=" + mAwake
5649 + ", mScreenOnEarly=" + mScreenOnEarly
5650 + ", mScreenOnFully=" + mScreenOnFully
5651 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5652 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5653
5654 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5655 || (mAwake && !mKeyguardDrawComplete)) {
5656 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005657 }
5658
Jeff Brown3ee549c2014-09-22 20:14:39 -07005659 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5660 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005661 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005662 mScreenOnFully = true;
5663
5664 // Remember the first time we draw the keyguard so we know when we're done with
5665 // the main part of booting and can enable the screen and hide boot messages.
5666 if (!mKeyguardDrawnOnce && mAwake) {
5667 mKeyguardDrawnOnce = true;
5668 enableScreen = true;
5669 if (mBootMessageNeedsHiding) {
5670 mBootMessageNeedsHiding = false;
5671 hideBootMessages();
5672 }
5673 } else {
5674 enableScreen = false;
5675 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005676 }
5677
Jeff Brown3ee549c2014-09-22 20:14:39 -07005678 if (listener != null) {
5679 listener.onScreenOn();
5680 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005681
Jeff Brown3ee549c2014-09-22 20:14:39 -07005682 if (enableScreen) {
5683 try {
5684 mWindowManager.enableScreenIfNeeded();
5685 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005686 }
Craig Mautnera631d492014-08-05 15:16:01 -07005687 }
5688 }
5689
5690 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005691 synchronized (mLock) {
5692 if (!mKeyguardDrawnOnce) {
5693 mBootMessageNeedsHiding = true;
5694 return; // keyguard hasn't drawn the first time yet, not done booting
5695 }
Craig Mautnera631d492014-08-05 15:16:01 -07005696 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005697
5698 if (mBootMsgDialog != null) {
5699 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5700 mBootMsgDialog.dismiss();
5701 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005702 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005703 }
5704
5705 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005706 public boolean isScreenOn() {
5707 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005708 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005709
Dianne Hackborn08743722009-12-21 12:16:51 -08005710 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005711 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005712 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005713 if (mKeyguardDelegate != null) {
5714 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005715 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005716 }
5717
5718 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005719 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005720 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005721 if (mKeyguardDelegate != null) {
5722 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005723 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005724 }
5725
Jim Millerab954542014-10-10 18:21:49 -07005726 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005727 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005728 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005729 }
5730
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005731 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005732 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005733 public boolean isKeyguardLocked() {
5734 return keyguardOn();
5735 }
5736
5737 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005738 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005739 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005740 if (mKeyguardDelegate == null) return false;
5741 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005742 }
5743
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005744 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005745 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005746 public boolean isKeyguardShowingOrOccluded() {
5747 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5748 }
5749
5750 /** {@inheritDoc} */
5751 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005752 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005753 if (mKeyguardDelegate == null) return false;
5754 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005755 }
5756
Jose Lima9546b202014-07-02 17:21:51 -07005757 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005758 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005759 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005760 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005761 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005762 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005763 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005764 // ask the keyguard to prompt the user to authenticate if necessary
5765 mKeyguardDelegate.dismiss();
5766 }
5767 });
5768 }
5769 }
5770
5771 public void notifyActivityDrawnForKeyguardLw() {
5772 if (mKeyguardDelegate != null) {
5773 mHandler.post(new Runnable() {
5774 @Override
5775 public void run() {
5776 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005777 }
5778 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005779 }
5780 }
5781
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005782 @Override
5783 public boolean isKeyguardDrawnLw() {
5784 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005785 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005786 }
5787 }
5788
Jorim Jaggi0d674622014-05-21 01:34:15 +02005789 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005790 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005791 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005792 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005793 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005794 }
5795 }
5796
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005797 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005798 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005799 }
5800
5801 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005802 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005803 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005804
Jeff Brown01a98dd2011-09-20 15:08:29 -07005805 @Override
5806 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005807 if (false) {
5808 Slog.v(TAG, "rotationForOrientationLw(orient="
5809 + orientation + ", last=" + lastRotation
5810 + "); user=" + mUserRotation + " "
5811 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5812 ? "USER_ROTATION_LOCKED" : "")
5813 );
5814 }
5815
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005816 if (mForceDefaultOrientation) {
5817 return Surface.ROTATION_0;
5818 }
5819
The Android Open Source Project0727d222009-03-11 12:11:58 -07005820 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005821 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5822 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005823 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005824 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005825
Jeff Browndec6cf42011-11-15 14:08:20 -08005826 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005827 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005828 // Ignore sensor when lid switch is open and rotation is forced.
5829 preferredRotation = mLidOpenRotation;
5830 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005831 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005832 // Ignore sensor when in car dock unless explicitly enabled.
5833 // This case can override the behavior of NOSENSOR, and can also
5834 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005835 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005836 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005837 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5838 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5839 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005840 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005841 // Ignore sensor when in desk dock unless explicitly enabled.
5842 // This case can override the behavior of NOSENSOR, and can also
5843 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005844 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005845 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005846 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5847 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005848 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005849 preferredRotation = mDemoHdmiRotation;
5850 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5851 && mUndockedHdmiRotation >= 0) {
5852 // Ignore sensor when plugged into HDMI and an undocked orientation has
5853 // been specified in the configuration (only for legacy devices without
5854 // full multi-display support).
5855 // Note that the dock orientation overrides the HDMI orientation.
5856 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005857 } else if (mDemoRotationLock) {
5858 // Ignore sensor when demo rotation lock is enabled.
5859 // Note that the dock orientation and HDMI rotation lock override this.
5860 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005861 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5862 // Application just wants to remain locked in the last rotation.
5863 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005864 } else if (!mSupportAutoRotation) {
5865 // If we don't support auto-rotation then bail out here and ignore
5866 // the sensor and any rotation lock settings.
5867 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005868 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005869 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005870 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5871 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5872 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5873 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005874 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5875 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5876 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5877 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5878 // Otherwise, use sensor only if requested by the application or enabled
5879 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005880 if (mAllowAllRotations < 0) {
5881 // Can't read this during init() because the context doesn't
5882 // have display metrics at that time so we cannot determine
5883 // tablet vs. phone then.
5884 mAllowAllRotations = mContext.getResources().getBoolean(
5885 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5886 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005887 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005888 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005889 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5890 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005891 preferredRotation = sensorRotation;
5892 } else {
5893 preferredRotation = lastRotation;
5894 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005895 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5896 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5897 // Apply rotation lock. Does not apply to NOSENSOR.
5898 // The idea is that the user rotation expresses a weak preference for the direction
5899 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5900 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005901 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005902 } else {
5903 // No overriding preference.
5904 // We will do exactly what the application asked us to do.
5905 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005906 }
5907
Dianne Hackborne5439f22010-10-02 16:53:50 -07005908 switch (orientation) {
5909 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005910 // Return portrait unless overridden.
5911 if (isAnyPortrait(preferredRotation)) {
5912 return preferredRotation;
5913 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005914 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005915
Jeff Brown01a98dd2011-09-20 15:08:29 -07005916 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005917 // Return landscape unless overridden.
5918 if (isLandscapeOrSeascape(preferredRotation)) {
5919 return preferredRotation;
5920 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005921 return mLandscapeRotation;
5922
5923 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005924 // Return reverse portrait unless overridden.
5925 if (isAnyPortrait(preferredRotation)) {
5926 return preferredRotation;
5927 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005928 return mUpsideDownRotation;
5929
5930 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005931 // Return seascape unless overridden.
5932 if (isLandscapeOrSeascape(preferredRotation)) {
5933 return preferredRotation;
5934 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005935 return mSeascapeRotation;
5936
5937 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005938 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005939 // Return either landscape rotation.
5940 if (isLandscapeOrSeascape(preferredRotation)) {
5941 return preferredRotation;
5942 }
5943 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005944 return lastRotation;
5945 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005946 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005947
Jeff Brown01a98dd2011-09-20 15:08:29 -07005948 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005949 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005950 // Return either portrait rotation.
5951 if (isAnyPortrait(preferredRotation)) {
5952 return preferredRotation;
5953 }
5954 if (isAnyPortrait(lastRotation)) {
5955 return lastRotation;
5956 }
5957 return mPortraitRotation;
5958
5959 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005960 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5961 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005962 if (preferredRotation >= 0) {
5963 return preferredRotation;
5964 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005965 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005966 }
5967 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005968 }
5969
Jeff Brown01a98dd2011-09-20 15:08:29 -07005970 @Override
5971 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5972 switch (orientation) {
5973 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5974 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5975 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5976 return isAnyPortrait(rotation);
5977
5978 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5979 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5980 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5981 return isLandscapeOrSeascape(rotation);
5982
5983 default:
5984 return true;
5985 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005986 }
5987
Jeff Brownc0347aa2011-09-23 17:26:09 -07005988 @Override
5989 public void setRotationLw(int rotation) {
5990 mOrientationListener.setCurrentRotation(rotation);
5991 }
5992
Jeff Brown01a98dd2011-09-20 15:08:29 -07005993 private boolean isLandscapeOrSeascape(int rotation) {
5994 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005995 }
5996
Jeff Brown01a98dd2011-09-20 15:08:29 -07005997 private boolean isAnyPortrait(int rotation) {
5998 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005999 }
6000
Jose Lima9546b202014-07-02 17:21:51 -07006001 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006002 public int getUserRotationMode() {
6003 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07006004 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
6005 WindowManagerPolicy.USER_ROTATION_FREE :
6006 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006007 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006008
6009 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07006010 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006011 public void setUserRotationMode(int mode, int rot) {
6012 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006013
6014 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006015 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006016 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006017 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006018 rot,
6019 UserHandle.USER_CURRENT);
6020 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006021 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006022 0,
6023 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006024 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006025 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006026 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006027 1,
6028 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006029 }
6030 }
6031
Jose Lima9546b202014-07-02 17:21:51 -07006032 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006033 public void setSafeMode(boolean safeMode) {
6034 mSafeMode = safeMode;
6035 performHapticFeedbackLw(null, safeMode
6036 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6037 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006038 }
Craig Mautnereda67292013-04-28 13:50:14 -07006039
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006040 static long[] getLongIntArray(Resources r, int resid) {
6041 int[] ar = r.getIntArray(resid);
6042 if (ar == null) {
6043 return null;
6044 }
6045 long[] out = new long[ar.length];
6046 for (int i=0; i<ar.length; i++) {
6047 out[i] = ar[i];
6048 }
6049 return out;
6050 }
Craig Mautnereda67292013-04-28 13:50:14 -07006051
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006052 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006053 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006054 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006055 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006056 mKeyguardDelegate.onSystemReady();
6057
Michael Wright3818c922014-09-02 13:59:07 -07006058 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006059 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006060 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006061 synchronized (mLock) {
6062 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006063 mSystemReady = true;
6064 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006065 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006066 public void run() {
6067 updateSettings();
6068 }
6069 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006070
6071 bindKeyguardNow = mDeferBindKeyguard;
6072 if (bindKeyguardNow) {
6073 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6074 mDeferBindKeyguard = false;
6075 }
6076 }
6077
6078 if (bindKeyguardNow) {
6079 mKeyguardDelegate.bindService(mContext);
6080 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006081 }
6082 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006083
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006084 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006085 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006086 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006087 boolean bindKeyguardNow = false;
6088 synchronized (mLock) {
6089 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6090 // in systemReady if not.
6091 if (mKeyguardDelegate != null) {
6092 bindKeyguardNow = true;
6093 } else {
6094 // Because mKeyguardDelegate is null, we know that the synchronized block in
6095 // systemReady didn't run yet and setting this will actually have an effect.
6096 mDeferBindKeyguard = true;
6097 }
6098 }
6099 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006100 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006101 mKeyguardDelegate.onBootCompleted();
6102 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006103 synchronized (mLock) {
6104 mSystemBooted = true;
6105 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006106 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006107 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006108 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006109 }
6110
Dianne Hackborn661cd522011-08-22 00:26:20 -07006111 ProgressDialog mBootMsgDialog = null;
6112
6113 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006114 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006115 public void showBootMessage(final CharSequence msg, final boolean always) {
6116 mHandler.post(new Runnable() {
6117 @Override public void run() {
6118 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006119 int theme;
6120 if (mContext.getPackageManager().hasSystemFeature(
6121 PackageManager.FEATURE_WATCH)) {
6122 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6123 } else if (mContext.getPackageManager().hasSystemFeature(
6124 PackageManager.FEATURE_TELEVISION)) {
6125 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6126 } else {
6127 theme = 0;
6128 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006129
6130 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006131 // This dialog will consume all events coming in to
6132 // it, to avoid it trying to do things too early in boot.
6133 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6134 return true;
6135 }
6136 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6137 return true;
6138 }
6139 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6140 return true;
6141 }
6142 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6143 return true;
6144 }
6145 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6146 return true;
6147 }
6148 @Override public boolean dispatchPopulateAccessibilityEvent(
6149 AccessibilityEvent event) {
6150 return true;
6151 }
6152 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006153 if (mContext.getPackageManager().isUpgrade()) {
6154 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6155 } else {
6156 mBootMsgDialog.setTitle(R.string.android_start_title);
6157 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006158 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6159 mBootMsgDialog.setIndeterminate(true);
6160 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006161 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006162 mBootMsgDialog.getWindow().addFlags(
6163 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6164 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6165 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006166 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6167 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6168 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006169 mBootMsgDialog.setCancelable(false);
6170 mBootMsgDialog.show();
6171 }
6172 mBootMsgDialog.setMessage(msg);
6173 }
6174 });
6175 }
6176
6177 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006178 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006179 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006180 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006181 }
6182
Mike Lockwood28569302010-01-28 11:54:40 -05006183 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006184 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006185 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006186 // ***************************************
6187 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6188 // ***************************************
6189 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6190 // WITH ITS LOCKS HELD.
6191 //
6192 // This code must be VERY careful about the locks
6193 // it acquires.
6194 // In fact, the current code acquires way too many,
6195 // and probably has lurking deadlocks.
6196
Mike Lockwood28569302010-01-28 11:54:40 -05006197 synchronized (mScreenLockTimeout) {
6198 if (mLockScreenTimerActive) {
6199 // reset the timer
6200 mHandler.removeCallbacks(mScreenLockTimeout);
6201 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6202 }
6203 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006204 }
6205
Adam Cohenf7522022012-10-03 20:03:18 -07006206 class ScreenLockTimeout implements Runnable {
6207 Bundle options;
6208
6209 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006210 public void run() {
6211 synchronized (this) {
6212 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006213 if (mKeyguardDelegate != null) {
6214 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006215 }
Mike Lockwood28569302010-01-28 11:54:40 -05006216 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006217 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006218 }
6219 }
Mike Lockwood28569302010-01-28 11:54:40 -05006220
Adam Cohenf7522022012-10-03 20:03:18 -07006221 public void setLockOptions(Bundle options) {
6222 this.options = options;
6223 }
6224 }
6225
6226 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6227
Jose Lima9546b202014-07-02 17:21:51 -07006228 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006229 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006230 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6231 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006232 if (options != null) {
6233 // In case multiple calls are made to lockNow, we don't wipe out the options
6234 // until the runnable actually executes.
6235 mScreenLockTimeout.setLockOptions(options);
6236 }
Jim Miller93c518e2012-01-17 15:55:31 -08006237 mHandler.post(mScreenLockTimeout);
6238 }
6239
Mike Lockwood28569302010-01-28 11:54:40 -05006240 private void updateLockScreenTimeout() {
6241 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006242 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006243 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006244 if (mLockScreenTimerActive != enable) {
6245 if (enable) {
6246 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6247 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6248 } else {
6249 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6250 mHandler.removeCallbacks(mScreenLockTimeout);
6251 }
6252 mLockScreenTimerActive = enable;
6253 }
6254 }
6255 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006256
Jeff Brown061ea992015-04-17 19:55:47 -07006257 private void updateDreamingSleepToken(boolean acquire) {
6258 if (acquire) {
6259 if (mDreamingSleepToken == null) {
6260 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6261 }
6262 } else {
6263 if (mDreamingSleepToken != null) {
6264 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006265 mDreamingSleepToken = null;
6266 }
6267 }
6268 }
6269
6270 private void updateScreenOffSleepToken(boolean acquire) {
6271 if (acquire) {
6272 if (mScreenOffSleepToken == null) {
6273 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6274 }
6275 } else {
6276 if (mScreenOffSleepToken != null) {
6277 mScreenOffSleepToken.release();
6278 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006279 }
6280 }
6281 }
6282
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006283 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006284 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006285 public void enableScreenAfterBoot() {
6286 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006287 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006288 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006289 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006290
Jeff Brownc458ce92012-04-30 14:58:40 -07006291 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006292 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006293 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006294 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006295 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006296 }
Jeff Browna20dda42014-05-27 20:57:24 -07006297
6298 synchronized (mLock) {
6299 updateWakeGestureListenerLp();
6300 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006301 }
6302
Jeff Brown4f5fa282014-06-12 19:19:15 -07006303 void updateUiMode() {
6304 if (mUiModeManager == null) {
6305 mUiModeManager = IUiModeManager.Stub.asInterface(
6306 ServiceManager.getService(Context.UI_MODE_SERVICE));
6307 }
6308 try {
6309 mUiMode = mUiModeManager.getCurrentModeType();
6310 } catch (RemoteException e) {
6311 }
6312 }
6313
Jeff Brown01a98dd2011-09-20 15:08:29 -07006314 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006315 try {
6316 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006317 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6318 } catch (RemoteException e) {
6319 // Ignore
6320 }
6321 }
6322
6323 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6324 try {
6325 //set orientation on WindowManager
6326 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006327 } catch (RemoteException e) {
6328 // Ignore
6329 }
6330 }
6331
Daniel Sandler6396c722013-04-16 20:19:09 -04006332 /**
6333 * Return an Intent to launch the currently active dock app as home. Returns
6334 * null if the standard home should be launched, which is the case if any of the following is
6335 * true:
6336 * <ul>
6337 * <li>The device is not in either car mode or desk mode
6338 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6339 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6340 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6341 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6342 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006343 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006344 */
6345 Intent createHomeDockIntent() {
6346 Intent intent = null;
6347
6348 // What home does is based on the mode, not the dock state. That
6349 // is, when in car mode you should be taken to car home regardless
6350 // of whether we are actually in a car dock.
6351 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6352 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6353 intent = mCarDockIntent;
6354 }
6355 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6356 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6357 intent = mDeskDockIntent;
6358 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006359 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6360 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6361 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6362 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6363 // Always launch dock home from home when watch is docked, if it exists.
6364 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006365 }
6366
6367 if (intent == null) {
6368 return null;
6369 }
6370
6371 ActivityInfo ai = null;
6372 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6373 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006374 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006375 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006376 if (info != null) {
6377 ai = info.activityInfo;
6378 }
6379 if (ai != null
6380 && ai.metaData != null
6381 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6382 intent = new Intent(intent);
6383 intent.setClassName(ai.packageName, ai.name);
6384 return intent;
6385 }
6386
6387 return null;
6388 }
6389
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006390 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6391 if (awakenFromDreams) {
6392 awakenDreams();
6393 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006394
6395 Intent dock = createHomeDockIntent();
6396 if (dock != null) {
6397 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006398 if (fromHomeKey) {
6399 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6400 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006401 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006402 return;
6403 } catch (ActivityNotFoundException e) {
6404 }
6405 }
6406
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006407 Intent intent;
6408
6409 if (fromHomeKey) {
6410 intent = new Intent(mHomeIntent);
6411 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6412 } else {
6413 intent = mHomeIntent;
6414 }
6415
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006416 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006417 }
Craig Mautnereda67292013-04-28 13:50:14 -07006418
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006419 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006420 * goes to the home screen
6421 * @return whether it did anything
6422 */
6423 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006424 if (!isUserSetupComplete()) {
6425 Slog.i(TAG, "Not going home because user setup is in progress.");
6426 return false;
6427 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006428 if (false) {
6429 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006430 try {
6431 ActivityManagerNative.getDefault().stopAppSwitches();
6432 } catch (RemoteException e) {
6433 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006434 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006435 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006436 } else {
6437 // This code brings home to the front or, if it is already
6438 // at the front, puts the device to sleep.
6439 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006440 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6441 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6442 Log.d(TAG, "UTS-TEST-MODE");
6443 } else {
6444 ActivityManagerNative.getDefault().stopAppSwitches();
6445 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006446 Intent dock = createHomeDockIntent();
6447 if (dock != null) {
6448 int result = ActivityManagerNative.getDefault()
6449 .startActivityAsUser(null, null, dock,
6450 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6451 null, null, 0,
6452 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006453 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006454 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6455 return false;
6456 }
6457 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006458 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006459 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006460 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006461 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006462 null, null, 0,
6463 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006464 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006465 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006466 return false;
6467 }
6468 } catch (RemoteException ex) {
6469 // bummer, the activity manager, which is in this process, is dead
6470 }
6471 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006472 return true;
6473 }
Craig Mautnereda67292013-04-28 13:50:14 -07006474
6475 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006476 public void setCurrentOrientationLw(int newOrientation) {
6477 synchronized (mLock) {
6478 if (newOrientation != mCurrentAppOrientation) {
6479 mCurrentAppOrientation = newOrientation;
6480 updateOrientationListenerLp();
6481 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006482 }
6483 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006484
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006485 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6486 if (!isGlobalAccessibilityGestureEnabled()) {
6487 return;
6488 }
6489 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6490 Context.AUDIO_SERVICE);
6491 if (audioManager.isSilentMode()) {
6492 return;
6493 }
6494 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6495 Settings.System.DEFAULT_NOTIFICATION_URI);
6496 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6497 ringTone.play();
6498 }
Craig Mautnereda67292013-04-28 13:50:14 -07006499
Bryce Lee584a4452014-10-21 15:55:55 -07006500 private boolean isTheaterModeEnabled() {
6501 return Settings.Global.getInt(mContext.getContentResolver(),
6502 Settings.Global.THEATER_MODE_ON, 0) == 1;
6503 }
6504
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006505 private boolean isGlobalAccessibilityGestureEnabled() {
6506 return Settings.Global.getInt(mContext.getContentResolver(),
6507 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6508 }
6509
Craig Mautnereda67292013-04-28 13:50:14 -07006510 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006511 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006512 if (!mVibrator.hasVibrator()) {
6513 return false;
6514 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006515 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6516 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006517 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006518 return false;
6519 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006520 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006521 switch (effectId) {
6522 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006523 pattern = mLongPressVibePattern;
6524 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006525 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006526 pattern = mVirtualKeyVibePattern;
6527 break;
6528 case HapticFeedbackConstants.KEYBOARD_TAP:
6529 pattern = mKeyboardTapVibePattern;
6530 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006531 case HapticFeedbackConstants.CLOCK_TICK:
6532 pattern = mClockTickVibePattern;
6533 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006534 case HapticFeedbackConstants.CALENDAR_DATE:
6535 pattern = mCalendarDateVibePattern;
6536 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006537 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006538 pattern = mSafeModeDisabledVibePattern;
6539 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006540 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006541 pattern = mSafeModeEnabledVibePattern;
6542 break;
Mady Mellore8608912015-06-05 09:02:55 -07006543 case HapticFeedbackConstants.CONTEXT_CLICK:
6544 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006545 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006546 default:
6547 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006548 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006549 int owningUid;
6550 String owningPackage;
6551 if (win != null) {
6552 owningUid = win.getOwningUid();
6553 owningPackage = win.getOwningPackage();
6554 } else {
6555 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006556 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006557 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006558 if (pattern.length == 1) {
6559 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006560 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006561 } else {
6562 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006563 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006564 }
6565 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006566 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006567
6568 @Override
6569 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006570 }
6571
Jeff Brownc38c9be2012-10-04 13:16:19 -07006572 @Override
6573 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006574 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006575 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006576 }
6577 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006578
Dianne Hackborndf89e652011-10-06 22:35:11 -07006579 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006580 // If there is no window focused, there will be nobody to handle the events
6581 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006582 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6583 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006584 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006585 return 0;
6586 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006587 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006588 // We are updating at a point where the keyguard has gotten
6589 // focus, but we were last in a state where the top window is
6590 // hiding it. This is probably because the keyguard as been
6591 // shown while the top window was displayed, so we want to ignore
6592 // it here because this is just a very transient change and it
6593 // will quickly lose focus once it correctly gets hidden.
6594 return 0;
6595 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006596
John Spurlock1db8b682014-02-18 11:18:59 -05006597 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006598 & ~mResettingSystemUiFlags
6599 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006600 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006601 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006602 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006603 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006604 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006605 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006606 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006607 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006608 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006609 return 0;
6610 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006611 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006612 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006613 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006614 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006615 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006616 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006617 try {
6618 IStatusBarService statusbar = getStatusBarService();
6619 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006620 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006621 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006622 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006623 } catch (RemoteException e) {
6624 // re-acquire status bar service next time it is needed.
6625 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006626 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006627 }
6628 });
6629 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006630 }
6631
Adrian Rooscd3884d2015-02-18 17:25:23 +01006632 private int updateLightStatusBarLw(int vis) {
6633 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6634 ? mStatusBar
6635 : mTopFullscreenOpaqueOrDimmingWindowState;
6636
6637 if (statusColorWin != null) {
6638 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6639 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6640 // its light flag.
6641 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6642 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6643 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6644 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6645 // Otherwise if it's dimming, clear the light flag.
6646 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6647 }
6648 }
6649 return vis;
6650 }
6651
John Spurlock79da8332013-09-20 12:04:47 -04006652 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006653 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006654 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6655 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006656 : mTopFullscreenOpaqueWindowState;
6657 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6658 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6659
John Spurlock27735a42013-08-14 17:57:38 -04006660 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006661 int type = win.getAttrs().type;
6662 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006663 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006664 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6665 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006666 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006667 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6668 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006669 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006670 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6671 }
John Spurlockbd957402013-10-03 11:38:39 -04006672 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006673 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006674
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006675 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006676 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6677 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006678 }
6679
John Spurlock27735a42013-08-14 17:57:38 -04006680 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006681 boolean immersiveSticky =
6682 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006683 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006684 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006685 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006686 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6687 boolean hideStatusBarSysui =
6688 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006689 boolean hideNavBarSysui =
6690 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006691
John Spurlock27735a42013-08-14 17:57:38 -04006692 boolean transientStatusBarAllowed =
6693 mStatusBar != null && (
6694 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006695 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006696 || statusBarHasFocus);
6697
John Spurlockf1a36642013-10-12 17:50:42 -04006698 boolean transientNavBarAllowed =
6699 mNavigationBar != null &&
6700 hideNavBarSysui && immersiveSticky;
6701
Adrian Roosddc8b272015-05-21 16:28:27 -07006702 final long now = SystemClock.uptimeMillis();
6703 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6704 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6705 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6706 // The user performed the panic gesture recently, we're about to hide the bars,
6707 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6708 mPendingPanicGestureUptime = 0;
6709 mStatusBarController.showTransient();
6710 mNavigationBarController.showTransient();
6711 }
6712
John Spurlockf25706f2013-11-07 18:02:43 -05006713 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006714 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006715 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006716 && !transientNavBarAllowed;
6717 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006718 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006719 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006720 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006721 }
John Spurlock27735a42013-08-14 17:57:38 -04006722
Selim Cinekf98702e2015-05-20 22:48:40 -07006723 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6724 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6725 final boolean navAllowedHidden = immersive || immersiveSticky;
6726
Selim Cinekd6623612015-05-22 18:56:22 -07006727 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6728 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006729 // We can't hide the navbar from this window otherwise the input consumer would not get
6730 // the input events.
6731 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6732 }
6733
John Spurlock27735a42013-08-14 17:57:38 -04006734 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6735
6736 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006737 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6738 boolean newImmersiveMode = isImmersiveMode(vis);
6739 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006740 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006741 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6742 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006743 }
John Spurlock27735a42013-08-14 17:57:38 -04006744
John Spurlockf1a36642013-10-12 17:50:42 -04006745 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6746
John Spurlocke1f366f2013-08-05 12:22:40 -04006747 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006748 }
6749
John Spurlockf1a36642013-10-12 17:50:42 -04006750 private void clearClearableFlagsLw() {
6751 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6752 if (newVal != mResettingSystemUiFlags) {
6753 mResettingSystemUiFlags = newVal;
6754 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6755 }
6756 }
6757
6758 private boolean isImmersiveMode(int vis) {
6759 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006760 return mNavigationBar != null
6761 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006762 && (vis & flags) != 0
6763 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006764 }
6765
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006766 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006767 * @return whether the navigation or status bar can be made translucent
6768 *
6769 * This should return true unless touch exploration is not enabled or
6770 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006771 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006772 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006773 return mTranslucentDecorEnabled
6774 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006775 }
6776
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006777 // Use this instead of checking config_showNavigationBar so that it can be consistently
6778 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006779 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006780 public boolean hasNavigationBar() {
6781 return mHasNavigationBar;
6782 }
6783
satok1bc0a492012-04-25 22:47:12 +09006784 @Override
6785 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6786 mLastInputMethodWindow = ime;
6787 mLastInputMethodTargetWindow = target;
6788 }
6789
Craig Mautnerf1b67412012-09-19 13:18:29 -07006790 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006791 public int getInputMethodWindowVisibleHeightLw() {
6792 return mDockBottom - mCurBottom;
6793 }
6794
6795 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006796 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006797 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006798 if (mKeyguardDelegate != null) {
6799 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006800 }
John Spurlock13451a22012-09-28 14:40:41 -04006801 if (mStatusBarService != null) {
6802 try {
6803 mStatusBarService.setCurrentUser(newUserId);
6804 } catch (RemoteException e) {
6805 // oh well
6806 }
6807 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006808 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006809 }
6810
6811 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006812 public boolean canMagnifyWindow(int windowType) {
6813 switch (windowType) {
6814 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6815 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6816 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6817 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6818 return false;
6819 }
6820 }
6821 return true;
6822 }
6823
6824 @Override
6825 public boolean isTopLevelWindow(int windowType) {
6826 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6827 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6828 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6829 }
6830 return true;
6831 }
6832
Jim Miller4eeb4f62012-11-08 00:04:29 -08006833 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006834 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006835 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006836 pw.print(" mSystemReady="); pw.print(mSystemReady);
6837 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006838 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006839 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006840 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006841 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006842 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6843 || mForceClearedSystemUiFlags != 0) {
6844 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6845 pw.print(Integer.toHexString(mLastSystemUiFlags));
6846 pw.print(" mResettingSystemUiFlags=0x");
6847 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6848 pw.print(" mForceClearedSystemUiFlags=0x");
6849 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006850 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006851 if (mLastFocusNeedsMenu) {
6852 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6853 pw.println(mLastFocusNeedsMenu);
6854 }
Jeff Browna20dda42014-05-27 20:57:24 -07006855 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6856 pw.println(mWakeGestureEnabledSetting);
6857
Jeff Brownbcdfc622014-03-06 19:13:04 -08006858 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006859 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6860 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006861 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6862 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6863 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6864 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006865 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006866 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006867 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6868 pw.print(mCarDockEnablesAccelerometer);
6869 pw.print(" mDeskDockEnablesAccelerometer=");
6870 pw.println(mDeskDockEnablesAccelerometer);
6871 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6872 pw.print(mLidKeyboardAccessibility);
6873 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006874 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006875 pw.print(prefix);
6876 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6877 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006878 pw.print(prefix);
6879 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6880 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006881 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006882 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6883 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6884 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6885 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6886 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6887 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6888 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006889 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6890 pw.print(","); pw.print(mOverscanScreenTop);
6891 pw.print(") "); pw.print(mOverscanScreenWidth);
6892 pw.print("x"); pw.println(mOverscanScreenHeight);
6893 if (mOverscanLeft != 0 || mOverscanTop != 0
6894 || mOverscanRight != 0 || mOverscanBottom != 0) {
6895 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6896 pw.print(" top="); pw.print(mOverscanTop);
6897 pw.print(" right="); pw.print(mOverscanRight);
6898 pw.print(" bottom="); pw.println(mOverscanBottom);
6899 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006900 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6901 pw.print(mRestrictedOverscanScreenLeft);
6902 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6903 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6904 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006905 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6906 pw.print(","); pw.print(mUnrestrictedScreenTop);
6907 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6908 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6909 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6910 pw.print(","); pw.print(mRestrictedScreenTop);
6911 pw.print(") "); pw.print(mRestrictedScreenWidth);
6912 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006913 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6914 pw.print(","); pw.print(mStableFullscreenTop);
6915 pw.print(")-("); pw.print(mStableFullscreenRight);
6916 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006917 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6918 pw.print(","); pw.print(mStableTop);
6919 pw.print(")-("); pw.print(mStableRight);
6920 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006921 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6922 pw.print(","); pw.print(mSystemTop);
6923 pw.print(")-("); pw.print(mSystemRight);
6924 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006925 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6926 pw.print(","); pw.print(mCurTop);
6927 pw.print(")-("); pw.print(mCurRight);
6928 pw.print(","); pw.print(mCurBottom); pw.println(")");
6929 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6930 pw.print(","); pw.print(mContentTop);
6931 pw.print(")-("); pw.print(mContentRight);
6932 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006933 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6934 pw.print(","); pw.print(mVoiceContentTop);
6935 pw.print(")-("); pw.print(mVoiceContentRight);
6936 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006937 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6938 pw.print(","); pw.print(mDockTop);
6939 pw.print(")-("); pw.print(mDockRight);
6940 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006941 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6942 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006943 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6944 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006945 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6946 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006947 if (mLastInputMethodWindow != null) {
6948 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6949 pw.println(mLastInputMethodWindow);
6950 }
6951 if (mLastInputMethodTargetWindow != null) {
6952 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6953 pw.println(mLastInputMethodTargetWindow);
6954 }
6955 if (mStatusBar != null) {
6956 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006957 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6958 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006959 }
6960 if (mNavigationBar != null) {
6961 pw.print(prefix); pw.print("mNavigationBar=");
6962 pw.println(mNavigationBar);
6963 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006964 if (mFocusedWindow != null) {
6965 pw.print(prefix); pw.print("mFocusedWindow=");
6966 pw.println(mFocusedWindow);
6967 }
6968 if (mFocusedApp != null) {
6969 pw.print(prefix); pw.print("mFocusedApp=");
6970 pw.println(mFocusedApp);
6971 }
6972 if (mWinDismissingKeyguard != null) {
6973 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6974 pw.println(mWinDismissingKeyguard);
6975 }
6976 if (mTopFullscreenOpaqueWindowState != null) {
6977 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6978 pw.println(mTopFullscreenOpaqueWindowState);
6979 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006980 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6981 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6982 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6983 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006984 if (mForcingShowNavBar) {
6985 pw.print(prefix); pw.print("mForcingShowNavBar=");
6986 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6987 pw.println(mForcingShowNavBarLayer);
6988 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006989 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006990 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006991 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6992 pw.print(" mForceStatusBarFromKeyguard=");
6993 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006994 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006995 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006996 pw.print(" mHomePressed="); pw.println(mHomePressed);
6997 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6998 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6999 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
7000 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
7001 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
7002 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
7003 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
7004 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
7005 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
7006 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07007007 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
7008 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
7009 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07007010
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07007011 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04007012 mStatusBarController.dump(pw, prefix);
7013 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007014 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007015
Jeff Browna20dda42014-05-27 20:57:24 -07007016 if (mWakeGestureListener != null) {
7017 mWakeGestureListener.dump(pw, prefix);
7018 }
Jeff Brown600f0032014-05-22 17:06:00 -07007019 if (mOrientationListener != null) {
7020 mOrientationListener.dump(pw, prefix);
7021 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007022 if (mBurnInProtectionHelper != null) {
7023 mBurnInProtectionHelper.dump(prefix, pw);
7024 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007025 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007026}