blob: bfd1fedfc7251df9cfefe53ee21b92c9a4326394 [file] [log] [blame]
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001/*
Jeff Brown37df39a92015-02-25 15:42:31 -08002 * Copyright (C) 2006 The Android Open Source Project
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jorim Jaggib10e33f2015-02-04 21:57:40 +010017package com.android.server.policy;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080018
Dianne Hackborna4972e92012-03-14 10:38:05 -070019import android.app.ActivityManager;
Jeff Brown061ea992015-04-17 19:55:47 -070020import android.app.ActivityManagerInternal;
21import android.app.ActivityManagerInternal.SleepToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080022import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080023import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040024import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070025import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070026import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040027import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080028import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070029import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080030import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040031import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080032import android.content.ContentResolver;
33import android.content.Context;
34import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070035import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070036import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080037import android.content.pm.ActivityInfo;
38import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040039import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070040import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080041import android.content.res.Configuration;
42import android.content.res.Resources;
Craig Mautner8e4df6c2012-05-23 16:57:23 -070043import android.content.res.TypedArray;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080044import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080045import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080046import android.graphics.Rect;
Jinsuk Kime601b712015-07-07 08:01:02 +090047import android.hardware.hdmi.HdmiControlManager;
48import android.hardware.hdmi.HdmiPlaybackClient;
49import android.hardware.hdmi.HdmiPlaybackClient.OneTouchPlayCallback;
John Spurlock7b414672014-07-18 13:02:39 -040050import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080051import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050052import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080053import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070054import android.media.Ringtone;
55import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070056import android.media.session.MediaSessionLegacyHelper;
Billy Laucbe540f2015-06-25 01:51:44 +010057import android.os.Binder;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070058import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080059import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070060import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080061import android.os.Handler;
62import android.os.IBinder;
Dianne Hackbornb6683c42015-06-18 17:40:33 -070063import android.os.IDeviceIdleController;
Jeff Brown32cbc38552011-12-01 14:01:49 -080064import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070065import android.os.Message;
66import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080067import android.os.PowerManager;
Billy Laucbe540f2015-06-25 01:51:44 +010068import android.os.Process;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080069import android.os.RemoteException;
70import android.os.ServiceManager;
71import android.os.SystemClock;
72import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080073import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070074import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080075import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070076import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080077import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070078import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040079import android.service.dreams.DreamService;
80import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070081import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070082import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070083import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080084import android.util.EventLog;
85import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070086import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080087import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070088import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080089import android.view.Gravity;
90import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080091import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080092import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070093import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070094import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080095import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080096import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080097import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080098import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080099import android.view.KeyEvent;
100import android.view.MotionEvent;
Chris Wren9bb290b2015-06-29 12:02:13 -0400101
102import com.android.internal.logging.MetricsLogger;
Adam Powell6711f3b2015-05-06 15:57:09 -0700103import com.android.internal.policy.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800104import android.view.Surface;
105import android.view.View;
106import android.view.ViewConfiguration;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800107import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800108import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700109import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800110import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800111import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800112import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800113import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200114import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800115import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800116import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800117import com.android.internal.statusbar.IStatusBarService;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700118import com.android.internal.util.ScreenShapeHelper;
Craig Mautnerae446592012-12-06 19:05:05 -0800119import com.android.internal.widget.PointerLocationView;
Craig Mautner8a0da012014-05-31 15:13:37 -0700120import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100121import com.android.server.policy.keyguard.KeyguardServiceDelegate;
Jorim Jaggi740452e2015-07-09 12:13:59 -0700122import com.android.server.policy.keyguard.KeyguardServiceDelegate.DrawnListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800123
124import java.io.File;
125import java.io.FileReader;
126import java.io.IOException;
127import java.io.PrintWriter;
Billy Lau060275f2015-07-15 22:29:19 +0100128import java.util.Arrays;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700129import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800130import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800131
Dianne Hackbornc652de82013-02-15 16:32:56 -0800132import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700133import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
134import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
135import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700136import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
137import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
138import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800139
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800140/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700141 * WindowManagerPolicy implementation for the Android phone UI. This
142 * introduces a new method suffix, Lp, for an internal lock of the
143 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400144 * can be acquired with either the Lw and Li lock held, so has the restrictions
The Android Open Source Project0727d222009-03-11 12:11:58 -0700145 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800146 */
147public class PhoneWindowManager implements WindowManagerPolicy {
148 static final String TAG = "WindowManager";
149 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700150 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700151 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700152 static final boolean DEBUG_KEYGUARD = false;
153 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700154 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700155 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800156 static final boolean SHOW_STARTING_ANIMATIONS = true;
157 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400158
Daniel Sandler6396c722013-04-16 20:19:09 -0400159 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
160 // No longer recommended for desk docks; still useful in car docks.
161 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
162 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
163
Jeff Brown6d8fd272014-05-20 21:24:38 -0700164 static final int SHORT_PRESS_POWER_NOTHING = 0;
165 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
166 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
167 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800168 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700169
Joe Onoratod208e702010-10-08 16:22:43 -0400170 static final int LONG_PRESS_POWER_NOTHING = 0;
171 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
172 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700173 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700174
Jeff Brown13f00f02014-10-31 14:45:50 -0700175 static final int MULTI_PRESS_POWER_NOTHING = 0;
176 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
177 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
178
Michael Jurka3b1fc472011-06-13 10:54:40 -0700179 // These need to match the documentation/constant in
180 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800181 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800182 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700183 static final int LONG_PRESS_HOME_ASSIST = 2;
184
185 static final int DOUBLE_TAP_HOME_NOTHING = 0;
186 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800187
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000188 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
189 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
190
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700191 static final int APPLICATION_MEDIA_SUBLAYER = -2;
192 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800193 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800194 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700195 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700196
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800197 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
198 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
199 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500200 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700201 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800202
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700203 /**
204 * These are the system UI flags that, when changing, can cause the layout
205 * of the screen to change.
206 */
207 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400208 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400209 | View.SYSTEM_UI_FLAG_FULLSCREEN
210 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200211 | View.NAVIGATION_BAR_TRANSLUCENT
212 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700213
John Spurlock7b414672014-07-18 13:02:39 -0400214 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
215 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
216 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
217 .build();
218
Adrian Roosddc8b272015-05-21 16:28:27 -0700219 // The panic gesture may become active only after the keyguard is dismissed and the immersive
220 // app shows again. If that doesn't happen for 30s we drop the gesture.
221 private static final long PANIC_GESTURE_EXPIRATION = 30000;
222
Jim Miller5ecd8112013-01-09 18:50:26 -0800223 /**
224 * Keyguard stuff
225 */
226 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100227 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700228 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800229
Jeff Brown6651a632011-11-28 12:59:11 -0800230 /* Table of Application Launch keys. Maps from key codes to intent categories.
231 *
232 * These are special keys that are used to launch particular kinds of applications,
233 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
234 * usage page. We don't support quite that many yet...
235 */
236 static SparseArray<String> sApplicationLaunchKeyCategories;
237 static {
238 sApplicationLaunchKeyCategories = new SparseArray<String>();
239 sApplicationLaunchKeyCategories.append(
240 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
241 sApplicationLaunchKeyCategories.append(
242 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
243 sApplicationLaunchKeyCategories.append(
244 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
245 sApplicationLaunchKeyCategories.append(
246 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
247 sApplicationLaunchKeyCategories.append(
248 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
249 sApplicationLaunchKeyCategories.append(
250 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
251 }
252
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700253 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
Jorim Jaggi0d210f62015-07-10 14:24:44 -0700254 static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700255
Dianne Hackborndf89e652011-10-06 22:35:11 -0700256 /**
257 * Lock protecting internal state. Must not call out into window
258 * manager with lock held. (This lock will be acquired in places
259 * where the window manager is calling in with its own lock held.)
260 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800261 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700262
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800263 Context mContext;
264 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700265 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700266 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700267 PowerManager mPowerManager;
Jeff Brown061ea992015-04-17 19:55:47 -0700268 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700269 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400270 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700271 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700272 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800273 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700274 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800275 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000276 BurnInProtectionHelper mBurnInProtectionHelper;
Billy Laucbe540f2015-06-25 01:51:44 +0100277 AppOpsManager mAppOpsManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800278
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700279 // Vibrator pattern for haptic feedback of a long press.
280 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700281
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700282 // Vibrator pattern for haptic feedback of virtual key press.
283 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700284
Amith Yamasanic33cb712010-02-10 15:21:49 -0800285 // Vibrator pattern for a short vibration.
286 long[] mKeyboardTapVibePattern;
287
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700288 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
289 long[] mClockTickVibePattern;
290
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700291 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
292 long[] mCalendarDateVibePattern;
293
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700294 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
295 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700296
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700297 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
298 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700299
Mady Mellore8608912015-06-05 09:02:55 -0700300 // Vibrator pattern for haptic feedback of a context click.
301 long[] mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -0700302
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800303 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
304 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400305
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800306 boolean mSafeMode;
307 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700308 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400309 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400310 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700311 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400312 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
313 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
314 int[] mNavigationBarHeightForRotation = new int[4];
315 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400316
Craig Mautnera631d492014-08-05 15:16:01 -0700317 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800318 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700319 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700320 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700321 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700322 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
323 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
324 }
325 };
Jorim Jaggi740452e2015-07-09 12:13:59 -0700326 final DrawnListener mKeyguardDrawnCallback = new DrawnListener() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700327 @Override
Jorim Jaggi740452e2015-07-09 12:13:59 -0700328 public void onDrawn() {
329 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onDrawn.");
Craig Mautner8a0da012014-05-31 15:13:37 -0700330 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
331 }
332 };
333
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800334 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800335 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900336 WindowState mLastInputMethodWindow = null;
337 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800338
Jeff Brown13f00f02014-10-31 14:45:50 -0700339 // FIXME This state is shared between the input reader and handler thread.
340 // Technically it's broken and buggy but it has been like this for many years
341 // and we have not yet seen any problems. Someday we'll rewrite this logic
342 // so that only one thread is involved in handling input policy. Unfortunately
343 // it's on a critical path for power management so we can't just post the work to the
344 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
345 // to hold wakelocks during dispatch and eliminating the critical path.
346 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800347 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700348 volatile int mPowerKeyPressCounter;
349 volatile boolean mEndCallKeyHandled;
350
Winson Chungd42a6cf2014-06-03 16:24:04 -0700351 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700352 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700353 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800354
Jeff Brown2e7760e2012-04-11 15:14:55 -0700355 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700356 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700357 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800358
Dianne Hackbornc777e072010-02-12 13:07:59 -0800359 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700360 boolean mSystemBooted;
Adrian Roos3542f7d2015-07-13 15:57:53 -0700361 private boolean mDeferBindKeyguard;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800362 boolean mHdmiPlugged;
Jinsuk Kime601b712015-07-07 08:01:02 +0900363 HdmiControl mHdmiControl;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700364 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400365 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700366 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700367 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400368 int mCarDockRotation;
369 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700370 int mUndockedHdmiRotation;
371 int mDemoHdmiRotation;
372 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800373 int mDemoRotation;
374 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400375
Jeff Browna20dda42014-05-27 20:57:24 -0700376 boolean mWakeGestureEnabledSetting;
377 MyWakeGestureListener mWakeGestureListener;
378
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700379 // Default display does not rotate, apps that require non-default orientation will have to
380 // have the orientation emulated.
381 private boolean mForceDefaultOrientation = false;
382
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400383 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
384 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700385 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400386
Jeff Brownbcdfc622014-03-06 19:13:04 -0800387 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700388 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400389 boolean mCarDockEnablesAccelerometer;
390 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700391 int mLidKeyboardAccessibility;
392 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700393 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700394 int mShortPressOnPowerBehavior;
395 int mLongPressOnPowerBehavior;
396 int mDoublePressOnPowerBehavior;
397 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000398 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700399 boolean mAwake;
400 boolean mScreenOnEarly;
401 boolean mScreenOnFully;
402 ScreenOnListener mScreenOnListener;
403 boolean mKeyguardDrawComplete;
404 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800405 boolean mOrientationSensorEnabled = false;
406 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800407 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400408 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800409 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700410
Jeff Brown70825162012-03-28 17:27:48 -0700411 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800412
413 // The last window we were told about in focusChanged.
414 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800415 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800416
Jeff Brown70825162012-03-28 17:27:48 -0700417 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800418
Dianne Hackbornc652de82013-02-15 16:32:56 -0800419 // The current size of the screen; really; extends into the overscan area of
420 // the screen and doesn't account for any system elements like the status bar.
421 int mOverscanScreenLeft, mOverscanScreenTop;
422 int mOverscanScreenWidth, mOverscanScreenHeight;
423 // The current visible size of the screen; really; (ir)regardless of whether the status
424 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800425 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
426 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800427 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
428 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
429 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700430 // The current size of the screen; these may be different than (0,0)-(dw,dh)
431 // if the status bar can't be hidden; in that case it effectively carves out
432 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800433 int mRestrictedScreenLeft, mRestrictedScreenTop;
434 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700435 // During layout, the current screen borders accounting for any currently
436 // visible system UI elements.
437 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700438 // For applications requesting stable content insets, these are them.
439 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700440 // For applications requesting stable content insets but have also set the
441 // fullscreen window flag, these are the stable dimensions without the status bar.
442 int mStableFullscreenLeft, mStableFullscreenTop;
443 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800444 // During layout, the current screen borders with all outer decoration
445 // (status bar, input method dock) accounted for.
446 int mCurLeft, mCurTop, mCurRight, mCurBottom;
447 // During layout, the frame in which content should be displayed
448 // to the user, accounting for all screen decoration except for any
449 // space they deem as available for other content. This is usually
450 // the same as mCur*, but may be larger if the screen decor has supplied
451 // content insets.
452 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700453 // During layout, the frame in which voice content should be displayed
454 // to the user, accounting for all screen decoration except for any
455 // space they deem as available for other content.
456 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800457 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800458 // windows are placed.
459 int mDockLeft, mDockTop, mDockRight, mDockBottom;
460 // During layout, the layer at which the doc window is placed.
461 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700462 // During layout, this is the layer of the status bar.
463 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700464 int mLastSystemUiFlags;
465 // Bits that we are in the process of clearing, so we want to prevent
466 // them from being set by applications until everything has been updated
467 // to have them clear.
468 int mResettingSystemUiFlags = 0;
469 // Bits that we are currently always keeping cleared.
470 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800471 // What we last reported to system UI about whether the compatibility
472 // menu needs to be displayed.
473 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700474 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
475 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700476
Selim Cinekf83e8242015-05-19 18:08:14 -0700477 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700478
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800479 static final Rect mTmpParentFrame = new Rect();
480 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800481 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800482 static final Rect mTmpContentFrame = new Rect();
483 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400484 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700485 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700486 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700487 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700488
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800489 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100490 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700491 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200492 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400493 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800494 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700495 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700496 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700497 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800498 boolean mForcingShowNavBar;
499 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700500
501 // States of keyguard dismiss.
502 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
503 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
504 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
505 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
506
507 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
508 * be done once per window. */
509 private WindowState mWinDismissingKeyguard;
510
tingna_sunge785ffa2015-05-12 13:23:15 +0800511 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
512 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
513 * lock SIM card. This variable is used to record the previous keyguard secure state for
514 * monitoring secure state change on window dismissing keyguard. */
515 private boolean mSecureDismissingKeyguard;
516
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700517 /** The window that is currently showing "over" the keyguard. If there is an app window
518 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
519 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
520 * the wallpaper. */
521 private WindowState mWinShowWhenLocked;
522
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700523 boolean mShowingLockscreen;
524 boolean mShowingDream;
525 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700526 boolean mDreamingSleepTokenNeeded;
527 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700528 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700529 boolean mKeyguardSecure;
530 boolean mKeyguardSecureIncludingHidden;
531 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800532 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700533 boolean mHomeConsumed;
534 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800535 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700536 Intent mCarDockIntent;
537 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700538 boolean mSearchKeyShortcutPending;
539 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700540 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700541 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800542
Mike Lockwood28569302010-01-28 11:54:40 -0500543 // support for activating the lock screen while the screen is on
544 boolean mAllowLockscreenWhenOn;
545 int mLockScreenTimeout;
546 boolean mLockScreenTimerActive;
547
David Brownbaf8d092010-03-08 21:52:59 -0800548 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800549 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800550
551 // Behavior of POWER button while in-call and screen on.
552 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
553 int mIncallPowerBehavior;
554
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700555 Display mDisplay;
556
Filip Gruszczynski2987f612015-06-30 15:03:30 -0700557 private int mDisplayRotation;
558
Dianne Hackborn9d132642011-04-21 17:26:39 -0700559 int mLandscapeRotation = 0; // default landscape rotation
560 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
561 int mPortraitRotation = 0; // default portrait rotation
562 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700563
Dianne Hackbornc652de82013-02-15 16:32:56 -0800564 int mOverscanLeft = 0;
565 int mOverscanTop = 0;
566 int mOverscanRight = 0;
567 int mOverscanBottom = 0;
568
Joe Onorato46b0d682010-11-22 17:37:27 -0800569 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700570 private int mLongPressOnHomeBehavior;
571
572 // What we do when the user double-taps on home
573 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800574
Bryce Lee584a4452014-10-21 15:55:55 -0700575 // Allowed theater mode wake actions
576 private boolean mAllowTheaterModeWakeFromKey;
577 private boolean mAllowTheaterModeWakeFromPowerKey;
578 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800579 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700580 private boolean mAllowTheaterModeWakeFromCameraLens;
581 private boolean mAllowTheaterModeWakeFromLidSwitch;
582 private boolean mAllowTheaterModeWakeFromWakeGesture;
583
Bryce Leed3b28402015-03-09 15:49:13 +0000584 // Whether to support long press from power button in non-interactive mode
585 private boolean mSupportLongPressPowerWhenNonInteractive;
586
Bryce Lee55e846d2014-11-04 12:43:44 -0800587 // Whether to go to sleep entering theater mode from power button
588 private boolean mGoToSleepOnButtonPressTheaterMode;
589
Winson Chung9112ec32011-06-27 13:15:32 -0700590 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700591 // Time to volume and power must be pressed within this interval of each other.
592 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700593 // Increase the chord delay when taking a screenshot from the keyguard
594 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800595 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700596 private boolean mScreenshotChordVolumeDownKeyTriggered;
597 private long mScreenshotChordVolumeDownKeyTime;
598 private boolean mScreenshotChordVolumeDownKeyConsumed;
599 private boolean mScreenshotChordVolumeUpKeyTriggered;
600 private boolean mScreenshotChordPowerKeyTriggered;
601 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700602
Michael Wrightb854e242013-02-05 17:54:02 -0800603 /* The number of steps between min and max brightness */
604 private static final int BRIGHTNESS_STEPS = 10;
605
Christopher Tate5e08af02012-09-21 17:17:22 -0700606 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800607 ShortcutManager mShortcutManager;
608 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700609 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700610 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800611
Craig Mautnerd625ab22013-09-06 13:40:31 -0700612 private int mCurrentUserId;
613
Justin Kohd378ad72013-04-01 12:18:26 -0700614 // Maps global key codes to the components that will handle them.
615 private GlobalKeyManager mGlobalKeyManager;
616
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700617 // Fallback actions by key code.
618 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
619 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800620
Jorim Jaggi76a16232014-08-08 17:00:47 +0200621 private final LogDecelerateInterpolator mLogDecelerateInterpolator
622 = new LogDecelerateInterpolator(100, 0);
623
Jeff Brown70825162012-03-28 17:27:48 -0700624 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
625 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700626 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
627 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700628 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
629 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
630 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700631 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700632 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700633 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700634 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700635 private static final int MSG_POWER_DELAYED_PRESS = 13;
636 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700637 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jeff Brown70825162012-03-28 17:27:48 -0700638
639 private class PolicyHandler extends Handler {
640 @Override
641 public void handleMessage(Message msg) {
642 switch (msg.what) {
643 case MSG_ENABLE_POINTER_LOCATION:
644 enablePointerLocation();
645 break;
646 case MSG_DISABLE_POINTER_LOCATION:
647 disablePointerLocation();
648 break;
Jeff Brown40013652012-05-16 21:22:36 -0700649 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
650 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
651 break;
652 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
653 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
654 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700655 case MSG_DISPATCH_SHOW_RECENTS:
656 showRecentApps(false);
657 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700658 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
659 showGlobalActionsInternal();
660 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700661 case MSG_KEYGUARD_DRAWN_COMPLETE:
662 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700663 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700664 break;
665 case MSG_KEYGUARD_DRAWN_TIMEOUT:
666 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700667 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700668 break;
669 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
670 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700671 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700672 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700673 case MSG_HIDE_BOOT_MESSAGE:
674 handleHideBootMessage();
675 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700676 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
677 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
678 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700679 case MSG_POWER_DELAYED_PRESS:
680 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
681 finishPowerKeyPress();
682 break;
683 case MSG_POWER_LONG_PRESS:
684 powerLongPress();
685 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700686 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
687 updateDreamingSleepToken(msg.arg1 != 0);
688 break;
Jeff Brown70825162012-03-28 17:27:48 -0700689 }
690 }
691 }
692
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800693 private UEventObserver mHDMIObserver = new UEventObserver() {
694 @Override
695 public void onUEvent(UEventObserver.UEvent event) {
696 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
697 }
698 };
699
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800700 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800701 SettingsObserver(Handler handler) {
702 super(handler);
703 }
David Brownbaf8d092010-03-08 21:52:59 -0800704
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800705 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700706 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800707 ContentResolver resolver = mContext.getContentResolver();
708 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700709 Settings.System.END_BUTTON_BEHAVIOR), false, this,
710 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800711 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700712 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
713 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700714 resolver.registerContentObserver(Settings.Secure.getUriFor(
715 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
716 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800717 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700718 Settings.System.ACCELEROMETER_ROTATION), false, this,
719 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500720 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700721 Settings.System.USER_ROTATION), false, this,
722 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400723 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700724 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
725 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800726 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700727 Settings.System.POINTER_LOCATION), false, this,
728 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800729 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700730 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
731 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500732 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400733 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700734 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500735 resolver.registerContentObserver(Settings.Global.getUriFor(
736 Settings.Global.POLICY_CONTROL), false, this,
737 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800738 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800739 }
740
741 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800742 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700743 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800744 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800745 }
Craig Mautner967212c2013-04-13 21:10:58 -0700746
Jeff Browna20dda42014-05-27 20:57:24 -0700747 class MyWakeGestureListener extends WakeGestureListener {
748 MyWakeGestureListener(Context context, Handler handler) {
749 super(context, handler);
750 }
751
752 @Override
753 public void onWakeUp() {
754 synchronized (mLock) {
755 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700756 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700757 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture,
758 "android.policy:GESTURE");
Jeff Browna20dda42014-05-27 20:57:24 -0700759 }
760 }
761 }
762 }
763
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800764 class MyOrientationListener extends WindowOrientationListener {
Craig Mautnereee29c42013-01-17 14:44:34 -0800765 MyOrientationListener(Context context, Handler handler) {
766 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800767 }
Craig Mautner967212c2013-04-13 21:10:58 -0700768
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800769 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700770 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700771 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700772 updateRotation(false);
773 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800774 }
775 MyOrientationListener mOrientationListener;
776
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100777 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400778
John Spurlock27735a42013-08-14 17:57:38 -0400779 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400780 View.NAVIGATION_BAR_TRANSIENT,
781 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400782 View.NAVIGATION_BAR_TRANSLUCENT,
783 StatusBarManager.WINDOW_NAVIGATION_BAR,
784 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400785
John Spurlockf1a36642013-10-12 17:50:42 -0400786 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400787
Craig Mautner037aa8d2013-06-07 10:35:44 -0700788 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400789
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700790 IStatusBarService getStatusBarService() {
791 synchronized (mServiceAquireLock) {
792 if (mStatusBarService == null) {
793 mStatusBarService = IStatusBarService.Stub.asInterface(
794 ServiceManager.getService("statusbar"));
795 }
796 return mStatusBarService;
797 }
798 }
799
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700800 /*
801 * We always let the sensor be switched on by default except when
802 * the user has explicitly disabled sensor based rotation or when the
803 * screen is switched off.
804 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700805 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800806 if (mSupportAutoRotation) {
807 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
808 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
809 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
810 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
811 // If the application has explicitly requested to follow the
812 // orientation, then we need to turn the sensor on.
813 return true;
814 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800815 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700816 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800817 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
818 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
819 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400820 // enable accelerometer if we are docked in a dock that enables accelerometer
821 // orientation management,
822 return true;
823 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700824 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800825 // If the setting for using the sensor by default is enabled, then
826 // we will always leave it on. Note that the user could go to
827 // a window that forces an orientation that does not use the
828 // sensor and in theory we could turn it off... however, when next
829 // turning it on we won't have a good value for the current
830 // orientation for a little bit, which can cause orientation
831 // changes to lag, so we'd like to keep it always on. (It will
832 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700833 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800834 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800835 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800836 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700837
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800838 /*
839 * Various use cases for invoking this function
840 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700841 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800842 * if not already enabled
843 * screen turned on and current app does not have sensor orientation, disable listeners if
844 * already enabled
845 * screen turning on and current app has sensor based orientation, enable listeners if needed
846 * screen turning on and current app has nosensor based orientation, do nothing
847 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700848 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800849 if (!mOrientationListener.canDetectOrientation()) {
850 // If sensor is turned off or nonexistent for some reason
851 return;
852 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000853 // Could have been invoked due to screen turning on or off or
854 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700855 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
856 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000857 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
858 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
859 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800860 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000861 // Note: We postpone the rotating of the screen until the keyguard as well as the
862 // window manager have reported a draw complete.
863 if (mScreenOnEarly && mAwake &&
864 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700865 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800866 disable = false;
867 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700868 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800869 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700870 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800871 mOrientationSensorEnabled = true;
872 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700873 }
874 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800875 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700876 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800877 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700878 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800879 mOrientationSensorEnabled = false;
880 }
881 }
882
Jeff Brown13f00f02014-10-31 14:45:50 -0700883 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
884 // Hold a wake lock until the power key is released.
885 if (!mPowerKeyWakeLock.isHeld()) {
886 mPowerKeyWakeLock.acquire();
887 }
888
889 // Cancel multi-press detection timeout.
890 if (mPowerKeyPressCounter != 0) {
891 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
892 }
893
894 // Detect user pressing the power button in panic when an application has
895 // taken over the whole screen.
896 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800897 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700898 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700899 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700900 }
901
902 // Latch power key state to detect screenshot chord.
903 if (interactive && !mScreenshotChordPowerKeyTriggered
904 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
905 mScreenshotChordPowerKeyTriggered = true;
906 mScreenshotChordPowerKeyTime = event.getDownTime();
907 interceptScreenshotChord();
908 }
909
910 // Stop ringing or end call if configured to do so when power is pressed.
911 TelecomManager telecomManager = getTelecommService();
912 boolean hungUp = false;
913 if (telecomManager != null) {
914 if (telecomManager.isRinging()) {
915 // Pressing Power while there's a ringing incoming
916 // call should silence the ringer.
917 telecomManager.silenceRinger();
918 } else if ((mIncallPowerBehavior
919 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
920 && telecomManager.isInCall() && interactive) {
921 // Otherwise, if "Power button ends call" is enabled,
922 // the Power button will hang up any current active call.
923 hungUp = telecomManager.endCall();
924 }
925 }
926
927 // If the power key has still not yet been handled, then detect short
928 // press, long press, or multi press and decide what to do.
929 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
930 || mScreenshotChordVolumeUpKeyTriggered;
931 if (!mPowerKeyHandled) {
932 if (interactive) {
933 // When interactive, we're already awake.
934 // Wait for a long press or for the button to be released to decide what to do.
935 if (hasLongPressOnPowerBehavior()) {
936 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
937 msg.setAsynchronous(true);
938 mHandler.sendMessageDelayed(msg,
939 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
940 }
941 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800942 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800943
Bryce Leed3b28402015-03-09 15:49:13 +0000944 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
945 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
946 msg.setAsynchronous(true);
947 mHandler.sendMessageDelayed(msg,
948 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800949 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000950 } else {
951 final int maxCount = getMaxMultiPressPowerCount();
952
953 if (maxCount <= 1) {
954 mPowerKeyHandled = true;
955 } else {
956 mBeganFromNonInteractive = true;
957 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700958 }
959 }
Jeff Brown4d396052010-10-29 21:50:21 -0700960 }
961 }
962
Jeff Brown13f00f02014-10-31 14:45:50 -0700963 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
964 final boolean handled = canceled || mPowerKeyHandled;
965 mScreenshotChordPowerKeyTriggered = false;
966 cancelPendingScreenshotChordAction();
967 cancelPendingPowerKeyAction();
968
969 if (!handled) {
970 // Figure out how to handle the key now that it has been released.
971 mPowerKeyPressCounter += 1;
972
973 final int maxCount = getMaxMultiPressPowerCount();
974 final long eventTime = event.getDownTime();
975 if (mPowerKeyPressCounter < maxCount) {
976 // This could be a multi-press. Wait a little bit longer to confirm.
977 // Continue holding the wake lock.
978 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
979 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
980 msg.setAsynchronous(true);
981 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
982 return;
983 }
984
985 // No other actions. Handle it immediately.
986 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700987 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700988
989 // Done. Reset our state.
990 finishPowerKeyPress();
991 }
992
993 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -0800994 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -0700995 mPowerKeyPressCounter = 0;
996 if (mPowerKeyWakeLock.isHeld()) {
997 mPowerKeyWakeLock.release();
998 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700999 }
1000
1001 private void cancelPendingPowerKeyAction() {
1002 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001003 mPowerKeyHandled = true;
1004 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001005 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001006 }
1007
1008 private void powerPress(long eventTime, boolean interactive, int count) {
1009 if (mScreenOnEarly && !mScreenOnFully) {
1010 Slog.i(TAG, "Suppressed redundant power key press while "
1011 + "already in the process of turning the screen on.");
1012 return;
Jeff Brownff204712011-10-25 21:27:54 -07001013 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001014
1015 if (count == 2) {
1016 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1017 } else if (count == 3) {
1018 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001019 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001020 switch (mShortPressOnPowerBehavior) {
1021 case SHORT_PRESS_POWER_NOTHING:
1022 break;
1023 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1024 mPowerManager.goToSleep(eventTime,
1025 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1026 break;
1027 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1028 mPowerManager.goToSleep(eventTime,
1029 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1030 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1031 break;
1032 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1033 mPowerManager.goToSleep(eventTime,
1034 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1035 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1036 launchHomeFromHotKey();
1037 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001038 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001039 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001040 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001041 }
1042 }
1043 }
1044
1045 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1046 switch (behavior) {
1047 case MULTI_PRESS_POWER_NOTHING:
1048 break;
1049 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001050 if (!isUserSetupComplete()) {
1051 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1052 break;
1053 }
1054
Jeff Brown13f00f02014-10-31 14:45:50 -07001055 if (isTheaterModeEnabled()) {
1056 Slog.i(TAG, "Toggling theater mode off.");
1057 Settings.Global.putInt(mContext.getContentResolver(),
1058 Settings.Global.THEATER_MODE_ON, 0);
1059 if (!interactive) {
1060 wakeUpFromPowerKey(eventTime);
1061 }
1062 } else {
1063 Slog.i(TAG, "Toggling theater mode on.");
1064 Settings.Global.putInt(mContext.getContentResolver(),
1065 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001066
1067 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001068 mPowerManager.goToSleep(eventTime,
1069 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1070 }
1071 }
1072 break;
1073 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001074 Slog.i(TAG, "Starting brightness boost.");
1075 if (!interactive) {
1076 wakeUpFromPowerKey(eventTime);
1077 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001078 mPowerManager.boostScreenBrightness(eventTime);
1079 break;
1080 }
1081 }
1082
1083 private int getMaxMultiPressPowerCount() {
1084 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1085 return 3;
1086 }
1087 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1088 return 2;
1089 }
1090 return 1;
1091 }
1092
1093 private void powerLongPress() {
1094 final int behavior = getResolvedLongPressOnPowerBehavior();
1095 switch (behavior) {
1096 case LONG_PRESS_POWER_NOTHING:
1097 break;
1098 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1099 mPowerKeyHandled = true;
1100 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1101 performAuditoryFeedbackForAccessibilityIfNeed();
1102 }
1103 showGlobalActionsInternal();
1104 break;
1105 case LONG_PRESS_POWER_SHUT_OFF:
1106 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1107 mPowerKeyHandled = true;
1108 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1109 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1110 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1111 break;
1112 }
1113 }
1114
Nick Vaccarob593a812015-05-15 11:23:05 -07001115 private void sleepPress(long eventTime) {
1116 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1117 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1118 }
1119 }
1120
1121 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001122 switch (mShortPressOnSleepBehavior) {
1123 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001124 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001125 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1126 mPowerManager.goToSleep(eventTime,
1127 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001128 break;
1129 }
1130 }
1131
Jeff Brown13f00f02014-10-31 14:45:50 -07001132 private int getResolvedLongPressOnPowerBehavior() {
1133 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1134 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1135 }
1136 return mLongPressOnPowerBehavior;
1137 }
1138
1139 private boolean hasLongPressOnPowerBehavior() {
1140 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001141 }
1142
1143 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001144 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001145 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1146 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001147 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001148 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1149 && now <= mScreenshotChordPowerKeyTime
1150 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1151 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001152 cancelPendingPowerKeyAction();
1153
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001154 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001155 }
1156 }
1157 }
1158
Winson Chung1cea2f32012-10-08 20:42:01 -07001159 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001160 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001161 // Double the time it takes to take a screenshot from the keyguard
1162 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001163 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001164 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001165 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001166 }
1167
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001168 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001169 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001170 }
1171
Jeff Brown13f00f02014-10-31 14:45:50 -07001172 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001173 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001174 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001175 mEndCallKeyHandled = true;
1176 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1177 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001178 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001179 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001180 }
1181 };
1182
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001183 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001184 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001185 public void run() {
1186 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001187 }
1188 };
1189
Alan Viverettee34560b22014-07-10 14:50:06 -07001190 @Override
1191 public void showGlobalActions() {
1192 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1193 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1194 }
1195
1196 void showGlobalActionsInternal() {
1197 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001198 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001199 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001200 }
Jim Millerab954542014-10-10 18:21:49 -07001201 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001202 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1203 if (keyguardShowing) {
1204 // since it took two seconds of long press to bring this up,
1205 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001206 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001207 }
1208 }
1209
1210 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001211 return Settings.Global.getInt(
1212 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001213 }
1214
Maurice Lam99c6e072014-04-28 18:24:28 -07001215 boolean isUserSetupComplete() {
1216 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1217 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1218 }
1219
Jeff Brown13f00f02014-10-31 14:45:50 -07001220 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001221 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1222 getHdmiControl().turnOnTv();
1223
Jeff Brown13f00f02014-10-31 14:45:50 -07001224 // If there's a dream running then use home to escape the dream
1225 // but don't actually go home.
1226 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1227 mDreamManagerInternal.stopDream(false /*immediate*/);
1228 return;
1229 }
1230
1231 // Go home!
1232 launchHomeFromHotKey();
1233 }
1234
Jinsuk Kime601b712015-07-07 08:01:02 +09001235 /**
1236 * Creates an accessor to HDMI control service that performs the operation of
1237 * turning on TV (optional) and switching input to us. If HDMI control service
1238 * is not available or we're not a HDMI playback device, the operation is no-op.
1239 */
1240 private HdmiControl getHdmiControl() {
1241 if (null == mHdmiControl) {
1242 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1243 Context.HDMI_CONTROL_SERVICE);
1244 HdmiPlaybackClient client = null;
1245 if (manager != null) {
1246 client = manager.getPlaybackClient();
1247 }
1248 mHdmiControl = new HdmiControl(client);
1249 }
1250 return mHdmiControl;
1251 }
1252
1253 private static class HdmiControl {
1254 private final HdmiPlaybackClient mClient;
1255
1256 private HdmiControl(HdmiPlaybackClient client) {
1257 mClient = client;
1258 }
1259
1260 public void turnOnTv() {
1261 if (mClient == null) {
1262 return;
1263 }
1264 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1265 @Override
1266 public void onComplete(int result) {
1267 if (result != HdmiControlManager.RESULT_SUCCESS) {
1268 Log.w(TAG, "One touch play failed: " + result);
1269 }
1270 }
1271 });
1272 }
1273 }
1274
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001275 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001276 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001277 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001278 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001279
Jeff Browncaca8812013-05-09 13:34:33 -07001280 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1281 toggleRecentApps();
1282 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001283 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001284 }
1285 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001286 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001287
Jeff Browncaca8812013-05-09 13:34:33 -07001288 private void handleDoubleTapOnHome() {
1289 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1290 mHomeConsumed = true;
1291 toggleRecentApps();
1292 }
1293 }
1294
1295 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1296 @Override
1297 public void run() {
1298 if (mHomeDoubleTapPending) {
1299 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001300 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001301 }
1302 }
1303 };
1304
Mark Renoufc1256912015-03-11 14:38:23 -04001305 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001306 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001307 }
1308
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001309 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001310 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001311 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001312 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001313 mContext = context;
1314 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001315 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001316 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001317 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001318 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001319 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001320
1321 // Init display burn-in protection
1322 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1323 com.android.internal.R.bool.config_enableBurnInProtection);
1324 // Allow a system property to override this. Used by developer settings.
1325 boolean burnInProtectionDevMode =
1326 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1327 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1328 final int minHorizontal;
1329 final int maxHorizontal;
1330 final int minVertical;
1331 final int maxVertical;
1332 final int maxRadius;
1333 if (burnInProtectionDevMode) {
1334 minHorizontal = -8;
1335 maxHorizontal = 8;
1336 minVertical = -8;
1337 maxVertical = -4;
1338 maxRadius = (isRoundWindow()) ? 6 : -1;
1339 } else {
1340 Resources resources = context.getResources();
1341 minHorizontal = resources.getInteger(
1342 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1343 maxHorizontal = resources.getInteger(
1344 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1345 minVertical = resources.getInteger(
1346 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1347 maxVertical = resources.getInteger(
1348 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1349 maxRadius = resources.getInteger(
1350 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1351 }
1352 mBurnInProtectionHelper = new BurnInProtectionHelper(
1353 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001354 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001355
Jeff Brown70825162012-03-28 17:27:48 -07001356 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001357 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001358 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001359 try {
1360 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1361 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001362 mSettingsObserver = new SettingsObserver(mHandler);
1363 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001364 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001365 mUiMode = context.getResources().getInteger(
1366 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001367 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1368 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1369 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1370 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001371 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1372 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1373 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1374 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1375 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1376 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1377 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1378 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001379
Jeff Brown96307042012-07-27 15:51:34 -07001380 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1381 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001382 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001383 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1384 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001385 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001386 mSupportAutoRotation = mContext.getResources().getBoolean(
1387 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001388 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001389 com.android.internal.R.integer.config_lidOpenRotation);
1390 mCarDockRotation = readRotation(
1391 com.android.internal.R.integer.config_carDockRotation);
1392 mDeskDockRotation = readRotation(
1393 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001394 mUndockedHdmiRotation = readRotation(
1395 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001396 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1397 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1398 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1399 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001400 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1401 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1402 mLidNavigationAccessibility = mContext.getResources().getInteger(
1403 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001404 mLidControlsSleep = mContext.getResources().getBoolean(
1405 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001406 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1407 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001408
1409 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1410 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1411 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1412 || mContext.getResources().getBoolean(
1413 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1414 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1415 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001416 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1417 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001418 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1419 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1420 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1421 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1422 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1423 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1424
Bryce Lee55e846d2014-11-04 12:43:44 -08001425 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1426 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1427
Bryce Leed3b28402015-03-09 15:49:13 +00001428 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1429 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1430
Jeff Brown13f00f02014-10-31 14:45:50 -07001431 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1432 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1433 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1434 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1435 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1436 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1437 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1438 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001439 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1440 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001441
John Spurlock61560172015-02-06 19:46:04 -05001442 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001443
Jeff Brownf71343d2013-05-31 17:59:11 -07001444 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001445
Svetoslav8e3feb12014-02-24 13:46:47 -08001446 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1447 Context.ACCESSIBILITY_SERVICE);
1448
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001449 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001450 IntentFilter filter = new IntentFilter();
1451 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1452 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1453 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1454 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001455 filter.addAction(Intent.ACTION_DOCK_EVENT);
1456 Intent intent = context.registerReceiver(mDockReceiver, filter);
1457 if (intent != null) {
1458 // Retrieve current sticky dock event broadcast.
1459 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1460 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1461 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001462
Jeff Brown6aaf2952012-10-05 16:01:08 -07001463 // register for dream-related broadcasts
1464 filter = new IntentFilter();
1465 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1466 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1467 context.registerReceiver(mDreamReceiver, filter);
1468
Christopher Tate5e08af02012-09-21 17:17:22 -07001469 // register for multiuser-relevant broadcasts
1470 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1471 context.registerReceiver(mMultiuserReceiver, filter);
1472
John Spurlock57306e62013-04-22 09:48:49 -04001473 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001474 mSystemGestures = new SystemGesturesPointerEventListener(context,
1475 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001476 @Override
1477 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001478 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001479 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001480 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001481 }
1482 @Override
1483 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001484 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001485 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001486 }
1487 }
1488 @Override
1489 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001490 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001491 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001492 }
1493 }
1494 @Override
1495 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001496 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001497 }
Adrian Roos3595be42015-03-05 16:31:15 +01001498 @Override
1499 public void onDown() {
1500 mOrientationListener.onTouchStart();
1501 }
1502 @Override
1503 public void onUpOrCancel() {
1504 mOrientationListener.onTouchEnd();
1505 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001506 });
John Spurlockf1a36642013-10-12 17:50:42 -04001507 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001508 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001509
Jeff Brownc2346132012-04-13 01:55:38 -07001510 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001511 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1512 com.android.internal.R.array.config_longPressVibePattern);
1513 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1514 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001515 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1516 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001517 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1518 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001519 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1520 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001521 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1522 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1523 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1524 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001525 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1526 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001527
Christopher Tatee90585f2012-03-05 18:56:25 -08001528 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1529 com.android.internal.R.bool.config_enableScreenshotChord);
1530
Justin Kohd378ad72013-04-01 12:18:26 -07001531 mGlobalKeyManager = new GlobalKeyManager(mContext);
1532
Joe Onoratoea495d42011-04-06 11:41:11 -07001533 // Controls rotation and the like.
1534 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001535
1536 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001537 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001538 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1539 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001540 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001541
1542 mWindowManagerInternal.registerAppTransitionListener(
1543 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001544 }
1545
Jeff Brownf71343d2013-05-31 17:59:11 -07001546 /**
1547 * Read values from config.xml that may be overridden depending on
1548 * the configuration of the device.
1549 * eg. Disable long press on home goes to recents on sw600dp.
1550 */
1551 private void readConfigurationDependentBehaviors() {
1552 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1553 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1554 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1555 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1556 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1557 }
1558
1559 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1560 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1561 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1562 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1563 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1564 }
1565 }
1566
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001567 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001568 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001569 // This method might be called before the policy has been fully initialized
1570 // or for other displays we don't care about.
1571 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1572 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001573 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001574 mDisplay = display;
1575
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001576 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001577 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001578 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001579 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001580 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001581 mLandscapeRotation = Surface.ROTATION_0;
1582 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001583 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001584 mPortraitRotation = Surface.ROTATION_90;
1585 mUpsideDownRotation = Surface.ROTATION_270;
1586 } else {
1587 mPortraitRotation = Surface.ROTATION_270;
1588 mUpsideDownRotation = Surface.ROTATION_90;
1589 }
1590 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001591 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001592 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001593 mPortraitRotation = Surface.ROTATION_0;
1594 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001595 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001596 mLandscapeRotation = Surface.ROTATION_270;
1597 mSeascapeRotation = Surface.ROTATION_90;
1598 } else {
1599 mLandscapeRotation = Surface.ROTATION_90;
1600 mSeascapeRotation = Surface.ROTATION_270;
1601 }
1602 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001603
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001604 mStatusBarHeight =
1605 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001606
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001607 // Height of the navigation bar when presented horizontally at bottom
1608 mNavigationBarHeightForRotation[mPortraitRotation] =
1609 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001610 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001611 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001612 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1613 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001614
1615 // Width of the navigation bar when presented vertically along one side
1616 mNavigationBarWidthForRotation[mPortraitRotation] =
1617 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1618 mNavigationBarWidthForRotation[mLandscapeRotation] =
1619 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001620 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001621
1622 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001623 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001624 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001625
Devin Kimd7b12b42014-05-05 14:34:58 -07001626 // Allow the navigation bar to move on non-square small devices (phones).
1627 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001628
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001629 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001630 // Allow a system property to override this. Used by the emulator.
1631 // See also hasNavigationBar().
1632 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1633 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001634 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001635 } else if ("0".equals(navBarOverride)) {
1636 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001637 }
1638
Jeff Brown27f1d672012-10-17 18:32:34 -07001639 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1640 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001641 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001642 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001643 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001644 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001645 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001646 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001647
Chong Zhangae6119ff2014-11-11 18:54:39 -08001648 // For demo purposes, allow the rotation of the remote display to be controlled.
1649 // By default, remote display locks rotation to landscape.
1650 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1651 mDemoRotation = mPortraitRotation;
1652 } else {
1653 mDemoRotation = mLandscapeRotation;
1654 }
1655 mDemoRotationLock = SystemProperties.getBoolean(
1656 "persist.demo.rotationlock", false);
1657
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001658 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1659 // http://developer.android.com/guide/practices/screens_support.html#range
1660 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1661 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1662 // For debug purposes the next line turns this feature off with:
1663 // $ adb shell setprop config.override_forced_orient true
1664 // $ adb shell wm size reset
1665 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1666 }
1667
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001668 /**
1669 * @return whether the navigation bar can be hidden, e.g. the device has a
1670 * navigation bar and touch exploration is not enabled
1671 */
1672 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001673 return mHasNavigationBar
1674 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001675 }
1676
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001677 @Override
1678 public boolean isDefaultOrientationForced() {
1679 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001680 }
1681
Dianne Hackbornc652de82013-02-15 16:32:56 -08001682 @Override
1683 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1684 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1685 mOverscanLeft = left;
1686 mOverscanTop = top;
1687 mOverscanRight = right;
1688 mOverscanBottom = bottom;
1689 }
1690 }
1691
Dianne Hackbornc777e072010-02-12 13:07:59 -08001692 public void updateSettings() {
1693 ContentResolver resolver = mContext.getContentResolver();
1694 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001695 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001696 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001697 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001698 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1699 UserHandle.USER_CURRENT);
1700 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001701 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001702 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1703 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001704
Jeff Browna20dda42014-05-27 20:57:24 -07001705 // Configure wake gesture.
1706 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1707 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1708 UserHandle.USER_CURRENT) != 0;
1709 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1710 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1711 updateWakeGestureListenerLp();
1712 }
1713
Jeff Brown207673cd2012-06-05 17:47:11 -07001714 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001715 int userRotation = Settings.System.getIntForUser(resolver,
1716 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1717 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001718 if (mUserRotation != userRotation) {
1719 mUserRotation = userRotation;
1720 updateRotation = true;
1721 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001722 int userRotationMode = Settings.System.getIntForUser(resolver,
1723 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001724 WindowManagerPolicy.USER_ROTATION_FREE :
1725 WindowManagerPolicy.USER_ROTATION_LOCKED;
1726 if (mUserRotationMode != userRotationMode) {
1727 mUserRotationMode = userRotationMode;
1728 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001729 updateOrientationListenerLp();
1730 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001731
Dianne Hackbornc777e072010-02-12 13:07:59 -08001732 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001733 int pointerLocation = Settings.System.getIntForUser(resolver,
1734 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001735 if (mPointerLocationMode != pointerLocation) {
1736 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001737 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1738 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001739 }
1740 }
1741 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001742 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1743 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1744 String imId = Settings.Secure.getStringForUser(resolver,
1745 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001746 boolean hasSoftInput = imId != null && imId.length() > 0;
1747 if (mHasSoftInput != hasSoftInput) {
1748 mHasSoftInput = hasSoftInput;
1749 updateRotation = true;
1750 }
John Spurlockf1a36642013-10-12 17:50:42 -04001751 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001752 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001753 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001754 }
1755 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001756 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001757 }
1758 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001759 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001760 }
Jeff Brown70825162012-03-28 17:27:48 -07001761 }
1762
Jeff Browna20dda42014-05-27 20:57:24 -07001763 private void updateWakeGestureListenerLp() {
1764 if (shouldEnableWakeGestureLp()) {
1765 mWakeGestureListener.requestWakeUpTrigger();
1766 } else {
1767 mWakeGestureListener.cancelWakeUpTrigger();
1768 }
1769 }
1770
1771 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001772 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001773 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1774 && mWakeGestureListener.isSupported();
1775 }
1776
Jeff Brown70825162012-03-28 17:27:48 -07001777 private void enablePointerLocation() {
1778 if (mPointerLocationView == null) {
1779 mPointerLocationView = new PointerLocationView(mContext);
1780 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001781 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1782 WindowManager.LayoutParams.MATCH_PARENT,
1783 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001784 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001785 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1786 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1787 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1788 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001789 if (ActivityManager.isHighEndGfx()) {
1790 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1791 lp.privateFlags |=
1792 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1793 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001794 lp.format = PixelFormat.TRANSLUCENT;
1795 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001796 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001797 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001798 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001799 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001800 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001801 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001802 }
Jeff Brown70825162012-03-28 17:27:48 -07001803
1804 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001805 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001806 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1807 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001808 wm.removeView(mPointerLocationView);
1809 mPointerLocationView = null;
1810 }
1811 }
1812
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001813 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001814 try {
1815 int rotation = mContext.getResources().getInteger(resID);
1816 switch (rotation) {
1817 case 0:
1818 return Surface.ROTATION_0;
1819 case 90:
1820 return Surface.ROTATION_90;
1821 case 180:
1822 return Surface.ROTATION_180;
1823 case 270:
1824 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001825 }
1826 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001827 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001828 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001829 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001830 }
1831
1832 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001833 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001834 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001835 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001836
1837 outAppOp[0] = AppOpsManager.OP_NONE;
1838
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001839 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1840 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1841 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1842 return WindowManagerGlobal.ADD_INVALID_TYPE;
1843 }
1844
1845 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1846 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001847 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001848 }
1849 String permission = null;
1850 switch (type) {
1851 case TYPE_TOAST:
1852 // XXX right now the app process has complete control over
1853 // this... should introduce a token to let the system
1854 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001855 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001856 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001857 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001858 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001859 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001860 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001861 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001862 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001863 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001864 break;
1865 case TYPE_PHONE:
1866 case TYPE_PRIORITY_PHONE:
1867 case TYPE_SYSTEM_ALERT:
1868 case TYPE_SYSTEM_ERROR:
1869 case TYPE_SYSTEM_OVERLAY:
1870 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001871 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001872 break;
1873 default:
1874 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1875 }
1876 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001877 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1878 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01001879 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01001880 if (callingUid == Process.SYSTEM_UID) {
1881 return WindowManagerGlobal.ADD_OKAY;
1882 }
1883
Billy Lau060275f2015-07-15 22:29:19 +01001884 // check if user has enabled this operation. SecurityException will be thrown if
1885 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01001886 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1887 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01001888 switch (mode) {
1889 case AppOpsManager.MODE_ALLOWED:
1890 case AppOpsManager.MODE_IGNORED:
1891 // although we return ADD_OKAY for MODE_IGNORED, the added window will
1892 // actually be hidden in WindowManagerService
1893 return WindowManagerGlobal.ADD_OKAY;
1894 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01001895 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01001896 default:
1897 // in the default mode, we will make a decision here based on
1898 // checkCallingPermission()
1899 if (mContext.checkCallingPermission(permission) !=
1900 PackageManager.PERMISSION_GRANTED) {
1901 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1902 } else {
1903 return WindowManagerGlobal.ADD_OKAY;
1904 }
Billy Laucbe540f2015-06-25 01:51:44 +01001905 }
Billy Laucbe540f2015-06-25 01:51:44 +01001906 }
1907
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001908 if (mContext.checkCallingOrSelfPermission(permission)
1909 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001910 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001911 }
1912 }
Jeff Brown98365d72012-08-19 20:30:52 -07001913 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001914 }
Craig Mautner88400d32012-09-30 12:35:45 -07001915
1916 @Override
1917 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1918
1919 // If this switch statement is modified, modify the comment in the declarations of
1920 // the type in {@link WindowManager.LayoutParams} as well.
1921 switch (attrs.type) {
1922 default:
1923 // These are the windows that by default are shown only to the user that created
1924 // them. If this needs to be overridden, set
1925 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1926 // {@link WindowManager.LayoutParams}. Note that permission
1927 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1928 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1929 return true;
1930 }
1931 break;
1932
1933 // These are the windows that by default are shown to all users. However, to
1934 // protect against spoofing, check permissions below.
1935 case TYPE_APPLICATION_STARTING:
1936 case TYPE_BOOT_PROGRESS:
1937 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001938 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001939 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001940 case TYPE_KEYGUARD_DIALOG:
1941 case TYPE_MAGNIFICATION_OVERLAY:
1942 case TYPE_NAVIGATION_BAR:
1943 case TYPE_NAVIGATION_BAR_PANEL:
1944 case TYPE_PHONE:
1945 case TYPE_POINTER:
1946 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001947 case TYPE_SEARCH_BAR:
1948 case TYPE_STATUS_BAR:
1949 case TYPE_STATUS_BAR_PANEL:
1950 case TYPE_STATUS_BAR_SUB_PANEL:
1951 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001952 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001953 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001954 break;
1955 }
1956
1957 // Check if third party app has set window to system window type.
1958 return mContext.checkCallingOrSelfPermission(
1959 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1960 != PackageManager.PERMISSION_GRANTED;
1961 }
1962
Craig Mautner967212c2013-04-13 21:10:58 -07001963 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001964 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1965 switch (attrs.type) {
1966 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001967 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001968 // These types of windows can't receive input events.
1969 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1970 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001971 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001972 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001973 case TYPE_STATUS_BAR:
1974
1975 // If the Keyguard is in a hidden state (occluded by another window), we force to
1976 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1977 // the keyguard as occluded wouldn't set these flags again.
1978 // See {@link #processKeyguardSetHiddenResultLw}.
1979 if (mKeyguardHidden) {
1980 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1981 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1982 }
1983 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001984 }
Adrian Roos38502112014-04-09 21:04:11 +02001985
1986 if (attrs.type != TYPE_STATUS_BAR) {
1987 // The status bar is the only window allowed to exhibit keyguard behavior.
1988 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1989 }
Adrian Roosea562512014-05-05 13:33:03 +02001990
1991 if (ActivityManager.isHighEndGfx()
1992 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02001993 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02001994 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1995 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001996 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001997
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001998 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07001999 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002000 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002001
Michael Wright3818c922014-09-02 13:59:07 -07002002 private void readCameraLensCoverState() {
2003 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2004 }
2005
Jeff Browndaa37532012-05-01 15:54:03 -07002006 private boolean isHidden(int accessibilityMode) {
2007 switch (accessibilityMode) {
2008 case 1:
2009 return mLidState == LID_CLOSED;
2010 case 2:
2011 return mLidState == LID_OPEN;
2012 default:
2013 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002014 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002015 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002016
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002017 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002018 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002019 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2020 int navigationPresence) {
2021 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2022
Jeff Brownf71343d2013-05-31 17:59:11 -07002023 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002024 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002025 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002026
Jeff Browndaa37532012-05-01 15:54:03 -07002027 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2028 || (keyboardPresence == PRESENCE_INTERNAL
2029 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002030 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002031 if (!mHasSoftInput) {
2032 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2033 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002034 }
2035
Jeff Browndaa37532012-05-01 15:54:03 -07002036 if (config.navigation == Configuration.NAVIGATION_NONAV
2037 || (navigationPresence == PRESENCE_INTERNAL
2038 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002039 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002040 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002041 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002042
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002043 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002044 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002045 public int windowTypeToLayerLw(int type) {
2046 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002047 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002048 }
2049 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002050 case TYPE_PRIVATE_PRESENTATION:
2051 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002052 case TYPE_WALLPAPER:
2053 // wallpaper is at the bottom, though the window manager may move it.
2054 return 2;
2055 case TYPE_PHONE:
2056 return 3;
2057 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002058 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002059 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002060 case TYPE_VOICE_INTERACTION:
2061 // voice interaction layer is almost immediately above apps.
2062 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002063 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002064 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002065 case TYPE_SYSTEM_DIALOG:
2066 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002067 case TYPE_TOAST:
2068 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002069 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002070 case TYPE_PRIORITY_PHONE:
2071 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002072 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002073 case TYPE_DREAM:
2074 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002075 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002076 case TYPE_SYSTEM_ALERT:
2077 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002078 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002079 case TYPE_INPUT_METHOD:
2080 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002081 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002082 case TYPE_INPUT_METHOD_DIALOG:
2083 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002084 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002085 case TYPE_KEYGUARD_SCRIM:
2086 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002087 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07002088 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002089 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07002090 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002091 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07002092 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002093 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002094 case TYPE_KEYGUARD_DIALOG:
2095 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002096 case TYPE_VOLUME_OVERLAY:
2097 // the on-screen volume indicator and controller shown when the user
2098 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002099 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002100 case TYPE_SYSTEM_OVERLAY:
2101 // the on-screen volume indicator and controller shown when the user
2102 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002103 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002104 case TYPE_NAVIGATION_BAR:
2105 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002106 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002107 case TYPE_NAVIGATION_BAR_PANEL:
2108 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002109 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002110 case TYPE_SYSTEM_ERROR:
2111 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002112 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002113 case TYPE_MAGNIFICATION_OVERLAY:
2114 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002115 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002116 case TYPE_DISPLAY_OVERLAY:
2117 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002118 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002119 case TYPE_DRAG:
2120 // the drag layer: input for drag-and-drop is associated with this window,
2121 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002122 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002123 case TYPE_ACCESSIBILITY_OVERLAY:
2124 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002125 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002126 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002127 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002128 case TYPE_BOOT_PROGRESS:
2129 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002130 case TYPE_POINTER:
2131 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002132 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002133 }
2134 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002135 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002136 }
2137
2138 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002139 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002140 public int subWindowTypeToLayerLw(int type) {
2141 switch (type) {
2142 case TYPE_APPLICATION_PANEL:
2143 case TYPE_APPLICATION_ATTACHED_DIALOG:
2144 return APPLICATION_PANEL_SUBLAYER;
2145 case TYPE_APPLICATION_MEDIA:
2146 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002147 case TYPE_APPLICATION_MEDIA_OVERLAY:
2148 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002149 case TYPE_APPLICATION_SUB_PANEL:
2150 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002151 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2152 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002153 }
2154 Log.e(TAG, "Unknown sub-window type: " + type);
2155 return 0;
2156 }
2157
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002158 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002159 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002160 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002161 }
2162
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002163 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002164 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002165 if (mHasNavigationBar) {
2166 // For a basic navigation bar, when we are in landscape mode we place
2167 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002168 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2169 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002170 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002171 }
2172 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002173 }
2174
Jose Lima9546b202014-07-02 17:21:51 -07002175 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002176 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002177 if (mHasNavigationBar) {
2178 // For a basic navigation bar, when we are in portrait mode we place
2179 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002180 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2181 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002182 }
2183 }
2184 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002185 }
2186
Jose Lima9546b202014-07-02 17:21:51 -07002187 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002188 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2189 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002190 }
2191
Jose Lima9546b202014-07-02 17:21:51 -07002192 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002193 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002194 // There is a separate status bar at the top of the display. We don't count that as part
2195 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002196 // we do want to exclude it since applications can't generally use that part
2197 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002198 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002199 }
2200
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002201 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002202 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2203 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002204 (isKeyguardHostWindow(attrs) &&
2205 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002206 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002207 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002208
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002209 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002210 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2211 return attrs.type == TYPE_STATUS_BAR;
2212 }
2213
2214 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002215 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002216 switch (attrs.type) {
2217 case TYPE_STATUS_BAR:
2218 case TYPE_NAVIGATION_BAR:
2219 case TYPE_WALLPAPER:
2220 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002221 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002222 return false;
2223 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002224 // Hide only windows below the keyguard host window.
2225 return windowTypeToLayerLw(win.getBaseType())
2226 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002227 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002228 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002229
Craig Mautner7d7808f2014-09-11 18:02:38 -07002230 @Override
2231 public WindowState getWinShowWhenLockedLw() {
2232 return mWinShowWhenLocked;
2233 }
2234
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002235 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002236 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002237 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2238 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002239 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002240 if (!SHOW_STARTING_ANIMATIONS) {
2241 return null;
2242 }
2243 if (packageName == null) {
2244 return null;
2245 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002246
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002247 WindowManager wm = null;
2248 View view = null;
2249
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002250 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002251 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002252 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2253 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2254 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002255 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002256 try {
2257 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002258 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002259 } catch (PackageManager.NameNotFoundException e) {
2260 // Ignore
2261 }
2262 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002263
Jorim Jaggia16cc152015-06-01 16:55:05 -07002264 PhoneWindow win = new PhoneWindow(context);
2265 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002266 final TypedArray ta = win.getWindowStyle();
2267 if (ta.getBoolean(
2268 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2269 || ta.getBoolean(
2270 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002271 return null;
2272 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002273
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002274 Resources r = context.getResources();
2275 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002276
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002277 win.setType(
2278 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002279
2280 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2281 // Assumes it's safe to show starting windows of launched apps while
2282 // the keyguard is being hidden. This is okay because starting windows never show
2283 // secret information.
2284 if (mKeyguardHidden) {
2285 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2286 }
2287 }
2288
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002289 // Force the window flags: this is a fake window, so it is not really
2290 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2291 // flag because we do know that the next window will take input
2292 // focus, so we want to get the IME window up on top of us right away.
2293 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002294 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002295 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2296 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2297 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002298 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002299 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2300 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2301 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002302
Adam Powell04fe6eb2013-05-31 14:39:48 -07002303 win.setDefaultIcon(icon);
2304 win.setDefaultLogo(logo);
2305
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002306 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002307 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002308
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002309 final WindowManager.LayoutParams params = win.getAttributes();
2310 params.token = appToken;
2311 params.packageName = packageName;
2312 params.windowAnimations = win.getWindowStyle().getResourceId(
2313 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002314 params.privateFlags |=
2315 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002316 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002317
2318 if (!compatInfo.supportsScreen()) {
2319 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2320 }
2321
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002322 params.setTitle("Starting " + packageName);
2323
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002324 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2325 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002326
2327 if (win.isFloating()) {
2328 // Whoops, there is no way to display an animation/preview
2329 // of such a thing! After all that work... let's skip it.
2330 // (Note that we must do this here because it is in
2331 // getDecorView() where the theme is evaluated... maybe
2332 // we should peek the floating attribute from the theme
2333 // earlier.)
2334 return null;
2335 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002336
Craig Mautner6fbda632012-07-03 09:26:39 -07002337 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002338 TAG, "Adding starting window for " + packageName
2339 + " / " + appToken + ": "
2340 + (view.getParent() != null ? view : null));
2341
2342 wm.addView(view, params);
2343
2344 // Only return the view if it was successfully added to the
2345 // window manager... which we can tell by it having a parent.
2346 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002347 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002348 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002349 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2350 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002351 } catch (RuntimeException e) {
2352 // don't crash if something else bad happens, for example a
2353 // failure loading resources because we are loading from an app
2354 // on external storage that has been unmounted.
2355 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002356 } finally {
2357 if (view != null && view.getParent() == null) {
2358 Log.w(TAG, "view not successfully added to wm, removing view");
2359 wm.removeViewImmediate(view);
2360 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002361 }
2362
2363 return null;
2364 }
2365
2366 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002367 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002368 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002369 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2370 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002371
2372 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002373 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002374 wm.removeView(window);
2375 }
2376 }
2377
2378 /**
2379 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002380 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002381 * Currently enforces that three window types are singletons:
2382 * <ul>
2383 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002384 * <li>KEYGUARD_TYPE</li>
2385 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002386 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002387 * @param win The window to be added
2388 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002389 *
Jeff Brown98365d72012-08-19 20:30:52 -07002390 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2391 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002392 */
Jose Lima9546b202014-07-02 17:21:51 -07002393 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002394 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2395 switch (attrs.type) {
2396 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002397 mContext.enforceCallingOrSelfPermission(
2398 android.Manifest.permission.STATUS_BAR_SERVICE,
2399 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002400 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002401 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002402 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002403 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002404 }
2405 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002406 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002407 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002408 case TYPE_NAVIGATION_BAR:
2409 mContext.enforceCallingOrSelfPermission(
2410 android.Manifest.permission.STATUS_BAR_SERVICE,
2411 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002412 if (mNavigationBar != null) {
2413 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002414 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002415 }
2416 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002417 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002418 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002419 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002420 break;
Jim Millere898ac52012-04-06 17:10:57 -07002421 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002422 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002423 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002424 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002425 mContext.enforceCallingOrSelfPermission(
2426 android.Manifest.permission.STATUS_BAR_SERVICE,
2427 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002428 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002429 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002430 if (mKeyguardScrim != null) {
2431 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2432 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002433 mKeyguardScrim = win;
2434 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002435 }
Jeff Brown98365d72012-08-19 20:30:52 -07002436 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002437 }
2438
2439 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002440 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002441 public void removeWindowLw(WindowState win) {
2442 if (mStatusBar == win) {
2443 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002444 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002445 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002446 } else if (mKeyguardScrim == win) {
2447 Log.v(TAG, "Removing keyguard scrim");
2448 mKeyguardScrim = null;
2449 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002450 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002451 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002452 }
2453 }
2454
2455 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002456
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002457 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002458 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002459 public int selectAnimationLw(WindowState win, int transit) {
2460 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2461 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002462 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002463 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002464 if (transit == TRANSIT_EXIT
2465 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002466 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002467 } else if (transit == TRANSIT_ENTER
2468 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002469 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002470 }
2471 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002472 if (win.getAttrs().windowAnimations != 0) {
2473 return 0;
2474 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002475 // This can be on either the bottom or the right.
2476 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002477 if (transit == TRANSIT_EXIT
2478 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002479 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002480 } else if (transit == TRANSIT_ENTER
2481 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002482 return R.anim.dock_bottom_enter;
2483 }
2484 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002485 if (transit == TRANSIT_EXIT
2486 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002487 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002488 } else if (transit == TRANSIT_ENTER
2489 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002490 return R.anim.dock_right_enter;
2491 }
2492 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002493 }
2494
2495 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002496 if (win.hasAppShownWindows()) {
2497 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2498 return com.android.internal.R.anim.app_starting_exit;
2499 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002500 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002501 && transit == TRANSIT_ENTER) {
2502 // Special case: we are animating in a dream, while the keyguard
2503 // is shown. We don't want an animation on the dream, because
2504 // we need it shown immediately with the keyguard animating away
2505 // to reveal it.
2506 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002507 }
2508
2509 return 0;
2510 }
2511
Craig Mautner3c174372013-02-21 17:54:37 -08002512 @Override
2513 public void selectRotationAnimationLw(int anim[]) {
2514 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2515 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2516 + (mTopFullscreenOpaqueWindowState == null ?
2517 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2518 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2519 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2520 case ROTATION_ANIMATION_CROSSFADE:
2521 anim[0] = R.anim.rotation_animation_xfade_exit;
2522 anim[1] = R.anim.rotation_animation_enter;
2523 break;
2524 case ROTATION_ANIMATION_JUMPCUT:
2525 anim[0] = R.anim.rotation_animation_jump_exit;
2526 anim[1] = R.anim.rotation_animation_enter;
2527 break;
2528 case ROTATION_ANIMATION_ROTATE:
2529 default:
2530 anim[0] = anim[1] = 0;
2531 break;
2532 }
2533 } else {
2534 anim[0] = anim[1] = 0;
2535 }
2536 }
2537
2538 @Override
2539 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2540 boolean forceDefault) {
2541 switch (exitAnimId) {
2542 case R.anim.rotation_animation_xfade_exit:
2543 case R.anim.rotation_animation_jump_exit:
2544 // These are the only cases that matter.
2545 if (forceDefault) {
2546 return false;
2547 }
2548 int anim[] = new int[2];
2549 selectRotationAnimationLw(anim);
2550 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2551 default:
2552 return true;
2553 }
2554 }
2555
2556 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002557 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2558 boolean goingToNotificationShade) {
2559 if (goingToNotificationShade) {
2560 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002561 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002562
2563 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2564 R.anim.lock_screen_behind_enter_wallpaper :
2565 R.anim.lock_screen_behind_enter);
2566
2567 // TODO: Use XML interpolators when we have log interpolators available in XML.
2568 final List<Animation> animations = set.getAnimations();
2569 for (int i = animations.size() - 1; i >= 0; --i) {
2570 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2571 }
2572
2573 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002574 }
2575
2576
2577 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002578 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2579 if (goingToNotificationShade) {
2580 return null;
2581 } else {
2582 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2583 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002584 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002585
2586 private static void awakenDreams() {
2587 IDreamManager dreamManager = getDreamManager();
2588 if (dreamManager != null) {
2589 try {
2590 dreamManager.awaken();
2591 } catch (RemoteException e) {
2592 // fine, stay asleep then
2593 }
2594 }
2595 }
2596
2597 static IDreamManager getDreamManager() {
2598 return IDreamManager.Stub.asInterface(
2599 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2600 }
2601
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002602 TelecomManager getTelecommService() {
2603 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002604 }
2605
Jeff Brown4d396052010-10-29 21:50:21 -07002606 static IAudioService getAudioService() {
2607 IAudioService audioService = IAudioService.Stub.asInterface(
2608 ServiceManager.checkService(Context.AUDIO_SERVICE));
2609 if (audioService == null) {
2610 Log.w(TAG, "Unable to find IAudioService interface.");
2611 }
2612 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002613 }
2614
2615 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002616 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002617 }
2618
2619 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2620 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2621 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2622 };
2623
2624 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002625 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002626 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002627 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002628 final int keyCode = event.getKeyCode();
2629 final int repeatCount = event.getRepeatCount();
2630 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002631 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002632 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2633 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002634
Jeff Brown40013652012-05-16 21:22:36 -07002635 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002636 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002637 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2638 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002639 }
2640
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002641 // If we think we might have a volume down & power key chord on the way
2642 // but we're not sure, then tell the dispatcher to wait a little while and
2643 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002644 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002645 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002646 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002647 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2648 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002649 if (now < timeoutTime) {
2650 return timeoutTime - now;
2651 }
2652 }
2653 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002654 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002655 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002656 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002657 }
2658 return -1;
2659 }
2660 }
2661
Michael Wright6a62e552014-06-03 19:19:48 -07002662 // Cancel any pending meta actions if we see any other keys being pressed between the down
2663 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002664 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002665 mPendingMetaAction = false;
2666 }
2667
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002668 // First we always handle the home key here, so applications
2669 // can never break it, although if keyguard is on, we do let
2670 // it handle it, because that gives us the correct 5 second
2671 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002672 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002673
Jeff Brown49ed71d2010-12-06 17:13:33 -08002674 // If we have released the home key, and didn't do anything else
2675 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002676 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002677 cancelPreloadRecentApps();
2678
Jeff Brown49ed71d2010-12-06 17:13:33 -08002679 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002680 if (mHomeConsumed) {
2681 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002682 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002683 }
Jeff Browncaca8812013-05-09 13:34:33 -07002684
2685 if (canceled) {
2686 Log.i(TAG, "Ignoring HOME; event canceled.");
2687 return -1;
2688 }
2689
Yorke Lee4f803242014-12-15 23:22:06 +00002690 // If an incoming call is ringing, HOME is totally disabled.
2691 // (The user is already on the InCallUI at this point,
2692 // and his ONLY options are to answer or reject the call.)
2693 TelecomManager telecomManager = getTelecommService();
2694 if (telecomManager != null && telecomManager.isRinging()) {
2695 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2696 return -1;
2697 }
2698
Jeff Browncaca8812013-05-09 13:34:33 -07002699 // Delay handling home if a double-tap is possible.
2700 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2701 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2702 mHomeDoubleTapPending = true;
2703 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2704 ViewConfiguration.getDoubleTapTimeout());
2705 return -1;
2706 }
2707
Jeff Brown13f00f02014-10-31 14:45:50 -07002708 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002709 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002710 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002711
2712 // If a system window has focus, then it doesn't make sense
2713 // right now to interact with applications.
2714 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2715 if (attrs != null) {
2716 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002717 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2718 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2719 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002720 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002721 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002722 }
2723 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2724 for (int i=0; i<typeCount; i++) {
2725 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2726 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002727 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002728 }
2729 }
2730 }
Jeff Browncaca8812013-05-09 13:34:33 -07002731
2732 // Remember that home is pressed and handle special actions.
2733 if (repeatCount == 0) {
2734 mHomePressed = true;
2735 if (mHomeDoubleTapPending) {
2736 mHomeDoubleTapPending = false;
2737 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2738 handleDoubleTapOnHome();
2739 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2740 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2741 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002742 }
Jeff Browncaca8812013-05-09 13:34:33 -07002743 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2744 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002745 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002746 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002747 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002748 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002749 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002750 // Hijack modified menu keys for debugging features
2751 final int chordBug = KeyEvent.META_SHIFT_ON;
2752
2753 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002754 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002755 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002756 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2757 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002758 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002759 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002760 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002761 Intent service = new Intent();
2762 service.setClassName(mContext, "com.android.server.LoadAverageService");
2763 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002764 boolean shown = Settings.Global.getInt(
2765 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002766 if (!shown) {
2767 mContext.startService(service);
2768 } else {
2769 mContext.stopService(service);
2770 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002771 Settings.Global.putInt(
2772 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002773 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002774 }
2775 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002776 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002777 if (down) {
2778 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002779 mSearchKeyShortcutPending = true;
2780 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002781 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002782 } else {
2783 mSearchKeyShortcutPending = false;
2784 if (mConsumeSearchKeyUp) {
2785 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002786 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002787 }
2788 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002789 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002790 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002791 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002792 if (down && repeatCount == 0) {
2793 preloadRecentApps();
2794 } else if (!down) {
2795 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002796 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002797 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002798 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002799 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2800 if (down) {
2801 IStatusBarService service = getStatusBarService();
2802 if (service != null) {
2803 try {
2804 service.expandNotificationsPanel();
2805 } catch (RemoteException e) {
2806 // do nothing.
2807 }
2808 }
2809 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002810 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2811 if (down) {
2812 if (repeatCount == 0) {
2813 mAssistKeyLongPressed = false;
2814 } else if (repeatCount == 1) {
2815 mAssistKeyLongPressed = true;
2816 if (!keyguardOn) {
2817 launchAssistLongPressAction();
2818 }
2819 }
2820 } else {
2821 if (mAssistKeyLongPressed) {
2822 mAssistKeyLongPressed = false;
2823 } else {
2824 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002825 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002826 }
2827 }
2828 }
2829 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002830 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2831 if (!down) {
2832 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002833 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002834 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2835 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002836 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2837 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2838 if (dic != null) {
2839 try {
2840 dic.exitIdle("voice-search");
2841 } catch (RemoteException e) {
2842 }
2843 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002844 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002845 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002846 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002847 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002848 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002849 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2850 if (down && repeatCount == 0) {
2851 mHandler.post(mScreenshotRunnable);
2852 }
2853 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002854 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2855 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2856 if (down) {
2857 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2858
2859 // Disable autobrightness if it's on
2860 int auto = Settings.System.getIntForUser(
2861 mContext.getContentResolver(),
2862 Settings.System.SCREEN_BRIGHTNESS_MODE,
2863 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2864 UserHandle.USER_CURRENT_OR_SELF);
2865 if (auto != 0) {
2866 Settings.System.putIntForUser(mContext.getContentResolver(),
2867 Settings.System.SCREEN_BRIGHTNESS_MODE,
2868 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2869 UserHandle.USER_CURRENT_OR_SELF);
2870 }
2871
2872 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2873 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2874 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2875 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2876 Settings.System.SCREEN_BRIGHTNESS,
2877 mPowerManager.getDefaultScreenBrightnessSetting(),
2878 UserHandle.USER_CURRENT_OR_SELF);
2879 brightness += step;
2880 // Make sure we don't go beyond the limits.
2881 brightness = Math.min(max, brightness);
2882 brightness = Math.max(min, brightness);
2883
2884 Settings.System.putIntForUser(mContext.getContentResolver(),
2885 Settings.System.SCREEN_BRIGHTNESS, brightness,
2886 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002887 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002888 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002889 }
2890 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002891 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002892 if (down) {
2893 mPendingMetaAction = true;
2894 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002895 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002896 }
2897 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002898 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002899
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002900 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002901 // Any printing key that is chorded with Search should be consumed
2902 // even if no shortcut was invoked. This prevents text from being
2903 // inadvertently inserted when using a keyboard that has built-in macro
2904 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002905 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002906 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2907 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002908 mConsumeSearchKeyUp = true;
2909 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002910 if (down && repeatCount == 0 && !keyguardOn) {
2911 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2912 if (shortcutIntent != null) {
2913 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002914 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002915 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002916 } catch (ActivityNotFoundException ex) {
2917 Slog.w(TAG, "Dropping shortcut key combination because "
2918 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002919 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002920 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002921 } else {
2922 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002923 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002924 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002925 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002926 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002927 }
2928 }
2929
Jeff Brown68b909d2011-12-07 16:36:01 -08002930 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002931 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002932 && (metaState & KeyEvent.META_META_ON) != 0) {
2933 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002934 if (kcm.isPrintingKey(keyCode)) {
2935 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2936 metaState & ~(KeyEvent.META_META_ON
2937 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2938 if (shortcutIntent != null) {
2939 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2940 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002941 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002942 } catch (ActivityNotFoundException ex) {
2943 Slog.w(TAG, "Dropping shortcut key combination because "
2944 + "the activity to which it is registered was not found: "
2945 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2946 }
2947 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002948 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002949 }
2950 }
2951
Jeff Brown6651a632011-11-28 12:59:11 -08002952 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002953 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002954 String category = sApplicationLaunchKeyCategories.get(keyCode);
2955 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002956 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002957 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2958 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002959 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002960 } catch (ActivityNotFoundException ex) {
2961 Slog.w(TAG, "Dropping application launch key because "
2962 + "the activity to which it is registered was not found: "
2963 + "keyCode=" + keyCode + ", category=" + category, ex);
2964 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002965 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002966 }
2967 }
2968
Michael Wright61c46752014-08-21 16:57:33 -07002969 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002970 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002971 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002972 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002973 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002974 mRecentAppsHeldModifiers = shiftlessModifiers;
2975 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002976 return -1;
2977 }
2978 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002979 } else if (!down && mRecentAppsHeldModifiers != 0
2980 && (metaState & mRecentAppsHeldModifiers) == 0) {
2981 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002982 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002983 }
2984
Jeff Browncf39bdf2012-05-18 14:41:19 -07002985 // Handle keyboard language switching.
2986 if (down && repeatCount == 0
2987 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2988 || (keyCode == KeyEvent.KEYCODE_SPACE
2989 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2990 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2991 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2992 return -1;
2993 }
2994 if (mLanguageSwitchKeyPressed && !down
2995 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2996 || keyCode == KeyEvent.KEYCODE_SPACE)) {
2997 mLanguageSwitchKeyPressed = false;
2998 return -1;
2999 }
3000
Jeff Brown13f00f02014-10-31 14:45:50 -07003001 if (isValidGlobalKey(keyCode)
3002 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003003 return -1;
3004 }
3005
Michael Wright6a62e552014-06-03 19:19:48 -07003006 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003007 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003008 return -1;
3009 }
3010
Jeff Brown68b909d2011-12-07 16:36:01 -08003011 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003012 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003013 }
3014
Jeff Brown3915bb82010-11-05 15:02:16 -07003015 /** {@inheritDoc} */
3016 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003017 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003018 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003019 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003020 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3021 + ", flags=" + event.getFlags()
3022 + ", keyCode=" + event.getKeyCode()
3023 + ", scanCode=" + event.getScanCode()
3024 + ", metaState=" + event.getMetaState()
3025 + ", repeatCount=" + event.getRepeatCount()
3026 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003027 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003028
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003029 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003030 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3031 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003032 final int keyCode = event.getKeyCode();
3033 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003034 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3035 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003036
Jeff Brown54875002011-04-06 15:33:01 -07003037 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003038 final FallbackAction fallbackAction;
3039 if (initialDown) {
3040 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3041 } else {
3042 fallbackAction = mFallbackActions.get(keyCode);
3043 }
3044
3045 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003046 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003047 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3048 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003049 }
3050
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003051 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3052 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003053 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003054 event.getAction(), fallbackAction.keyCode,
3055 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003056 event.getDeviceId(), event.getScanCode(),
3057 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003058
3059 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3060 fallbackEvent.recycle();
3061 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003062 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003063
3064 if (initialDown) {
3065 mFallbackActions.put(keyCode, fallbackAction);
3066 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3067 mFallbackActions.remove(keyCode);
3068 fallbackAction.recycle();
3069 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003070 }
3071 }
3072
Jeff Brown40013652012-05-16 21:22:36 -07003073 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003074 if (fallbackEvent == null) {
3075 Slog.d(TAG, "No fallback.");
3076 } else {
3077 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3078 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003079 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003080 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003081 }
3082
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003083 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003084 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003085 if ((actions & ACTION_PASS_TO_USER) != 0) {
3086 long delayMillis = interceptKeyBeforeDispatching(
3087 win, fallbackEvent, policyFlags);
3088 if (delayMillis == 0) {
3089 return true;
3090 }
3091 }
3092 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003093 }
3094
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003095 private void launchAssistLongPressAction() {
3096 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3097 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3098
3099 // launch the search activity
3100 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3101 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3102 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003103 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003104 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003105 SearchManager searchManager = getSearchManager();
3106 if (searchManager != null) {
3107 searchManager.stopSearch();
3108 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003109 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003110 } catch (ActivityNotFoundException e) {
3111 Slog.w(TAG, "No activity to handle assist long press action.", e);
3112 }
3113 }
3114
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003115 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003116 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003117 if (!isUserSetupComplete()) {
3118 // Disable opening assist window during setup
3119 return;
3120 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003121 Bundle args = null;
3122 if (deviceId > Integer.MIN_VALUE) {
3123 args = new Bundle();
3124 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003125 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003126 if ((mContext.getResources().getConfiguration().uiMode
3127 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3128 // On TV, use legacy handling until assistants are implemented in the proper way.
3129 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3130 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3131 } else {
3132 try {
3133 if (hint != null) {
3134 if (args == null) {
3135 args = new Bundle();
3136 }
3137 args.putBoolean(hint, true);
3138 }
3139 IStatusBarService statusbar = getStatusBarService();
3140 if (statusbar != null) {
3141 statusbar.startAssist(args);
3142 }
3143 } catch (RemoteException e) {
3144 Slog.e(TAG, "RemoteException when starting assist", e);
3145 // re-acquire status bar service next time it is needed.
3146 mStatusBarService = null;
3147 }
3148 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003149 }
3150
Bart Sears8b1c27c2015-03-18 23:51:02 +00003151 private void startActivityAsUser(Intent intent, UserHandle handle) {
3152 if (isUserSetupComplete()) {
3153 mContext.startActivityAsUser(intent, handle);
3154 } else {
3155 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3156 }
3157 }
3158
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003159 private SearchManager getSearchManager() {
3160 if (mSearchManager == null) {
3161 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3162 }
3163 return mSearchManager;
3164 }
3165
Jeff Browncaca8812013-05-09 13:34:33 -07003166 private void preloadRecentApps() {
3167 mPreloadedRecentApps = true;
3168 try {
3169 IStatusBarService statusbar = getStatusBarService();
3170 if (statusbar != null) {
3171 statusbar.preloadRecentApps();
3172 }
3173 } catch (RemoteException e) {
3174 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3175 // re-acquire status bar service next time it is needed.
3176 mStatusBarService = null;
3177 }
3178 }
3179
3180 private void cancelPreloadRecentApps() {
3181 if (mPreloadedRecentApps) {
3182 mPreloadedRecentApps = false;
3183 try {
3184 IStatusBarService statusbar = getStatusBarService();
3185 if (statusbar != null) {
3186 statusbar.cancelPreloadRecentApps();
3187 }
3188 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003189 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003190 // re-acquire status bar service next time it is needed.
3191 mStatusBarService = null;
3192 }
3193 }
3194 }
3195
3196 private void toggleRecentApps() {
3197 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003198 try {
3199 IStatusBarService statusbar = getStatusBarService();
3200 if (statusbar != null) {
3201 statusbar.toggleRecentApps();
3202 }
3203 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003204 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3205 // re-acquire status bar service next time it is needed.
3206 mStatusBarService = null;
3207 }
3208 }
3209
Craig Mautner84984fa2014-06-19 11:19:20 -07003210 @Override
3211 public void showRecentApps() {
3212 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3213 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3214 }
3215
Winson Chung1e8d71b2014-05-16 17:05:22 -07003216 private void showRecentApps(boolean triggeredFromAltTab) {
3217 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3218 try {
3219 IStatusBarService statusbar = getStatusBarService();
3220 if (statusbar != null) {
3221 statusbar.showRecentApps(triggeredFromAltTab);
3222 }
3223 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003224 Slog.e(TAG, "RemoteException when showing recent apps", e);
3225 // re-acquire status bar service next time it is needed.
3226 mStatusBarService = null;
3227 }
3228 }
3229
Winson Chungcdcd4872014-08-05 18:00:13 -07003230 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003231 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3232 try {
3233 IStatusBarService statusbar = getStatusBarService();
3234 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003235 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003236 }
3237 } catch (RemoteException e) {
3238 Slog.e(TAG, "RemoteException when closing recent apps", e);
3239 // re-acquire status bar service next time it is needed.
3240 mStatusBarService = null;
3241 }
3242 }
3243
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003244 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003245 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003246 }
3247
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003248 /**
3249 * A home key -> launch home action was detected. Take the appropriate action
3250 * given the situation with the keyguard.
3251 */
Bryce Lee662ed802015-04-10 20:11:39 +00003252 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3253 if (respectKeyguard) {
3254 if (isKeyguardShowingAndNotOccluded()) {
3255 // don't launch home if keyguard showing
3256 return;
3257 }
3258
3259 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3260 // when in keyguard restricted mode, must first verify unlock
3261 // before launching home
3262 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3263 @Override
3264 public void onKeyguardExitResult(boolean success) {
3265 if (success) {
3266 try {
3267 ActivityManagerNative.getDefault().stopAppSwitches();
3268 } catch (RemoteException e) {
3269 }
3270 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3271 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003272 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003273 }
Bryce Lee662ed802015-04-10 20:11:39 +00003274 });
3275 return;
3276 }
3277 }
3278
3279 // no keyguard stuff to worry about, just launch home!
3280 try {
3281 ActivityManagerNative.getDefault().stopAppSwitches();
3282 } catch (RemoteException e) {
3283 }
3284 if (mRecentsVisible) {
3285 // Hide Recents and notify it to launch Home
3286 if (awakenFromDreams) {
3287 awakenDreams();
3288 }
3289 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3290 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003291 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003292 // Otherwise, just launch Home
3293 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3294 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003295 }
3296 }
3297
John Spurlock04db1762013-05-13 12:46:41 -04003298 private final Runnable mClearHideNavigationFlag = new Runnable() {
3299 @Override
3300 public void run() {
3301 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3302 // Clear flags.
3303 mForceClearedSystemUiFlags &=
3304 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3305 }
3306 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003307 }
3308 };
3309
3310 /**
3311 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3312 * to determine when the nav bar should be shown and prevent applications from
3313 * receiving those touches.
3314 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003315 final class HideNavInputEventReceiver extends InputEventReceiver {
3316 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3317 super(inputChannel, looper);
3318 }
3319
Dianne Hackborndf89e652011-10-06 22:35:11 -07003320 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003321 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003322 boolean handled = false;
3323 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003324 if (event instanceof MotionEvent
3325 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3326 final MotionEvent motionEvent = (MotionEvent)event;
3327 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003328 // When the user taps down, we re-show the nav bar.
3329 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003330 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003331 // Any user activity always causes us to show the
3332 // navigation controls, if they had been hidden.
3333 // We also clear the low profile and only content
3334 // flags so that tapping on the screen will atomically
3335 // restore all currently hidden screen decorations.
3336 int newVal = mResettingSystemUiFlags |
3337 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3338 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3339 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003340 if (mResettingSystemUiFlags != newVal) {
3341 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003342 changed = true;
3343 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003344 // We don't allow the system's nav bar to be hidden
3345 // again for 1 second, to prevent applications from
3346 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003347 newVal = mForceClearedSystemUiFlags |
3348 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003349 if (mForceClearedSystemUiFlags != newVal) {
3350 mForceClearedSystemUiFlags = newVal;
3351 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003352 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003353 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003354 }
3355 if (changed) {
3356 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3357 }
3358 }
3359 }
3360 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003361 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003362 }
3363 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003364 }
3365 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3366 new InputEventReceiver.Factory() {
3367 @Override
3368 public InputEventReceiver createInputEventReceiver(
3369 InputChannel inputChannel, Looper looper) {
3370 return new HideNavInputEventReceiver(inputChannel, looper);
3371 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003372 };
3373
3374 @Override
3375 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003376 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3377 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003378 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003379
Dianne Hackborndf89e652011-10-06 22:35:11 -07003380 // Reset any bits in mForceClearingStatusBarVisibility that
3381 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003382 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003383 // Clear any bits in the new visibility that are currently being
3384 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003385 return visibility & ~mResettingSystemUiFlags
3386 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003387 }
3388
Craig Mautner69b08182012-09-05 13:07:13 -07003389 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003390 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3391 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003392 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003393 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3394 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003395
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003396 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3397 if (useOutsets) {
3398 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3399 if (outset > 0) {
3400 if (displayRotation == Surface.ROTATION_0) {
3401 outOutsets.bottom += outset;
3402 } else if (displayRotation == Surface.ROTATION_90) {
3403 outOutsets.right += outset;
3404 } else if (displayRotation == Surface.ROTATION_180) {
3405 outOutsets.top += outset;
3406 } else if (displayRotation == Surface.ROTATION_270) {
3407 outOutsets.left += outset;
3408 }
3409 }
3410 }
3411
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003412 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003413 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003414 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003415 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003416 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003417 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3418 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3419 } else {
3420 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3421 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3422 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003423 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3424 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003425 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003426 availRight - mStableFullscreenRight,
3427 availBottom - mStableFullscreenBottom);
3428 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003429 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003430 availRight - mStableRight, availBottom - mStableBottom);
3431 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003432 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003433 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003434 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003435 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003436 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003437 availRight - mCurRight, availBottom - mCurBottom);
3438 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003439 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003440 availRight - mCurRight, availBottom - mCurBottom);
3441 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003442
3443 outStableInsets.set(mStableLeft, mStableTop,
3444 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003445 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003446 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003447 outContentInsets.setEmpty();
3448 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003449 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003450
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003451 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3452 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3453 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3454 }
3455
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003456 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003457 @Override
3458 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3459 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003460 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003461 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3462 if (isDefaultDisplay) {
3463 switch (displayRotation) {
3464 case Surface.ROTATION_90:
3465 overscanLeft = mOverscanTop;
3466 overscanTop = mOverscanRight;
3467 overscanRight = mOverscanBottom;
3468 overscanBottom = mOverscanLeft;
3469 break;
3470 case Surface.ROTATION_180:
3471 overscanLeft = mOverscanRight;
3472 overscanTop = mOverscanBottom;
3473 overscanRight = mOverscanLeft;
3474 overscanBottom = mOverscanTop;
3475 break;
3476 case Surface.ROTATION_270:
3477 overscanLeft = mOverscanBottom;
3478 overscanTop = mOverscanLeft;
3479 overscanRight = mOverscanTop;
3480 overscanBottom = mOverscanRight;
3481 break;
3482 default:
3483 overscanLeft = mOverscanLeft;
3484 overscanTop = mOverscanTop;
3485 overscanRight = mOverscanRight;
3486 overscanBottom = mOverscanBottom;
3487 break;
3488 }
3489 } else {
3490 overscanLeft = 0;
3491 overscanTop = 0;
3492 overscanRight = 0;
3493 overscanBottom = 0;
3494 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003495 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3496 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3497 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3498 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003499 mSystemLeft = 0;
3500 mSystemTop = 0;
3501 mSystemRight = displayWidth;
3502 mSystemBottom = displayHeight;
3503 mUnrestrictedScreenLeft = overscanLeft;
3504 mUnrestrictedScreenTop = overscanTop;
3505 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3506 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3507 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3508 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003509 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3510 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003511 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003512 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003513 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003514 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003515 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003516 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003517 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003518 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003519 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003520 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003521
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003522 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3523 final Rect pf = mTmpParentFrame;
3524 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003525 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003526 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003527 final Rect dcf = mTmpDecorFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003528 final Rect osf = mTmpOutsetFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003529 pf.left = df.left = of.left = vf.left = mDockLeft;
3530 pf.top = df.top = of.top = vf.top = mDockTop;
3531 pf.right = df.right = of.right = vf.right = mDockRight;
3532 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003533 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003534
Craig Mautner69b08182012-09-05 13:07:13 -07003535 if (isDefaultDisplay) {
3536 // For purposes of putting out fake window up to steal focus, we will
3537 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003538 final int sysui = mLastSystemUiFlags;
3539 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003540 boolean navTranslucent = (sysui
3541 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003542 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3543 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3544 boolean navAllowedHidden = immersive || immersiveSticky;
3545 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003546 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3547 if (!isKeyguardShowing) {
3548 navTranslucent &= areTranslucentBarsAllowed();
3549 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003550
Craig Mautner69b08182012-09-05 13:07:13 -07003551 // When the navigation bar isn't visible, we put up a fake
3552 // input window to catch all touch events. This way we can
3553 // detect when the user presses anywhere to bring back the nav
3554 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003555 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003556 if (mInputConsumer != null) {
3557 mInputConsumer.dismiss();
3558 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003559 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003560 } else if (mInputConsumer == null) {
3561 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3562 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003563 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003564
Craig Mautner69b08182012-09-05 13:07:13 -07003565 // For purposes of positioning and showing the nav bar, if we have
3566 // decided that it can't be hidden (because of the screen aspect ratio),
3567 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003568 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003569
John Spurlockad3e6cb2013-04-30 08:47:43 -04003570 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003571 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003572 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003573 // Force the navigation bar to its appropriate place and
3574 // size. We need to do this directly, instead of relying on
3575 // it to bubble up from the nav bar, because this needs to
3576 // change atomically with screen rotations.
3577 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3578 if (mNavigationBarOnBottom) {
3579 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003580 int top = displayHeight - overscanBottom
3581 - mNavigationBarHeightForRotation[displayRotation];
3582 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003583 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003584 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003585 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003586 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003587 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003588 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003589 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3590 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003591 } else {
3592 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003593 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003594 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003595 if (navVisible && !navTranslucent && !navAllowedHidden
3596 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003597 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003598 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003599 // and not in the process of animating on or off, then
3600 // we can tell the app that it is covered by it.
3601 mSystemBottom = mTmpNavigationFrame.top;
3602 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003603 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003604 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003605 int left = displayWidth - overscanRight
3606 - mNavigationBarWidthForRotation[displayRotation];
3607 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003608 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003609 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003610 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003611 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003612 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003613 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003614 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3615 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003616 } else {
3617 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003618 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003619 }
John Spurlockbd957402013-10-03 11:38:39 -04003620 if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3621 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003622 // If the nav bar is currently requested to be visible,
3623 // and not in the process of animating on or off, then
3624 // we can tell the app that it is covered by it.
3625 mSystemRight = mTmpNavigationFrame.left;
3626 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003627 }
Craig Mautner69b08182012-09-05 13:07:13 -07003628 // Make sure the content and current rectangles are updated to
3629 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003630 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3631 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3632 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3633 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003634 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3635 // And compute the final frame.
3636 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003637 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003638 mTmpNavigationFrame, mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003639 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003640 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003641 updateSysUiVisibility = true;
3642 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003643 }
Craig Mautnereda67292013-04-28 13:50:14 -07003644 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003645 mDockLeft, mDockTop, mDockRight, mDockBottom));
3646
3647 // decide where the status bar goes ahead of time
3648 if (mStatusBar != null) {
3649 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003650 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3651 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3652 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3653 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3654 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003655 vf.left = mStableLeft;
3656 vf.top = mStableTop;
3657 vf.right = mStableRight;
3658 vf.bottom = mStableBottom;
3659
3660 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3661
3662 // Let the status bar determine its size.
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003663 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3664 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3665 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
Craig Mautner69b08182012-09-05 13:07:13 -07003666
3667 // For layout, the status bar is always at the top with our fixed height.
3668 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3669
John Spurlocke1f366f2013-08-05 12:22:40 -04003670 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003671 boolean statusBarTranslucent = (sysui
3672 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003673 if (!isKeyguardShowing) {
3674 statusBarTranslucent &= areTranslucentBarsAllowed();
3675 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003676
Craig Mautner69b08182012-09-05 13:07:13 -07003677 // If the status bar is hidden, we don't want to cause
3678 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003679 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003680 // Status bar may go away, so the screen area it occupies
3681 // is available to apps but just covering them when the
3682 // status bar is visible.
3683 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3684
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003685 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3686 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3687 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3688 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003689
Craig Mautnereda67292013-04-28 13:50:14 -07003690 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003691 String.format(
3692 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3693 mDockLeft, mDockTop, mDockRight, mDockBottom,
3694 mContentLeft, mContentTop, mContentRight, mContentBottom,
3695 mCurLeft, mCurTop, mCurRight, mCurBottom));
3696 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003697 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003698 && !statusBarTransient && !statusBarTranslucent
3699 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003700 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003701 // and not in the process of animating on or off, then
3702 // we can tell the app that it is covered by it.
3703 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3704 }
John Spurlock27735a42013-08-14 17:57:38 -04003705 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003706 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003707 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003708 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003709 if (updateSysUiVisibility) {
3710 updateSystemUiVisibilityLw();
3711 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003712 }
3713 }
3714
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003715 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003716 @Override
John Spurlock46646232013-09-30 22:32:42 -04003717 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003718 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3719 return mStatusBar.getSurfaceLayer();
3720 }
3721
3722 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3723 return mNavigationBar.getSurfaceLayer();
3724 }
3725
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003726 return 0;
3727 }
3728
Craig Mautner967212c2013-04-13 21:10:58 -07003729 @Override
3730 public void getContentRectLw(Rect r) {
3731 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3732 }
3733
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003734 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3735 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003736 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3737 // Here's a special case: if this attached window is a panel that is
3738 // above the dock window, and the window it is attached to is below
3739 // the dock window, then the frames we computed for the window it is
3740 // attached to can not be used because the dock is effectively part
3741 // of the underlying window and the attached window is floating on top
3742 // of the whole thing. So, we ignore the attached window and explicitly
3743 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003744 df.left = of.left = cf.left = vf.left = mDockLeft;
3745 df.top = of.top = cf.top = vf.top = mDockTop;
3746 df.right = of.right = cf.right = vf.right = mDockRight;
3747 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003748 } else {
3749 // The effective display frame of the attached window depends on
3750 // whether it is taking care of insetting its content. If not,
3751 // we need to use the parent's content frame so that the entire
3752 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003753 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003754 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003755 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003756 // Set the content frame of the attached window to the parent's decor frame
3757 // (same as content frame when IME isn't present) if specifically requested by
3758 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3759 // Otherwise, use the overscan frame.
3760 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3761 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003762 } else {
3763 // If the window is resizing, then we want to base the content
3764 // frame on our attached content frame to resize... however,
3765 // things can be tricky if the attached window is NOT in resize
3766 // mode, in which case its content frame will be larger.
3767 // Ungh. So to deal with that, make sure the content frame
3768 // we end up using is not covering the IM dock.
3769 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003770 if (attached.isVoiceInteraction()) {
3771 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3772 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3773 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3774 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3775 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003776 if (cf.left < mContentLeft) cf.left = mContentLeft;
3777 if (cf.top < mContentTop) cf.top = mContentTop;
3778 if (cf.right > mContentRight) cf.right = mContentRight;
3779 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3780 }
3781 }
3782 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003783 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003784 vf.set(attached.getVisibleFrameLw());
3785 }
3786 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3787 // window should be positioned relative to its parent or the entire
3788 // screen.
3789 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3790 ? attached.getFrameLw() : df);
3791 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003792
3793 private void applyStableConstraints(int sysui, int fl, Rect r) {
3794 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3795 // If app is requesting a stable layout, don't let the
3796 // content insets go below the stable values.
3797 if ((fl & FLAG_FULLSCREEN) != 0) {
3798 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3799 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3800 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3801 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3802 } else {
3803 if (r.left < mStableLeft) r.left = mStableLeft;
3804 if (r.top < mStableTop) r.top = mStableTop;
3805 if (r.right > mStableRight) r.right = mStableRight;
3806 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3807 }
3808 }
3809 }
3810
Jorim Jaggiaa806142015-05-20 18:04:16 -07003811 private boolean canReceiveInput(WindowState win) {
3812 boolean notFocusable =
3813 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3814 boolean altFocusableIm =
3815 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3816 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3817 return !notFocusableForIm;
3818 }
3819
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003820 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003821 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003822 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003823 // We've already done the navigation bar and status bar. If the status bar can receive
3824 // input, we need to layout it again to accomodate for the IME window.
3825 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003826 return;
3827 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003828 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003829 final boolean isDefaultDisplay = win.isDefaultDisplay();
3830 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003831 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3832 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003833 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003834 offsetInputMethodWindowLw(mLastInputMethodWindow);
3835 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003836
John Spurlockc6d1c602014-01-17 15:22:06 -05003837 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003838 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003839 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003840
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003841 final Rect pf = mTmpParentFrame;
3842 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003843 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003844 final Rect cf = mTmpContentFrame;
3845 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003846 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003847 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003848 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003849 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003850
3851 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003852 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003853
Craig Mautnerf683b562012-10-02 11:10:57 -07003854 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3855
Adrian Roosfa104232014-06-20 16:10:14 -07003856 if (isDefaultDisplay) {
3857 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3858 } else {
3859 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3860 }
3861
Craig Mautner69b08182012-09-05 13:07:13 -07003862 if (!isDefaultDisplay) {
3863 if (attached != null) {
3864 // If this window is attached to another, our display
3865 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003866 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003867 } else {
3868 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003869 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3870 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3871 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003872 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003873 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003874 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003875 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003876 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003877 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3878 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3879 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003880 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003881 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003882 // ...with content insets above the nav bar
3883 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003884 // IM dock windows always go to the bottom of the screen.
3885 attrs.gravity = Gravity.BOTTOM;
3886 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003887 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003888 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003889 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003890 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3891 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003892 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003893 // Note: In Phone landscape mode, the button bar should also be excluded.
3894 cf.right = vf.right = mStableRight;
3895 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003896 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003897 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003898 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3899 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3900 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3901 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3902 cf.left = vf.left = mStableLeft;
3903 cf.top = vf.top = mStableTop;
3904 cf.right = vf.right = mStableRight;
3905 vf.bottom = mStableBottom;
3906 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003907 } else {
John Spurlock46646232013-09-30 22:32:42 -04003908
3909 // Default policy decor for the default display
3910 dcf.left = mSystemLeft;
3911 dcf.top = mSystemTop;
3912 dcf.right = mSystemRight;
3913 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003914 final boolean inheritTranslucentDecor = (attrs.privateFlags
3915 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003916 final boolean isAppWindow =
3917 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3918 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3919 final boolean topAtRest =
3920 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3921 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003922 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3923 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003924 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3925 && (fl & WindowManager.LayoutParams.
3926 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003927 // Ensure policy decor includes status bar
3928 dcf.top = mStableTop;
3929 }
John Spurlockbd957402013-10-03 11:38:39 -04003930 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003931 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3932 && (fl & WindowManager.LayoutParams.
3933 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003934 // Ensure policy decor includes navigation bar
3935 dcf.bottom = mStableBottom;
3936 dcf.right = mStableRight;
3937 }
3938 }
3939
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003940 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3941 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003942 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003943 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003944 // This is the case for a normal activity window: we want it
3945 // to cover all of the screen space, and it can take care of
3946 // moving its contents to account for screen decorations that
3947 // intrude into that space.
3948 if (attached != null) {
3949 // If this window is attached to another, our display
3950 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003951 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003952 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003953 if (attrs.type == TYPE_STATUS_BAR_PANEL
3954 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003955 // Status bar panels are the only windows who can go on top of
3956 // the status bar. They are protected by the STATUS_BAR_SERVICE
3957 // permission, so they have the same privileges as the status
3958 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003959 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003960 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003961
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003962 pf.left = df.left = of.left = hasNavBar
3963 ? mDockLeft : mUnrestrictedScreenLeft;
3964 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3965 pf.right = df.right = of.right = hasNavBar
3966 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3967 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3968 pf.bottom = df.bottom = of.bottom = hasNavBar
3969 ? mRestrictedScreenTop+mRestrictedScreenHeight
3970 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003971
Craig Mautnereda67292013-04-28 13:50:14 -07003972 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003973 "Laying out status bar window: (%d,%d - %d,%d)",
3974 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003975 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003976 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3977 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3978 // Asking to layout into the overscan region, so give it that pure
3979 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003980 pf.left = df.left = of.left = mOverscanScreenLeft;
3981 pf.top = df.top = of.top = mOverscanScreenTop;
3982 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3983 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3984 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003985 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003986 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003987 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3988 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003989 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003990 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003991 // only do this for application windows to ensure no window that
3992 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08003993 pf.left = df.left = mOverscanScreenLeft;
3994 pf.top = df.top = mOverscanScreenTop;
3995 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3996 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003997 // We need to tell the app about where the frame inside the overscan
3998 // is, so it can inset its content by that amount -- it didn't ask
3999 // to actually extend itself into the overscan region.
4000 of.left = mUnrestrictedScreenLeft;
4001 of.top = mUnrestrictedScreenTop;
4002 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4003 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004004 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004005 pf.left = df.left = mRestrictedOverscanScreenLeft;
4006 pf.top = df.top = mRestrictedOverscanScreenTop;
4007 pf.right = df.right = mRestrictedOverscanScreenLeft
4008 + mRestrictedOverscanScreenWidth;
4009 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4010 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004011 // We need to tell the app about where the frame inside the overscan
4012 // is, so it can inset its content by that amount -- it didn't ask
4013 // to actually extend itself into the overscan region.
4014 of.left = mUnrestrictedScreenLeft;
4015 of.top = mUnrestrictedScreenTop;
4016 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4017 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004018 }
Craig Mautner69b08182012-09-05 13:07:13 -07004019
John Spurlock46646232013-09-30 22:32:42 -04004020 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004021 if (win.isVoiceInteraction()) {
4022 cf.left = mVoiceContentLeft;
4023 cf.top = mVoiceContentTop;
4024 cf.right = mVoiceContentRight;
4025 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004026 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004027 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4028 cf.left = mDockLeft;
4029 cf.top = mDockTop;
4030 cf.right = mDockRight;
4031 cf.bottom = mDockBottom;
4032 } else {
4033 cf.left = mContentLeft;
4034 cf.top = mContentTop;
4035 cf.right = mContentRight;
4036 cf.bottom = mContentBottom;
4037 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004038 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004039 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004040 // Full screen windows are always given a layout that is as if the
4041 // status bar and other transient decors are gone. This is to avoid
4042 // bad states when moving from a window that is not hding the
4043 // status bar to one that is.
4044 cf.left = mRestrictedScreenLeft;
4045 cf.top = mRestrictedScreenTop;
4046 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4047 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004048 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004049 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004050 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4051 vf.left = mCurLeft;
4052 vf.top = mCurTop;
4053 vf.right = mCurRight;
4054 vf.bottom = mCurBottom;
4055 } else {
4056 vf.set(cf);
4057 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004058 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004059 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4060 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4061 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004062 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4063 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004064 // A window that has requested to fill the entire screen just
4065 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004066 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004067 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4068 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004069 pf.left = df.left = of.left = cf.left = hasNavBar
4070 ? mDockLeft : mUnrestrictedScreenLeft;
4071 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4072 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004073 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004074 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004075 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004076 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004077 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004078 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004079 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4080 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004081 } else if (attrs.type == TYPE_NAVIGATION_BAR
4082 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004083 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004084 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4085 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4086 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4087 + mUnrestrictedScreenWidth;
4088 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4089 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004090 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004091 "Laying out navigation bar window: (%d,%d - %d,%d)",
4092 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004093 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4094 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004095 && ((fl & FLAG_FULLSCREEN) != 0)) {
4096 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004097 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4098 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4099 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4100 + mOverscanScreenWidth;
4101 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4102 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004103 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004104 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004105 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4106 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4107 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4108 + mOverscanScreenWidth;
4109 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4110 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004111 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004112 // The wallpaper also has Real Ultimate Power, but we want to tell
4113 // it about the overscan area.
4114 pf.left = df.left = mOverscanScreenLeft;
4115 pf.top = df.top = mOverscanScreenTop;
4116 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4117 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4118 of.left = cf.left = mUnrestrictedScreenLeft;
4119 of.top = cf.top = mUnrestrictedScreenTop;
4120 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4121 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004122 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004123 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4124 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4125 // Asking to layout into the overscan region, so give it that pure
4126 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004127 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4128 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4129 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004130 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004131 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004132 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004133 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004134 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004135 && (attrs.type == TYPE_STATUS_BAR
4136 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004137 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004138 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4139 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004140 // Asking for layout as if the nav bar is hidden, lets the
4141 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004142 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004143 // can be above the nav bar can do this.
4144 // XXX This assumes that an app asking for this will also
4145 // ask for layout in only content. We can't currently figure out
4146 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004147 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4148 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4149 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4150 + mUnrestrictedScreenWidth;
4151 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4152 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004153 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004154 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4155 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4156 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4157 + mRestrictedScreenWidth;
4158 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4159 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004160 }
Craig Mautner69b08182012-09-05 13:07:13 -07004161
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004162 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004163
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004164 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4165 vf.left = mCurLeft;
4166 vf.top = mCurTop;
4167 vf.right = mCurRight;
4168 vf.bottom = mCurBottom;
4169 } else {
4170 vf.set(cf);
4171 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004172 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004173 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4174 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004175 // A child window should be placed inside of the same visible
4176 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004177 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004178 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004179 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4180 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004181 // Otherwise, a normal window must be placed inside the content
4182 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004183 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4184 // Status bar panels and the volume dialog are the only windows who can go on
4185 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004186 // permission, so they have the same privileges as the status
4187 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004188 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4189 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4190 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4191 + mRestrictedScreenWidth;
4192 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4193 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004194 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004195 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004196 pf.left = df.left = of.left = cf.left = mStableLeft;
4197 pf.top = df.top = of.top = cf.top = mStableTop;
4198 pf.right = df.right = of.right = cf.right = mStableRight;
4199 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004200 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004201 pf.left = mContentLeft;
4202 pf.top = mContentTop;
4203 pf.right = mContentRight;
4204 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004205 if (win.isVoiceInteraction()) {
4206 df.left = of.left = cf.left = mVoiceContentLeft;
4207 df.top = of.top = cf.top = mVoiceContentTop;
4208 df.right = of.right = cf.right = mVoiceContentRight;
4209 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4210 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004211 df.left = of.left = cf.left = mDockLeft;
4212 df.top = of.top = cf.top = mDockTop;
4213 df.right = of.right = cf.right = mDockRight;
4214 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004215 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004216 df.left = of.left = cf.left = mContentLeft;
4217 df.top = of.top = cf.top = mContentTop;
4218 df.right = of.right = cf.right = mContentRight;
4219 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004220 }
4221 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4222 vf.left = mCurLeft;
4223 vf.top = mCurTop;
4224 vf.right = mCurRight;
4225 vf.bottom = mCurBottom;
4226 } else {
4227 vf.set(cf);
4228 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004229 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004230 }
4231 }
Craig Mautner69b08182012-09-05 13:07:13 -07004232
Craig Mautnerb816bed2013-07-23 10:26:17 -07004233 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4234 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004235 df.left = df.top = -10000;
4236 df.right = df.bottom = 10000;
4237 if (attrs.type != TYPE_WALLPAPER) {
4238 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4239 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4240 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004241 }
4242
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004243 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4244 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004245 // We only want to apply outsets to certain types of windows. For example, we never want to
4246 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004247 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004248 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004249 osf = mTmpOutsetFrame;
4250 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4251 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4252 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004253 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004254 if (rotation == Surface.ROTATION_0) {
4255 osf.bottom += outset;
4256 } else if (rotation == Surface.ROTATION_90) {
4257 osf.right += outset;
4258 } else if (rotation == Surface.ROTATION_180) {
4259 osf.top -= outset;
4260 } else if (rotation == Surface.ROTATION_270) {
4261 osf.left -= outset;
4262 }
4263 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4264 + " with rotation " + rotation + ", result: " + osf);
4265 }
4266 }
4267
Craig Mautnereda67292013-04-28 13:50:14 -07004268 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004269 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004270 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004271 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004272 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004273 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004274 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004275 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004276 + " sf=" + sf.toShortString()
4277 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004278
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004279 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004280
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004281 // Dock windows carve out the bottom of the screen, so normal windows
4282 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004283 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4284 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004285 setLastInputMethodWindowLw(null, null);
4286 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004287 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004288 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4289 && !win.getGivenInsetsPendingLw()) {
4290 offsetVoiceInputWindowLw(win);
4291 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004292 }
4293
satok1bc0a492012-04-25 22:47:12 +09004294 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004295 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004296 top += win.getGivenContentInsetsLw().top;
4297 if (mContentBottom > top) {
4298 mContentBottom = top;
4299 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004300 if (mVoiceContentBottom > top) {
4301 mVoiceContentBottom = top;
4302 }
satok1bc0a492012-04-25 22:47:12 +09004303 top = win.getVisibleFrameLw().top;
4304 top += win.getGivenVisibleInsetsLw().top;
4305 if (mCurBottom > top) {
4306 mCurBottom = top;
4307 }
Craig Mautnereda67292013-04-28 13:50:14 -07004308 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004309 + mDockBottom + " mContentBottom="
4310 + mContentBottom + " mCurBottom=" + mCurBottom);
4311 }
4312
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004313 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004314 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004315 top += win.getGivenContentInsetsLw().top;
4316 if (mVoiceContentBottom > top) {
4317 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004318 }
4319 }
4320
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004321 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004322 @Override
4323 public void finishLayoutLw() {
4324 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004325 }
4326
4327 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004328 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004329 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004330 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004331 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004332 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004333 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004334 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004335 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004336 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004337 mForcingShowNavBar = false;
4338 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004339
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004340 mHideLockScreen = false;
4341 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004342 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004343 mShowingLockscreen = false;
4344 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004345 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004346 mKeyguardSecure = isKeyguardSecure();
4347 mKeyguardSecureIncludingHidden = mKeyguardSecure
4348 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004349 }
4350
4351 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004352 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004353 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4354 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004355 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4356 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004357 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004358 if (mTopFullscreenOpaqueWindowState == null
4359 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4360 mForcingShowNavBar = true;
4361 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004362 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004363 if (attrs.type == TYPE_STATUS_BAR) {
4364 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4365 mForceStatusBarFromKeyguard = true;
4366 }
4367 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4368 mForceStatusBarTransparent = true;
4369 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004370 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004371
4372 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4373 && attrs.type < FIRST_SYSTEM_WINDOW;
4374 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4375 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4376
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004377 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004378 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004379 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004380 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004381 mForceStatusBarFromKeyguard = true;
4382 } else {
4383 mForceStatusBar = true;
4384 }
4385 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004386 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004387 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004388 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004389 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004390 // If the lockscreen was showing when the dream started then wait
4391 // for the dream to draw before hiding the lockscreen.
4392 if (!mDreamingLockscreen
4393 || (win.isVisibleLw() && win.hasDrawnLw())) {
4394 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004395 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004396 }
4397 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004398
Yohei Yukawad1a09222015-06-30 16:22:05 -07004399 final IApplicationToken appToken = win.getAppToken();
4400
4401 // For app windows that are not attached, we decide if all windows in the app they
4402 // represent should be hidden or if we should hide the lockscreen. For attached app
4403 // windows we defer the decision to the window it is attached to.
4404 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004405 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004406 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004407 mAppsToBeHidden.remove(appToken);
4408 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004409 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004410 if (dismissKeyguard && !mKeyguardSecure) {
4411 mAppsThatDismissKeyguard.add(appToken);
4412 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004413 mWinShowWhenLocked = win;
4414 mHideLockScreen = true;
4415 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004416 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004417 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004418 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004419 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004420 mAppsToBeHidden.add(appToken);
4421 } else {
4422 mAppsToBeHidden.remove(appToken);
4423 }
4424 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004425 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004426 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004427 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004428 if (attrs.x == 0 && attrs.y == 0
4429 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4430 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4431 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4432 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004433 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4434 mTopFullscreenOpaqueOrDimmingWindowState = win;
4435 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004436 if (!mAppsThatDismissKeyguard.isEmpty() &&
4437 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4438 if (DEBUG_LAYOUT) Slog.v(TAG,
4439 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004440 mDismissKeyguard = (mWinDismissingKeyguard == win
4441 && mSecureDismissingKeyguard == mKeyguardSecure)
4442 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004443 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004444 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004445 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004446 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4447 if (DEBUG_LAYOUT) Slog.v(TAG,
4448 "Setting mHideLockScreen to true by win " + win);
4449 mHideLockScreen = true;
4450 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004451 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004452 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004453 mAllowLockscreenWhenOn = true;
4454 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004455 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004456
4457 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004458 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4459 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004460 win.hideLw(false);
4461 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004462 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004463 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4464 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4465 // that is being hidden in an animation - keep the
4466 // keyguard hidden until the new window shows up and
4467 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004468 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004469 mHideLockScreen = true;
4470 mWinShowWhenLocked = win;
4471 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004472 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004473 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4474 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4475 && win.isDimming()) {
4476 mTopFullscreenOpaqueOrDimmingWindowState = win;
4477 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004478 }
4479
4480 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004481 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004482 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004483 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4484 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4485 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004486 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4487 // fullscreen window.
4488 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4489 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4490 mTopFullscreenOpaqueWindowState.hideLw(false);
4491 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4492 }
4493
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004494 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004495 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004496
4497 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4498 ? mTopFullscreenOpaqueWindowState.getAttrs()
4499 : null;
4500
Jeff Brownc8018eb2012-10-29 21:33:27 -07004501 // If we are not currently showing a dream then remember the current
4502 // lockscreen state. We will use this to determine whether the dream
4503 // started while the lockscreen was showing and remember this state
4504 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004505 if (!mShowingDream) {
4506 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004507 if (mDreamingSleepTokenNeeded) {
4508 mDreamingSleepTokenNeeded = false;
4509 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4510 }
4511 } else {
4512 if (!mDreamingSleepTokenNeeded) {
4513 mDreamingSleepTokenNeeded = true;
4514 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4515 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004516 }
4517
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004518 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004519 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004520 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004521 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004522 boolean shouldBeTransparent = mForceStatusBarTransparent
4523 && !mForceStatusBar
4524 && !mForceStatusBarFromKeyguard;
4525 if (!shouldBeTransparent) {
4526 mStatusBarController.setShowTransparent(false /* transparent */);
4527 } else if (!mStatusBar.isVisibleLw()) {
4528 mStatusBarController.setShowTransparent(true /* transparent */);
4529 }
4530 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004531 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004532 if (mStatusBarController.setBarShowingLw(true)) {
4533 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4534 }
Craig Mautner81defc72013-10-29 11:10:42 -07004535 // Maintain fullscreen layout until incoming animation is complete.
4536 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004537 // Transient status bar on the lockscreen is not allowed
4538 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4539 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4540 mLastSystemUiFlags, mLastSystemUiFlags);
4541 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004542 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004543 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004544 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004545 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004546 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004547 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004548 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004549 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004550 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004551 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004552 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004553 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004554 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4555 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004556 if (mStatusBarController.isTransientShowing()) {
4557 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004558 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4559 }
4560 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004561 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004562 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004563 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004564 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004565 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004566 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004567 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004568 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004569 if (mStatusBarController.setBarShowingLw(true)) {
4570 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4571 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004572 }
4573 }
4574 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004575
Craig Mautner81defc72013-10-29 11:10:42 -07004576 if (mTopIsFullscreen != topIsFullscreen) {
4577 if (!topIsFullscreen) {
4578 // Force another layout when status bar becomes fully shown.
4579 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4580 }
4581 mTopIsFullscreen = topIsFullscreen;
4582 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004583
Craig Mautner39834192012-09-02 07:47:24 -07004584 // Hide the key guard if a visible window explicitly specifies that it wants to be
4585 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004586 if (mKeyguardDelegate != null && mStatusBar != null) {
4587 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4588 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004589 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004590 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004591 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004592 changes |= FINISH_LAYOUT_REDO_LAYOUT
4593 | FINISH_LAYOUT_REDO_CONFIG
4594 | FINISH_LAYOUT_REDO_WALLPAPER;
4595 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004596 if (mKeyguardDelegate.isShowing()) {
4597 mHandler.post(new Runnable() {
4598 @Override
4599 public void run() {
4600 mKeyguardDelegate.keyguardDone(false, false);
4601 }
4602 });
4603 }
4604 } else if (mHideLockScreen) {
4605 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004606 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004607 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004608 changes |= FINISH_LAYOUT_REDO_LAYOUT
4609 | FINISH_LAYOUT_REDO_CONFIG
4610 | FINISH_LAYOUT_REDO_WALLPAPER;
4611 }
4612 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004613 mKeyguardHidden = false;
4614 if (setKeyguardOccludedLw(false)) {
4615 changes |= FINISH_LAYOUT_REDO_LAYOUT
4616 | FINISH_LAYOUT_REDO_CONFIG
4617 | FINISH_LAYOUT_REDO_WALLPAPER;
4618 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004619 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4620 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004621 mHandler.post(new Runnable() {
4622 @Override
4623 public void run() {
4624 mKeyguardDelegate.dismiss();
4625 }
4626 });
4627 }
4628 } else {
4629 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004630 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004631 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004632 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004633 changes |= FINISH_LAYOUT_REDO_LAYOUT
4634 | FINISH_LAYOUT_REDO_CONFIG
4635 | FINISH_LAYOUT_REDO_WALLPAPER;
4636 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004637 }
4638 }
Joe Onorato664644d2011-01-23 17:53:23 -08004639
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004640 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004641 // If the navigation bar has been hidden or shown, we need to do another
4642 // layout pass to update that window.
4643 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4644 }
Joe Onorato664644d2011-01-23 17:53:23 -08004645
Mike Lockwood28569302010-01-28 11:54:40 -05004646 // update since mAllowLockscreenWhenOn might have changed
4647 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004648 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004649 }
4650
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004651 /**
Jim Millerab954542014-10-10 18:21:49 -07004652 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004653 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004654 * @return Whether the flags have changed and we have to redo the layout.
4655 */
Jim Millerab954542014-10-10 18:21:49 -07004656 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4657 boolean wasOccluded = mKeyguardOccluded;
4658 boolean showing = mKeyguardDelegate.isShowing();
4659 if (wasOccluded && !isOccluded && showing) {
4660 mKeyguardOccluded = false;
4661 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004662 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4663 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4664 return true;
Jim Millerab954542014-10-10 18:21:49 -07004665 } else if (!wasOccluded && isOccluded && showing) {
4666 mKeyguardOccluded = true;
4667 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004668 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4669 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4670 return true;
4671 } else {
4672 return false;
4673 }
4674 }
4675
4676 private boolean isStatusBarKeyguard() {
4677 return mStatusBar != null
4678 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4679 }
4680
Jose Lima9546b202014-07-02 17:21:51 -07004681 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004682 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004683 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004684 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004685 return false;
4686 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004687 return true;
4688 }
4689
Jose Lima9546b202014-07-02 17:21:51 -07004690 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004691 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004692 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004693 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004694 // If the navigation bar has been hidden or shown, we need to do another
4695 // layout pass to update that window.
4696 return FINISH_LAYOUT_REDO_LAYOUT;
4697 }
4698 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004699 }
4700
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004701 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004702 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004703 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4704 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004705 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4706 if (newLidState == mLidState) {
4707 return;
4708 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004709
Jeff Brownc458ce92012-04-30 14:58:40 -07004710 mLidState = newLidState;
4711 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004712 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004713
4714 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004715 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4716 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004717 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004718 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004719 }
4720 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004721
Michael Wright3818c922014-09-02 13:59:07 -07004722 @Override
4723 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4724 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4725 if (mCameraLensCoverState == lensCoverState) {
4726 return;
4727 }
4728 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4729 lensCoverState == CAMERA_LENS_UNCOVERED) {
4730 Intent intent;
4731 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4732 mKeyguardDelegate.isShowing();
4733 if (keyguardActive) {
4734 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4735 } else {
4736 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4737 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004738 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4739 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004740 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004741 }
4742 mCameraLensCoverState = lensCoverState;
4743 }
4744
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004745 void setHdmiPlugged(boolean plugged) {
4746 if (mHdmiPlugged != plugged) {
4747 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004748 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004749 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004750 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004751 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004752 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004753 }
4754 }
4755
Joe Onoratoea495d42011-04-06 11:41:11 -07004756 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004757 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004758 // watch for HDMI plug messages if the hdmi switch exists
4759 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4760 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4761
Joe Onoratoea495d42011-04-06 11:41:11 -07004762 final String filename = "/sys/class/switch/hdmi/state";
4763 FileReader reader = null;
4764 try {
4765 reader = new FileReader(filename);
4766 char[] buf = new char[15];
4767 int n = reader.read(buf);
4768 if (n > 1) {
4769 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4770 }
4771 } catch (IOException ex) {
4772 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4773 } catch (NumberFormatException ex) {
4774 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4775 } finally {
4776 if (reader != null) {
4777 try {
4778 reader.close();
4779 } catch (IOException ex) {
4780 }
Joe Onoratodc100302011-01-11 17:07:41 -08004781 }
4782 }
4783 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004784 // This dance forces the code in setHdmiPlugged to run.
4785 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4786 mHdmiPlugged = !plugged;
4787 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004788 }
4789
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004790 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004791 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004792
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004793 final Runnable mScreenshotTimeout = new Runnable() {
4794 @Override public void run() {
4795 synchronized (mScreenshotLock) {
4796 if (mScreenshotConnection != null) {
4797 mContext.unbindService(mScreenshotConnection);
4798 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004799 }
Winson Chung9112ec32011-06-27 13:15:32 -07004800 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004801 }
4802 };
4803
4804 // Assume this is called from the Handler thread.
4805 private void takeScreenshot() {
4806 synchronized (mScreenshotLock) {
4807 if (mScreenshotConnection != null) {
4808 return;
4809 }
4810 ComponentName cn = new ComponentName("com.android.systemui",
4811 "com.android.systemui.screenshot.TakeScreenshotService");
4812 Intent intent = new Intent();
4813 intent.setComponent(cn);
4814 ServiceConnection conn = new ServiceConnection() {
4815 @Override
4816 public void onServiceConnected(ComponentName name, IBinder service) {
4817 synchronized (mScreenshotLock) {
4818 if (mScreenshotConnection != this) {
4819 return;
4820 }
4821 Messenger messenger = new Messenger(service);
4822 Message msg = Message.obtain(null, 1);
4823 final ServiceConnection myConn = this;
4824 Handler h = new Handler(mHandler.getLooper()) {
4825 @Override
4826 public void handleMessage(Message msg) {
4827 synchronized (mScreenshotLock) {
4828 if (mScreenshotConnection == myConn) {
4829 mContext.unbindService(mScreenshotConnection);
4830 mScreenshotConnection = null;
4831 mHandler.removeCallbacks(mScreenshotTimeout);
4832 }
4833 }
4834 }
4835 };
4836 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004837 msg.arg1 = msg.arg2 = 0;
4838 if (mStatusBar != null && mStatusBar.isVisibleLw())
4839 msg.arg1 = 1;
4840 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4841 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004842 try {
4843 messenger.send(msg);
4844 } catch (RemoteException e) {
4845 }
4846 }
4847 }
4848 @Override
4849 public void onServiceDisconnected(ComponentName name) {}
4850 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004851 if (mContext.bindServiceAsUser(
4852 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004853 mScreenshotConnection = conn;
4854 mHandler.postDelayed(mScreenshotTimeout, 10000);
4855 }
4856 }
Winson Chung9112ec32011-06-27 13:15:32 -07004857 }
4858
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004859 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004860 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004861 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004862 if (!mSystemBooted) {
4863 // If we have not yet booted, don't let key events do anything.
4864 return 0;
4865 }
4866
Jeff Brown037c33e2014-04-09 00:31:55 -07004867 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004868 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4869 final boolean canceled = event.isCanceled();
4870 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004871
Jeff Brown3122e442010-10-11 23:32:49 -07004872 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004873
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004874 // If screen is off then we treat the case where the keyguard is open but hidden
4875 // the same as if it were open and in front.
4876 // This will prevent any keys other than the power button from waking the screen
4877 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004878 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004879 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004880 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004881 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004882
Jeff Brown40013652012-05-16 21:22:36 -07004883 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004884 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004885 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004886 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004887 }
4888
Jeff Brown037c33e2014-04-09 00:31:55 -07004889 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004890 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004891 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4892 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004893 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004894 // When the device is interactive or the key is injected pass the
4895 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004896 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004897 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004898 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4899 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4900 // to the application but preserve its wake key status to make sure we still move
4901 // from dozing to fully interactive if we would normally go from off to fully
4902 // interactive.
4903 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004904 } else {
4905 // When the screen is off and the key is not injected, determine whether
4906 // to wake the device but don't pass the key to the application.
4907 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004908 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4909 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004910 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004911 }
4912
Justin Kohd378ad72013-04-01 12:18:26 -07004913 // If the key would be handled globally, just return the result, don't worry about special
4914 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004915 if (isValidGlobalKey(keyCode)
4916 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004917 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004918 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07004919 }
Justin Kohd378ad72013-04-01 12:18:26 -07004920 return result;
4921 }
4922
Jeff Brownbae8e772014-06-12 19:59:45 -07004923 boolean useHapticFeedback = down
4924 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4925 && event.getRepeatCount() == 0;
4926
Jeff Brown4d396052010-10-29 21:50:21 -07004927 // Handle special keys.
4928 switch (keyCode) {
4929 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004930 case KeyEvent.KEYCODE_VOLUME_UP:
4931 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004932 if (mUseTvRouting) {
4933 // On TVs volume keys never go to the foreground app
4934 result &= ~ACTION_PASS_TO_USER;
4935 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004936 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4937 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004938 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004939 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004940 mScreenshotChordVolumeDownKeyTriggered = true;
4941 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4942 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004943 cancelPendingPowerKeyAction();
4944 interceptScreenshotChord();
4945 }
4946 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004947 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004948 cancelPendingScreenshotChordAction();
4949 }
4950 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4951 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004952 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004953 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004954 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004955 cancelPendingPowerKeyAction();
4956 cancelPendingScreenshotChordAction();
4957 }
4958 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004959 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004960 cancelPendingScreenshotChordAction();
4961 }
4962 }
Jeff Brown4d396052010-10-29 21:50:21 -07004963 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004964 TelecomManager telecomManager = getTelecommService();
4965 if (telecomManager != null) {
4966 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004967 // If an incoming call is ringing, either VOLUME key means
4968 // "silence ringer". We handle these keys here, rather than
4969 // in the InCallScreen, to make sure we'll respond to them
4970 // even if the InCallScreen hasn't come to the foreground yet.
4971 // Look for the DOWN event here, to agree with the "fallback"
4972 // behavior in the InCallScreen.
4973 Log.i(TAG, "interceptKeyBeforeQueueing:"
4974 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004975
Santos Cordon6848f722014-05-21 15:22:12 -07004976 // Silence the ringer. (It's safe to call this
4977 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004978 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004979
Santos Cordon6848f722014-05-21 15:22:12 -07004980 // And *don't* pass this key thru to the current activity
4981 // (which is probably the InCallScreen.)
4982 result &= ~ACTION_PASS_TO_USER;
4983 break;
4984 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004985 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004986 && (result & ACTION_PASS_TO_USER) == 0) {
4987 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004988 // the application, just pass it to the session service.
4989
4990 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004991 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07004992 break;
Jeff Brown4d396052010-10-29 21:50:21 -07004993 }
4994 }
4995
RoboErik430fc482014-06-12 15:49:20 -07004996 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08004997 if (mUseTvRouting) {
4998 dispatchDirectAudioEvent(event);
4999 } else {
5000 // If we aren't passing to the user and no one else
5001 // handled it send it to the session manager to
5002 // figure out.
5003 MediaSessionLegacyHelper.getHelper(mContext)
5004 .sendVolumeKeyEvent(event, true);
5005 }
Jeff Brown4d396052010-10-29 21:50:21 -07005006 break;
5007 }
5008 }
5009 break;
5010 }
5011
5012 case KeyEvent.KEYCODE_ENDCALL: {
5013 result &= ~ACTION_PASS_TO_USER;
5014 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005015 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005016 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005017 if (telecomManager != null) {
5018 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005019 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005020 if (interactive && !hungUp) {
5021 mEndCallKeyHandled = false;
5022 mHandler.postDelayed(mEndCallLongPress,
5023 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5024 } else {
5025 mEndCallKeyHandled = true;
5026 }
Jeff Brown4d396052010-10-29 21:50:21 -07005027 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005028 if (!mEndCallKeyHandled) {
5029 mHandler.removeCallbacks(mEndCallLongPress);
5030 if (!canceled) {
5031 if ((mEndcallBehavior
5032 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5033 if (goHome()) {
5034 break;
5035 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005036 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005037 if ((mEndcallBehavior
5038 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5039 mPowerManager.goToSleep(event.getEventTime(),
5040 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5041 isWakeKey = false;
5042 }
Jeff Brown4d396052010-10-29 21:50:21 -07005043 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005044 }
Jeff Brown4d396052010-10-29 21:50:21 -07005045 }
5046 break;
5047 }
5048
5049 case KeyEvent.KEYCODE_POWER: {
5050 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005051 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005052 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005053 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005054 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005055 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005056 }
5057 break;
5058 }
5059
Jeff Brown6212a492014-03-07 13:58:47 -08005060 case KeyEvent.KEYCODE_SLEEP: {
5061 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005062 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005063 if (!mPowerManager.isInteractive()) {
5064 useHapticFeedback = false; // suppress feedback if already non-interactive
5065 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005066 if (down) {
5067 sleepPress(event.getEventTime());
5068 } else {
5069 sleepRelease(event.getEventTime());
5070 }
Jeff Brown6212a492014-03-07 13:58:47 -08005071 break;
5072 }
5073
5074 case KeyEvent.KEYCODE_WAKEUP: {
5075 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005076 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005077 break;
5078 }
5079
Jeff Brown4d396052010-10-29 21:50:21 -07005080 case KeyEvent.KEYCODE_MEDIA_PLAY:
5081 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5082 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005083 case KeyEvent.KEYCODE_HEADSETHOOK:
5084 case KeyEvent.KEYCODE_MUTE:
5085 case KeyEvent.KEYCODE_MEDIA_STOP:
5086 case KeyEvent.KEYCODE_MEDIA_NEXT:
5087 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5088 case KeyEvent.KEYCODE_MEDIA_REWIND:
5089 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005090 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5091 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005092 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5093 // If the global session is active pass all media keys to it
5094 // instead of the active window.
5095 result &= ~ACTION_PASS_TO_USER;
5096 }
Jeff Brown4d396052010-10-29 21:50:21 -07005097 if ((result & ACTION_PASS_TO_USER) == 0) {
5098 // Only do this if we would otherwise not pass it to the user. In that
5099 // case, the PhoneWindow class will do the same thing, except it will
5100 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005101 // Note that we need to make a copy of the key event here because the
5102 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005103 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005104 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5105 new KeyEvent(event));
5106 msg.setAsynchronous(true);
5107 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005108 }
5109 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005110 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005111
Jeff Brown4d396052010-10-29 21:50:21 -07005112 case KeyEvent.KEYCODE_CALL: {
5113 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005114 TelecomManager telecomManager = getTelecommService();
5115 if (telecomManager != null) {
5116 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005117 Log.i(TAG, "interceptKeyBeforeQueueing:"
5118 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005119 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005120
Santos Cordon6848f722014-05-21 15:22:12 -07005121 // And *don't* pass this key thru to the current activity
5122 // (which is presumably the InCallScreen.)
5123 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005124 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005125 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005126 }
Jeff Brown4d396052010-10-29 21:50:21 -07005127 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005128 }
Michael Wright869a67c2014-08-26 19:33:06 -07005129 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5130 // Only do this if we would otherwise not pass it to the user. In that case,
5131 // interceptKeyBeforeDispatching would apply a similar but different policy in
5132 // order to invoke voice assist actions. Note that we need to make a copy of the
5133 // key event here because the original key event will be recycled when we return.
5134 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5135 mBroadcastWakeLock.acquire();
5136 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5137 keyguardActive ? 1 : 0, 0);
5138 msg.setAsynchronous(true);
5139 msg.sendToTarget();
5140 }
5141 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005142 }
Jeff Brown26875502014-01-30 21:47:47 -08005143
Jeff Brownbae8e772014-06-12 19:59:45 -07005144 if (useHapticFeedback) {
5145 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5146 }
5147
Jeff Brown26875502014-01-30 21:47:47 -08005148 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005149 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005150 }
Bryce Lee584a4452014-10-21 15:55:55 -07005151
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005152 return result;
5153 }
5154
Jeff Brown1c2e4942012-11-06 16:32:01 -08005155 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005156 * Returns true if the key can have global actions attached to it.
5157 * We reserve all power management keys for the system since they require
5158 * very careful handling.
5159 */
5160 private static boolean isValidGlobalKey(int keyCode) {
5161 switch (keyCode) {
5162 case KeyEvent.KEYCODE_POWER:
5163 case KeyEvent.KEYCODE_WAKEUP:
5164 case KeyEvent.KEYCODE_SLEEP:
5165 return false;
5166 default:
5167 return true;
5168 }
5169 }
5170
5171 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005172 * When the screen is off we ignore some keys that might otherwise typically
5173 * be considered wake keys. We filter them out here.
5174 *
5175 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5176 * is always considered a wake key.
5177 */
5178 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5179 switch (keyCode) {
5180 // ignore volume keys unless docked
5181 case KeyEvent.KEYCODE_VOLUME_UP:
5182 case KeyEvent.KEYCODE_VOLUME_DOWN:
5183 case KeyEvent.KEYCODE_VOLUME_MUTE:
5184 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5185
5186 // ignore media and camera keys
5187 case KeyEvent.KEYCODE_MUTE:
5188 case KeyEvent.KEYCODE_HEADSETHOOK:
5189 case KeyEvent.KEYCODE_MEDIA_PLAY:
5190 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5191 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5192 case KeyEvent.KEYCODE_MEDIA_STOP:
5193 case KeyEvent.KEYCODE_MEDIA_NEXT:
5194 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5195 case KeyEvent.KEYCODE_MEDIA_REWIND:
5196 case KeyEvent.KEYCODE_MEDIA_RECORD:
5197 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005198 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005199 case KeyEvent.KEYCODE_CAMERA:
5200 return false;
5201 }
5202 return true;
5203 }
5204
5205
Jeff Brown56194eb2011-03-02 19:23:13 -08005206 /** {@inheritDoc} */
5207 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005208 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5209 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005210 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5211 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005212 return 0;
5213 }
Michael Wright70af00a2014-09-03 19:30:20 -07005214 }
Bryce Lee5c138322014-11-03 08:26:09 -08005215
Michael Wright70af00a2014-09-03 19:30:20 -07005216 if (shouldDispatchInputWhenNonInteractive()) {
5217 return ACTION_PASS_TO_USER;
5218 }
Bryce Lee5c138322014-11-03 08:26:09 -08005219
Bryce Lee812d7022014-11-10 13:33:28 -08005220 // If we have not passed the action up and we are in theater mode without dreaming,
5221 // there will be no dream to intercept the touch and wake into ambient. The device should
5222 // wake up in this case.
5223 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005224 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5225 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005226 }
5227
Jeff Brown037c33e2014-04-09 00:31:55 -07005228 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005229 }
5230
Michael Wright70af00a2014-09-03 19:30:20 -07005231 private boolean shouldDispatchInputWhenNonInteractive() {
Michael Wright2ccf0c82015-08-04 23:03:03 +01005232 if (mDisplay == null || mDisplay.getState() == Display.STATE_OFF) {
5233 return false;
5234 }
5235 // Send events to keyguard while the screen is on and it's showing.
5236 if (isKeyguardShowingAndNotOccluded()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005237 return true;
5238 }
5239
5240 // Send events to a dozing dream even if the screen is off since the dream
5241 // is in control of the state of the screen.
5242 IDreamManager dreamManager = getDreamManager();
5243
5244 try {
5245 if (dreamManager != null && dreamManager.isDreaming()) {
5246 return true;
5247 }
5248 } catch (RemoteException e) {
5249 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5250 }
5251
5252 // Otherwise, consume events since the user can't see what is being
5253 // interacted with.
5254 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005255 }
5256
RoboErik001c59c2015-01-26 15:53:51 -08005257 private void dispatchDirectAudioEvent(KeyEvent event) {
5258 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5259 return;
5260 }
5261 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005262 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5263 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005264 String pkgName = mContext.getOpPackageName();
5265 switch (keyCode) {
5266 case KeyEvent.KEYCODE_VOLUME_UP:
5267 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005268 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005269 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005270 } catch (RemoteException e) {
5271 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5272 }
5273 break;
5274 case KeyEvent.KEYCODE_VOLUME_DOWN:
5275 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005276 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005277 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005278 } catch (RemoteException e) {
5279 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5280 }
5281 break;
5282 case KeyEvent.KEYCODE_VOLUME_MUTE:
5283 try {
5284 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005285 getAudioService().adjustSuggestedStreamVolume(
5286 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005287 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005288 }
5289 } catch (RemoteException e) {
5290 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5291 }
5292 break;
5293 }
5294 }
5295
Jeff Brown40013652012-05-16 21:22:36 -07005296 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5297 if (DEBUG_INPUT) {
5298 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005299 }
5300
Jeff Brown40013652012-05-16 21:22:36 -07005301 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5302 if (DEBUG_INPUT) {
5303 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5304 }
5305
5306 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5307 mHavePendingMediaKeyRepeatWithWakeLock = false;
5308 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5309 }
5310
5311 dispatchMediaKeyWithWakeLockToAudioService(event);
5312
5313 if (event.getAction() == KeyEvent.ACTION_DOWN
5314 && event.getRepeatCount() == 0) {
5315 mHavePendingMediaKeyRepeatWithWakeLock = true;
5316
5317 Message msg = mHandler.obtainMessage(
5318 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5319 msg.setAsynchronous(true);
5320 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5321 } else {
5322 mBroadcastWakeLock.release();
5323 }
5324 }
5325
5326 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5327 mHavePendingMediaKeyRepeatWithWakeLock = false;
5328
5329 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5330 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5331 if (DEBUG_INPUT) {
5332 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5333 }
5334
5335 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5336 mBroadcastWakeLock.release();
5337 }
5338
5339 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5340 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005341 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005342 }
5343 }
5344
Michael Wright869a67c2014-08-26 19:33:06 -07005345 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005346 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5347 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5348 if (dic != null) {
5349 try {
5350 dic.exitIdle("voice-search");
5351 } catch (RemoteException e) {
5352 }
5353 }
Michael Wright869a67c2014-08-26 19:33:06 -07005354 Intent voiceIntent =
5355 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5356 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005357 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005358 mBroadcastWakeLock.release();
5359 }
5360
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005361 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005362 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005363 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005364 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5365 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5366 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005367 } else {
5368 try {
5369 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5370 ServiceManager.getService(Context.UI_MODE_SERVICE));
5371 mUiMode = uiModeService.getCurrentModeType();
5372 } catch (RemoteException e) {
5373 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005374 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005375 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005376 synchronized (mLock) {
5377 updateOrientationListenerLp();
5378 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005379 }
5380 };
5381
Jeff Brown6aaf2952012-10-05 16:01:08 -07005382 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5383 @Override
5384 public void onReceive(Context context, Intent intent) {
5385 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005386 if (mKeyguardDelegate != null) {
5387 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005388 }
5389 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005390 if (mKeyguardDelegate != null) {
5391 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005392 }
5393 }
5394 }
5395 };
5396
Christopher Tate5e08af02012-09-21 17:17:22 -07005397 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5398 @Override
5399 public void onReceive(Context context, Intent intent) {
5400 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5401 // tickle the settings observer: this first ensures that we're
5402 // observing the relevant settings for the newly-active user,
5403 // and then updates our own bookkeeping based on the now-
5404 // current user.
5405 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005406
5407 // force a re-application of focused window sysui visibility.
5408 // the window may never have been shown for this user
5409 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005410 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005411 mLastSystemUiFlags = 0;
5412 updateSystemUiVisibilityLw();
5413 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005414 }
5415 }
5416 };
5417
Adrian Roosddc8b272015-05-21 16:28:27 -07005418 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005419 @Override
5420 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005421 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5422 if (!isUserSetupComplete()) {
5423 // Swipe-up for navigation bar is disabled during setup
5424 return;
5425 }
5426 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5427 mNavigationBarController.showTransient();
5428 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005429 }
5430 };
5431
John Spurlocke1f366f2013-08-05 12:22:40 -04005432 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005433 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005434 if (!isUserSetupComplete()) {
5435 // Swipe-up for navigation bar is disabled during setup
5436 return;
5437 }
John Spurlock27735a42013-08-14 17:57:38 -04005438 boolean sb = mStatusBarController.checkShowTransientBarLw();
5439 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005440 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005441 // Don't show status bar when swiping on already visible navigation bar
5442 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005443 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005444 return;
5445 }
John Spurlock27735a42013-08-14 17:57:38 -04005446 if (sb) mStatusBarController.showTransient();
5447 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005448 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005449 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005450 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005451 }
5452 }
5453
Jeff Brown3ee549c2014-09-22 20:14:39 -07005454 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005455 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005456 public void startedGoingToSleep(int why) {
5457 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005458 if (mKeyguardDelegate != null) {
5459 mKeyguardDelegate.onStartedGoingToSleep(why);
5460 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005461 }
5462
5463 // Called on the PowerManager's Notifier thread.
5464 @Override
5465 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005466 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005467 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005468 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005469
5470 // We must get this work done here because the power manager will drop
5471 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005472 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005473 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005474 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005475 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005476 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005477 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005478 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005479 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005480 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005481 }
5482
Jeff Brown3ee549c2014-09-22 20:14:39 -07005483 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005484 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005485 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005486 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005487 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005488
Jeff Brown3ee549c2014-09-22 20:14:39 -07005489 // Since goToSleep performs these functions synchronously, we must
5490 // do the same here. We cannot post this work to a handler because
5491 // that might cause it to become reordered with respect to what
5492 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005493 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005494 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005495
Jeff Browna20dda42014-05-27 20:57:24 -07005496 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005497 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005498 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005499 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005500
Jim Miller5ecd8112013-01-09 18:50:26 -08005501 if (mKeyguardDelegate != null) {
Jorim Jaggi740452e2015-07-09 12:13:59 -07005502 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005503 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005504 }
5505
Jeff Brown416c49c2015-05-26 19:50:18 -07005506 // Called on the PowerManager's Notifier thread.
5507 @Override
5508 public void finishedWakingUp() {
5509 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5510 }
5511
5512 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005513 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005514 }
5515
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005516 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005517 final boolean theaterModeEnabled = isTheaterModeEnabled();
5518 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005519 return false;
5520 }
5521
Bryce Leed3896842015-06-23 17:06:51 -07005522 if (theaterModeEnabled) {
5523 Settings.Global.putInt(mContext.getContentResolver(),
5524 Settings.Global.THEATER_MODE_ON, 0);
5525 }
5526
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005527 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005528 return true;
5529 }
5530
Jeff Brown36c4db82014-09-19 12:05:31 -07005531 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005532 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005533 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005534 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005535 }
5536
Jeff Brown36c4db82014-09-19 12:05:31 -07005537 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005538 if (mKeyguardDelegate != null) {
5539 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5540 }
Jorim Jaggi740452e2015-07-09 12:13:59 -07005541 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005542 }
5543
Jorim Jaggi740452e2015-07-09 12:13:59 -07005544 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5545 // as well as enabling the orientation change logic/sensor.
5546 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5547 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005548 }
5549
5550 // Called on the DisplayManager's DisplayPowerController thread.
5551 @Override
5552 public void screenTurnedOff() {
5553 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5554
Jeff Brown48d1b142015-06-10 16:36:03 -07005555 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005556 synchronized (mLock) {
5557 mScreenOnEarly = false;
5558 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005559 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005560 mWindowManagerDrawComplete = false;
5561 mScreenOnListener = null;
5562 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005563
5564 if (mKeyguardDelegate != null) {
5565 mKeyguardDelegate.onScreenTurnedOff();
5566 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005567 }
5568 }
5569
Jeff Brown3ee549c2014-09-22 20:14:39 -07005570 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005571 @Override
5572 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005573 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005574
Jeff Brown48d1b142015-06-10 16:36:03 -07005575 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005576 synchronized (mLock) {
5577 mScreenOnEarly = true;
5578 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005579 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005580 mWindowManagerDrawComplete = false;
5581 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005582
Jorim Jaggi740452e2015-07-09 12:13:59 -07005583 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005584 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5585 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi740452e2015-07-09 12:13:59 -07005586 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5587 } else {
5588 if (DEBUG_WAKEUP) Slog.d(TAG,
5589 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5590 finishKeyguardDrawn();
5591 }
5592 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005593 }
5594
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005595 // Called on the DisplayManager's DisplayPowerController thread.
5596 @Override
5597 public void screenTurnedOn() {
5598 synchronized (mLock) {
5599 if (mKeyguardDelegate != null) {
5600 mKeyguardDelegate.onScreenTurnedOn();
5601 }
5602 }
5603 }
5604
Jeff Brown36c4db82014-09-19 12:05:31 -07005605 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005606 synchronized (mLock) {
5607 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005608 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005609 }
5610
Jeff Brown36c4db82014-09-19 12:05:31 -07005611 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005612 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005613
5614 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005615 }
5616
Craig Mautner8a0da012014-05-31 15:13:37 -07005617 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005618 synchronized (mLock) {
5619 // We have just finished drawing screen content. Since the orientation listener
5620 // gets only installed when all windows are drawn, we try to install it again.
5621 updateOrientationListenerLp();
5622 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005623 final ScreenOnListener listener;
5624 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005625 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005626 if (DEBUG_WAKEUP) Slog.d(TAG,
5627 "finishScreenTurningOn: mAwake=" + mAwake
5628 + ", mScreenOnEarly=" + mScreenOnEarly
5629 + ", mScreenOnFully=" + mScreenOnFully
5630 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5631 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5632
5633 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5634 || (mAwake && !mKeyguardDrawComplete)) {
5635 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005636 }
5637
Jeff Brown3ee549c2014-09-22 20:14:39 -07005638 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5639 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005640 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005641 mScreenOnFully = true;
5642
5643 // Remember the first time we draw the keyguard so we know when we're done with
5644 // the main part of booting and can enable the screen and hide boot messages.
5645 if (!mKeyguardDrawnOnce && mAwake) {
5646 mKeyguardDrawnOnce = true;
5647 enableScreen = true;
5648 if (mBootMessageNeedsHiding) {
5649 mBootMessageNeedsHiding = false;
5650 hideBootMessages();
5651 }
5652 } else {
5653 enableScreen = false;
5654 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005655 }
5656
Jeff Brown3ee549c2014-09-22 20:14:39 -07005657 if (listener != null) {
5658 listener.onScreenOn();
5659 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005660
Jeff Brown3ee549c2014-09-22 20:14:39 -07005661 if (enableScreen) {
5662 try {
5663 mWindowManager.enableScreenIfNeeded();
5664 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005665 }
Craig Mautnera631d492014-08-05 15:16:01 -07005666 }
5667 }
5668
5669 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005670 synchronized (mLock) {
5671 if (!mKeyguardDrawnOnce) {
5672 mBootMessageNeedsHiding = true;
5673 return; // keyguard hasn't drawn the first time yet, not done booting
5674 }
Craig Mautnera631d492014-08-05 15:16:01 -07005675 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005676
5677 if (mBootMsgDialog != null) {
5678 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5679 mBootMsgDialog.dismiss();
5680 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005681 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005682 }
5683
5684 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005685 public boolean isScreenOn() {
5686 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005687 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005688
Dianne Hackborn08743722009-12-21 12:16:51 -08005689 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005690 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005691 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005692 if (mKeyguardDelegate != null) {
5693 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005694 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005695 }
5696
5697 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005698 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005699 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005700 if (mKeyguardDelegate != null) {
5701 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005702 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005703 }
5704
Jim Millerab954542014-10-10 18:21:49 -07005705 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005706 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005707 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005708 }
5709
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005710 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005711 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005712 public boolean isKeyguardLocked() {
5713 return keyguardOn();
5714 }
5715
5716 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005717 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005718 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005719 if (mKeyguardDelegate == null) return false;
5720 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005721 }
5722
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005723 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005724 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005725 public boolean isKeyguardShowingOrOccluded() {
5726 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5727 }
5728
5729 /** {@inheritDoc} */
5730 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005731 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005732 if (mKeyguardDelegate == null) return false;
5733 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005734 }
5735
Jose Lima9546b202014-07-02 17:21:51 -07005736 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005737 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005738 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005739 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005740 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005741 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005742 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005743 // ask the keyguard to prompt the user to authenticate if necessary
5744 mKeyguardDelegate.dismiss();
5745 }
5746 });
5747 }
5748 }
5749
5750 public void notifyActivityDrawnForKeyguardLw() {
5751 if (mKeyguardDelegate != null) {
5752 mHandler.post(new Runnable() {
5753 @Override
5754 public void run() {
5755 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005756 }
5757 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005758 }
5759 }
5760
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005761 @Override
5762 public boolean isKeyguardDrawnLw() {
5763 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005764 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005765 }
5766 }
5767
Jorim Jaggi0d674622014-05-21 01:34:15 +02005768 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005769 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005770 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005771 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005772 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005773 }
5774 }
5775
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005776 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005777 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005778 }
5779
5780 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005781 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005782 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005783
Jeff Brown01a98dd2011-09-20 15:08:29 -07005784 @Override
5785 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005786 if (false) {
5787 Slog.v(TAG, "rotationForOrientationLw(orient="
5788 + orientation + ", last=" + lastRotation
5789 + "); user=" + mUserRotation + " "
5790 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5791 ? "USER_ROTATION_LOCKED" : "")
5792 );
5793 }
5794
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005795 if (mForceDefaultOrientation) {
5796 return Surface.ROTATION_0;
5797 }
5798
The Android Open Source Project0727d222009-03-11 12:11:58 -07005799 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005800 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5801 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005802 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005803 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005804
Jeff Browndec6cf42011-11-15 14:08:20 -08005805 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005806 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005807 // Ignore sensor when lid switch is open and rotation is forced.
5808 preferredRotation = mLidOpenRotation;
5809 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005810 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005811 // Ignore sensor when in car dock unless explicitly enabled.
5812 // This case can override the behavior of NOSENSOR, and can also
5813 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005814 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005815 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005816 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5817 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5818 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005819 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005820 // Ignore sensor when in desk dock unless explicitly enabled.
5821 // This case can override the behavior of NOSENSOR, and can also
5822 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005823 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005824 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005825 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5826 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005827 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005828 preferredRotation = mDemoHdmiRotation;
5829 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5830 && mUndockedHdmiRotation >= 0) {
5831 // Ignore sensor when plugged into HDMI and an undocked orientation has
5832 // been specified in the configuration (only for legacy devices without
5833 // full multi-display support).
5834 // Note that the dock orientation overrides the HDMI orientation.
5835 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005836 } else if (mDemoRotationLock) {
5837 // Ignore sensor when demo rotation lock is enabled.
5838 // Note that the dock orientation and HDMI rotation lock override this.
5839 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005840 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5841 // Application just wants to remain locked in the last rotation.
5842 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005843 } else if (!mSupportAutoRotation) {
5844 // If we don't support auto-rotation then bail out here and ignore
5845 // the sensor and any rotation lock settings.
5846 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005847 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005848 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005849 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5850 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5851 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5852 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005853 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5854 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5855 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5856 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5857 // Otherwise, use sensor only if requested by the application or enabled
5858 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005859 if (mAllowAllRotations < 0) {
5860 // Can't read this during init() because the context doesn't
5861 // have display metrics at that time so we cannot determine
5862 // tablet vs. phone then.
5863 mAllowAllRotations = mContext.getResources().getBoolean(
5864 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5865 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005866 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005867 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005868 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5869 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005870 preferredRotation = sensorRotation;
5871 } else {
5872 preferredRotation = lastRotation;
5873 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005874 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5875 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5876 // Apply rotation lock. Does not apply to NOSENSOR.
5877 // The idea is that the user rotation expresses a weak preference for the direction
5878 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5879 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005880 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005881 } else {
5882 // No overriding preference.
5883 // We will do exactly what the application asked us to do.
5884 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005885 }
5886
Dianne Hackborne5439f22010-10-02 16:53:50 -07005887 switch (orientation) {
5888 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005889 // Return portrait unless overridden.
5890 if (isAnyPortrait(preferredRotation)) {
5891 return preferredRotation;
5892 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005893 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005894
Jeff Brown01a98dd2011-09-20 15:08:29 -07005895 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005896 // Return landscape unless overridden.
5897 if (isLandscapeOrSeascape(preferredRotation)) {
5898 return preferredRotation;
5899 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005900 return mLandscapeRotation;
5901
5902 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005903 // Return reverse portrait unless overridden.
5904 if (isAnyPortrait(preferredRotation)) {
5905 return preferredRotation;
5906 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005907 return mUpsideDownRotation;
5908
5909 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005910 // Return seascape unless overridden.
5911 if (isLandscapeOrSeascape(preferredRotation)) {
5912 return preferredRotation;
5913 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005914 return mSeascapeRotation;
5915
5916 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005917 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005918 // Return either landscape rotation.
5919 if (isLandscapeOrSeascape(preferredRotation)) {
5920 return preferredRotation;
5921 }
5922 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005923 return lastRotation;
5924 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005925 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005926
Jeff Brown01a98dd2011-09-20 15:08:29 -07005927 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005928 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005929 // Return either portrait rotation.
5930 if (isAnyPortrait(preferredRotation)) {
5931 return preferredRotation;
5932 }
5933 if (isAnyPortrait(lastRotation)) {
5934 return lastRotation;
5935 }
5936 return mPortraitRotation;
5937
5938 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005939 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5940 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005941 if (preferredRotation >= 0) {
5942 return preferredRotation;
5943 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005944 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005945 }
5946 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005947 }
5948
Jeff Brown01a98dd2011-09-20 15:08:29 -07005949 @Override
5950 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5951 switch (orientation) {
5952 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5953 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5954 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5955 return isAnyPortrait(rotation);
5956
5957 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5958 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5959 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5960 return isLandscapeOrSeascape(rotation);
5961
5962 default:
5963 return true;
5964 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005965 }
5966
Jeff Brownc0347aa2011-09-23 17:26:09 -07005967 @Override
5968 public void setRotationLw(int rotation) {
5969 mOrientationListener.setCurrentRotation(rotation);
5970 }
5971
Jeff Brown01a98dd2011-09-20 15:08:29 -07005972 private boolean isLandscapeOrSeascape(int rotation) {
5973 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005974 }
5975
Jeff Brown01a98dd2011-09-20 15:08:29 -07005976 private boolean isAnyPortrait(int rotation) {
5977 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005978 }
5979
Jose Lima9546b202014-07-02 17:21:51 -07005980 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005981 public int getUserRotationMode() {
5982 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005983 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5984 WindowManagerPolicy.USER_ROTATION_FREE :
5985 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005986 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005987
5988 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005989 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005990 public void setUserRotationMode(int mode, int rot) {
5991 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005992
5993 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005994 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07005995 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005996 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005997 rot,
5998 UserHandle.USER_CURRENT);
5999 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006000 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006001 0,
6002 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006003 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006004 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006005 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006006 1,
6007 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006008 }
6009 }
6010
Jose Lima9546b202014-07-02 17:21:51 -07006011 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006012 public void setSafeMode(boolean safeMode) {
6013 mSafeMode = safeMode;
6014 performHapticFeedbackLw(null, safeMode
6015 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6016 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006017 }
Craig Mautnereda67292013-04-28 13:50:14 -07006018
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006019 static long[] getLongIntArray(Resources r, int resid) {
6020 int[] ar = r.getIntArray(resid);
6021 if (ar == null) {
6022 return null;
6023 }
6024 long[] out = new long[ar.length];
6025 for (int i=0; i<ar.length; i++) {
6026 out[i] = ar[i];
6027 }
6028 return out;
6029 }
Craig Mautnereda67292013-04-28 13:50:14 -07006030
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006031 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006032 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006033 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006034 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006035 mKeyguardDelegate.onSystemReady();
6036
Michael Wright3818c922014-09-02 13:59:07 -07006037 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006038 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006039 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006040 synchronized (mLock) {
6041 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006042 mSystemReady = true;
6043 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006044 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006045 public void run() {
6046 updateSettings();
6047 }
6048 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006049
6050 bindKeyguardNow = mDeferBindKeyguard;
6051 if (bindKeyguardNow) {
6052 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6053 mDeferBindKeyguard = false;
6054 }
6055 }
6056
6057 if (bindKeyguardNow) {
6058 mKeyguardDelegate.bindService(mContext);
6059 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006060 }
6061 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006062
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006063 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006064 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006065 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006066 boolean bindKeyguardNow = false;
6067 synchronized (mLock) {
6068 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6069 // in systemReady if not.
6070 if (mKeyguardDelegate != null) {
6071 bindKeyguardNow = true;
6072 } else {
6073 // Because mKeyguardDelegate is null, we know that the synchronized block in
6074 // systemReady didn't run yet and setting this will actually have an effect.
6075 mDeferBindKeyguard = true;
6076 }
6077 }
6078 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006079 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006080 mKeyguardDelegate.onBootCompleted();
6081 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006082 synchronized (mLock) {
6083 mSystemBooted = true;
6084 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006085 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006086 screenTurningOn(null);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006087 }
6088
Dianne Hackborn661cd522011-08-22 00:26:20 -07006089 ProgressDialog mBootMsgDialog = null;
6090
6091 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006092 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006093 public void showBootMessage(final CharSequence msg, final boolean always) {
6094 mHandler.post(new Runnable() {
6095 @Override public void run() {
6096 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006097 int theme;
6098 if (mContext.getPackageManager().hasSystemFeature(
6099 PackageManager.FEATURE_WATCH)) {
6100 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6101 } else if (mContext.getPackageManager().hasSystemFeature(
6102 PackageManager.FEATURE_TELEVISION)) {
6103 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6104 } else {
6105 theme = 0;
6106 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006107
6108 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006109 // This dialog will consume all events coming in to
6110 // it, to avoid it trying to do things too early in boot.
6111 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6112 return true;
6113 }
6114 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6115 return true;
6116 }
6117 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6118 return true;
6119 }
6120 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6121 return true;
6122 }
6123 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6124 return true;
6125 }
6126 @Override public boolean dispatchPopulateAccessibilityEvent(
6127 AccessibilityEvent event) {
6128 return true;
6129 }
6130 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006131 if (mContext.getPackageManager().isUpgrade()) {
6132 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6133 } else {
6134 mBootMsgDialog.setTitle(R.string.android_start_title);
6135 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006136 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6137 mBootMsgDialog.setIndeterminate(true);
6138 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006139 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006140 mBootMsgDialog.getWindow().addFlags(
6141 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6142 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6143 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006144 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6145 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6146 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006147 mBootMsgDialog.setCancelable(false);
6148 mBootMsgDialog.show();
6149 }
6150 mBootMsgDialog.setMessage(msg);
6151 }
6152 });
6153 }
6154
6155 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006156 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006157 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006158 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006159 }
6160
Mike Lockwood28569302010-01-28 11:54:40 -05006161 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006162 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006163 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006164 // ***************************************
6165 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6166 // ***************************************
6167 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6168 // WITH ITS LOCKS HELD.
6169 //
6170 // This code must be VERY careful about the locks
6171 // it acquires.
6172 // In fact, the current code acquires way too many,
6173 // and probably has lurking deadlocks.
6174
Mike Lockwood28569302010-01-28 11:54:40 -05006175 synchronized (mScreenLockTimeout) {
6176 if (mLockScreenTimerActive) {
6177 // reset the timer
6178 mHandler.removeCallbacks(mScreenLockTimeout);
6179 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6180 }
6181 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006182 }
6183
Adam Cohenf7522022012-10-03 20:03:18 -07006184 class ScreenLockTimeout implements Runnable {
6185 Bundle options;
6186
6187 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006188 public void run() {
6189 synchronized (this) {
6190 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006191 if (mKeyguardDelegate != null) {
6192 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006193 }
Mike Lockwood28569302010-01-28 11:54:40 -05006194 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006195 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006196 }
6197 }
Mike Lockwood28569302010-01-28 11:54:40 -05006198
Adam Cohenf7522022012-10-03 20:03:18 -07006199 public void setLockOptions(Bundle options) {
6200 this.options = options;
6201 }
6202 }
6203
6204 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6205
Jose Lima9546b202014-07-02 17:21:51 -07006206 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006207 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006208 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6209 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006210 if (options != null) {
6211 // In case multiple calls are made to lockNow, we don't wipe out the options
6212 // until the runnable actually executes.
6213 mScreenLockTimeout.setLockOptions(options);
6214 }
Jim Miller93c518e2012-01-17 15:55:31 -08006215 mHandler.post(mScreenLockTimeout);
6216 }
6217
Mike Lockwood28569302010-01-28 11:54:40 -05006218 private void updateLockScreenTimeout() {
6219 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006220 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006221 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006222 if (mLockScreenTimerActive != enable) {
6223 if (enable) {
6224 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6225 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6226 } else {
6227 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6228 mHandler.removeCallbacks(mScreenLockTimeout);
6229 }
6230 mLockScreenTimerActive = enable;
6231 }
6232 }
6233 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006234
Jeff Brown061ea992015-04-17 19:55:47 -07006235 private void updateDreamingSleepToken(boolean acquire) {
6236 if (acquire) {
6237 if (mDreamingSleepToken == null) {
6238 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6239 }
6240 } else {
6241 if (mDreamingSleepToken != null) {
6242 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006243 mDreamingSleepToken = null;
6244 }
6245 }
6246 }
6247
6248 private void updateScreenOffSleepToken(boolean acquire) {
6249 if (acquire) {
6250 if (mScreenOffSleepToken == null) {
6251 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6252 }
6253 } else {
6254 if (mScreenOffSleepToken != null) {
6255 mScreenOffSleepToken.release();
6256 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006257 }
6258 }
6259 }
6260
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006261 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006262 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006263 public void enableScreenAfterBoot() {
6264 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006265 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006266 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006267 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006268
Jeff Brownc458ce92012-04-30 14:58:40 -07006269 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006270 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006271 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006272 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006273 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006274 }
Jeff Browna20dda42014-05-27 20:57:24 -07006275
6276 synchronized (mLock) {
6277 updateWakeGestureListenerLp();
6278 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006279 }
6280
Jeff Brown4f5fa282014-06-12 19:19:15 -07006281 void updateUiMode() {
6282 if (mUiModeManager == null) {
6283 mUiModeManager = IUiModeManager.Stub.asInterface(
6284 ServiceManager.getService(Context.UI_MODE_SERVICE));
6285 }
6286 try {
6287 mUiMode = mUiModeManager.getCurrentModeType();
6288 } catch (RemoteException e) {
6289 }
6290 }
6291
Jeff Brown01a98dd2011-09-20 15:08:29 -07006292 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006293 try {
6294 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006295 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6296 } catch (RemoteException e) {
6297 // Ignore
6298 }
6299 }
6300
6301 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6302 try {
6303 //set orientation on WindowManager
6304 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006305 } catch (RemoteException e) {
6306 // Ignore
6307 }
6308 }
6309
Daniel Sandler6396c722013-04-16 20:19:09 -04006310 /**
6311 * Return an Intent to launch the currently active dock app as home. Returns
6312 * null if the standard home should be launched, which is the case if any of the following is
6313 * true:
6314 * <ul>
6315 * <li>The device is not in either car mode or desk mode
6316 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6317 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6318 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6319 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6320 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006321 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006322 */
6323 Intent createHomeDockIntent() {
6324 Intent intent = null;
6325
6326 // What home does is based on the mode, not the dock state. That
6327 // is, when in car mode you should be taken to car home regardless
6328 // of whether we are actually in a car dock.
6329 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6330 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6331 intent = mCarDockIntent;
6332 }
6333 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6334 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6335 intent = mDeskDockIntent;
6336 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006337 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6338 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6339 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6340 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6341 // Always launch dock home from home when watch is docked, if it exists.
6342 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006343 }
6344
6345 if (intent == null) {
6346 return null;
6347 }
6348
6349 ActivityInfo ai = null;
6350 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6351 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006352 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006353 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006354 if (info != null) {
6355 ai = info.activityInfo;
6356 }
6357 if (ai != null
6358 && ai.metaData != null
6359 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6360 intent = new Intent(intent);
6361 intent.setClassName(ai.packageName, ai.name);
6362 return intent;
6363 }
6364
6365 return null;
6366 }
6367
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006368 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6369 if (awakenFromDreams) {
6370 awakenDreams();
6371 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006372
6373 Intent dock = createHomeDockIntent();
6374 if (dock != null) {
6375 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006376 if (fromHomeKey) {
6377 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6378 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006379 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006380 return;
6381 } catch (ActivityNotFoundException e) {
6382 }
6383 }
6384
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006385 Intent intent;
6386
6387 if (fromHomeKey) {
6388 intent = new Intent(mHomeIntent);
6389 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6390 } else {
6391 intent = mHomeIntent;
6392 }
6393
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006394 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006395 }
Craig Mautnereda67292013-04-28 13:50:14 -07006396
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006397 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006398 * goes to the home screen
6399 * @return whether it did anything
6400 */
6401 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006402 if (!isUserSetupComplete()) {
6403 Slog.i(TAG, "Not going home because user setup is in progress.");
6404 return false;
6405 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006406 if (false) {
6407 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006408 try {
6409 ActivityManagerNative.getDefault().stopAppSwitches();
6410 } catch (RemoteException e) {
6411 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006412 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006413 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006414 } else {
6415 // This code brings home to the front or, if it is already
6416 // at the front, puts the device to sleep.
6417 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006418 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6419 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6420 Log.d(TAG, "UTS-TEST-MODE");
6421 } else {
6422 ActivityManagerNative.getDefault().stopAppSwitches();
6423 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006424 Intent dock = createHomeDockIntent();
6425 if (dock != null) {
6426 int result = ActivityManagerNative.getDefault()
6427 .startActivityAsUser(null, null, dock,
6428 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6429 null, null, 0,
6430 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006431 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006432 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6433 return false;
6434 }
6435 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006436 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006437 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006438 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006439 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006440 null, null, 0,
6441 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006442 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006443 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006444 return false;
6445 }
6446 } catch (RemoteException ex) {
6447 // bummer, the activity manager, which is in this process, is dead
6448 }
6449 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006450 return true;
6451 }
Craig Mautnereda67292013-04-28 13:50:14 -07006452
6453 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006454 public void setCurrentOrientationLw(int newOrientation) {
6455 synchronized (mLock) {
6456 if (newOrientation != mCurrentAppOrientation) {
6457 mCurrentAppOrientation = newOrientation;
6458 updateOrientationListenerLp();
6459 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006460 }
6461 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006462
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006463 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6464 if (!isGlobalAccessibilityGestureEnabled()) {
6465 return;
6466 }
6467 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6468 Context.AUDIO_SERVICE);
6469 if (audioManager.isSilentMode()) {
6470 return;
6471 }
6472 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6473 Settings.System.DEFAULT_NOTIFICATION_URI);
6474 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6475 ringTone.play();
6476 }
Craig Mautnereda67292013-04-28 13:50:14 -07006477
Bryce Lee584a4452014-10-21 15:55:55 -07006478 private boolean isTheaterModeEnabled() {
6479 return Settings.Global.getInt(mContext.getContentResolver(),
6480 Settings.Global.THEATER_MODE_ON, 0) == 1;
6481 }
6482
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006483 private boolean isGlobalAccessibilityGestureEnabled() {
6484 return Settings.Global.getInt(mContext.getContentResolver(),
6485 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6486 }
6487
Craig Mautnereda67292013-04-28 13:50:14 -07006488 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006489 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006490 if (!mVibrator.hasVibrator()) {
6491 return false;
6492 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006493 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6494 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006495 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006496 return false;
6497 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006498 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006499 switch (effectId) {
6500 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006501 pattern = mLongPressVibePattern;
6502 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006503 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006504 pattern = mVirtualKeyVibePattern;
6505 break;
6506 case HapticFeedbackConstants.KEYBOARD_TAP:
6507 pattern = mKeyboardTapVibePattern;
6508 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006509 case HapticFeedbackConstants.CLOCK_TICK:
6510 pattern = mClockTickVibePattern;
6511 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006512 case HapticFeedbackConstants.CALENDAR_DATE:
6513 pattern = mCalendarDateVibePattern;
6514 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006515 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006516 pattern = mSafeModeDisabledVibePattern;
6517 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006518 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006519 pattern = mSafeModeEnabledVibePattern;
6520 break;
Mady Mellore8608912015-06-05 09:02:55 -07006521 case HapticFeedbackConstants.CONTEXT_CLICK:
6522 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006523 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006524 default:
6525 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006526 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006527 int owningUid;
6528 String owningPackage;
6529 if (win != null) {
6530 owningUid = win.getOwningUid();
6531 owningPackage = win.getOwningPackage();
6532 } else {
6533 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006534 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006535 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006536 if (pattern.length == 1) {
6537 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006538 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006539 } else {
6540 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006541 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006542 }
6543 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006544 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006545
6546 @Override
6547 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006548 }
6549
Jeff Brownc38c9be2012-10-04 13:16:19 -07006550 @Override
6551 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006552 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006553 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006554 }
6555 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006556
Dianne Hackborndf89e652011-10-06 22:35:11 -07006557 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006558 // If there is no window focused, there will be nobody to handle the events
6559 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006560 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6561 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006562 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006563 return 0;
6564 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006565 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006566 // We are updating at a point where the keyguard has gotten
6567 // focus, but we were last in a state where the top window is
6568 // hiding it. This is probably because the keyguard as been
6569 // shown while the top window was displayed, so we want to ignore
6570 // it here because this is just a very transient change and it
6571 // will quickly lose focus once it correctly gets hidden.
6572 return 0;
6573 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006574
John Spurlock1db8b682014-02-18 11:18:59 -05006575 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006576 & ~mResettingSystemUiFlags
6577 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006578 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006579 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006580 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006581 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006582 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006583 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006584 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006585 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006586 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006587 return 0;
6588 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006589 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006590 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006591 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006592 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006593 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006594 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006595 try {
6596 IStatusBarService statusbar = getStatusBarService();
6597 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006598 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006599 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006600 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006601 } catch (RemoteException e) {
6602 // re-acquire status bar service next time it is needed.
6603 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006604 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006605 }
6606 });
6607 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006608 }
6609
Adrian Rooscd3884d2015-02-18 17:25:23 +01006610 private int updateLightStatusBarLw(int vis) {
6611 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6612 ? mStatusBar
6613 : mTopFullscreenOpaqueOrDimmingWindowState;
6614
6615 if (statusColorWin != null) {
6616 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6617 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6618 // its light flag.
6619 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6620 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6621 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6622 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6623 // Otherwise if it's dimming, clear the light flag.
6624 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6625 }
6626 }
6627 return vis;
6628 }
6629
John Spurlock79da8332013-09-20 12:04:47 -04006630 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006631 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006632 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6633 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006634 : mTopFullscreenOpaqueWindowState;
6635 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6636 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6637
John Spurlock27735a42013-08-14 17:57:38 -04006638 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006639 int type = win.getAttrs().type;
6640 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006641 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006642 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6643 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006644 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006645 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6646 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006647 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006648 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6649 }
John Spurlockbd957402013-10-03 11:38:39 -04006650 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006651 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006652
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006653 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006654 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6655 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006656 }
6657
John Spurlock27735a42013-08-14 17:57:38 -04006658 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006659 boolean immersiveSticky =
6660 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006661 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006662 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006663 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006664 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6665 boolean hideStatusBarSysui =
6666 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006667 boolean hideNavBarSysui =
6668 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006669
John Spurlock27735a42013-08-14 17:57:38 -04006670 boolean transientStatusBarAllowed =
6671 mStatusBar != null && (
6672 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006673 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006674 || statusBarHasFocus);
6675
John Spurlockf1a36642013-10-12 17:50:42 -04006676 boolean transientNavBarAllowed =
6677 mNavigationBar != null &&
6678 hideNavBarSysui && immersiveSticky;
6679
Adrian Roosddc8b272015-05-21 16:28:27 -07006680 final long now = SystemClock.uptimeMillis();
6681 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6682 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6683 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6684 // The user performed the panic gesture recently, we're about to hide the bars,
6685 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6686 mPendingPanicGestureUptime = 0;
6687 mStatusBarController.showTransient();
6688 mNavigationBarController.showTransient();
6689 }
6690
John Spurlockf25706f2013-11-07 18:02:43 -05006691 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006692 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006693 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006694 && !transientNavBarAllowed;
6695 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006696 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006697 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006698 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006699 }
John Spurlock27735a42013-08-14 17:57:38 -04006700
Selim Cinekf98702e2015-05-20 22:48:40 -07006701 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6702 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6703 final boolean navAllowedHidden = immersive || immersiveSticky;
6704
Selim Cinekd6623612015-05-22 18:56:22 -07006705 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6706 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006707 // We can't hide the navbar from this window otherwise the input consumer would not get
6708 // the input events.
6709 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6710 }
6711
John Spurlock27735a42013-08-14 17:57:38 -04006712 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6713
6714 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006715 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6716 boolean newImmersiveMode = isImmersiveMode(vis);
6717 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006718 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006719 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6720 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006721 }
John Spurlock27735a42013-08-14 17:57:38 -04006722
John Spurlockf1a36642013-10-12 17:50:42 -04006723 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6724
John Spurlocke1f366f2013-08-05 12:22:40 -04006725 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006726 }
6727
John Spurlockf1a36642013-10-12 17:50:42 -04006728 private void clearClearableFlagsLw() {
6729 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6730 if (newVal != mResettingSystemUiFlags) {
6731 mResettingSystemUiFlags = newVal;
6732 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6733 }
6734 }
6735
6736 private boolean isImmersiveMode(int vis) {
6737 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006738 return mNavigationBar != null
6739 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006740 && (vis & flags) != 0
6741 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006742 }
6743
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006744 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006745 * @return whether the navigation or status bar can be made translucent
6746 *
6747 * This should return true unless touch exploration is not enabled or
6748 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006749 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006750 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006751 return mTranslucentDecorEnabled
6752 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006753 }
6754
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006755 // Use this instead of checking config_showNavigationBar so that it can be consistently
6756 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006757 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006758 public boolean hasNavigationBar() {
6759 return mHasNavigationBar;
6760 }
6761
satok1bc0a492012-04-25 22:47:12 +09006762 @Override
6763 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6764 mLastInputMethodWindow = ime;
6765 mLastInputMethodTargetWindow = target;
6766 }
6767
Craig Mautnerf1b67412012-09-19 13:18:29 -07006768 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006769 public int getInputMethodWindowVisibleHeightLw() {
6770 return mDockBottom - mCurBottom;
6771 }
6772
6773 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006774 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006775 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006776 if (mKeyguardDelegate != null) {
6777 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006778 }
John Spurlock13451a22012-09-28 14:40:41 -04006779 if (mStatusBarService != null) {
6780 try {
6781 mStatusBarService.setCurrentUser(newUserId);
6782 } catch (RemoteException e) {
6783 // oh well
6784 }
6785 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006786 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006787 }
6788
6789 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006790 public boolean canMagnifyWindow(int windowType) {
6791 switch (windowType) {
6792 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6793 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6794 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6795 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6796 return false;
6797 }
6798 }
6799 return true;
6800 }
6801
6802 @Override
6803 public boolean isTopLevelWindow(int windowType) {
6804 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6805 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6806 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6807 }
6808 return true;
6809 }
6810
Jim Miller4eeb4f62012-11-08 00:04:29 -08006811 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006812 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006813 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006814 pw.print(" mSystemReady="); pw.print(mSystemReady);
6815 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006816 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006817 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006818 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006819 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006820 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6821 || mForceClearedSystemUiFlags != 0) {
6822 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6823 pw.print(Integer.toHexString(mLastSystemUiFlags));
6824 pw.print(" mResettingSystemUiFlags=0x");
6825 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6826 pw.print(" mForceClearedSystemUiFlags=0x");
6827 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006828 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006829 if (mLastFocusNeedsMenu) {
6830 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6831 pw.println(mLastFocusNeedsMenu);
6832 }
Jeff Browna20dda42014-05-27 20:57:24 -07006833 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6834 pw.println(mWakeGestureEnabledSetting);
6835
Jeff Brownbcdfc622014-03-06 19:13:04 -08006836 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006837 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6838 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006839 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6840 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6841 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6842 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006843 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006844 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006845 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6846 pw.print(mCarDockEnablesAccelerometer);
6847 pw.print(" mDeskDockEnablesAccelerometer=");
6848 pw.println(mDeskDockEnablesAccelerometer);
6849 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6850 pw.print(mLidKeyboardAccessibility);
6851 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006852 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006853 pw.print(prefix);
6854 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6855 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006856 pw.print(prefix);
6857 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6858 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006859 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006860 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6861 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6862 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6863 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6864 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6865 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6866 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006867 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6868 pw.print(","); pw.print(mOverscanScreenTop);
6869 pw.print(") "); pw.print(mOverscanScreenWidth);
6870 pw.print("x"); pw.println(mOverscanScreenHeight);
6871 if (mOverscanLeft != 0 || mOverscanTop != 0
6872 || mOverscanRight != 0 || mOverscanBottom != 0) {
6873 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6874 pw.print(" top="); pw.print(mOverscanTop);
6875 pw.print(" right="); pw.print(mOverscanRight);
6876 pw.print(" bottom="); pw.println(mOverscanBottom);
6877 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006878 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6879 pw.print(mRestrictedOverscanScreenLeft);
6880 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6881 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6882 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006883 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6884 pw.print(","); pw.print(mUnrestrictedScreenTop);
6885 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6886 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6887 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6888 pw.print(","); pw.print(mRestrictedScreenTop);
6889 pw.print(") "); pw.print(mRestrictedScreenWidth);
6890 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006891 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6892 pw.print(","); pw.print(mStableFullscreenTop);
6893 pw.print(")-("); pw.print(mStableFullscreenRight);
6894 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006895 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6896 pw.print(","); pw.print(mStableTop);
6897 pw.print(")-("); pw.print(mStableRight);
6898 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006899 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6900 pw.print(","); pw.print(mSystemTop);
6901 pw.print(")-("); pw.print(mSystemRight);
6902 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006903 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6904 pw.print(","); pw.print(mCurTop);
6905 pw.print(")-("); pw.print(mCurRight);
6906 pw.print(","); pw.print(mCurBottom); pw.println(")");
6907 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6908 pw.print(","); pw.print(mContentTop);
6909 pw.print(")-("); pw.print(mContentRight);
6910 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006911 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6912 pw.print(","); pw.print(mVoiceContentTop);
6913 pw.print(")-("); pw.print(mVoiceContentRight);
6914 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006915 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6916 pw.print(","); pw.print(mDockTop);
6917 pw.print(")-("); pw.print(mDockRight);
6918 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006919 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6920 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006921 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6922 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006923 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6924 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006925 if (mLastInputMethodWindow != null) {
6926 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6927 pw.println(mLastInputMethodWindow);
6928 }
6929 if (mLastInputMethodTargetWindow != null) {
6930 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6931 pw.println(mLastInputMethodTargetWindow);
6932 }
6933 if (mStatusBar != null) {
6934 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006935 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6936 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006937 }
6938 if (mNavigationBar != null) {
6939 pw.print(prefix); pw.print("mNavigationBar=");
6940 pw.println(mNavigationBar);
6941 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006942 if (mFocusedWindow != null) {
6943 pw.print(prefix); pw.print("mFocusedWindow=");
6944 pw.println(mFocusedWindow);
6945 }
6946 if (mFocusedApp != null) {
6947 pw.print(prefix); pw.print("mFocusedApp=");
6948 pw.println(mFocusedApp);
6949 }
6950 if (mWinDismissingKeyguard != null) {
6951 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6952 pw.println(mWinDismissingKeyguard);
6953 }
6954 if (mTopFullscreenOpaqueWindowState != null) {
6955 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6956 pw.println(mTopFullscreenOpaqueWindowState);
6957 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006958 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6959 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6960 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6961 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006962 if (mForcingShowNavBar) {
6963 pw.print(prefix); pw.print("mForcingShowNavBar=");
6964 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6965 pw.println(mForcingShowNavBarLayer);
6966 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006967 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006968 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006969 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6970 pw.print(" mForceStatusBarFromKeyguard=");
6971 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006972 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006973 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006974 pw.print(" mHomePressed="); pw.println(mHomePressed);
6975 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6976 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6977 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6978 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6979 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6980 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6981 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6982 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6983 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6984 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006985 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6986 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6987 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006988
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006989 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006990 mStatusBarController.dump(pw, prefix);
6991 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05006992 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07006993
Jeff Browna20dda42014-05-27 20:57:24 -07006994 if (mWakeGestureListener != null) {
6995 mWakeGestureListener.dump(pw, prefix);
6996 }
Jeff Brown600f0032014-05-22 17:06:00 -07006997 if (mOrientationListener != null) {
6998 mOrientationListener.dump(pw, prefix);
6999 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007000 if (mBurnInProtectionHelper != null) {
7001 mBurnInProtectionHelper.dump(prefix, pw);
7002 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007003 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007004}