blob: 688bac26b2532d0be627fb8607a9c59ae32732bb [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 {
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700765 private final Runnable mUpdateRotationRunnable = new Runnable() {
766 @Override
767 public void run() {
768 updateRotation(false);
769 }
770 };
771
Craig Mautnereee29c42013-01-17 14:44:34 -0800772 MyOrientationListener(Context context, Handler handler) {
773 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800774 }
Craig Mautner967212c2013-04-13 21:10:58 -0700775
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800776 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700777 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700778 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700779 mHandler.post(mUpdateRotationRunnable);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700780 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800781 }
782 MyOrientationListener mOrientationListener;
783
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100784 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400785
John Spurlock27735a42013-08-14 17:57:38 -0400786 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400787 View.NAVIGATION_BAR_TRANSIENT,
788 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400789 View.NAVIGATION_BAR_TRANSLUCENT,
790 StatusBarManager.WINDOW_NAVIGATION_BAR,
791 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400792
John Spurlockf1a36642013-10-12 17:50:42 -0400793 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400794
Craig Mautner037aa8d2013-06-07 10:35:44 -0700795 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400796
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700797 IStatusBarService getStatusBarService() {
798 synchronized (mServiceAquireLock) {
799 if (mStatusBarService == null) {
800 mStatusBarService = IStatusBarService.Stub.asInterface(
801 ServiceManager.getService("statusbar"));
802 }
803 return mStatusBarService;
804 }
805 }
806
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700807 /*
808 * We always let the sensor be switched on by default except when
809 * the user has explicitly disabled sensor based rotation or when the
810 * screen is switched off.
811 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700812 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800813 if (mSupportAutoRotation) {
814 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
815 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
816 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
817 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
818 // If the application has explicitly requested to follow the
819 // orientation, then we need to turn the sensor on.
820 return true;
821 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800822 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700823 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800824 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
825 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
826 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400827 // enable accelerometer if we are docked in a dock that enables accelerometer
828 // orientation management,
829 return true;
830 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700831 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800832 // If the setting for using the sensor by default is enabled, then
833 // we will always leave it on. Note that the user could go to
834 // a window that forces an orientation that does not use the
835 // sensor and in theory we could turn it off... however, when next
836 // turning it on we won't have a good value for the current
837 // orientation for a little bit, which can cause orientation
838 // changes to lag, so we'd like to keep it always on. (It will
839 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700840 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800841 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800842 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800843 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700844
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800845 /*
846 * Various use cases for invoking this function
847 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700848 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800849 * if not already enabled
850 * screen turned on and current app does not have sensor orientation, disable listeners if
851 * already enabled
852 * screen turning on and current app has sensor based orientation, enable listeners if needed
853 * screen turning on and current app has nosensor based orientation, do nothing
854 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700855 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800856 if (!mOrientationListener.canDetectOrientation()) {
857 // If sensor is turned off or nonexistent for some reason
858 return;
859 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000860 // Could have been invoked due to screen turning on or off or
861 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700862 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
863 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000864 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
865 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
866 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800867 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000868 // Note: We postpone the rotating of the screen until the keyguard as well as the
869 // window manager have reported a draw complete.
870 if (mScreenOnEarly && mAwake &&
871 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700872 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800873 disable = false;
874 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700875 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800876 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700877 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800878 mOrientationSensorEnabled = true;
879 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700880 }
881 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800882 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700883 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800884 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700885 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800886 mOrientationSensorEnabled = false;
887 }
888 }
889
Jeff Brown13f00f02014-10-31 14:45:50 -0700890 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
891 // Hold a wake lock until the power key is released.
892 if (!mPowerKeyWakeLock.isHeld()) {
893 mPowerKeyWakeLock.acquire();
894 }
895
896 // Cancel multi-press detection timeout.
897 if (mPowerKeyPressCounter != 0) {
898 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
899 }
900
901 // Detect user pressing the power button in panic when an application has
902 // taken over the whole screen.
903 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800904 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700905 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700906 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700907 }
908
909 // Latch power key state to detect screenshot chord.
910 if (interactive && !mScreenshotChordPowerKeyTriggered
911 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
912 mScreenshotChordPowerKeyTriggered = true;
913 mScreenshotChordPowerKeyTime = event.getDownTime();
914 interceptScreenshotChord();
915 }
916
917 // Stop ringing or end call if configured to do so when power is pressed.
918 TelecomManager telecomManager = getTelecommService();
919 boolean hungUp = false;
920 if (telecomManager != null) {
921 if (telecomManager.isRinging()) {
922 // Pressing Power while there's a ringing incoming
923 // call should silence the ringer.
924 telecomManager.silenceRinger();
925 } else if ((mIncallPowerBehavior
926 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
927 && telecomManager.isInCall() && interactive) {
928 // Otherwise, if "Power button ends call" is enabled,
929 // the Power button will hang up any current active call.
930 hungUp = telecomManager.endCall();
931 }
932 }
933
934 // If the power key has still not yet been handled, then detect short
935 // press, long press, or multi press and decide what to do.
936 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
937 || mScreenshotChordVolumeUpKeyTriggered;
938 if (!mPowerKeyHandled) {
939 if (interactive) {
940 // When interactive, we're already awake.
941 // Wait for a long press or for the button to be released to decide what to do.
942 if (hasLongPressOnPowerBehavior()) {
943 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
944 msg.setAsynchronous(true);
945 mHandler.sendMessageDelayed(msg,
946 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
947 }
948 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800949 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800950
Bryce Leed3b28402015-03-09 15:49:13 +0000951 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
952 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
953 msg.setAsynchronous(true);
954 mHandler.sendMessageDelayed(msg,
955 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800956 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000957 } else {
958 final int maxCount = getMaxMultiPressPowerCount();
959
960 if (maxCount <= 1) {
961 mPowerKeyHandled = true;
962 } else {
963 mBeganFromNonInteractive = true;
964 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700965 }
966 }
Jeff Brown4d396052010-10-29 21:50:21 -0700967 }
968 }
969
Jeff Brown13f00f02014-10-31 14:45:50 -0700970 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
971 final boolean handled = canceled || mPowerKeyHandled;
972 mScreenshotChordPowerKeyTriggered = false;
973 cancelPendingScreenshotChordAction();
974 cancelPendingPowerKeyAction();
975
976 if (!handled) {
977 // Figure out how to handle the key now that it has been released.
978 mPowerKeyPressCounter += 1;
979
980 final int maxCount = getMaxMultiPressPowerCount();
981 final long eventTime = event.getDownTime();
982 if (mPowerKeyPressCounter < maxCount) {
983 // This could be a multi-press. Wait a little bit longer to confirm.
984 // Continue holding the wake lock.
985 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
986 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
987 msg.setAsynchronous(true);
988 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
989 return;
990 }
991
992 // No other actions. Handle it immediately.
993 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700994 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700995
996 // Done. Reset our state.
997 finishPowerKeyPress();
998 }
999
1000 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -08001001 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001002 mPowerKeyPressCounter = 0;
1003 if (mPowerKeyWakeLock.isHeld()) {
1004 mPowerKeyWakeLock.release();
1005 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001006 }
1007
1008 private void cancelPendingPowerKeyAction() {
1009 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001010 mPowerKeyHandled = true;
1011 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001012 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001013 }
1014
1015 private void powerPress(long eventTime, boolean interactive, int count) {
1016 if (mScreenOnEarly && !mScreenOnFully) {
1017 Slog.i(TAG, "Suppressed redundant power key press while "
1018 + "already in the process of turning the screen on.");
1019 return;
Jeff Brownff204712011-10-25 21:27:54 -07001020 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001021
1022 if (count == 2) {
1023 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1024 } else if (count == 3) {
1025 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001026 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001027 switch (mShortPressOnPowerBehavior) {
1028 case SHORT_PRESS_POWER_NOTHING:
1029 break;
1030 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1031 mPowerManager.goToSleep(eventTime,
1032 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1033 break;
1034 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1035 mPowerManager.goToSleep(eventTime,
1036 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1037 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1038 break;
1039 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1040 mPowerManager.goToSleep(eventTime,
1041 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1042 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1043 launchHomeFromHotKey();
1044 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001045 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001046 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001047 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001048 }
1049 }
1050 }
1051
1052 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1053 switch (behavior) {
1054 case MULTI_PRESS_POWER_NOTHING:
1055 break;
1056 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001057 if (!isUserSetupComplete()) {
1058 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1059 break;
1060 }
1061
Jeff Brown13f00f02014-10-31 14:45:50 -07001062 if (isTheaterModeEnabled()) {
1063 Slog.i(TAG, "Toggling theater mode off.");
1064 Settings.Global.putInt(mContext.getContentResolver(),
1065 Settings.Global.THEATER_MODE_ON, 0);
1066 if (!interactive) {
1067 wakeUpFromPowerKey(eventTime);
1068 }
1069 } else {
1070 Slog.i(TAG, "Toggling theater mode on.");
1071 Settings.Global.putInt(mContext.getContentResolver(),
1072 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001073
1074 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001075 mPowerManager.goToSleep(eventTime,
1076 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1077 }
1078 }
1079 break;
1080 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001081 Slog.i(TAG, "Starting brightness boost.");
1082 if (!interactive) {
1083 wakeUpFromPowerKey(eventTime);
1084 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001085 mPowerManager.boostScreenBrightness(eventTime);
1086 break;
1087 }
1088 }
1089
1090 private int getMaxMultiPressPowerCount() {
1091 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1092 return 3;
1093 }
1094 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1095 return 2;
1096 }
1097 return 1;
1098 }
1099
1100 private void powerLongPress() {
1101 final int behavior = getResolvedLongPressOnPowerBehavior();
1102 switch (behavior) {
1103 case LONG_PRESS_POWER_NOTHING:
1104 break;
1105 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1106 mPowerKeyHandled = true;
1107 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1108 performAuditoryFeedbackForAccessibilityIfNeed();
1109 }
1110 showGlobalActionsInternal();
1111 break;
1112 case LONG_PRESS_POWER_SHUT_OFF:
1113 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1114 mPowerKeyHandled = true;
1115 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1116 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1117 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1118 break;
1119 }
1120 }
1121
Nick Vaccarob593a812015-05-15 11:23:05 -07001122 private void sleepPress(long eventTime) {
1123 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1124 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1125 }
1126 }
1127
1128 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001129 switch (mShortPressOnSleepBehavior) {
1130 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001131 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001132 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1133 mPowerManager.goToSleep(eventTime,
1134 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001135 break;
1136 }
1137 }
1138
Jeff Brown13f00f02014-10-31 14:45:50 -07001139 private int getResolvedLongPressOnPowerBehavior() {
1140 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1141 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1142 }
1143 return mLongPressOnPowerBehavior;
1144 }
1145
1146 private boolean hasLongPressOnPowerBehavior() {
1147 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001148 }
1149
1150 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001151 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001152 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1153 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001154 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001155 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1156 && now <= mScreenshotChordPowerKeyTime
1157 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1158 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001159 cancelPendingPowerKeyAction();
1160
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001161 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001162 }
1163 }
1164 }
1165
Winson Chung1cea2f32012-10-08 20:42:01 -07001166 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001167 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001168 // Double the time it takes to take a screenshot from the keyguard
1169 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001170 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001171 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001172 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001173 }
1174
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001175 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001176 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001177 }
1178
Jeff Brown13f00f02014-10-31 14:45:50 -07001179 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001180 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001181 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001182 mEndCallKeyHandled = true;
1183 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1184 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001185 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001186 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001187 }
1188 };
1189
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001190 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001191 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001192 public void run() {
1193 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001194 }
1195 };
1196
Alan Viverettee34560b22014-07-10 14:50:06 -07001197 @Override
1198 public void showGlobalActions() {
1199 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1200 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1201 }
1202
1203 void showGlobalActionsInternal() {
1204 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001205 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001206 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001207 }
Jim Millerab954542014-10-10 18:21:49 -07001208 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001209 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1210 if (keyguardShowing) {
1211 // since it took two seconds of long press to bring this up,
1212 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001213 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001214 }
1215 }
1216
1217 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001218 return Settings.Global.getInt(
1219 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001220 }
1221
Maurice Lam99c6e072014-04-28 18:24:28 -07001222 boolean isUserSetupComplete() {
1223 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1224 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1225 }
1226
Jeff Brown13f00f02014-10-31 14:45:50 -07001227 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001228 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1229 getHdmiControl().turnOnTv();
1230
Jeff Brown13f00f02014-10-31 14:45:50 -07001231 // If there's a dream running then use home to escape the dream
1232 // but don't actually go home.
1233 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1234 mDreamManagerInternal.stopDream(false /*immediate*/);
1235 return;
1236 }
1237
1238 // Go home!
1239 launchHomeFromHotKey();
1240 }
1241
Jinsuk Kime601b712015-07-07 08:01:02 +09001242 /**
1243 * Creates an accessor to HDMI control service that performs the operation of
1244 * turning on TV (optional) and switching input to us. If HDMI control service
1245 * is not available or we're not a HDMI playback device, the operation is no-op.
1246 */
1247 private HdmiControl getHdmiControl() {
1248 if (null == mHdmiControl) {
1249 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1250 Context.HDMI_CONTROL_SERVICE);
1251 HdmiPlaybackClient client = null;
1252 if (manager != null) {
1253 client = manager.getPlaybackClient();
1254 }
1255 mHdmiControl = new HdmiControl(client);
1256 }
1257 return mHdmiControl;
1258 }
1259
1260 private static class HdmiControl {
1261 private final HdmiPlaybackClient mClient;
1262
1263 private HdmiControl(HdmiPlaybackClient client) {
1264 mClient = client;
1265 }
1266
1267 public void turnOnTv() {
1268 if (mClient == null) {
1269 return;
1270 }
1271 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1272 @Override
1273 public void onComplete(int result) {
1274 if (result != HdmiControlManager.RESULT_SUCCESS) {
1275 Log.w(TAG, "One touch play failed: " + result);
1276 }
1277 }
1278 });
1279 }
1280 }
1281
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001282 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001283 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001284 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001285 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001286
Jeff Browncaca8812013-05-09 13:34:33 -07001287 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1288 toggleRecentApps();
1289 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001290 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001291 }
1292 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001293 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001294
Jeff Browncaca8812013-05-09 13:34:33 -07001295 private void handleDoubleTapOnHome() {
1296 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1297 mHomeConsumed = true;
1298 toggleRecentApps();
1299 }
1300 }
1301
1302 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1303 @Override
1304 public void run() {
1305 if (mHomeDoubleTapPending) {
1306 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001307 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001308 }
1309 }
1310 };
1311
Mark Renoufc1256912015-03-11 14:38:23 -04001312 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001313 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001314 }
1315
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001316 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001317 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001318 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001319 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001320 mContext = context;
1321 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001322 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001323 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001324 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001325 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001326 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001327
1328 // Init display burn-in protection
1329 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1330 com.android.internal.R.bool.config_enableBurnInProtection);
1331 // Allow a system property to override this. Used by developer settings.
1332 boolean burnInProtectionDevMode =
1333 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1334 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1335 final int minHorizontal;
1336 final int maxHorizontal;
1337 final int minVertical;
1338 final int maxVertical;
1339 final int maxRadius;
1340 if (burnInProtectionDevMode) {
1341 minHorizontal = -8;
1342 maxHorizontal = 8;
1343 minVertical = -8;
1344 maxVertical = -4;
1345 maxRadius = (isRoundWindow()) ? 6 : -1;
1346 } else {
1347 Resources resources = context.getResources();
1348 minHorizontal = resources.getInteger(
1349 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1350 maxHorizontal = resources.getInteger(
1351 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1352 minVertical = resources.getInteger(
1353 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1354 maxVertical = resources.getInteger(
1355 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1356 maxRadius = resources.getInteger(
1357 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1358 }
1359 mBurnInProtectionHelper = new BurnInProtectionHelper(
1360 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001361 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001362
Jeff Brown70825162012-03-28 17:27:48 -07001363 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001364 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001365 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001366 try {
1367 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1368 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001369 mSettingsObserver = new SettingsObserver(mHandler);
1370 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001371 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001372 mUiMode = context.getResources().getInteger(
1373 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001374 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1375 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1376 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1377 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001378 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1379 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1380 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1381 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1382 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1383 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1384 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1385 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001386
Jeff Brown96307042012-07-27 15:51:34 -07001387 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1388 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001389 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001390 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1391 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001392 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001393 mSupportAutoRotation = mContext.getResources().getBoolean(
1394 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001395 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001396 com.android.internal.R.integer.config_lidOpenRotation);
1397 mCarDockRotation = readRotation(
1398 com.android.internal.R.integer.config_carDockRotation);
1399 mDeskDockRotation = readRotation(
1400 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001401 mUndockedHdmiRotation = readRotation(
1402 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001403 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1404 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1405 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1406 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001407 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1408 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1409 mLidNavigationAccessibility = mContext.getResources().getInteger(
1410 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001411 mLidControlsSleep = mContext.getResources().getBoolean(
1412 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001413 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1414 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001415
1416 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1417 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1418 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1419 || mContext.getResources().getBoolean(
1420 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1421 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1422 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001423 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1424 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001425 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1426 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1427 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1428 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1429 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1430 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1431
Bryce Lee55e846d2014-11-04 12:43:44 -08001432 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1433 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1434
Bryce Leed3b28402015-03-09 15:49:13 +00001435 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1436 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1437
Jeff Brown13f00f02014-10-31 14:45:50 -07001438 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1439 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1440 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1441 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1442 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1443 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1444 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1445 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001446 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1447 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001448
John Spurlock61560172015-02-06 19:46:04 -05001449 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001450
Jeff Brownf71343d2013-05-31 17:59:11 -07001451 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001452
Svetoslav8e3feb12014-02-24 13:46:47 -08001453 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1454 Context.ACCESSIBILITY_SERVICE);
1455
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001456 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001457 IntentFilter filter = new IntentFilter();
1458 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1459 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1460 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1461 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001462 filter.addAction(Intent.ACTION_DOCK_EVENT);
1463 Intent intent = context.registerReceiver(mDockReceiver, filter);
1464 if (intent != null) {
1465 // Retrieve current sticky dock event broadcast.
1466 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1467 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1468 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001469
Jeff Brown6aaf2952012-10-05 16:01:08 -07001470 // register for dream-related broadcasts
1471 filter = new IntentFilter();
1472 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1473 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1474 context.registerReceiver(mDreamReceiver, filter);
1475
Christopher Tate5e08af02012-09-21 17:17:22 -07001476 // register for multiuser-relevant broadcasts
1477 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1478 context.registerReceiver(mMultiuserReceiver, filter);
1479
John Spurlock57306e62013-04-22 09:48:49 -04001480 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001481 mSystemGestures = new SystemGesturesPointerEventListener(context,
1482 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001483 @Override
1484 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001485 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001486 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001487 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001488 }
1489 @Override
1490 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001491 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001492 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001493 }
1494 }
1495 @Override
1496 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001497 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001498 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001499 }
1500 }
1501 @Override
1502 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001503 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001504 }
Adrian Roos3595be42015-03-05 16:31:15 +01001505 @Override
1506 public void onDown() {
1507 mOrientationListener.onTouchStart();
1508 }
1509 @Override
1510 public void onUpOrCancel() {
1511 mOrientationListener.onTouchEnd();
1512 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001513 });
John Spurlockf1a36642013-10-12 17:50:42 -04001514 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001515 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001516
Jeff Brownc2346132012-04-13 01:55:38 -07001517 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001518 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1519 com.android.internal.R.array.config_longPressVibePattern);
1520 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1521 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001522 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1523 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001524 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1525 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001526 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1527 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001528 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1529 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1530 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1531 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001532 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1533 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001534
Christopher Tatee90585f2012-03-05 18:56:25 -08001535 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1536 com.android.internal.R.bool.config_enableScreenshotChord);
1537
Justin Kohd378ad72013-04-01 12:18:26 -07001538 mGlobalKeyManager = new GlobalKeyManager(mContext);
1539
Joe Onoratoea495d42011-04-06 11:41:11 -07001540 // Controls rotation and the like.
1541 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001542
1543 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001544 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001545 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1546 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001547 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001548
1549 mWindowManagerInternal.registerAppTransitionListener(
1550 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001551 }
1552
Jeff Brownf71343d2013-05-31 17:59:11 -07001553 /**
1554 * Read values from config.xml that may be overridden depending on
1555 * the configuration of the device.
1556 * eg. Disable long press on home goes to recents on sw600dp.
1557 */
1558 private void readConfigurationDependentBehaviors() {
1559 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1560 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1561 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1562 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1563 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1564 }
1565
1566 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1567 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1568 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1569 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1570 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1571 }
1572 }
1573
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001574 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001575 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001576 // This method might be called before the policy has been fully initialized
1577 // or for other displays we don't care about.
1578 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1579 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001580 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001581 mDisplay = display;
1582
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001583 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001584 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001585 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001586 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001587 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001588 mLandscapeRotation = Surface.ROTATION_0;
1589 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001590 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001591 mPortraitRotation = Surface.ROTATION_90;
1592 mUpsideDownRotation = Surface.ROTATION_270;
1593 } else {
1594 mPortraitRotation = Surface.ROTATION_270;
1595 mUpsideDownRotation = Surface.ROTATION_90;
1596 }
1597 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001598 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001599 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001600 mPortraitRotation = Surface.ROTATION_0;
1601 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001602 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001603 mLandscapeRotation = Surface.ROTATION_270;
1604 mSeascapeRotation = Surface.ROTATION_90;
1605 } else {
1606 mLandscapeRotation = Surface.ROTATION_90;
1607 mSeascapeRotation = Surface.ROTATION_270;
1608 }
1609 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001610
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001611 mStatusBarHeight =
1612 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001613
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001614 // Height of the navigation bar when presented horizontally at bottom
1615 mNavigationBarHeightForRotation[mPortraitRotation] =
1616 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001617 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001618 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001619 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1620 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001621
1622 // Width of the navigation bar when presented vertically along one side
1623 mNavigationBarWidthForRotation[mPortraitRotation] =
1624 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1625 mNavigationBarWidthForRotation[mLandscapeRotation] =
1626 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001627 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001628
1629 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001630 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001631 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001632
Devin Kimd7b12b42014-05-05 14:34:58 -07001633 // Allow the navigation bar to move on non-square small devices (phones).
1634 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001635
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001636 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001637 // Allow a system property to override this. Used by the emulator.
1638 // See also hasNavigationBar().
1639 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1640 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001641 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001642 } else if ("0".equals(navBarOverride)) {
1643 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001644 }
1645
Jeff Brown27f1d672012-10-17 18:32:34 -07001646 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1647 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001648 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001649 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001650 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001651 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001652 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001653 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001654
Chong Zhangae6119ff2014-11-11 18:54:39 -08001655 // For demo purposes, allow the rotation of the remote display to be controlled.
1656 // By default, remote display locks rotation to landscape.
1657 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1658 mDemoRotation = mPortraitRotation;
1659 } else {
1660 mDemoRotation = mLandscapeRotation;
1661 }
1662 mDemoRotationLock = SystemProperties.getBoolean(
1663 "persist.demo.rotationlock", false);
1664
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001665 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1666 // http://developer.android.com/guide/practices/screens_support.html#range
1667 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1668 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1669 // For debug purposes the next line turns this feature off with:
1670 // $ adb shell setprop config.override_forced_orient true
1671 // $ adb shell wm size reset
1672 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1673 }
1674
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001675 /**
1676 * @return whether the navigation bar can be hidden, e.g. the device has a
1677 * navigation bar and touch exploration is not enabled
1678 */
1679 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001680 return mHasNavigationBar
1681 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001682 }
1683
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001684 @Override
1685 public boolean isDefaultOrientationForced() {
1686 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001687 }
1688
Dianne Hackbornc652de82013-02-15 16:32:56 -08001689 @Override
1690 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1691 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1692 mOverscanLeft = left;
1693 mOverscanTop = top;
1694 mOverscanRight = right;
1695 mOverscanBottom = bottom;
1696 }
1697 }
1698
Dianne Hackbornc777e072010-02-12 13:07:59 -08001699 public void updateSettings() {
1700 ContentResolver resolver = mContext.getContentResolver();
1701 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001702 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001703 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001704 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001705 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1706 UserHandle.USER_CURRENT);
1707 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001708 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001709 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1710 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001711
Jeff Browna20dda42014-05-27 20:57:24 -07001712 // Configure wake gesture.
1713 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1714 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1715 UserHandle.USER_CURRENT) != 0;
1716 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1717 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1718 updateWakeGestureListenerLp();
1719 }
1720
Jeff Brown207673cd2012-06-05 17:47:11 -07001721 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001722 int userRotation = Settings.System.getIntForUser(resolver,
1723 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1724 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001725 if (mUserRotation != userRotation) {
1726 mUserRotation = userRotation;
1727 updateRotation = true;
1728 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001729 int userRotationMode = Settings.System.getIntForUser(resolver,
1730 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001731 WindowManagerPolicy.USER_ROTATION_FREE :
1732 WindowManagerPolicy.USER_ROTATION_LOCKED;
1733 if (mUserRotationMode != userRotationMode) {
1734 mUserRotationMode = userRotationMode;
1735 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001736 updateOrientationListenerLp();
1737 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001738
Dianne Hackbornc777e072010-02-12 13:07:59 -08001739 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001740 int pointerLocation = Settings.System.getIntForUser(resolver,
1741 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001742 if (mPointerLocationMode != pointerLocation) {
1743 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001744 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1745 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001746 }
1747 }
1748 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001749 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1750 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1751 String imId = Settings.Secure.getStringForUser(resolver,
1752 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001753 boolean hasSoftInput = imId != null && imId.length() > 0;
1754 if (mHasSoftInput != hasSoftInput) {
1755 mHasSoftInput = hasSoftInput;
1756 updateRotation = true;
1757 }
John Spurlockf1a36642013-10-12 17:50:42 -04001758 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001759 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001760 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001761 }
1762 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001763 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001764 }
1765 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001766 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001767 }
Jeff Brown70825162012-03-28 17:27:48 -07001768 }
1769
Jeff Browna20dda42014-05-27 20:57:24 -07001770 private void updateWakeGestureListenerLp() {
1771 if (shouldEnableWakeGestureLp()) {
1772 mWakeGestureListener.requestWakeUpTrigger();
1773 } else {
1774 mWakeGestureListener.cancelWakeUpTrigger();
1775 }
1776 }
1777
1778 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001779 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001780 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1781 && mWakeGestureListener.isSupported();
1782 }
1783
Jeff Brown70825162012-03-28 17:27:48 -07001784 private void enablePointerLocation() {
1785 if (mPointerLocationView == null) {
1786 mPointerLocationView = new PointerLocationView(mContext);
1787 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001788 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1789 WindowManager.LayoutParams.MATCH_PARENT,
1790 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001791 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001792 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1793 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1794 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1795 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001796 if (ActivityManager.isHighEndGfx()) {
1797 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1798 lp.privateFlags |=
1799 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1800 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001801 lp.format = PixelFormat.TRANSLUCENT;
1802 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001803 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001804 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001805 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001806 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001807 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001808 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001809 }
Jeff Brown70825162012-03-28 17:27:48 -07001810
1811 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001812 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001813 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1814 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001815 wm.removeView(mPointerLocationView);
1816 mPointerLocationView = null;
1817 }
1818 }
1819
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001820 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001821 try {
1822 int rotation = mContext.getResources().getInteger(resID);
1823 switch (rotation) {
1824 case 0:
1825 return Surface.ROTATION_0;
1826 case 90:
1827 return Surface.ROTATION_90;
1828 case 180:
1829 return Surface.ROTATION_180;
1830 case 270:
1831 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001832 }
1833 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001834 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001835 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001836 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001837 }
1838
1839 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001840 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001841 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001842 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001843
1844 outAppOp[0] = AppOpsManager.OP_NONE;
1845
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001846 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1847 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1848 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1849 return WindowManagerGlobal.ADD_INVALID_TYPE;
1850 }
1851
1852 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1853 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001854 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001855 }
1856 String permission = null;
1857 switch (type) {
1858 case TYPE_TOAST:
1859 // XXX right now the app process has complete control over
1860 // this... should introduce a token to let the system
1861 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001862 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001863 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001864 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001865 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001866 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001867 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001868 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001869 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001870 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001871 break;
1872 case TYPE_PHONE:
1873 case TYPE_PRIORITY_PHONE:
1874 case TYPE_SYSTEM_ALERT:
1875 case TYPE_SYSTEM_ERROR:
1876 case TYPE_SYSTEM_OVERLAY:
1877 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001878 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001879 break;
1880 default:
1881 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1882 }
1883 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001884 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1885 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01001886 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01001887 if (callingUid == Process.SYSTEM_UID) {
1888 return WindowManagerGlobal.ADD_OKAY;
1889 }
1890
Billy Lau060275f2015-07-15 22:29:19 +01001891 // check if user has enabled this operation. SecurityException will be thrown if
1892 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01001893 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1894 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01001895 switch (mode) {
1896 case AppOpsManager.MODE_ALLOWED:
1897 case AppOpsManager.MODE_IGNORED:
1898 // although we return ADD_OKAY for MODE_IGNORED, the added window will
1899 // actually be hidden in WindowManagerService
1900 return WindowManagerGlobal.ADD_OKAY;
1901 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01001902 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01001903 default:
1904 // in the default mode, we will make a decision here based on
1905 // checkCallingPermission()
1906 if (mContext.checkCallingPermission(permission) !=
1907 PackageManager.PERMISSION_GRANTED) {
1908 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1909 } else {
1910 return WindowManagerGlobal.ADD_OKAY;
1911 }
Billy Laucbe540f2015-06-25 01:51:44 +01001912 }
Billy Laucbe540f2015-06-25 01:51:44 +01001913 }
1914
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001915 if (mContext.checkCallingOrSelfPermission(permission)
1916 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001917 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001918 }
1919 }
Jeff Brown98365d72012-08-19 20:30:52 -07001920 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001921 }
Craig Mautner88400d32012-09-30 12:35:45 -07001922
1923 @Override
1924 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1925
1926 // If this switch statement is modified, modify the comment in the declarations of
1927 // the type in {@link WindowManager.LayoutParams} as well.
1928 switch (attrs.type) {
1929 default:
1930 // These are the windows that by default are shown only to the user that created
1931 // them. If this needs to be overridden, set
1932 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1933 // {@link WindowManager.LayoutParams}. Note that permission
1934 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1935 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1936 return true;
1937 }
1938 break;
1939
1940 // These are the windows that by default are shown to all users. However, to
1941 // protect against spoofing, check permissions below.
1942 case TYPE_APPLICATION_STARTING:
1943 case TYPE_BOOT_PROGRESS:
1944 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001945 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001946 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001947 case TYPE_KEYGUARD_DIALOG:
1948 case TYPE_MAGNIFICATION_OVERLAY:
1949 case TYPE_NAVIGATION_BAR:
1950 case TYPE_NAVIGATION_BAR_PANEL:
1951 case TYPE_PHONE:
1952 case TYPE_POINTER:
1953 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001954 case TYPE_SEARCH_BAR:
1955 case TYPE_STATUS_BAR:
1956 case TYPE_STATUS_BAR_PANEL:
1957 case TYPE_STATUS_BAR_SUB_PANEL:
1958 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001959 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001960 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001961 break;
1962 }
1963
1964 // Check if third party app has set window to system window type.
1965 return mContext.checkCallingOrSelfPermission(
1966 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1967 != PackageManager.PERMISSION_GRANTED;
1968 }
1969
Craig Mautner967212c2013-04-13 21:10:58 -07001970 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001971 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1972 switch (attrs.type) {
1973 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001974 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001975 // These types of windows can't receive input events.
1976 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1977 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001978 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001979 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001980 case TYPE_STATUS_BAR:
1981
1982 // If the Keyguard is in a hidden state (occluded by another window), we force to
1983 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1984 // the keyguard as occluded wouldn't set these flags again.
1985 // See {@link #processKeyguardSetHiddenResultLw}.
1986 if (mKeyguardHidden) {
1987 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1988 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1989 }
1990 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001991 }
Adrian Roos38502112014-04-09 21:04:11 +02001992
1993 if (attrs.type != TYPE_STATUS_BAR) {
1994 // The status bar is the only window allowed to exhibit keyguard behavior.
1995 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1996 }
Adrian Roosea562512014-05-05 13:33:03 +02001997
1998 if (ActivityManager.isHighEndGfx()
1999 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02002000 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02002001 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
2002 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002003 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002004
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002005 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07002006 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002007 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002008
Michael Wright3818c922014-09-02 13:59:07 -07002009 private void readCameraLensCoverState() {
2010 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2011 }
2012
Jeff Browndaa37532012-05-01 15:54:03 -07002013 private boolean isHidden(int accessibilityMode) {
2014 switch (accessibilityMode) {
2015 case 1:
2016 return mLidState == LID_CLOSED;
2017 case 2:
2018 return mLidState == LID_OPEN;
2019 default:
2020 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002021 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002022 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002023
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002024 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002025 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002026 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2027 int navigationPresence) {
2028 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2029
Jeff Brownf71343d2013-05-31 17:59:11 -07002030 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002031 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002032 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002033
Jeff Browndaa37532012-05-01 15:54:03 -07002034 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2035 || (keyboardPresence == PRESENCE_INTERNAL
2036 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002037 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002038 if (!mHasSoftInput) {
2039 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2040 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002041 }
2042
Jeff Browndaa37532012-05-01 15:54:03 -07002043 if (config.navigation == Configuration.NAVIGATION_NONAV
2044 || (navigationPresence == PRESENCE_INTERNAL
2045 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002046 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002047 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002048 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002049
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002050 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002051 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002052 public int windowTypeToLayerLw(int type) {
2053 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002054 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002055 }
2056 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002057 case TYPE_PRIVATE_PRESENTATION:
2058 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002059 case TYPE_WALLPAPER:
2060 // wallpaper is at the bottom, though the window manager may move it.
2061 return 2;
2062 case TYPE_PHONE:
2063 return 3;
2064 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002065 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002066 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002067 case TYPE_VOICE_INTERACTION:
2068 // voice interaction layer is almost immediately above apps.
2069 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002070 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002071 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002072 case TYPE_SYSTEM_DIALOG:
2073 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002074 case TYPE_TOAST:
2075 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002076 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002077 case TYPE_PRIORITY_PHONE:
2078 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002079 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002080 case TYPE_DREAM:
2081 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002082 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002083 case TYPE_SYSTEM_ALERT:
2084 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002085 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002086 case TYPE_INPUT_METHOD:
2087 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002088 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002089 case TYPE_INPUT_METHOD_DIALOG:
2090 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002091 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002092 case TYPE_KEYGUARD_SCRIM:
2093 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002094 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07002095 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002096 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07002097 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002098 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07002099 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002100 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002101 case TYPE_KEYGUARD_DIALOG:
2102 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002103 case TYPE_VOLUME_OVERLAY:
2104 // the on-screen volume indicator and controller shown when the user
2105 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002106 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002107 case TYPE_SYSTEM_OVERLAY:
2108 // the on-screen volume indicator and controller shown when the user
2109 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002110 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002111 case TYPE_NAVIGATION_BAR:
2112 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002113 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002114 case TYPE_NAVIGATION_BAR_PANEL:
2115 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002116 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002117 case TYPE_SYSTEM_ERROR:
2118 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002119 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002120 case TYPE_MAGNIFICATION_OVERLAY:
2121 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002122 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002123 case TYPE_DISPLAY_OVERLAY:
2124 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002125 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002126 case TYPE_DRAG:
2127 // the drag layer: input for drag-and-drop is associated with this window,
2128 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002129 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002130 case TYPE_ACCESSIBILITY_OVERLAY:
2131 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002132 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002133 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002134 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002135 case TYPE_BOOT_PROGRESS:
2136 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002137 case TYPE_POINTER:
2138 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002139 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002140 }
2141 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002142 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002143 }
2144
2145 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002146 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002147 public int subWindowTypeToLayerLw(int type) {
2148 switch (type) {
2149 case TYPE_APPLICATION_PANEL:
2150 case TYPE_APPLICATION_ATTACHED_DIALOG:
2151 return APPLICATION_PANEL_SUBLAYER;
2152 case TYPE_APPLICATION_MEDIA:
2153 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002154 case TYPE_APPLICATION_MEDIA_OVERLAY:
2155 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002156 case TYPE_APPLICATION_SUB_PANEL:
2157 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002158 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2159 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002160 }
2161 Log.e(TAG, "Unknown sub-window type: " + type);
2162 return 0;
2163 }
2164
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002165 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002166 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002167 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002168 }
2169
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002170 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002171 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002172 if (mHasNavigationBar) {
2173 // For a basic navigation bar, when we are in landscape mode we place
2174 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002175 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2176 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002177 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002178 }
2179 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002180 }
2181
Jose Lima9546b202014-07-02 17:21:51 -07002182 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002183 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002184 if (mHasNavigationBar) {
2185 // For a basic navigation bar, when we are in portrait mode we place
2186 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002187 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2188 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002189 }
2190 }
2191 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002192 }
2193
Jose Lima9546b202014-07-02 17:21:51 -07002194 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002195 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2196 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002197 }
2198
Jose Lima9546b202014-07-02 17:21:51 -07002199 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002200 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002201 // There is a separate status bar at the top of the display. We don't count that as part
2202 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002203 // we do want to exclude it since applications can't generally use that part
2204 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002205 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002206 }
2207
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002208 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002209 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2210 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002211 (isKeyguardHostWindow(attrs) &&
2212 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002213 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002214 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002215
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002216 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002217 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2218 return attrs.type == TYPE_STATUS_BAR;
2219 }
2220
2221 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002222 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002223 switch (attrs.type) {
2224 case TYPE_STATUS_BAR:
2225 case TYPE_NAVIGATION_BAR:
2226 case TYPE_WALLPAPER:
2227 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002228 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002229 return false;
2230 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002231 // Hide only windows below the keyguard host window.
2232 return windowTypeToLayerLw(win.getBaseType())
2233 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002234 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002235 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002236
Craig Mautner7d7808f2014-09-11 18:02:38 -07002237 @Override
2238 public WindowState getWinShowWhenLockedLw() {
2239 return mWinShowWhenLocked;
2240 }
2241
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002242 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002243 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002244 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2245 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002246 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002247 if (!SHOW_STARTING_ANIMATIONS) {
2248 return null;
2249 }
2250 if (packageName == null) {
2251 return null;
2252 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002253
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002254 WindowManager wm = null;
2255 View view = null;
2256
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002257 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002258 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002259 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2260 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2261 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002262 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002263 try {
2264 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002265 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002266 } catch (PackageManager.NameNotFoundException e) {
2267 // Ignore
2268 }
2269 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002270
Jorim Jaggia16cc152015-06-01 16:55:05 -07002271 PhoneWindow win = new PhoneWindow(context);
2272 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002273 final TypedArray ta = win.getWindowStyle();
2274 if (ta.getBoolean(
2275 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2276 || ta.getBoolean(
2277 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002278 return null;
2279 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002280
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002281 Resources r = context.getResources();
2282 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002283
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002284 win.setType(
2285 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002286
2287 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2288 // Assumes it's safe to show starting windows of launched apps while
2289 // the keyguard is being hidden. This is okay because starting windows never show
2290 // secret information.
2291 if (mKeyguardHidden) {
2292 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2293 }
2294 }
2295
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002296 // Force the window flags: this is a fake window, so it is not really
2297 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2298 // flag because we do know that the next window will take input
2299 // focus, so we want to get the IME window up on top of us right away.
2300 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002301 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002302 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2303 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2304 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002305 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002306 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2307 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2308 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002309
Adam Powell04fe6eb2013-05-31 14:39:48 -07002310 win.setDefaultIcon(icon);
2311 win.setDefaultLogo(logo);
2312
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002313 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002314 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002315
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002316 final WindowManager.LayoutParams params = win.getAttributes();
2317 params.token = appToken;
2318 params.packageName = packageName;
2319 params.windowAnimations = win.getWindowStyle().getResourceId(
2320 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002321 params.privateFlags |=
2322 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002323 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002324
2325 if (!compatInfo.supportsScreen()) {
2326 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2327 }
2328
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002329 params.setTitle("Starting " + packageName);
2330
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002331 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2332 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002333
2334 if (win.isFloating()) {
2335 // Whoops, there is no way to display an animation/preview
2336 // of such a thing! After all that work... let's skip it.
2337 // (Note that we must do this here because it is in
2338 // getDecorView() where the theme is evaluated... maybe
2339 // we should peek the floating attribute from the theme
2340 // earlier.)
2341 return null;
2342 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002343
Craig Mautner6fbda632012-07-03 09:26:39 -07002344 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002345 TAG, "Adding starting window for " + packageName
2346 + " / " + appToken + ": "
2347 + (view.getParent() != null ? view : null));
2348
2349 wm.addView(view, params);
2350
2351 // Only return the view if it was successfully added to the
2352 // window manager... which we can tell by it having a parent.
2353 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002354 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002355 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002356 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2357 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002358 } catch (RuntimeException e) {
2359 // don't crash if something else bad happens, for example a
2360 // failure loading resources because we are loading from an app
2361 // on external storage that has been unmounted.
2362 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002363 } finally {
2364 if (view != null && view.getParent() == null) {
2365 Log.w(TAG, "view not successfully added to wm, removing view");
2366 wm.removeViewImmediate(view);
2367 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002368 }
2369
2370 return null;
2371 }
2372
2373 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002374 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002375 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002376 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2377 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002378
2379 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002380 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002381 wm.removeView(window);
2382 }
2383 }
2384
2385 /**
2386 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002387 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002388 * Currently enforces that three window types are singletons:
2389 * <ul>
2390 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002391 * <li>KEYGUARD_TYPE</li>
2392 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002393 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002394 * @param win The window to be added
2395 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002396 *
Jeff Brown98365d72012-08-19 20:30:52 -07002397 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2398 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002399 */
Jose Lima9546b202014-07-02 17:21:51 -07002400 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002401 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2402 switch (attrs.type) {
2403 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002404 mContext.enforceCallingOrSelfPermission(
2405 android.Manifest.permission.STATUS_BAR_SERVICE,
2406 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002407 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002408 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002409 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002410 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002411 }
2412 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002413 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002414 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002415 case TYPE_NAVIGATION_BAR:
2416 mContext.enforceCallingOrSelfPermission(
2417 android.Manifest.permission.STATUS_BAR_SERVICE,
2418 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002419 if (mNavigationBar != null) {
2420 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002421 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002422 }
2423 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002424 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002425 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002426 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002427 break;
Jim Millere898ac52012-04-06 17:10:57 -07002428 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002429 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002430 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002431 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002432 mContext.enforceCallingOrSelfPermission(
2433 android.Manifest.permission.STATUS_BAR_SERVICE,
2434 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002435 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002436 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002437 if (mKeyguardScrim != null) {
2438 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2439 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002440 mKeyguardScrim = win;
2441 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002442 }
Jeff Brown98365d72012-08-19 20:30:52 -07002443 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002444 }
2445
2446 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002447 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002448 public void removeWindowLw(WindowState win) {
2449 if (mStatusBar == win) {
2450 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002451 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002452 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002453 } else if (mKeyguardScrim == win) {
2454 Log.v(TAG, "Removing keyguard scrim");
2455 mKeyguardScrim = null;
2456 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002457 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002458 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002459 }
2460 }
2461
2462 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002463
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002464 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002465 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002466 public int selectAnimationLw(WindowState win, int transit) {
2467 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2468 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002469 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002470 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002471 if (transit == TRANSIT_EXIT
2472 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002473 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002474 } else if (transit == TRANSIT_ENTER
2475 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002476 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002477 }
2478 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002479 if (win.getAttrs().windowAnimations != 0) {
2480 return 0;
2481 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002482 // This can be on either the bottom or the right.
2483 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002484 if (transit == TRANSIT_EXIT
2485 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002486 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002487 } else if (transit == TRANSIT_ENTER
2488 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002489 return R.anim.dock_bottom_enter;
2490 }
2491 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002492 if (transit == TRANSIT_EXIT
2493 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002494 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002495 } else if (transit == TRANSIT_ENTER
2496 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002497 return R.anim.dock_right_enter;
2498 }
2499 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002500 }
2501
2502 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002503 if (win.hasAppShownWindows()) {
2504 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2505 return com.android.internal.R.anim.app_starting_exit;
2506 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002507 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002508 && transit == TRANSIT_ENTER) {
2509 // Special case: we are animating in a dream, while the keyguard
2510 // is shown. We don't want an animation on the dream, because
2511 // we need it shown immediately with the keyguard animating away
2512 // to reveal it.
2513 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002514 }
2515
2516 return 0;
2517 }
2518
Craig Mautner3c174372013-02-21 17:54:37 -08002519 @Override
2520 public void selectRotationAnimationLw(int anim[]) {
2521 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2522 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2523 + (mTopFullscreenOpaqueWindowState == null ?
2524 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2525 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2526 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2527 case ROTATION_ANIMATION_CROSSFADE:
2528 anim[0] = R.anim.rotation_animation_xfade_exit;
2529 anim[1] = R.anim.rotation_animation_enter;
2530 break;
2531 case ROTATION_ANIMATION_JUMPCUT:
2532 anim[0] = R.anim.rotation_animation_jump_exit;
2533 anim[1] = R.anim.rotation_animation_enter;
2534 break;
2535 case ROTATION_ANIMATION_ROTATE:
2536 default:
2537 anim[0] = anim[1] = 0;
2538 break;
2539 }
2540 } else {
2541 anim[0] = anim[1] = 0;
2542 }
2543 }
2544
2545 @Override
2546 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2547 boolean forceDefault) {
2548 switch (exitAnimId) {
2549 case R.anim.rotation_animation_xfade_exit:
2550 case R.anim.rotation_animation_jump_exit:
2551 // These are the only cases that matter.
2552 if (forceDefault) {
2553 return false;
2554 }
2555 int anim[] = new int[2];
2556 selectRotationAnimationLw(anim);
2557 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2558 default:
2559 return true;
2560 }
2561 }
2562
2563 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002564 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2565 boolean goingToNotificationShade) {
2566 if (goingToNotificationShade) {
2567 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002568 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002569
2570 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2571 R.anim.lock_screen_behind_enter_wallpaper :
2572 R.anim.lock_screen_behind_enter);
2573
2574 // TODO: Use XML interpolators when we have log interpolators available in XML.
2575 final List<Animation> animations = set.getAnimations();
2576 for (int i = animations.size() - 1; i >= 0; --i) {
2577 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2578 }
2579
2580 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002581 }
2582
2583
2584 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002585 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2586 if (goingToNotificationShade) {
2587 return null;
2588 } else {
2589 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2590 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002591 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002592
2593 private static void awakenDreams() {
2594 IDreamManager dreamManager = getDreamManager();
2595 if (dreamManager != null) {
2596 try {
2597 dreamManager.awaken();
2598 } catch (RemoteException e) {
2599 // fine, stay asleep then
2600 }
2601 }
2602 }
2603
2604 static IDreamManager getDreamManager() {
2605 return IDreamManager.Stub.asInterface(
2606 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2607 }
2608
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002609 TelecomManager getTelecommService() {
2610 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002611 }
2612
Jeff Brown4d396052010-10-29 21:50:21 -07002613 static IAudioService getAudioService() {
2614 IAudioService audioService = IAudioService.Stub.asInterface(
2615 ServiceManager.checkService(Context.AUDIO_SERVICE));
2616 if (audioService == null) {
2617 Log.w(TAG, "Unable to find IAudioService interface.");
2618 }
2619 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002620 }
2621
2622 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002623 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002624 }
2625
2626 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2627 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2628 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2629 };
2630
2631 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002632 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002633 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002634 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002635 final int keyCode = event.getKeyCode();
2636 final int repeatCount = event.getRepeatCount();
2637 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002638 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002639 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2640 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002641
Jeff Brown40013652012-05-16 21:22:36 -07002642 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002643 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002644 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2645 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002646 }
2647
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002648 // If we think we might have a volume down & power key chord on the way
2649 // but we're not sure, then tell the dispatcher to wait a little while and
2650 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002651 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002652 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002653 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002654 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2655 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002656 if (now < timeoutTime) {
2657 return timeoutTime - now;
2658 }
2659 }
2660 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002661 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002662 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002663 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002664 }
2665 return -1;
2666 }
2667 }
2668
Michael Wright6a62e552014-06-03 19:19:48 -07002669 // Cancel any pending meta actions if we see any other keys being pressed between the down
2670 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002671 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002672 mPendingMetaAction = false;
2673 }
2674
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002675 // First we always handle the home key here, so applications
2676 // can never break it, although if keyguard is on, we do let
2677 // it handle it, because that gives us the correct 5 second
2678 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002679 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002680
Jeff Brown49ed71d2010-12-06 17:13:33 -08002681 // If we have released the home key, and didn't do anything else
2682 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002683 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002684 cancelPreloadRecentApps();
2685
Jeff Brown49ed71d2010-12-06 17:13:33 -08002686 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002687 if (mHomeConsumed) {
2688 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002689 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002690 }
Jeff Browncaca8812013-05-09 13:34:33 -07002691
2692 if (canceled) {
2693 Log.i(TAG, "Ignoring HOME; event canceled.");
2694 return -1;
2695 }
2696
Yorke Lee4f803242014-12-15 23:22:06 +00002697 // If an incoming call is ringing, HOME is totally disabled.
2698 // (The user is already on the InCallUI at this point,
2699 // and his ONLY options are to answer or reject the call.)
2700 TelecomManager telecomManager = getTelecommService();
2701 if (telecomManager != null && telecomManager.isRinging()) {
2702 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2703 return -1;
2704 }
2705
Jeff Browncaca8812013-05-09 13:34:33 -07002706 // Delay handling home if a double-tap is possible.
2707 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2708 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2709 mHomeDoubleTapPending = true;
2710 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2711 ViewConfiguration.getDoubleTapTimeout());
2712 return -1;
2713 }
2714
Jeff Brown13f00f02014-10-31 14:45:50 -07002715 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002716 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002717 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002718
2719 // If a system window has focus, then it doesn't make sense
2720 // right now to interact with applications.
2721 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2722 if (attrs != null) {
2723 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002724 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2725 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2726 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002727 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002728 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002729 }
2730 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2731 for (int i=0; i<typeCount; i++) {
2732 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2733 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002734 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002735 }
2736 }
2737 }
Jeff Browncaca8812013-05-09 13:34:33 -07002738
2739 // Remember that home is pressed and handle special actions.
2740 if (repeatCount == 0) {
2741 mHomePressed = true;
2742 if (mHomeDoubleTapPending) {
2743 mHomeDoubleTapPending = false;
2744 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2745 handleDoubleTapOnHome();
2746 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2747 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2748 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002749 }
Jeff Browncaca8812013-05-09 13:34:33 -07002750 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2751 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002752 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002753 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002754 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002755 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002756 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002757 // Hijack modified menu keys for debugging features
2758 final int chordBug = KeyEvent.META_SHIFT_ON;
2759
2760 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002761 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002762 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002763 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2764 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002765 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002766 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002767 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002768 Intent service = new Intent();
2769 service.setClassName(mContext, "com.android.server.LoadAverageService");
2770 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002771 boolean shown = Settings.Global.getInt(
2772 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002773 if (!shown) {
2774 mContext.startService(service);
2775 } else {
2776 mContext.stopService(service);
2777 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002778 Settings.Global.putInt(
2779 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002780 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002781 }
2782 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002783 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002784 if (down) {
2785 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002786 mSearchKeyShortcutPending = true;
2787 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002788 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002789 } else {
2790 mSearchKeyShortcutPending = false;
2791 if (mConsumeSearchKeyUp) {
2792 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002793 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002794 }
2795 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002796 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002797 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002798 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002799 if (down && repeatCount == 0) {
2800 preloadRecentApps();
2801 } else if (!down) {
2802 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002803 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002804 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002805 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002806 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2807 if (down) {
2808 IStatusBarService service = getStatusBarService();
2809 if (service != null) {
2810 try {
2811 service.expandNotificationsPanel();
2812 } catch (RemoteException e) {
2813 // do nothing.
2814 }
2815 }
2816 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002817 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2818 if (down) {
2819 if (repeatCount == 0) {
2820 mAssistKeyLongPressed = false;
2821 } else if (repeatCount == 1) {
2822 mAssistKeyLongPressed = true;
2823 if (!keyguardOn) {
2824 launchAssistLongPressAction();
2825 }
2826 }
2827 } else {
2828 if (mAssistKeyLongPressed) {
2829 mAssistKeyLongPressed = false;
2830 } else {
2831 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002832 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002833 }
2834 }
2835 }
2836 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002837 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2838 if (!down) {
2839 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002840 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002841 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2842 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002843 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2844 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2845 if (dic != null) {
2846 try {
2847 dic.exitIdle("voice-search");
2848 } catch (RemoteException e) {
2849 }
2850 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002851 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002852 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002853 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002854 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002855 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002856 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2857 if (down && repeatCount == 0) {
2858 mHandler.post(mScreenshotRunnable);
2859 }
2860 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002861 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2862 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2863 if (down) {
2864 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2865
2866 // Disable autobrightness if it's on
2867 int auto = Settings.System.getIntForUser(
2868 mContext.getContentResolver(),
2869 Settings.System.SCREEN_BRIGHTNESS_MODE,
2870 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2871 UserHandle.USER_CURRENT_OR_SELF);
2872 if (auto != 0) {
2873 Settings.System.putIntForUser(mContext.getContentResolver(),
2874 Settings.System.SCREEN_BRIGHTNESS_MODE,
2875 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2876 UserHandle.USER_CURRENT_OR_SELF);
2877 }
2878
2879 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2880 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2881 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2882 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2883 Settings.System.SCREEN_BRIGHTNESS,
2884 mPowerManager.getDefaultScreenBrightnessSetting(),
2885 UserHandle.USER_CURRENT_OR_SELF);
2886 brightness += step;
2887 // Make sure we don't go beyond the limits.
2888 brightness = Math.min(max, brightness);
2889 brightness = Math.max(min, brightness);
2890
2891 Settings.System.putIntForUser(mContext.getContentResolver(),
2892 Settings.System.SCREEN_BRIGHTNESS, brightness,
2893 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002894 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002895 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002896 }
2897 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002898 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002899 if (down) {
2900 mPendingMetaAction = true;
2901 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002902 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002903 }
2904 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002905 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002906
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002907 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002908 // Any printing key that is chorded with Search should be consumed
2909 // even if no shortcut was invoked. This prevents text from being
2910 // inadvertently inserted when using a keyboard that has built-in macro
2911 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002912 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002913 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2914 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002915 mConsumeSearchKeyUp = true;
2916 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002917 if (down && repeatCount == 0 && !keyguardOn) {
2918 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2919 if (shortcutIntent != null) {
2920 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002921 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002922 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002923 } catch (ActivityNotFoundException ex) {
2924 Slog.w(TAG, "Dropping shortcut key combination because "
2925 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002926 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002927 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002928 } else {
2929 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002930 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002931 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002932 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002933 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002934 }
2935 }
2936
Jeff Brown68b909d2011-12-07 16:36:01 -08002937 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002938 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002939 && (metaState & KeyEvent.META_META_ON) != 0) {
2940 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002941 if (kcm.isPrintingKey(keyCode)) {
2942 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2943 metaState & ~(KeyEvent.META_META_ON
2944 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2945 if (shortcutIntent != null) {
2946 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2947 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002948 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002949 } catch (ActivityNotFoundException ex) {
2950 Slog.w(TAG, "Dropping shortcut key combination because "
2951 + "the activity to which it is registered was not found: "
2952 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2953 }
2954 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002955 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002956 }
2957 }
2958
Jeff Brown6651a632011-11-28 12:59:11 -08002959 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002960 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002961 String category = sApplicationLaunchKeyCategories.get(keyCode);
2962 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002963 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002964 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2965 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002966 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002967 } catch (ActivityNotFoundException ex) {
2968 Slog.w(TAG, "Dropping application launch key because "
2969 + "the activity to which it is registered was not found: "
2970 + "keyCode=" + keyCode + ", category=" + category, ex);
2971 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002972 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002973 }
2974 }
2975
Michael Wright61c46752014-08-21 16:57:33 -07002976 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002977 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002978 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002979 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002980 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002981 mRecentAppsHeldModifiers = shiftlessModifiers;
2982 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002983 return -1;
2984 }
2985 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002986 } else if (!down && mRecentAppsHeldModifiers != 0
2987 && (metaState & mRecentAppsHeldModifiers) == 0) {
2988 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002989 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002990 }
2991
Jeff Browncf39bdf2012-05-18 14:41:19 -07002992 // Handle keyboard language switching.
2993 if (down && repeatCount == 0
2994 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2995 || (keyCode == KeyEvent.KEYCODE_SPACE
2996 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2997 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2998 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2999 return -1;
3000 }
3001 if (mLanguageSwitchKeyPressed && !down
3002 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3003 || keyCode == KeyEvent.KEYCODE_SPACE)) {
3004 mLanguageSwitchKeyPressed = false;
3005 return -1;
3006 }
3007
Jeff Brown13f00f02014-10-31 14:45:50 -07003008 if (isValidGlobalKey(keyCode)
3009 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003010 return -1;
3011 }
3012
Michael Wright6a62e552014-06-03 19:19:48 -07003013 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003014 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003015 return -1;
3016 }
3017
Jeff Brown68b909d2011-12-07 16:36:01 -08003018 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003019 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003020 }
3021
Jeff Brown3915bb82010-11-05 15:02:16 -07003022 /** {@inheritDoc} */
3023 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003024 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003025 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003026 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003027 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3028 + ", flags=" + event.getFlags()
3029 + ", keyCode=" + event.getKeyCode()
3030 + ", scanCode=" + event.getScanCode()
3031 + ", metaState=" + event.getMetaState()
3032 + ", repeatCount=" + event.getRepeatCount()
3033 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003034 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003035
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003036 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003037 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3038 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003039 final int keyCode = event.getKeyCode();
3040 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003041 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3042 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003043
Jeff Brown54875002011-04-06 15:33:01 -07003044 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003045 final FallbackAction fallbackAction;
3046 if (initialDown) {
3047 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3048 } else {
3049 fallbackAction = mFallbackActions.get(keyCode);
3050 }
3051
3052 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003053 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003054 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3055 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003056 }
3057
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003058 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3059 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003060 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003061 event.getAction(), fallbackAction.keyCode,
3062 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003063 event.getDeviceId(), event.getScanCode(),
3064 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003065
3066 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3067 fallbackEvent.recycle();
3068 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003069 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003070
3071 if (initialDown) {
3072 mFallbackActions.put(keyCode, fallbackAction);
3073 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3074 mFallbackActions.remove(keyCode);
3075 fallbackAction.recycle();
3076 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003077 }
3078 }
3079
Jeff Brown40013652012-05-16 21:22:36 -07003080 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003081 if (fallbackEvent == null) {
3082 Slog.d(TAG, "No fallback.");
3083 } else {
3084 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3085 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003086 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003087 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003088 }
3089
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003090 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003091 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003092 if ((actions & ACTION_PASS_TO_USER) != 0) {
3093 long delayMillis = interceptKeyBeforeDispatching(
3094 win, fallbackEvent, policyFlags);
3095 if (delayMillis == 0) {
3096 return true;
3097 }
3098 }
3099 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003100 }
3101
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003102 private void launchAssistLongPressAction() {
3103 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3104 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3105
3106 // launch the search activity
3107 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3108 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3109 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003110 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003111 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003112 SearchManager searchManager = getSearchManager();
3113 if (searchManager != null) {
3114 searchManager.stopSearch();
3115 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003116 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003117 } catch (ActivityNotFoundException e) {
3118 Slog.w(TAG, "No activity to handle assist long press action.", e);
3119 }
3120 }
3121
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003122 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003123 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003124 if (!isUserSetupComplete()) {
3125 // Disable opening assist window during setup
3126 return;
3127 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003128 Bundle args = null;
3129 if (deviceId > Integer.MIN_VALUE) {
3130 args = new Bundle();
3131 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003132 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003133 if ((mContext.getResources().getConfiguration().uiMode
3134 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3135 // On TV, use legacy handling until assistants are implemented in the proper way.
3136 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3137 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3138 } else {
3139 try {
3140 if (hint != null) {
3141 if (args == null) {
3142 args = new Bundle();
3143 }
3144 args.putBoolean(hint, true);
3145 }
3146 IStatusBarService statusbar = getStatusBarService();
3147 if (statusbar != null) {
3148 statusbar.startAssist(args);
3149 }
3150 } catch (RemoteException e) {
3151 Slog.e(TAG, "RemoteException when starting assist", e);
3152 // re-acquire status bar service next time it is needed.
3153 mStatusBarService = null;
3154 }
3155 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003156 }
3157
Bart Sears8b1c27c2015-03-18 23:51:02 +00003158 private void startActivityAsUser(Intent intent, UserHandle handle) {
3159 if (isUserSetupComplete()) {
3160 mContext.startActivityAsUser(intent, handle);
3161 } else {
3162 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3163 }
3164 }
3165
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003166 private SearchManager getSearchManager() {
3167 if (mSearchManager == null) {
3168 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3169 }
3170 return mSearchManager;
3171 }
3172
Jeff Browncaca8812013-05-09 13:34:33 -07003173 private void preloadRecentApps() {
3174 mPreloadedRecentApps = true;
3175 try {
3176 IStatusBarService statusbar = getStatusBarService();
3177 if (statusbar != null) {
3178 statusbar.preloadRecentApps();
3179 }
3180 } catch (RemoteException e) {
3181 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3182 // re-acquire status bar service next time it is needed.
3183 mStatusBarService = null;
3184 }
3185 }
3186
3187 private void cancelPreloadRecentApps() {
3188 if (mPreloadedRecentApps) {
3189 mPreloadedRecentApps = false;
3190 try {
3191 IStatusBarService statusbar = getStatusBarService();
3192 if (statusbar != null) {
3193 statusbar.cancelPreloadRecentApps();
3194 }
3195 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003196 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003197 // re-acquire status bar service next time it is needed.
3198 mStatusBarService = null;
3199 }
3200 }
3201 }
3202
3203 private void toggleRecentApps() {
3204 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003205 try {
3206 IStatusBarService statusbar = getStatusBarService();
3207 if (statusbar != null) {
3208 statusbar.toggleRecentApps();
3209 }
3210 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003211 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3212 // re-acquire status bar service next time it is needed.
3213 mStatusBarService = null;
3214 }
3215 }
3216
Craig Mautner84984fa2014-06-19 11:19:20 -07003217 @Override
3218 public void showRecentApps() {
3219 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3220 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3221 }
3222
Winson Chung1e8d71b2014-05-16 17:05:22 -07003223 private void showRecentApps(boolean triggeredFromAltTab) {
3224 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3225 try {
3226 IStatusBarService statusbar = getStatusBarService();
3227 if (statusbar != null) {
3228 statusbar.showRecentApps(triggeredFromAltTab);
3229 }
3230 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003231 Slog.e(TAG, "RemoteException when showing recent apps", e);
3232 // re-acquire status bar service next time it is needed.
3233 mStatusBarService = null;
3234 }
3235 }
3236
Winson Chungcdcd4872014-08-05 18:00:13 -07003237 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003238 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3239 try {
3240 IStatusBarService statusbar = getStatusBarService();
3241 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003242 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003243 }
3244 } catch (RemoteException e) {
3245 Slog.e(TAG, "RemoteException when closing recent apps", e);
3246 // re-acquire status bar service next time it is needed.
3247 mStatusBarService = null;
3248 }
3249 }
3250
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003251 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003252 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003253 }
3254
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003255 /**
3256 * A home key -> launch home action was detected. Take the appropriate action
3257 * given the situation with the keyguard.
3258 */
Bryce Lee662ed802015-04-10 20:11:39 +00003259 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3260 if (respectKeyguard) {
3261 if (isKeyguardShowingAndNotOccluded()) {
3262 // don't launch home if keyguard showing
3263 return;
3264 }
3265
3266 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3267 // when in keyguard restricted mode, must first verify unlock
3268 // before launching home
3269 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3270 @Override
3271 public void onKeyguardExitResult(boolean success) {
3272 if (success) {
3273 try {
3274 ActivityManagerNative.getDefault().stopAppSwitches();
3275 } catch (RemoteException e) {
3276 }
3277 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3278 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003279 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003280 }
Bryce Lee662ed802015-04-10 20:11:39 +00003281 });
3282 return;
3283 }
3284 }
3285
3286 // no keyguard stuff to worry about, just launch home!
3287 try {
3288 ActivityManagerNative.getDefault().stopAppSwitches();
3289 } catch (RemoteException e) {
3290 }
3291 if (mRecentsVisible) {
3292 // Hide Recents and notify it to launch Home
3293 if (awakenFromDreams) {
3294 awakenDreams();
3295 }
3296 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3297 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003298 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003299 // Otherwise, just launch Home
3300 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3301 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003302 }
3303 }
3304
John Spurlock04db1762013-05-13 12:46:41 -04003305 private final Runnable mClearHideNavigationFlag = new Runnable() {
3306 @Override
3307 public void run() {
3308 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3309 // Clear flags.
3310 mForceClearedSystemUiFlags &=
3311 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3312 }
3313 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003314 }
3315 };
3316
3317 /**
3318 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3319 * to determine when the nav bar should be shown and prevent applications from
3320 * receiving those touches.
3321 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003322 final class HideNavInputEventReceiver extends InputEventReceiver {
3323 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3324 super(inputChannel, looper);
3325 }
3326
Dianne Hackborndf89e652011-10-06 22:35:11 -07003327 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003328 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003329 boolean handled = false;
3330 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003331 if (event instanceof MotionEvent
3332 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3333 final MotionEvent motionEvent = (MotionEvent)event;
3334 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003335 // When the user taps down, we re-show the nav bar.
3336 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003337 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003338 // Any user activity always causes us to show the
3339 // navigation controls, if they had been hidden.
3340 // We also clear the low profile and only content
3341 // flags so that tapping on the screen will atomically
3342 // restore all currently hidden screen decorations.
3343 int newVal = mResettingSystemUiFlags |
3344 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3345 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3346 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003347 if (mResettingSystemUiFlags != newVal) {
3348 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003349 changed = true;
3350 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003351 // We don't allow the system's nav bar to be hidden
3352 // again for 1 second, to prevent applications from
3353 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003354 newVal = mForceClearedSystemUiFlags |
3355 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003356 if (mForceClearedSystemUiFlags != newVal) {
3357 mForceClearedSystemUiFlags = newVal;
3358 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003359 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003360 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003361 }
3362 if (changed) {
3363 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3364 }
3365 }
3366 }
3367 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003368 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003369 }
3370 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003371 }
3372 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3373 new InputEventReceiver.Factory() {
3374 @Override
3375 public InputEventReceiver createInputEventReceiver(
3376 InputChannel inputChannel, Looper looper) {
3377 return new HideNavInputEventReceiver(inputChannel, looper);
3378 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003379 };
3380
3381 @Override
3382 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003383 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3384 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003385 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003386
Dianne Hackborndf89e652011-10-06 22:35:11 -07003387 // Reset any bits in mForceClearingStatusBarVisibility that
3388 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003389 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003390 // Clear any bits in the new visibility that are currently being
3391 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003392 return visibility & ~mResettingSystemUiFlags
3393 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003394 }
3395
Craig Mautner69b08182012-09-05 13:07:13 -07003396 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003397 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3398 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003399 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003400 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3401 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003402
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003403 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3404 if (useOutsets) {
3405 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3406 if (outset > 0) {
3407 if (displayRotation == Surface.ROTATION_0) {
3408 outOutsets.bottom += outset;
3409 } else if (displayRotation == Surface.ROTATION_90) {
3410 outOutsets.right += outset;
3411 } else if (displayRotation == Surface.ROTATION_180) {
3412 outOutsets.top += outset;
3413 } else if (displayRotation == Surface.ROTATION_270) {
3414 outOutsets.left += outset;
3415 }
3416 }
3417 }
3418
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003419 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003420 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003421 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003422 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003423 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003424 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3425 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3426 } else {
3427 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3428 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3429 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003430 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3431 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003432 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003433 availRight - mStableFullscreenRight,
3434 availBottom - mStableFullscreenBottom);
3435 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003436 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003437 availRight - mStableRight, availBottom - mStableBottom);
3438 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003439 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003440 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003441 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003442 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003443 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003444 availRight - mCurRight, availBottom - mCurBottom);
3445 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003446 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003447 availRight - mCurRight, availBottom - mCurBottom);
3448 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003449
3450 outStableInsets.set(mStableLeft, mStableTop,
3451 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003452 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003453 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003454 outContentInsets.setEmpty();
3455 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003456 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003457
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003458 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3459 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3460 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3461 }
3462
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003463 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003464 @Override
3465 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3466 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003467 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003468 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3469 if (isDefaultDisplay) {
3470 switch (displayRotation) {
3471 case Surface.ROTATION_90:
3472 overscanLeft = mOverscanTop;
3473 overscanTop = mOverscanRight;
3474 overscanRight = mOverscanBottom;
3475 overscanBottom = mOverscanLeft;
3476 break;
3477 case Surface.ROTATION_180:
3478 overscanLeft = mOverscanRight;
3479 overscanTop = mOverscanBottom;
3480 overscanRight = mOverscanLeft;
3481 overscanBottom = mOverscanTop;
3482 break;
3483 case Surface.ROTATION_270:
3484 overscanLeft = mOverscanBottom;
3485 overscanTop = mOverscanLeft;
3486 overscanRight = mOverscanTop;
3487 overscanBottom = mOverscanRight;
3488 break;
3489 default:
3490 overscanLeft = mOverscanLeft;
3491 overscanTop = mOverscanTop;
3492 overscanRight = mOverscanRight;
3493 overscanBottom = mOverscanBottom;
3494 break;
3495 }
3496 } else {
3497 overscanLeft = 0;
3498 overscanTop = 0;
3499 overscanRight = 0;
3500 overscanBottom = 0;
3501 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003502 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3503 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3504 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3505 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003506 mSystemLeft = 0;
3507 mSystemTop = 0;
3508 mSystemRight = displayWidth;
3509 mSystemBottom = displayHeight;
3510 mUnrestrictedScreenLeft = overscanLeft;
3511 mUnrestrictedScreenTop = overscanTop;
3512 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3513 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3514 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3515 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003516 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3517 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003518 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003519 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003520 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003521 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003522 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003523 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003524 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003525 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003526 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003527 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003528
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003529 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3530 final Rect pf = mTmpParentFrame;
3531 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003532 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003533 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003534 final Rect dcf = mTmpDecorFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003535 final Rect osf = mTmpOutsetFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003536 pf.left = df.left = of.left = vf.left = mDockLeft;
3537 pf.top = df.top = of.top = vf.top = mDockTop;
3538 pf.right = df.right = of.right = vf.right = mDockRight;
3539 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003540 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003541
Craig Mautner69b08182012-09-05 13:07:13 -07003542 if (isDefaultDisplay) {
3543 // For purposes of putting out fake window up to steal focus, we will
3544 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003545 final int sysui = mLastSystemUiFlags;
3546 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003547 boolean navTranslucent = (sysui
3548 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003549 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3550 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3551 boolean navAllowedHidden = immersive || immersiveSticky;
3552 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003553 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3554 if (!isKeyguardShowing) {
3555 navTranslucent &= areTranslucentBarsAllowed();
3556 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003557
Craig Mautner69b08182012-09-05 13:07:13 -07003558 // When the navigation bar isn't visible, we put up a fake
3559 // input window to catch all touch events. This way we can
3560 // detect when the user presses anywhere to bring back the nav
3561 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003562 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003563 if (mInputConsumer != null) {
3564 mInputConsumer.dismiss();
3565 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003566 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003567 } else if (mInputConsumer == null) {
3568 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3569 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003570 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003571
Craig Mautner69b08182012-09-05 13:07:13 -07003572 // For purposes of positioning and showing the nav bar, if we have
3573 // decided that it can't be hidden (because of the screen aspect ratio),
3574 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003575 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003576
John Spurlockad3e6cb2013-04-30 08:47:43 -04003577 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003578 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003579 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003580 // Force the navigation bar to its appropriate place and
3581 // size. We need to do this directly, instead of relying on
3582 // it to bubble up from the nav bar, because this needs to
3583 // change atomically with screen rotations.
3584 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3585 if (mNavigationBarOnBottom) {
3586 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003587 int top = displayHeight - overscanBottom
3588 - mNavigationBarHeightForRotation[displayRotation];
3589 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003590 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003591 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003592 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003593 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003594 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003595 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003596 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3597 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003598 } else {
3599 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003600 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003601 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003602 if (navVisible && !navTranslucent && !navAllowedHidden
3603 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003604 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003605 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003606 // and not in the process of animating on or off, then
3607 // we can tell the app that it is covered by it.
3608 mSystemBottom = mTmpNavigationFrame.top;
3609 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003610 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003611 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003612 int left = displayWidth - overscanRight
3613 - mNavigationBarWidthForRotation[displayRotation];
3614 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003615 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003616 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003617 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003618 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003619 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003620 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003621 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3622 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003623 } else {
3624 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003625 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003626 }
Adrian Roosfe836fa2015-08-11 17:36:43 -07003627 if (navVisible && !navTranslucent && !navAllowedHidden
3628 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003629 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003630 // If the nav bar is currently requested to be visible,
3631 // and not in the process of animating on or off, then
3632 // we can tell the app that it is covered by it.
3633 mSystemRight = mTmpNavigationFrame.left;
3634 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003635 }
Craig Mautner69b08182012-09-05 13:07:13 -07003636 // Make sure the content and current rectangles are updated to
3637 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003638 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3639 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3640 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3641 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003642 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3643 // And compute the final frame.
3644 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003645 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003646 mTmpNavigationFrame, mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003647 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003648 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003649 updateSysUiVisibility = true;
3650 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003651 }
Craig Mautnereda67292013-04-28 13:50:14 -07003652 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003653 mDockLeft, mDockTop, mDockRight, mDockBottom));
3654
3655 // decide where the status bar goes ahead of time
3656 if (mStatusBar != null) {
3657 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003658 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3659 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3660 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3661 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3662 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003663 vf.left = mStableLeft;
3664 vf.top = mStableTop;
3665 vf.right = mStableRight;
3666 vf.bottom = mStableBottom;
3667
3668 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3669
3670 // Let the status bar determine its size.
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003671 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3672 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3673 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
Craig Mautner69b08182012-09-05 13:07:13 -07003674
3675 // For layout, the status bar is always at the top with our fixed height.
3676 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3677
John Spurlocke1f366f2013-08-05 12:22:40 -04003678 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003679 boolean statusBarTranslucent = (sysui
3680 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003681 if (!isKeyguardShowing) {
3682 statusBarTranslucent &= areTranslucentBarsAllowed();
3683 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003684
Craig Mautner69b08182012-09-05 13:07:13 -07003685 // If the status bar is hidden, we don't want to cause
3686 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003687 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003688 // Status bar may go away, so the screen area it occupies
3689 // is available to apps but just covering them when the
3690 // status bar is visible.
3691 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3692
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003693 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3694 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3695 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3696 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003697
Craig Mautnereda67292013-04-28 13:50:14 -07003698 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003699 String.format(
3700 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3701 mDockLeft, mDockTop, mDockRight, mDockBottom,
3702 mContentLeft, mContentTop, mContentRight, mContentBottom,
3703 mCurLeft, mCurTop, mCurRight, mCurBottom));
3704 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003705 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003706 && !statusBarTransient && !statusBarTranslucent
3707 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003708 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003709 // and not in the process of animating on or off, then
3710 // we can tell the app that it is covered by it.
3711 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3712 }
John Spurlock27735a42013-08-14 17:57:38 -04003713 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003714 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003715 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003716 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003717 if (updateSysUiVisibility) {
3718 updateSystemUiVisibilityLw();
3719 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003720 }
3721 }
3722
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003723 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003724 @Override
John Spurlock46646232013-09-30 22:32:42 -04003725 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003726 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3727 return mStatusBar.getSurfaceLayer();
3728 }
3729
3730 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3731 return mNavigationBar.getSurfaceLayer();
3732 }
3733
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003734 return 0;
3735 }
3736
Craig Mautner967212c2013-04-13 21:10:58 -07003737 @Override
3738 public void getContentRectLw(Rect r) {
3739 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3740 }
3741
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003742 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3743 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003744 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3745 // Here's a special case: if this attached window is a panel that is
3746 // above the dock window, and the window it is attached to is below
3747 // the dock window, then the frames we computed for the window it is
3748 // attached to can not be used because the dock is effectively part
3749 // of the underlying window and the attached window is floating on top
3750 // of the whole thing. So, we ignore the attached window and explicitly
3751 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003752 df.left = of.left = cf.left = vf.left = mDockLeft;
3753 df.top = of.top = cf.top = vf.top = mDockTop;
3754 df.right = of.right = cf.right = vf.right = mDockRight;
3755 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003756 } else {
3757 // The effective display frame of the attached window depends on
3758 // whether it is taking care of insetting its content. If not,
3759 // we need to use the parent's content frame so that the entire
3760 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003761 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003762 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003763 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003764 // Set the content frame of the attached window to the parent's decor frame
3765 // (same as content frame when IME isn't present) if specifically requested by
3766 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3767 // Otherwise, use the overscan frame.
3768 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3769 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003770 } else {
3771 // If the window is resizing, then we want to base the content
3772 // frame on our attached content frame to resize... however,
3773 // things can be tricky if the attached window is NOT in resize
3774 // mode, in which case its content frame will be larger.
3775 // Ungh. So to deal with that, make sure the content frame
3776 // we end up using is not covering the IM dock.
3777 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003778 if (attached.isVoiceInteraction()) {
3779 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3780 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3781 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3782 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3783 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003784 if (cf.left < mContentLeft) cf.left = mContentLeft;
3785 if (cf.top < mContentTop) cf.top = mContentTop;
3786 if (cf.right > mContentRight) cf.right = mContentRight;
3787 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3788 }
3789 }
3790 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003791 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003792 vf.set(attached.getVisibleFrameLw());
3793 }
3794 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3795 // window should be positioned relative to its parent or the entire
3796 // screen.
3797 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3798 ? attached.getFrameLw() : df);
3799 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003800
3801 private void applyStableConstraints(int sysui, int fl, Rect r) {
3802 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3803 // If app is requesting a stable layout, don't let the
3804 // content insets go below the stable values.
3805 if ((fl & FLAG_FULLSCREEN) != 0) {
3806 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3807 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3808 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3809 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3810 } else {
3811 if (r.left < mStableLeft) r.left = mStableLeft;
3812 if (r.top < mStableTop) r.top = mStableTop;
3813 if (r.right > mStableRight) r.right = mStableRight;
3814 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3815 }
3816 }
3817 }
3818
Jorim Jaggiaa806142015-05-20 18:04:16 -07003819 private boolean canReceiveInput(WindowState win) {
3820 boolean notFocusable =
3821 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3822 boolean altFocusableIm =
3823 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3824 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3825 return !notFocusableForIm;
3826 }
3827
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003828 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003829 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003830 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003831 // We've already done the navigation bar and status bar. If the status bar can receive
3832 // input, we need to layout it again to accomodate for the IME window.
3833 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003834 return;
3835 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003836 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003837 final boolean isDefaultDisplay = win.isDefaultDisplay();
3838 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003839 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3840 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003841 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003842 offsetInputMethodWindowLw(mLastInputMethodWindow);
3843 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003844
John Spurlockc6d1c602014-01-17 15:22:06 -05003845 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003846 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003847 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003848
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003849 final Rect pf = mTmpParentFrame;
3850 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003851 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003852 final Rect cf = mTmpContentFrame;
3853 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003854 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003855 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003856 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003857 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003858
3859 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003860 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003861
Craig Mautnerf683b562012-10-02 11:10:57 -07003862 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3863
Adrian Roosfa104232014-06-20 16:10:14 -07003864 if (isDefaultDisplay) {
3865 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3866 } else {
3867 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3868 }
3869
Craig Mautner69b08182012-09-05 13:07:13 -07003870 if (!isDefaultDisplay) {
3871 if (attached != null) {
3872 // If this window is attached to another, our display
3873 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003874 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003875 } else {
3876 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003877 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3878 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3879 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003880 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003881 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003882 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003883 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003884 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003885 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3886 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3887 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003888 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003889 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003890 // ...with content insets above the nav bar
3891 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003892 // IM dock windows always go to the bottom of the screen.
3893 attrs.gravity = Gravity.BOTTOM;
3894 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003895 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003896 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003897 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003898 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3899 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003900 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003901 // Note: In Phone landscape mode, the button bar should also be excluded.
3902 cf.right = vf.right = mStableRight;
3903 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003904 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003905 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003906 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3907 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3908 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3909 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3910 cf.left = vf.left = mStableLeft;
3911 cf.top = vf.top = mStableTop;
3912 cf.right = vf.right = mStableRight;
3913 vf.bottom = mStableBottom;
3914 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003915 } else {
John Spurlock46646232013-09-30 22:32:42 -04003916
3917 // Default policy decor for the default display
3918 dcf.left = mSystemLeft;
3919 dcf.top = mSystemTop;
3920 dcf.right = mSystemRight;
3921 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003922 final boolean inheritTranslucentDecor = (attrs.privateFlags
3923 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003924 final boolean isAppWindow =
3925 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3926 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3927 final boolean topAtRest =
3928 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3929 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003930 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3931 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003932 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3933 && (fl & WindowManager.LayoutParams.
3934 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003935 // Ensure policy decor includes status bar
3936 dcf.top = mStableTop;
3937 }
John Spurlockbd957402013-10-03 11:38:39 -04003938 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003939 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3940 && (fl & WindowManager.LayoutParams.
3941 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003942 // Ensure policy decor includes navigation bar
3943 dcf.bottom = mStableBottom;
3944 dcf.right = mStableRight;
3945 }
3946 }
3947
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003948 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3949 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003950 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003951 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003952 // This is the case for a normal activity window: we want it
3953 // to cover all of the screen space, and it can take care of
3954 // moving its contents to account for screen decorations that
3955 // intrude into that space.
3956 if (attached != null) {
3957 // If this window is attached to another, our display
3958 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003959 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003960 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003961 if (attrs.type == TYPE_STATUS_BAR_PANEL
3962 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003963 // Status bar panels are the only windows who can go on top of
3964 // the status bar. They are protected by the STATUS_BAR_SERVICE
3965 // permission, so they have the same privileges as the status
3966 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003967 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003968 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003969
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003970 pf.left = df.left = of.left = hasNavBar
3971 ? mDockLeft : mUnrestrictedScreenLeft;
3972 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3973 pf.right = df.right = of.right = hasNavBar
3974 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3975 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3976 pf.bottom = df.bottom = of.bottom = hasNavBar
3977 ? mRestrictedScreenTop+mRestrictedScreenHeight
3978 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003979
Craig Mautnereda67292013-04-28 13:50:14 -07003980 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003981 "Laying out status bar window: (%d,%d - %d,%d)",
3982 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003983 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003984 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3985 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3986 // Asking to layout into the overscan region, so give it that pure
3987 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003988 pf.left = df.left = of.left = mOverscanScreenLeft;
3989 pf.top = df.top = of.top = mOverscanScreenTop;
3990 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3991 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3992 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003993 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003994 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003995 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3996 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003997 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003998 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003999 // only do this for application windows to ensure no window that
4000 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08004001 pf.left = df.left = mOverscanScreenLeft;
4002 pf.top = df.top = mOverscanScreenTop;
4003 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4004 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004005 // We need to tell the app about where the frame inside the overscan
4006 // is, so it can inset its content by that amount -- it didn't ask
4007 // to actually extend itself into the overscan region.
4008 of.left = mUnrestrictedScreenLeft;
4009 of.top = mUnrestrictedScreenTop;
4010 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4011 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004012 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004013 pf.left = df.left = mRestrictedOverscanScreenLeft;
4014 pf.top = df.top = mRestrictedOverscanScreenTop;
4015 pf.right = df.right = mRestrictedOverscanScreenLeft
4016 + mRestrictedOverscanScreenWidth;
4017 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4018 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004019 // We need to tell the app about where the frame inside the overscan
4020 // is, so it can inset its content by that amount -- it didn't ask
4021 // to actually extend itself into the overscan region.
4022 of.left = mUnrestrictedScreenLeft;
4023 of.top = mUnrestrictedScreenTop;
4024 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4025 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004026 }
Craig Mautner69b08182012-09-05 13:07:13 -07004027
John Spurlock46646232013-09-30 22:32:42 -04004028 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004029 if (win.isVoiceInteraction()) {
4030 cf.left = mVoiceContentLeft;
4031 cf.top = mVoiceContentTop;
4032 cf.right = mVoiceContentRight;
4033 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004034 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004035 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4036 cf.left = mDockLeft;
4037 cf.top = mDockTop;
4038 cf.right = mDockRight;
4039 cf.bottom = mDockBottom;
4040 } else {
4041 cf.left = mContentLeft;
4042 cf.top = mContentTop;
4043 cf.right = mContentRight;
4044 cf.bottom = mContentBottom;
4045 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004046 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004047 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004048 // Full screen windows are always given a layout that is as if the
4049 // status bar and other transient decors are gone. This is to avoid
4050 // bad states when moving from a window that is not hding the
4051 // status bar to one that is.
4052 cf.left = mRestrictedScreenLeft;
4053 cf.top = mRestrictedScreenTop;
4054 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4055 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004056 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004057 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004058 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4059 vf.left = mCurLeft;
4060 vf.top = mCurTop;
4061 vf.right = mCurRight;
4062 vf.bottom = mCurBottom;
4063 } else {
4064 vf.set(cf);
4065 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004066 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004067 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4068 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4069 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004070 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4071 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004072 // A window that has requested to fill the entire screen just
4073 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004074 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004075 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4076 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004077 pf.left = df.left = of.left = cf.left = hasNavBar
4078 ? mDockLeft : mUnrestrictedScreenLeft;
4079 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4080 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004081 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004082 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004083 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004084 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004085 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004086 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004087 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4088 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004089 } else if (attrs.type == TYPE_NAVIGATION_BAR
4090 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004091 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004092 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4093 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4094 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4095 + mUnrestrictedScreenWidth;
4096 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4097 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004098 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004099 "Laying out navigation bar window: (%d,%d - %d,%d)",
4100 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004101 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4102 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004103 && ((fl & FLAG_FULLSCREEN) != 0)) {
4104 // Fullscreen secure system overlays get what they ask for.
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;
Craig Mautner165be0c2015-01-27 15:16:58 -08004111 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004112 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004113 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4114 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4115 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4116 + mOverscanScreenWidth;
4117 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4118 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004119 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004120 // The wallpaper also has Real Ultimate Power, but we want to tell
4121 // it about the overscan area.
4122 pf.left = df.left = mOverscanScreenLeft;
4123 pf.top = df.top = mOverscanScreenTop;
4124 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4125 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4126 of.left = cf.left = mUnrestrictedScreenLeft;
4127 of.top = cf.top = mUnrestrictedScreenTop;
4128 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4129 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004130 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004131 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4132 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4133 // Asking to layout into the overscan region, so give it that pure
4134 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004135 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4136 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4137 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004138 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004139 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004140 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004141 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004142 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004143 && (attrs.type == TYPE_STATUS_BAR
4144 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004145 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004146 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4147 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004148 // Asking for layout as if the nav bar is hidden, lets the
4149 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004150 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004151 // can be above the nav bar can do this.
4152 // XXX This assumes that an app asking for this will also
4153 // ask for layout in only content. We can't currently figure out
4154 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004155 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4156 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4157 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4158 + mUnrestrictedScreenWidth;
4159 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4160 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004161 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004162 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4163 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4164 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4165 + mRestrictedScreenWidth;
4166 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4167 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004168 }
Craig Mautner69b08182012-09-05 13:07:13 -07004169
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004170 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004171
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004172 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4173 vf.left = mCurLeft;
4174 vf.top = mCurTop;
4175 vf.right = mCurRight;
4176 vf.bottom = mCurBottom;
4177 } else {
4178 vf.set(cf);
4179 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004180 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004181 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4182 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004183 // A child window should be placed inside of the same visible
4184 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004185 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004186 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004187 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4188 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004189 // Otherwise, a normal window must be placed inside the content
4190 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004191 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4192 // Status bar panels and the volume dialog are the only windows who can go on
4193 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004194 // permission, so they have the same privileges as the status
4195 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004196 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4197 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4198 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4199 + mRestrictedScreenWidth;
4200 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4201 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004202 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004203 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004204 pf.left = df.left = of.left = cf.left = mStableLeft;
4205 pf.top = df.top = of.top = cf.top = mStableTop;
4206 pf.right = df.right = of.right = cf.right = mStableRight;
4207 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004208 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004209 pf.left = mContentLeft;
4210 pf.top = mContentTop;
4211 pf.right = mContentRight;
4212 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004213 if (win.isVoiceInteraction()) {
4214 df.left = of.left = cf.left = mVoiceContentLeft;
4215 df.top = of.top = cf.top = mVoiceContentTop;
4216 df.right = of.right = cf.right = mVoiceContentRight;
4217 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4218 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004219 df.left = of.left = cf.left = mDockLeft;
4220 df.top = of.top = cf.top = mDockTop;
4221 df.right = of.right = cf.right = mDockRight;
4222 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004223 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004224 df.left = of.left = cf.left = mContentLeft;
4225 df.top = of.top = cf.top = mContentTop;
4226 df.right = of.right = cf.right = mContentRight;
4227 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004228 }
4229 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4230 vf.left = mCurLeft;
4231 vf.top = mCurTop;
4232 vf.right = mCurRight;
4233 vf.bottom = mCurBottom;
4234 } else {
4235 vf.set(cf);
4236 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004237 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004238 }
4239 }
Craig Mautner69b08182012-09-05 13:07:13 -07004240
Craig Mautnerb816bed2013-07-23 10:26:17 -07004241 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4242 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004243 df.left = df.top = -10000;
4244 df.right = df.bottom = 10000;
4245 if (attrs.type != TYPE_WALLPAPER) {
4246 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4247 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4248 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004249 }
4250
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004251 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4252 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004253 // We only want to apply outsets to certain types of windows. For example, we never want to
4254 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004255 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004256 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004257 osf = mTmpOutsetFrame;
4258 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4259 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4260 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004261 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004262 if (rotation == Surface.ROTATION_0) {
4263 osf.bottom += outset;
4264 } else if (rotation == Surface.ROTATION_90) {
4265 osf.right += outset;
4266 } else if (rotation == Surface.ROTATION_180) {
4267 osf.top -= outset;
4268 } else if (rotation == Surface.ROTATION_270) {
4269 osf.left -= outset;
4270 }
4271 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4272 + " with rotation " + rotation + ", result: " + osf);
4273 }
4274 }
4275
Craig Mautnereda67292013-04-28 13:50:14 -07004276 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004277 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004278 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004279 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004280 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004281 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004282 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004283 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004284 + " sf=" + sf.toShortString()
4285 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004286
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004287 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004288
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004289 // Dock windows carve out the bottom of the screen, so normal windows
4290 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004291 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4292 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004293 setLastInputMethodWindowLw(null, null);
4294 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004295 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004296 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4297 && !win.getGivenInsetsPendingLw()) {
4298 offsetVoiceInputWindowLw(win);
4299 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004300 }
4301
satok1bc0a492012-04-25 22:47:12 +09004302 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004303 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004304 top += win.getGivenContentInsetsLw().top;
4305 if (mContentBottom > top) {
4306 mContentBottom = top;
4307 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004308 if (mVoiceContentBottom > top) {
4309 mVoiceContentBottom = top;
4310 }
satok1bc0a492012-04-25 22:47:12 +09004311 top = win.getVisibleFrameLw().top;
4312 top += win.getGivenVisibleInsetsLw().top;
4313 if (mCurBottom > top) {
4314 mCurBottom = top;
4315 }
Craig Mautnereda67292013-04-28 13:50:14 -07004316 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004317 + mDockBottom + " mContentBottom="
4318 + mContentBottom + " mCurBottom=" + mCurBottom);
4319 }
4320
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004321 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004322 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004323 top += win.getGivenContentInsetsLw().top;
4324 if (mVoiceContentBottom > top) {
4325 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004326 }
4327 }
4328
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004329 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004330 @Override
4331 public void finishLayoutLw() {
4332 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004333 }
4334
4335 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004336 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004337 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004338 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004339 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004340 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004341 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004342 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004343 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004344 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004345 mForcingShowNavBar = false;
4346 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004347
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004348 mHideLockScreen = false;
4349 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004350 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004351 mShowingLockscreen = false;
4352 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004353 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004354 mKeyguardSecure = isKeyguardSecure();
4355 mKeyguardSecureIncludingHidden = mKeyguardSecure
4356 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004357 }
4358
4359 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004360 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004361 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4362 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004363 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4364 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004365 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004366 if (mTopFullscreenOpaqueWindowState == null
4367 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4368 mForcingShowNavBar = true;
4369 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004370 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004371 if (attrs.type == TYPE_STATUS_BAR) {
4372 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4373 mForceStatusBarFromKeyguard = true;
4374 }
4375 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4376 mForceStatusBarTransparent = true;
4377 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004378 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004379
4380 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4381 && attrs.type < FIRST_SYSTEM_WINDOW;
4382 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4383 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4384
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004385 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004386 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004387 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004388 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004389 mForceStatusBarFromKeyguard = true;
4390 } else {
4391 mForceStatusBar = true;
4392 }
4393 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004394 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004395 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004396 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004397 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004398 // If the lockscreen was showing when the dream started then wait
4399 // for the dream to draw before hiding the lockscreen.
4400 if (!mDreamingLockscreen
4401 || (win.isVisibleLw() && win.hasDrawnLw())) {
4402 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004403 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004404 }
4405 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004406
Yohei Yukawad1a09222015-06-30 16:22:05 -07004407 final IApplicationToken appToken = win.getAppToken();
4408
4409 // For app windows that are not attached, we decide if all windows in the app they
4410 // represent should be hidden or if we should hide the lockscreen. For attached app
4411 // windows we defer the decision to the window it is attached to.
4412 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004413 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004414 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004415 mAppsToBeHidden.remove(appToken);
4416 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004417 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004418 if (dismissKeyguard && !mKeyguardSecure) {
4419 mAppsThatDismissKeyguard.add(appToken);
4420 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004421 mWinShowWhenLocked = win;
4422 mHideLockScreen = true;
4423 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004424 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004425 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004426 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004427 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004428 mAppsToBeHidden.add(appToken);
4429 } else {
4430 mAppsToBeHidden.remove(appToken);
4431 }
4432 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004433 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004434 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004435 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004436 if (attrs.x == 0 && attrs.y == 0
4437 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4438 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4439 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4440 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004441 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4442 mTopFullscreenOpaqueOrDimmingWindowState = win;
4443 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004444 if (!mAppsThatDismissKeyguard.isEmpty() &&
4445 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4446 if (DEBUG_LAYOUT) Slog.v(TAG,
4447 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004448 mDismissKeyguard = (mWinDismissingKeyguard == win
4449 && mSecureDismissingKeyguard == mKeyguardSecure)
4450 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004451 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004452 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004453 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004454 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4455 if (DEBUG_LAYOUT) Slog.v(TAG,
4456 "Setting mHideLockScreen to true by win " + win);
4457 mHideLockScreen = true;
4458 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004459 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004460 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004461 mAllowLockscreenWhenOn = true;
4462 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004463 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004464
4465 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004466 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4467 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004468 win.hideLw(false);
4469 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004470 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004471 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4472 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4473 // that is being hidden in an animation - keep the
4474 // keyguard hidden until the new window shows up and
4475 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004476 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004477 mHideLockScreen = true;
4478 mWinShowWhenLocked = win;
4479 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004480 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004481 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4482 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4483 && win.isDimming()) {
4484 mTopFullscreenOpaqueOrDimmingWindowState = win;
4485 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004486 }
4487
4488 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004489 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004490 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004491 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4492 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4493 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004494 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4495 // fullscreen window.
4496 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4497 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4498 mTopFullscreenOpaqueWindowState.hideLw(false);
4499 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4500 }
4501
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004502 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004503 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004504
4505 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4506 ? mTopFullscreenOpaqueWindowState.getAttrs()
4507 : null;
4508
Jeff Brownc8018eb2012-10-29 21:33:27 -07004509 // If we are not currently showing a dream then remember the current
4510 // lockscreen state. We will use this to determine whether the dream
4511 // started while the lockscreen was showing and remember this state
4512 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004513 if (!mShowingDream) {
4514 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004515 if (mDreamingSleepTokenNeeded) {
4516 mDreamingSleepTokenNeeded = false;
4517 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4518 }
4519 } else {
4520 if (!mDreamingSleepTokenNeeded) {
4521 mDreamingSleepTokenNeeded = true;
4522 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4523 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004524 }
4525
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004526 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004527 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004528 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004529 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004530 boolean shouldBeTransparent = mForceStatusBarTransparent
4531 && !mForceStatusBar
4532 && !mForceStatusBarFromKeyguard;
4533 if (!shouldBeTransparent) {
4534 mStatusBarController.setShowTransparent(false /* transparent */);
4535 } else if (!mStatusBar.isVisibleLw()) {
4536 mStatusBarController.setShowTransparent(true /* transparent */);
4537 }
4538 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004539 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004540 if (mStatusBarController.setBarShowingLw(true)) {
4541 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4542 }
Craig Mautner81defc72013-10-29 11:10:42 -07004543 // Maintain fullscreen layout until incoming animation is complete.
4544 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004545 // Transient status bar on the lockscreen is not allowed
4546 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4547 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4548 mLastSystemUiFlags, mLastSystemUiFlags);
4549 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004550 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004551 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004552 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004553 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004554 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004555 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004556 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004557 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004558 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004559 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004560 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004561 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004562 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4563 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004564 if (mStatusBarController.isTransientShowing()) {
4565 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004566 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4567 }
4568 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004569 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004570 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004571 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004572 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004573 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004574 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004575 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004576 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004577 if (mStatusBarController.setBarShowingLw(true)) {
4578 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4579 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004580 }
4581 }
4582 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004583
Craig Mautner81defc72013-10-29 11:10:42 -07004584 if (mTopIsFullscreen != topIsFullscreen) {
4585 if (!topIsFullscreen) {
4586 // Force another layout when status bar becomes fully shown.
4587 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4588 }
4589 mTopIsFullscreen = topIsFullscreen;
4590 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004591
Craig Mautner39834192012-09-02 07:47:24 -07004592 // Hide the key guard if a visible window explicitly specifies that it wants to be
4593 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004594 if (mKeyguardDelegate != null && mStatusBar != null) {
4595 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4596 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004597 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004598 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004599 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004600 changes |= FINISH_LAYOUT_REDO_LAYOUT
4601 | FINISH_LAYOUT_REDO_CONFIG
4602 | FINISH_LAYOUT_REDO_WALLPAPER;
4603 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004604 if (mKeyguardDelegate.isShowing()) {
4605 mHandler.post(new Runnable() {
4606 @Override
4607 public void run() {
4608 mKeyguardDelegate.keyguardDone(false, false);
4609 }
4610 });
4611 }
4612 } else if (mHideLockScreen) {
4613 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004614 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004615 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004616 changes |= FINISH_LAYOUT_REDO_LAYOUT
4617 | FINISH_LAYOUT_REDO_CONFIG
4618 | FINISH_LAYOUT_REDO_WALLPAPER;
4619 }
4620 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004621 mKeyguardHidden = false;
4622 if (setKeyguardOccludedLw(false)) {
4623 changes |= FINISH_LAYOUT_REDO_LAYOUT
4624 | FINISH_LAYOUT_REDO_CONFIG
4625 | FINISH_LAYOUT_REDO_WALLPAPER;
4626 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004627 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4628 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004629 mHandler.post(new Runnable() {
4630 @Override
4631 public void run() {
4632 mKeyguardDelegate.dismiss();
4633 }
4634 });
4635 }
4636 } else {
4637 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004638 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004639 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004640 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004641 changes |= FINISH_LAYOUT_REDO_LAYOUT
4642 | FINISH_LAYOUT_REDO_CONFIG
4643 | FINISH_LAYOUT_REDO_WALLPAPER;
4644 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004645 }
4646 }
Joe Onorato664644d2011-01-23 17:53:23 -08004647
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004648 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004649 // If the navigation bar has been hidden or shown, we need to do another
4650 // layout pass to update that window.
4651 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4652 }
Joe Onorato664644d2011-01-23 17:53:23 -08004653
Mike Lockwood28569302010-01-28 11:54:40 -05004654 // update since mAllowLockscreenWhenOn might have changed
4655 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004656 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004657 }
4658
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004659 /**
Jim Millerab954542014-10-10 18:21:49 -07004660 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004661 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004662 * @return Whether the flags have changed and we have to redo the layout.
4663 */
Jim Millerab954542014-10-10 18:21:49 -07004664 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4665 boolean wasOccluded = mKeyguardOccluded;
4666 boolean showing = mKeyguardDelegate.isShowing();
4667 if (wasOccluded && !isOccluded && showing) {
4668 mKeyguardOccluded = false;
4669 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004670 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4671 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4672 return true;
Jim Millerab954542014-10-10 18:21:49 -07004673 } else if (!wasOccluded && isOccluded && showing) {
4674 mKeyguardOccluded = true;
4675 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004676 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4677 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4678 return true;
4679 } else {
4680 return false;
4681 }
4682 }
4683
4684 private boolean isStatusBarKeyguard() {
4685 return mStatusBar != null
4686 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4687 }
4688
Jose Lima9546b202014-07-02 17:21:51 -07004689 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004690 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004691 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004692 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004693 return false;
4694 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004695 return true;
4696 }
4697
Jose Lima9546b202014-07-02 17:21:51 -07004698 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004699 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004700 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004701 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004702 // If the navigation bar has been hidden or shown, we need to do another
4703 // layout pass to update that window.
4704 return FINISH_LAYOUT_REDO_LAYOUT;
4705 }
4706 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004707 }
4708
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004709 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004710 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004711 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4712 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004713 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4714 if (newLidState == mLidState) {
4715 return;
4716 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004717
Jeff Brownc458ce92012-04-30 14:58:40 -07004718 mLidState = newLidState;
4719 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004720 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004721
4722 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004723 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4724 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004725 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004726 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004727 }
4728 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004729
Michael Wright3818c922014-09-02 13:59:07 -07004730 @Override
4731 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4732 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4733 if (mCameraLensCoverState == lensCoverState) {
4734 return;
4735 }
4736 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4737 lensCoverState == CAMERA_LENS_UNCOVERED) {
4738 Intent intent;
4739 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4740 mKeyguardDelegate.isShowing();
4741 if (keyguardActive) {
4742 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4743 } else {
4744 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4745 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004746 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4747 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004748 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004749 }
4750 mCameraLensCoverState = lensCoverState;
4751 }
4752
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004753 void setHdmiPlugged(boolean plugged) {
4754 if (mHdmiPlugged != plugged) {
4755 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004756 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004757 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004758 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004759 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004760 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004761 }
4762 }
4763
Joe Onoratoea495d42011-04-06 11:41:11 -07004764 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004765 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004766 // watch for HDMI plug messages if the hdmi switch exists
4767 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4768 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4769
Joe Onoratoea495d42011-04-06 11:41:11 -07004770 final String filename = "/sys/class/switch/hdmi/state";
4771 FileReader reader = null;
4772 try {
4773 reader = new FileReader(filename);
4774 char[] buf = new char[15];
4775 int n = reader.read(buf);
4776 if (n > 1) {
4777 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4778 }
4779 } catch (IOException ex) {
4780 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4781 } catch (NumberFormatException ex) {
4782 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4783 } finally {
4784 if (reader != null) {
4785 try {
4786 reader.close();
4787 } catch (IOException ex) {
4788 }
Joe Onoratodc100302011-01-11 17:07:41 -08004789 }
4790 }
4791 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004792 // This dance forces the code in setHdmiPlugged to run.
4793 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4794 mHdmiPlugged = !plugged;
4795 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004796 }
4797
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004798 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004799 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004800
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004801 final Runnable mScreenshotTimeout = new Runnable() {
4802 @Override public void run() {
4803 synchronized (mScreenshotLock) {
4804 if (mScreenshotConnection != null) {
4805 mContext.unbindService(mScreenshotConnection);
4806 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004807 }
Winson Chung9112ec32011-06-27 13:15:32 -07004808 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004809 }
4810 };
4811
4812 // Assume this is called from the Handler thread.
4813 private void takeScreenshot() {
4814 synchronized (mScreenshotLock) {
4815 if (mScreenshotConnection != null) {
4816 return;
4817 }
4818 ComponentName cn = new ComponentName("com.android.systemui",
4819 "com.android.systemui.screenshot.TakeScreenshotService");
4820 Intent intent = new Intent();
4821 intent.setComponent(cn);
4822 ServiceConnection conn = new ServiceConnection() {
4823 @Override
4824 public void onServiceConnected(ComponentName name, IBinder service) {
4825 synchronized (mScreenshotLock) {
4826 if (mScreenshotConnection != this) {
4827 return;
4828 }
4829 Messenger messenger = new Messenger(service);
4830 Message msg = Message.obtain(null, 1);
4831 final ServiceConnection myConn = this;
4832 Handler h = new Handler(mHandler.getLooper()) {
4833 @Override
4834 public void handleMessage(Message msg) {
4835 synchronized (mScreenshotLock) {
4836 if (mScreenshotConnection == myConn) {
4837 mContext.unbindService(mScreenshotConnection);
4838 mScreenshotConnection = null;
4839 mHandler.removeCallbacks(mScreenshotTimeout);
4840 }
4841 }
4842 }
4843 };
4844 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004845 msg.arg1 = msg.arg2 = 0;
4846 if (mStatusBar != null && mStatusBar.isVisibleLw())
4847 msg.arg1 = 1;
4848 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4849 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004850 try {
4851 messenger.send(msg);
4852 } catch (RemoteException e) {
4853 }
4854 }
4855 }
4856 @Override
4857 public void onServiceDisconnected(ComponentName name) {}
4858 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004859 if (mContext.bindServiceAsUser(
4860 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004861 mScreenshotConnection = conn;
4862 mHandler.postDelayed(mScreenshotTimeout, 10000);
4863 }
4864 }
Winson Chung9112ec32011-06-27 13:15:32 -07004865 }
4866
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004867 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004868 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004869 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004870 if (!mSystemBooted) {
4871 // If we have not yet booted, don't let key events do anything.
4872 return 0;
4873 }
4874
Jeff Brown037c33e2014-04-09 00:31:55 -07004875 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004876 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4877 final boolean canceled = event.isCanceled();
4878 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004879
Jeff Brown3122e442010-10-11 23:32:49 -07004880 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004881
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004882 // If screen is off then we treat the case where the keyguard is open but hidden
4883 // the same as if it were open and in front.
4884 // This will prevent any keys other than the power button from waking the screen
4885 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004886 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004887 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004888 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004889 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004890
Jeff Brown40013652012-05-16 21:22:36 -07004891 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004892 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004893 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004894 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004895 }
4896
Jeff Brown037c33e2014-04-09 00:31:55 -07004897 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004898 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004899 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4900 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004901 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004902 // When the device is interactive or the key is injected pass the
4903 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004904 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004905 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004906 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4907 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4908 // to the application but preserve its wake key status to make sure we still move
4909 // from dozing to fully interactive if we would normally go from off to fully
4910 // interactive.
4911 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004912 } else {
4913 // When the screen is off and the key is not injected, determine whether
4914 // to wake the device but don't pass the key to the application.
4915 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004916 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4917 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004918 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004919 }
4920
Justin Kohd378ad72013-04-01 12:18:26 -07004921 // If the key would be handled globally, just return the result, don't worry about special
4922 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004923 if (isValidGlobalKey(keyCode)
4924 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004925 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004926 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07004927 }
Justin Kohd378ad72013-04-01 12:18:26 -07004928 return result;
4929 }
4930
Jeff Brownbae8e772014-06-12 19:59:45 -07004931 boolean useHapticFeedback = down
4932 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4933 && event.getRepeatCount() == 0;
4934
Jeff Brown4d396052010-10-29 21:50:21 -07004935 // Handle special keys.
4936 switch (keyCode) {
4937 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004938 case KeyEvent.KEYCODE_VOLUME_UP:
4939 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004940 if (mUseTvRouting) {
4941 // On TVs volume keys never go to the foreground app
4942 result &= ~ACTION_PASS_TO_USER;
4943 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004944 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4945 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004946 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004947 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004948 mScreenshotChordVolumeDownKeyTriggered = true;
4949 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4950 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004951 cancelPendingPowerKeyAction();
4952 interceptScreenshotChord();
4953 }
4954 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004955 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004956 cancelPendingScreenshotChordAction();
4957 }
4958 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4959 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004960 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004961 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004962 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004963 cancelPendingPowerKeyAction();
4964 cancelPendingScreenshotChordAction();
4965 }
4966 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004967 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004968 cancelPendingScreenshotChordAction();
4969 }
4970 }
Jeff Brown4d396052010-10-29 21:50:21 -07004971 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004972 TelecomManager telecomManager = getTelecommService();
4973 if (telecomManager != null) {
4974 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004975 // If an incoming call is ringing, either VOLUME key means
4976 // "silence ringer". We handle these keys here, rather than
4977 // in the InCallScreen, to make sure we'll respond to them
4978 // even if the InCallScreen hasn't come to the foreground yet.
4979 // Look for the DOWN event here, to agree with the "fallback"
4980 // behavior in the InCallScreen.
4981 Log.i(TAG, "interceptKeyBeforeQueueing:"
4982 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004983
Santos Cordon6848f722014-05-21 15:22:12 -07004984 // Silence the ringer. (It's safe to call this
4985 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004986 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004987
Santos Cordon6848f722014-05-21 15:22:12 -07004988 // And *don't* pass this key thru to the current activity
4989 // (which is probably the InCallScreen.)
4990 result &= ~ACTION_PASS_TO_USER;
4991 break;
4992 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004993 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004994 && (result & ACTION_PASS_TO_USER) == 0) {
4995 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004996 // the application, just pass it to the session service.
4997
4998 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004999 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005000 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005001 }
5002 }
5003
RoboErik430fc482014-06-12 15:49:20 -07005004 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08005005 if (mUseTvRouting) {
5006 dispatchDirectAudioEvent(event);
5007 } else {
5008 // If we aren't passing to the user and no one else
5009 // handled it send it to the session manager to
5010 // figure out.
5011 MediaSessionLegacyHelper.getHelper(mContext)
5012 .sendVolumeKeyEvent(event, true);
5013 }
Jeff Brown4d396052010-10-29 21:50:21 -07005014 break;
5015 }
5016 }
5017 break;
5018 }
5019
5020 case KeyEvent.KEYCODE_ENDCALL: {
5021 result &= ~ACTION_PASS_TO_USER;
5022 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005023 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005024 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005025 if (telecomManager != null) {
5026 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005027 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005028 if (interactive && !hungUp) {
5029 mEndCallKeyHandled = false;
5030 mHandler.postDelayed(mEndCallLongPress,
5031 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5032 } else {
5033 mEndCallKeyHandled = true;
5034 }
Jeff Brown4d396052010-10-29 21:50:21 -07005035 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005036 if (!mEndCallKeyHandled) {
5037 mHandler.removeCallbacks(mEndCallLongPress);
5038 if (!canceled) {
5039 if ((mEndcallBehavior
5040 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5041 if (goHome()) {
5042 break;
5043 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005044 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005045 if ((mEndcallBehavior
5046 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5047 mPowerManager.goToSleep(event.getEventTime(),
5048 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5049 isWakeKey = false;
5050 }
Jeff Brown4d396052010-10-29 21:50:21 -07005051 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005052 }
Jeff Brown4d396052010-10-29 21:50:21 -07005053 }
5054 break;
5055 }
5056
5057 case KeyEvent.KEYCODE_POWER: {
5058 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005059 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005060 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005061 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005062 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005063 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005064 }
5065 break;
5066 }
5067
Jeff Brown6212a492014-03-07 13:58:47 -08005068 case KeyEvent.KEYCODE_SLEEP: {
5069 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005070 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005071 if (!mPowerManager.isInteractive()) {
5072 useHapticFeedback = false; // suppress feedback if already non-interactive
5073 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005074 if (down) {
5075 sleepPress(event.getEventTime());
5076 } else {
5077 sleepRelease(event.getEventTime());
5078 }
Jeff Brown6212a492014-03-07 13:58:47 -08005079 break;
5080 }
5081
5082 case KeyEvent.KEYCODE_WAKEUP: {
5083 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005084 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005085 break;
5086 }
5087
Jeff Brown4d396052010-10-29 21:50:21 -07005088 case KeyEvent.KEYCODE_MEDIA_PLAY:
5089 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5090 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005091 case KeyEvent.KEYCODE_HEADSETHOOK:
5092 case KeyEvent.KEYCODE_MUTE:
5093 case KeyEvent.KEYCODE_MEDIA_STOP:
5094 case KeyEvent.KEYCODE_MEDIA_NEXT:
5095 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5096 case KeyEvent.KEYCODE_MEDIA_REWIND:
5097 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005098 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5099 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005100 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5101 // If the global session is active pass all media keys to it
5102 // instead of the active window.
5103 result &= ~ACTION_PASS_TO_USER;
5104 }
Jeff Brown4d396052010-10-29 21:50:21 -07005105 if ((result & ACTION_PASS_TO_USER) == 0) {
5106 // Only do this if we would otherwise not pass it to the user. In that
5107 // case, the PhoneWindow class will do the same thing, except it will
5108 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005109 // Note that we need to make a copy of the key event here because the
5110 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005111 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005112 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5113 new KeyEvent(event));
5114 msg.setAsynchronous(true);
5115 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005116 }
5117 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005118 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005119
Jeff Brown4d396052010-10-29 21:50:21 -07005120 case KeyEvent.KEYCODE_CALL: {
5121 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005122 TelecomManager telecomManager = getTelecommService();
5123 if (telecomManager != null) {
5124 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005125 Log.i(TAG, "interceptKeyBeforeQueueing:"
5126 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005127 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005128
Santos Cordon6848f722014-05-21 15:22:12 -07005129 // And *don't* pass this key thru to the current activity
5130 // (which is presumably the InCallScreen.)
5131 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005132 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005133 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005134 }
Jeff Brown4d396052010-10-29 21:50:21 -07005135 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005136 }
Michael Wright869a67c2014-08-26 19:33:06 -07005137 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5138 // Only do this if we would otherwise not pass it to the user. In that case,
5139 // interceptKeyBeforeDispatching would apply a similar but different policy in
5140 // order to invoke voice assist actions. Note that we need to make a copy of the
5141 // key event here because the original key event will be recycled when we return.
5142 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5143 mBroadcastWakeLock.acquire();
5144 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5145 keyguardActive ? 1 : 0, 0);
5146 msg.setAsynchronous(true);
5147 msg.sendToTarget();
5148 }
5149 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005150 }
Jeff Brown26875502014-01-30 21:47:47 -08005151
Jeff Brownbae8e772014-06-12 19:59:45 -07005152 if (useHapticFeedback) {
5153 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5154 }
5155
Jeff Brown26875502014-01-30 21:47:47 -08005156 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005157 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005158 }
Bryce Lee584a4452014-10-21 15:55:55 -07005159
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005160 return result;
5161 }
5162
Jeff Brown1c2e4942012-11-06 16:32:01 -08005163 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005164 * Returns true if the key can have global actions attached to it.
5165 * We reserve all power management keys for the system since they require
5166 * very careful handling.
5167 */
5168 private static boolean isValidGlobalKey(int keyCode) {
5169 switch (keyCode) {
5170 case KeyEvent.KEYCODE_POWER:
5171 case KeyEvent.KEYCODE_WAKEUP:
5172 case KeyEvent.KEYCODE_SLEEP:
5173 return false;
5174 default:
5175 return true;
5176 }
5177 }
5178
5179 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005180 * When the screen is off we ignore some keys that might otherwise typically
5181 * be considered wake keys. We filter them out here.
5182 *
5183 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5184 * is always considered a wake key.
5185 */
5186 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5187 switch (keyCode) {
5188 // ignore volume keys unless docked
5189 case KeyEvent.KEYCODE_VOLUME_UP:
5190 case KeyEvent.KEYCODE_VOLUME_DOWN:
5191 case KeyEvent.KEYCODE_VOLUME_MUTE:
5192 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5193
5194 // ignore media and camera keys
5195 case KeyEvent.KEYCODE_MUTE:
5196 case KeyEvent.KEYCODE_HEADSETHOOK:
5197 case KeyEvent.KEYCODE_MEDIA_PLAY:
5198 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5199 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5200 case KeyEvent.KEYCODE_MEDIA_STOP:
5201 case KeyEvent.KEYCODE_MEDIA_NEXT:
5202 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5203 case KeyEvent.KEYCODE_MEDIA_REWIND:
5204 case KeyEvent.KEYCODE_MEDIA_RECORD:
5205 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005206 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005207 case KeyEvent.KEYCODE_CAMERA:
5208 return false;
5209 }
5210 return true;
5211 }
5212
5213
Jeff Brown56194eb2011-03-02 19:23:13 -08005214 /** {@inheritDoc} */
5215 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005216 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5217 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005218 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5219 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005220 return 0;
5221 }
Michael Wright70af00a2014-09-03 19:30:20 -07005222 }
Bryce Lee5c138322014-11-03 08:26:09 -08005223
Michael Wright70af00a2014-09-03 19:30:20 -07005224 if (shouldDispatchInputWhenNonInteractive()) {
5225 return ACTION_PASS_TO_USER;
5226 }
Bryce Lee5c138322014-11-03 08:26:09 -08005227
Bryce Lee812d7022014-11-10 13:33:28 -08005228 // If we have not passed the action up and we are in theater mode without dreaming,
5229 // there will be no dream to intercept the touch and wake into ambient. The device should
5230 // wake up in this case.
5231 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005232 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5233 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005234 }
5235
Jeff Brown037c33e2014-04-09 00:31:55 -07005236 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005237 }
5238
Michael Wright70af00a2014-09-03 19:30:20 -07005239 private boolean shouldDispatchInputWhenNonInteractive() {
Michael Wright2ccf0c82015-08-04 23:03:03 +01005240 if (mDisplay == null || mDisplay.getState() == Display.STATE_OFF) {
5241 return false;
5242 }
5243 // Send events to keyguard while the screen is on and it's showing.
5244 if (isKeyguardShowingAndNotOccluded()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005245 return true;
5246 }
5247
5248 // Send events to a dozing dream even if the screen is off since the dream
5249 // is in control of the state of the screen.
5250 IDreamManager dreamManager = getDreamManager();
5251
5252 try {
5253 if (dreamManager != null && dreamManager.isDreaming()) {
5254 return true;
5255 }
5256 } catch (RemoteException e) {
5257 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5258 }
5259
5260 // Otherwise, consume events since the user can't see what is being
5261 // interacted with.
5262 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005263 }
5264
RoboErik001c59c2015-01-26 15:53:51 -08005265 private void dispatchDirectAudioEvent(KeyEvent event) {
5266 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5267 return;
5268 }
5269 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005270 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5271 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005272 String pkgName = mContext.getOpPackageName();
5273 switch (keyCode) {
5274 case KeyEvent.KEYCODE_VOLUME_UP:
5275 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005276 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
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 up in dispatchTvAudioEvent.", e);
5280 }
5281 break;
5282 case KeyEvent.KEYCODE_VOLUME_DOWN:
5283 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005284 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005285 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005286 } catch (RemoteException e) {
5287 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5288 }
5289 break;
5290 case KeyEvent.KEYCODE_VOLUME_MUTE:
5291 try {
5292 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005293 getAudioService().adjustSuggestedStreamVolume(
5294 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005295 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005296 }
5297 } catch (RemoteException e) {
5298 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5299 }
5300 break;
5301 }
5302 }
5303
Jeff Brown40013652012-05-16 21:22:36 -07005304 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5305 if (DEBUG_INPUT) {
5306 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005307 }
5308
Jeff Brown40013652012-05-16 21:22:36 -07005309 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5310 if (DEBUG_INPUT) {
5311 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5312 }
5313
5314 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5315 mHavePendingMediaKeyRepeatWithWakeLock = false;
5316 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5317 }
5318
5319 dispatchMediaKeyWithWakeLockToAudioService(event);
5320
5321 if (event.getAction() == KeyEvent.ACTION_DOWN
5322 && event.getRepeatCount() == 0) {
5323 mHavePendingMediaKeyRepeatWithWakeLock = true;
5324
5325 Message msg = mHandler.obtainMessage(
5326 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5327 msg.setAsynchronous(true);
5328 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5329 } else {
5330 mBroadcastWakeLock.release();
5331 }
5332 }
5333
5334 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5335 mHavePendingMediaKeyRepeatWithWakeLock = false;
5336
5337 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5338 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5339 if (DEBUG_INPUT) {
5340 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5341 }
5342
5343 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5344 mBroadcastWakeLock.release();
5345 }
5346
5347 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5348 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005349 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005350 }
5351 }
5352
Michael Wright869a67c2014-08-26 19:33:06 -07005353 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005354 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5355 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5356 if (dic != null) {
5357 try {
5358 dic.exitIdle("voice-search");
5359 } catch (RemoteException e) {
5360 }
5361 }
Michael Wright869a67c2014-08-26 19:33:06 -07005362 Intent voiceIntent =
5363 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5364 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005365 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005366 mBroadcastWakeLock.release();
5367 }
5368
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005369 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005370 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005371 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005372 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5373 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5374 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005375 } else {
5376 try {
5377 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5378 ServiceManager.getService(Context.UI_MODE_SERVICE));
5379 mUiMode = uiModeService.getCurrentModeType();
5380 } catch (RemoteException e) {
5381 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005382 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005383 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005384 synchronized (mLock) {
5385 updateOrientationListenerLp();
5386 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005387 }
5388 };
5389
Jeff Brown6aaf2952012-10-05 16:01:08 -07005390 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5391 @Override
5392 public void onReceive(Context context, Intent intent) {
5393 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005394 if (mKeyguardDelegate != null) {
5395 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005396 }
5397 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005398 if (mKeyguardDelegate != null) {
5399 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005400 }
5401 }
5402 }
5403 };
5404
Christopher Tate5e08af02012-09-21 17:17:22 -07005405 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5406 @Override
5407 public void onReceive(Context context, Intent intent) {
5408 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5409 // tickle the settings observer: this first ensures that we're
5410 // observing the relevant settings for the newly-active user,
5411 // and then updates our own bookkeeping based on the now-
5412 // current user.
5413 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005414
5415 // force a re-application of focused window sysui visibility.
5416 // the window may never have been shown for this user
5417 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005418 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005419 mLastSystemUiFlags = 0;
5420 updateSystemUiVisibilityLw();
5421 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005422 }
5423 }
5424 };
5425
Adrian Roosddc8b272015-05-21 16:28:27 -07005426 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005427 @Override
5428 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005429 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5430 if (!isUserSetupComplete()) {
5431 // Swipe-up for navigation bar is disabled during setup
5432 return;
5433 }
5434 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5435 mNavigationBarController.showTransient();
5436 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005437 }
5438 };
5439
John Spurlocke1f366f2013-08-05 12:22:40 -04005440 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005441 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005442 if (!isUserSetupComplete()) {
5443 // Swipe-up for navigation bar is disabled during setup
5444 return;
5445 }
John Spurlock27735a42013-08-14 17:57:38 -04005446 boolean sb = mStatusBarController.checkShowTransientBarLw();
5447 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005448 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005449 // Don't show status bar when swiping on already visible navigation bar
5450 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005451 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005452 return;
5453 }
John Spurlock27735a42013-08-14 17:57:38 -04005454 if (sb) mStatusBarController.showTransient();
5455 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005456 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005457 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005458 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005459 }
5460 }
5461
Jeff Brown3ee549c2014-09-22 20:14:39 -07005462 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005463 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005464 public void startedGoingToSleep(int why) {
5465 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005466 if (mKeyguardDelegate != null) {
5467 mKeyguardDelegate.onStartedGoingToSleep(why);
5468 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005469 }
5470
5471 // Called on the PowerManager's Notifier thread.
5472 @Override
5473 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005474 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005475 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005476 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005477
5478 // We must get this work done here because the power manager will drop
5479 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005480 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005481 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005482 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005483 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005484 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005485 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005486 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005487 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005488 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005489 }
5490
Jeff Brown3ee549c2014-09-22 20:14:39 -07005491 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005492 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005493 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005494 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005495 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005496
Jeff Brown3ee549c2014-09-22 20:14:39 -07005497 // Since goToSleep performs these functions synchronously, we must
5498 // do the same here. We cannot post this work to a handler because
5499 // that might cause it to become reordered with respect to what
5500 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005501 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005502 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005503
Jeff Browna20dda42014-05-27 20:57:24 -07005504 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005505 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005506 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005507 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005508
Jim Miller5ecd8112013-01-09 18:50:26 -08005509 if (mKeyguardDelegate != null) {
Jorim Jaggi740452e2015-07-09 12:13:59 -07005510 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005511 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005512 }
5513
Jeff Brown416c49c2015-05-26 19:50:18 -07005514 // Called on the PowerManager's Notifier thread.
5515 @Override
5516 public void finishedWakingUp() {
5517 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5518 }
5519
5520 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005521 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005522 }
5523
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005524 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005525 final boolean theaterModeEnabled = isTheaterModeEnabled();
5526 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005527 return false;
5528 }
5529
Bryce Leed3896842015-06-23 17:06:51 -07005530 if (theaterModeEnabled) {
5531 Settings.Global.putInt(mContext.getContentResolver(),
5532 Settings.Global.THEATER_MODE_ON, 0);
5533 }
5534
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005535 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005536 return true;
5537 }
5538
Jeff Brown36c4db82014-09-19 12:05:31 -07005539 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005540 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005541 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005542 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005543 }
5544
Jeff Brown36c4db82014-09-19 12:05:31 -07005545 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005546 if (mKeyguardDelegate != null) {
5547 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5548 }
Jorim Jaggi740452e2015-07-09 12:13:59 -07005549 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005550 }
5551
Jorim Jaggi740452e2015-07-09 12:13:59 -07005552 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5553 // as well as enabling the orientation change logic/sensor.
5554 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5555 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005556 }
5557
5558 // Called on the DisplayManager's DisplayPowerController thread.
5559 @Override
5560 public void screenTurnedOff() {
5561 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5562
Jeff Brown48d1b142015-06-10 16:36:03 -07005563 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005564 synchronized (mLock) {
5565 mScreenOnEarly = false;
5566 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005567 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005568 mWindowManagerDrawComplete = false;
5569 mScreenOnListener = null;
5570 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005571
5572 if (mKeyguardDelegate != null) {
5573 mKeyguardDelegate.onScreenTurnedOff();
5574 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005575 }
5576 }
5577
Jeff Brown3ee549c2014-09-22 20:14:39 -07005578 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005579 @Override
5580 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005581 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005582
Jeff Brown48d1b142015-06-10 16:36:03 -07005583 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005584 synchronized (mLock) {
5585 mScreenOnEarly = true;
5586 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005587 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005588 mWindowManagerDrawComplete = false;
5589 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005590
Jorim Jaggi740452e2015-07-09 12:13:59 -07005591 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005592 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5593 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi740452e2015-07-09 12:13:59 -07005594 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5595 } else {
5596 if (DEBUG_WAKEUP) Slog.d(TAG,
5597 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5598 finishKeyguardDrawn();
5599 }
5600 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005601 }
5602
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005603 // Called on the DisplayManager's DisplayPowerController thread.
5604 @Override
5605 public void screenTurnedOn() {
5606 synchronized (mLock) {
5607 if (mKeyguardDelegate != null) {
5608 mKeyguardDelegate.onScreenTurnedOn();
5609 }
5610 }
5611 }
5612
Jeff Brown36c4db82014-09-19 12:05:31 -07005613 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005614 synchronized (mLock) {
5615 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005616 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005617 }
5618
Jeff Brown36c4db82014-09-19 12:05:31 -07005619 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005620 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005621
5622 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005623 }
5624
Craig Mautner8a0da012014-05-31 15:13:37 -07005625 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005626 synchronized (mLock) {
5627 // We have just finished drawing screen content. Since the orientation listener
5628 // gets only installed when all windows are drawn, we try to install it again.
5629 updateOrientationListenerLp();
5630 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005631 final ScreenOnListener listener;
5632 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005633 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005634 if (DEBUG_WAKEUP) Slog.d(TAG,
5635 "finishScreenTurningOn: mAwake=" + mAwake
5636 + ", mScreenOnEarly=" + mScreenOnEarly
5637 + ", mScreenOnFully=" + mScreenOnFully
5638 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5639 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5640
5641 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5642 || (mAwake && !mKeyguardDrawComplete)) {
5643 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005644 }
5645
Jeff Brown3ee549c2014-09-22 20:14:39 -07005646 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5647 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005648 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005649 mScreenOnFully = true;
5650
5651 // Remember the first time we draw the keyguard so we know when we're done with
5652 // the main part of booting and can enable the screen and hide boot messages.
5653 if (!mKeyguardDrawnOnce && mAwake) {
5654 mKeyguardDrawnOnce = true;
5655 enableScreen = true;
5656 if (mBootMessageNeedsHiding) {
5657 mBootMessageNeedsHiding = false;
5658 hideBootMessages();
5659 }
5660 } else {
5661 enableScreen = false;
5662 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005663 }
5664
Jeff Brown3ee549c2014-09-22 20:14:39 -07005665 if (listener != null) {
5666 listener.onScreenOn();
5667 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005668
Jeff Brown3ee549c2014-09-22 20:14:39 -07005669 if (enableScreen) {
5670 try {
5671 mWindowManager.enableScreenIfNeeded();
5672 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005673 }
Craig Mautnera631d492014-08-05 15:16:01 -07005674 }
5675 }
5676
5677 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005678 synchronized (mLock) {
5679 if (!mKeyguardDrawnOnce) {
5680 mBootMessageNeedsHiding = true;
5681 return; // keyguard hasn't drawn the first time yet, not done booting
5682 }
Craig Mautnera631d492014-08-05 15:16:01 -07005683 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005684
5685 if (mBootMsgDialog != null) {
5686 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5687 mBootMsgDialog.dismiss();
5688 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005689 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005690 }
5691
5692 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005693 public boolean isScreenOn() {
5694 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005695 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005696
Dianne Hackborn08743722009-12-21 12:16:51 -08005697 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005698 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005699 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005700 if (mKeyguardDelegate != null) {
5701 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005702 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005703 }
5704
5705 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005706 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005707 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005708 if (mKeyguardDelegate != null) {
5709 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005710 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005711 }
5712
Jim Millerab954542014-10-10 18:21:49 -07005713 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005714 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005715 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005716 }
5717
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005718 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005719 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005720 public boolean isKeyguardLocked() {
5721 return keyguardOn();
5722 }
5723
5724 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005725 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005726 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005727 if (mKeyguardDelegate == null) return false;
5728 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005729 }
5730
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005731 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005732 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005733 public boolean isKeyguardShowingOrOccluded() {
5734 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5735 }
5736
5737 /** {@inheritDoc} */
5738 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005739 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005740 if (mKeyguardDelegate == null) return false;
5741 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005742 }
5743
Jose Lima9546b202014-07-02 17:21:51 -07005744 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005745 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005746 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005747 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005748 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005749 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005750 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005751 // ask the keyguard to prompt the user to authenticate if necessary
5752 mKeyguardDelegate.dismiss();
5753 }
5754 });
5755 }
5756 }
5757
5758 public void notifyActivityDrawnForKeyguardLw() {
5759 if (mKeyguardDelegate != null) {
5760 mHandler.post(new Runnable() {
5761 @Override
5762 public void run() {
5763 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005764 }
5765 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005766 }
5767 }
5768
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005769 @Override
5770 public boolean isKeyguardDrawnLw() {
5771 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005772 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005773 }
5774 }
5775
Jorim Jaggi0d674622014-05-21 01:34:15 +02005776 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005777 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005778 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005779 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005780 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005781 }
5782 }
5783
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005784 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005785 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005786 }
5787
5788 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005789 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005790 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005791
Jeff Brown01a98dd2011-09-20 15:08:29 -07005792 @Override
5793 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005794 if (false) {
5795 Slog.v(TAG, "rotationForOrientationLw(orient="
5796 + orientation + ", last=" + lastRotation
5797 + "); user=" + mUserRotation + " "
5798 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5799 ? "USER_ROTATION_LOCKED" : "")
5800 );
5801 }
5802
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005803 if (mForceDefaultOrientation) {
5804 return Surface.ROTATION_0;
5805 }
5806
The Android Open Source Project0727d222009-03-11 12:11:58 -07005807 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005808 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5809 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005810 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005811 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005812
Jeff Browndec6cf42011-11-15 14:08:20 -08005813 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005814 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005815 // Ignore sensor when lid switch is open and rotation is forced.
5816 preferredRotation = mLidOpenRotation;
5817 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005818 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005819 // Ignore sensor when in car dock unless explicitly enabled.
5820 // This case can override the behavior of NOSENSOR, and can also
5821 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005822 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005823 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005824 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5825 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5826 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005827 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005828 // Ignore sensor when in desk dock unless explicitly enabled.
5829 // This case can override the behavior of NOSENSOR, and can also
5830 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005831 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005832 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005833 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5834 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005835 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005836 preferredRotation = mDemoHdmiRotation;
5837 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5838 && mUndockedHdmiRotation >= 0) {
5839 // Ignore sensor when plugged into HDMI and an undocked orientation has
5840 // been specified in the configuration (only for legacy devices without
5841 // full multi-display support).
5842 // Note that the dock orientation overrides the HDMI orientation.
5843 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005844 } else if (mDemoRotationLock) {
5845 // Ignore sensor when demo rotation lock is enabled.
5846 // Note that the dock orientation and HDMI rotation lock override this.
5847 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005848 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5849 // Application just wants to remain locked in the last rotation.
5850 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005851 } else if (!mSupportAutoRotation) {
5852 // If we don't support auto-rotation then bail out here and ignore
5853 // the sensor and any rotation lock settings.
5854 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005855 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005856 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005857 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5858 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5859 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5860 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005861 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5862 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5863 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5864 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5865 // Otherwise, use sensor only if requested by the application or enabled
5866 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005867 if (mAllowAllRotations < 0) {
5868 // Can't read this during init() because the context doesn't
5869 // have display metrics at that time so we cannot determine
5870 // tablet vs. phone then.
5871 mAllowAllRotations = mContext.getResources().getBoolean(
5872 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5873 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005874 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005875 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005876 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5877 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005878 preferredRotation = sensorRotation;
5879 } else {
5880 preferredRotation = lastRotation;
5881 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005882 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5883 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5884 // Apply rotation lock. Does not apply to NOSENSOR.
5885 // The idea is that the user rotation expresses a weak preference for the direction
5886 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5887 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005888 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005889 } else {
5890 // No overriding preference.
5891 // We will do exactly what the application asked us to do.
5892 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005893 }
5894
Dianne Hackborne5439f22010-10-02 16:53:50 -07005895 switch (orientation) {
5896 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005897 // Return portrait unless overridden.
5898 if (isAnyPortrait(preferredRotation)) {
5899 return preferredRotation;
5900 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005901 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005902
Jeff Brown01a98dd2011-09-20 15:08:29 -07005903 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005904 // Return landscape unless overridden.
5905 if (isLandscapeOrSeascape(preferredRotation)) {
5906 return preferredRotation;
5907 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005908 return mLandscapeRotation;
5909
5910 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005911 // Return reverse portrait unless overridden.
5912 if (isAnyPortrait(preferredRotation)) {
5913 return preferredRotation;
5914 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005915 return mUpsideDownRotation;
5916
5917 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005918 // Return seascape unless overridden.
5919 if (isLandscapeOrSeascape(preferredRotation)) {
5920 return preferredRotation;
5921 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005922 return mSeascapeRotation;
5923
5924 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005925 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005926 // Return either landscape rotation.
5927 if (isLandscapeOrSeascape(preferredRotation)) {
5928 return preferredRotation;
5929 }
5930 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005931 return lastRotation;
5932 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005933 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005934
Jeff Brown01a98dd2011-09-20 15:08:29 -07005935 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005936 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005937 // Return either portrait rotation.
5938 if (isAnyPortrait(preferredRotation)) {
5939 return preferredRotation;
5940 }
5941 if (isAnyPortrait(lastRotation)) {
5942 return lastRotation;
5943 }
5944 return mPortraitRotation;
5945
5946 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005947 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5948 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005949 if (preferredRotation >= 0) {
5950 return preferredRotation;
5951 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005952 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005953 }
5954 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005955 }
5956
Jeff Brown01a98dd2011-09-20 15:08:29 -07005957 @Override
5958 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5959 switch (orientation) {
5960 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5961 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5962 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5963 return isAnyPortrait(rotation);
5964
5965 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5966 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5967 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5968 return isLandscapeOrSeascape(rotation);
5969
5970 default:
5971 return true;
5972 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005973 }
5974
Jeff Brownc0347aa2011-09-23 17:26:09 -07005975 @Override
5976 public void setRotationLw(int rotation) {
5977 mOrientationListener.setCurrentRotation(rotation);
5978 }
5979
Jeff Brown01a98dd2011-09-20 15:08:29 -07005980 private boolean isLandscapeOrSeascape(int rotation) {
5981 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005982 }
5983
Jeff Brown01a98dd2011-09-20 15:08:29 -07005984 private boolean isAnyPortrait(int rotation) {
5985 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005986 }
5987
Jose Lima9546b202014-07-02 17:21:51 -07005988 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005989 public int getUserRotationMode() {
5990 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005991 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5992 WindowManagerPolicy.USER_ROTATION_FREE :
5993 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005994 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005995
5996 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005997 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005998 public void setUserRotationMode(int mode, int rot) {
5999 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006000
6001 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006002 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006003 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006004 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006005 rot,
6006 UserHandle.USER_CURRENT);
6007 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006008 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006009 0,
6010 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006011 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006012 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006013 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006014 1,
6015 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006016 }
6017 }
6018
Jose Lima9546b202014-07-02 17:21:51 -07006019 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006020 public void setSafeMode(boolean safeMode) {
6021 mSafeMode = safeMode;
6022 performHapticFeedbackLw(null, safeMode
6023 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6024 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006025 }
Craig Mautnereda67292013-04-28 13:50:14 -07006026
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006027 static long[] getLongIntArray(Resources r, int resid) {
6028 int[] ar = r.getIntArray(resid);
6029 if (ar == null) {
6030 return null;
6031 }
6032 long[] out = new long[ar.length];
6033 for (int i=0; i<ar.length; i++) {
6034 out[i] = ar[i];
6035 }
6036 return out;
6037 }
Craig Mautnereda67292013-04-28 13:50:14 -07006038
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006039 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006040 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006041 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006042 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006043 mKeyguardDelegate.onSystemReady();
6044
Michael Wright3818c922014-09-02 13:59:07 -07006045 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006046 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006047 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006048 synchronized (mLock) {
6049 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006050 mSystemReady = true;
6051 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006052 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006053 public void run() {
6054 updateSettings();
6055 }
6056 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006057
6058 bindKeyguardNow = mDeferBindKeyguard;
6059 if (bindKeyguardNow) {
6060 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6061 mDeferBindKeyguard = false;
6062 }
6063 }
6064
6065 if (bindKeyguardNow) {
6066 mKeyguardDelegate.bindService(mContext);
6067 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006068 }
6069 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006070
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006071 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006072 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006073 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006074 boolean bindKeyguardNow = false;
6075 synchronized (mLock) {
6076 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6077 // in systemReady if not.
6078 if (mKeyguardDelegate != null) {
6079 bindKeyguardNow = true;
6080 } else {
6081 // Because mKeyguardDelegate is null, we know that the synchronized block in
6082 // systemReady didn't run yet and setting this will actually have an effect.
6083 mDeferBindKeyguard = true;
6084 }
6085 }
6086 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006087 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006088 mKeyguardDelegate.onBootCompleted();
6089 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006090 synchronized (mLock) {
6091 mSystemBooted = true;
6092 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006093 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006094 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006095 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006096 }
6097
Dianne Hackborn661cd522011-08-22 00:26:20 -07006098 ProgressDialog mBootMsgDialog = null;
6099
6100 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006101 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006102 public void showBootMessage(final CharSequence msg, final boolean always) {
6103 mHandler.post(new Runnable() {
6104 @Override public void run() {
6105 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006106 int theme;
6107 if (mContext.getPackageManager().hasSystemFeature(
6108 PackageManager.FEATURE_WATCH)) {
6109 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6110 } else if (mContext.getPackageManager().hasSystemFeature(
6111 PackageManager.FEATURE_TELEVISION)) {
6112 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6113 } else {
6114 theme = 0;
6115 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006116
6117 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006118 // This dialog will consume all events coming in to
6119 // it, to avoid it trying to do things too early in boot.
6120 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6121 return true;
6122 }
6123 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6124 return true;
6125 }
6126 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6127 return true;
6128 }
6129 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6130 return true;
6131 }
6132 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6133 return true;
6134 }
6135 @Override public boolean dispatchPopulateAccessibilityEvent(
6136 AccessibilityEvent event) {
6137 return true;
6138 }
6139 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006140 if (mContext.getPackageManager().isUpgrade()) {
6141 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6142 } else {
6143 mBootMsgDialog.setTitle(R.string.android_start_title);
6144 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006145 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6146 mBootMsgDialog.setIndeterminate(true);
6147 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006148 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006149 mBootMsgDialog.getWindow().addFlags(
6150 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6151 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6152 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006153 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6154 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6155 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006156 mBootMsgDialog.setCancelable(false);
6157 mBootMsgDialog.show();
6158 }
6159 mBootMsgDialog.setMessage(msg);
6160 }
6161 });
6162 }
6163
6164 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006165 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006166 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006167 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006168 }
6169
Mike Lockwood28569302010-01-28 11:54:40 -05006170 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006171 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006172 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006173 // ***************************************
6174 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6175 // ***************************************
6176 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6177 // WITH ITS LOCKS HELD.
6178 //
6179 // This code must be VERY careful about the locks
6180 // it acquires.
6181 // In fact, the current code acquires way too many,
6182 // and probably has lurking deadlocks.
6183
Mike Lockwood28569302010-01-28 11:54:40 -05006184 synchronized (mScreenLockTimeout) {
6185 if (mLockScreenTimerActive) {
6186 // reset the timer
6187 mHandler.removeCallbacks(mScreenLockTimeout);
6188 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6189 }
6190 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006191 }
6192
Adam Cohenf7522022012-10-03 20:03:18 -07006193 class ScreenLockTimeout implements Runnable {
6194 Bundle options;
6195
6196 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006197 public void run() {
6198 synchronized (this) {
6199 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006200 if (mKeyguardDelegate != null) {
6201 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006202 }
Mike Lockwood28569302010-01-28 11:54:40 -05006203 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006204 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006205 }
6206 }
Mike Lockwood28569302010-01-28 11:54:40 -05006207
Adam Cohenf7522022012-10-03 20:03:18 -07006208 public void setLockOptions(Bundle options) {
6209 this.options = options;
6210 }
6211 }
6212
6213 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6214
Jose Lima9546b202014-07-02 17:21:51 -07006215 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006216 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006217 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6218 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006219 if (options != null) {
6220 // In case multiple calls are made to lockNow, we don't wipe out the options
6221 // until the runnable actually executes.
6222 mScreenLockTimeout.setLockOptions(options);
6223 }
Jim Miller93c518e2012-01-17 15:55:31 -08006224 mHandler.post(mScreenLockTimeout);
6225 }
6226
Mike Lockwood28569302010-01-28 11:54:40 -05006227 private void updateLockScreenTimeout() {
6228 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006229 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006230 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006231 if (mLockScreenTimerActive != enable) {
6232 if (enable) {
6233 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6234 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6235 } else {
6236 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6237 mHandler.removeCallbacks(mScreenLockTimeout);
6238 }
6239 mLockScreenTimerActive = enable;
6240 }
6241 }
6242 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006243
Jeff Brown061ea992015-04-17 19:55:47 -07006244 private void updateDreamingSleepToken(boolean acquire) {
6245 if (acquire) {
6246 if (mDreamingSleepToken == null) {
6247 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6248 }
6249 } else {
6250 if (mDreamingSleepToken != null) {
6251 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006252 mDreamingSleepToken = null;
6253 }
6254 }
6255 }
6256
6257 private void updateScreenOffSleepToken(boolean acquire) {
6258 if (acquire) {
6259 if (mScreenOffSleepToken == null) {
6260 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6261 }
6262 } else {
6263 if (mScreenOffSleepToken != null) {
6264 mScreenOffSleepToken.release();
6265 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006266 }
6267 }
6268 }
6269
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006270 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006271 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006272 public void enableScreenAfterBoot() {
6273 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006274 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006275 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006276 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006277
Jeff Brownc458ce92012-04-30 14:58:40 -07006278 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006279 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006280 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006281 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006282 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006283 }
Jeff Browna20dda42014-05-27 20:57:24 -07006284
6285 synchronized (mLock) {
6286 updateWakeGestureListenerLp();
6287 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006288 }
6289
Jeff Brown4f5fa282014-06-12 19:19:15 -07006290 void updateUiMode() {
6291 if (mUiModeManager == null) {
6292 mUiModeManager = IUiModeManager.Stub.asInterface(
6293 ServiceManager.getService(Context.UI_MODE_SERVICE));
6294 }
6295 try {
6296 mUiMode = mUiModeManager.getCurrentModeType();
6297 } catch (RemoteException e) {
6298 }
6299 }
6300
Jeff Brown01a98dd2011-09-20 15:08:29 -07006301 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006302 try {
6303 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006304 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6305 } catch (RemoteException e) {
6306 // Ignore
6307 }
6308 }
6309
6310 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6311 try {
6312 //set orientation on WindowManager
6313 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006314 } catch (RemoteException e) {
6315 // Ignore
6316 }
6317 }
6318
Daniel Sandler6396c722013-04-16 20:19:09 -04006319 /**
6320 * Return an Intent to launch the currently active dock app as home. Returns
6321 * null if the standard home should be launched, which is the case if any of the following is
6322 * true:
6323 * <ul>
6324 * <li>The device is not in either car mode or desk mode
6325 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6326 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6327 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6328 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6329 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006330 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006331 */
6332 Intent createHomeDockIntent() {
6333 Intent intent = null;
6334
6335 // What home does is based on the mode, not the dock state. That
6336 // is, when in car mode you should be taken to car home regardless
6337 // of whether we are actually in a car dock.
6338 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6339 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6340 intent = mCarDockIntent;
6341 }
6342 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6343 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6344 intent = mDeskDockIntent;
6345 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006346 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6347 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6348 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6349 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6350 // Always launch dock home from home when watch is docked, if it exists.
6351 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006352 }
6353
6354 if (intent == null) {
6355 return null;
6356 }
6357
6358 ActivityInfo ai = null;
6359 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6360 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006361 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006362 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006363 if (info != null) {
6364 ai = info.activityInfo;
6365 }
6366 if (ai != null
6367 && ai.metaData != null
6368 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6369 intent = new Intent(intent);
6370 intent.setClassName(ai.packageName, ai.name);
6371 return intent;
6372 }
6373
6374 return null;
6375 }
6376
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006377 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6378 if (awakenFromDreams) {
6379 awakenDreams();
6380 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006381
6382 Intent dock = createHomeDockIntent();
6383 if (dock != null) {
6384 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006385 if (fromHomeKey) {
6386 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6387 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006388 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006389 return;
6390 } catch (ActivityNotFoundException e) {
6391 }
6392 }
6393
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006394 Intent intent;
6395
6396 if (fromHomeKey) {
6397 intent = new Intent(mHomeIntent);
6398 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6399 } else {
6400 intent = mHomeIntent;
6401 }
6402
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006403 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006404 }
Craig Mautnereda67292013-04-28 13:50:14 -07006405
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006406 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006407 * goes to the home screen
6408 * @return whether it did anything
6409 */
6410 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006411 if (!isUserSetupComplete()) {
6412 Slog.i(TAG, "Not going home because user setup is in progress.");
6413 return false;
6414 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006415 if (false) {
6416 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006417 try {
6418 ActivityManagerNative.getDefault().stopAppSwitches();
6419 } catch (RemoteException e) {
6420 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006421 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006422 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006423 } else {
6424 // This code brings home to the front or, if it is already
6425 // at the front, puts the device to sleep.
6426 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006427 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6428 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6429 Log.d(TAG, "UTS-TEST-MODE");
6430 } else {
6431 ActivityManagerNative.getDefault().stopAppSwitches();
6432 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006433 Intent dock = createHomeDockIntent();
6434 if (dock != null) {
6435 int result = ActivityManagerNative.getDefault()
6436 .startActivityAsUser(null, null, dock,
6437 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6438 null, null, 0,
6439 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006440 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006441 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6442 return false;
6443 }
6444 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006445 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006446 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006447 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006448 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006449 null, null, 0,
6450 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006451 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006452 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006453 return false;
6454 }
6455 } catch (RemoteException ex) {
6456 // bummer, the activity manager, which is in this process, is dead
6457 }
6458 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006459 return true;
6460 }
Craig Mautnereda67292013-04-28 13:50:14 -07006461
6462 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006463 public void setCurrentOrientationLw(int newOrientation) {
6464 synchronized (mLock) {
6465 if (newOrientation != mCurrentAppOrientation) {
6466 mCurrentAppOrientation = newOrientation;
6467 updateOrientationListenerLp();
6468 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006469 }
6470 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006471
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006472 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6473 if (!isGlobalAccessibilityGestureEnabled()) {
6474 return;
6475 }
6476 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6477 Context.AUDIO_SERVICE);
6478 if (audioManager.isSilentMode()) {
6479 return;
6480 }
6481 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6482 Settings.System.DEFAULT_NOTIFICATION_URI);
6483 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6484 ringTone.play();
6485 }
Craig Mautnereda67292013-04-28 13:50:14 -07006486
Bryce Lee584a4452014-10-21 15:55:55 -07006487 private boolean isTheaterModeEnabled() {
6488 return Settings.Global.getInt(mContext.getContentResolver(),
6489 Settings.Global.THEATER_MODE_ON, 0) == 1;
6490 }
6491
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006492 private boolean isGlobalAccessibilityGestureEnabled() {
6493 return Settings.Global.getInt(mContext.getContentResolver(),
6494 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6495 }
6496
Craig Mautnereda67292013-04-28 13:50:14 -07006497 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006498 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006499 if (!mVibrator.hasVibrator()) {
6500 return false;
6501 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006502 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6503 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006504 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006505 return false;
6506 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006507 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006508 switch (effectId) {
6509 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006510 pattern = mLongPressVibePattern;
6511 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006512 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006513 pattern = mVirtualKeyVibePattern;
6514 break;
6515 case HapticFeedbackConstants.KEYBOARD_TAP:
6516 pattern = mKeyboardTapVibePattern;
6517 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006518 case HapticFeedbackConstants.CLOCK_TICK:
6519 pattern = mClockTickVibePattern;
6520 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006521 case HapticFeedbackConstants.CALENDAR_DATE:
6522 pattern = mCalendarDateVibePattern;
6523 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006524 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006525 pattern = mSafeModeDisabledVibePattern;
6526 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006527 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006528 pattern = mSafeModeEnabledVibePattern;
6529 break;
Mady Mellore8608912015-06-05 09:02:55 -07006530 case HapticFeedbackConstants.CONTEXT_CLICK:
6531 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006532 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006533 default:
6534 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006535 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006536 int owningUid;
6537 String owningPackage;
6538 if (win != null) {
6539 owningUid = win.getOwningUid();
6540 owningPackage = win.getOwningPackage();
6541 } else {
6542 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006543 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006544 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006545 if (pattern.length == 1) {
6546 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006547 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006548 } else {
6549 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006550 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006551 }
6552 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006553 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006554
6555 @Override
6556 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006557 }
6558
Jeff Brownc38c9be2012-10-04 13:16:19 -07006559 @Override
6560 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006561 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006562 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006563 }
6564 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006565
Dianne Hackborndf89e652011-10-06 22:35:11 -07006566 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006567 // If there is no window focused, there will be nobody to handle the events
6568 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006569 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6570 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006571 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006572 return 0;
6573 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006574 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006575 // We are updating at a point where the keyguard has gotten
6576 // focus, but we were last in a state where the top window is
6577 // hiding it. This is probably because the keyguard as been
6578 // shown while the top window was displayed, so we want to ignore
6579 // it here because this is just a very transient change and it
6580 // will quickly lose focus once it correctly gets hidden.
6581 return 0;
6582 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006583
John Spurlock1db8b682014-02-18 11:18:59 -05006584 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006585 & ~mResettingSystemUiFlags
6586 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006587 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006588 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006589 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006590 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006591 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006592 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006593 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006594 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006595 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006596 return 0;
6597 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006598 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006599 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006600 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006601 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006602 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006603 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006604 try {
6605 IStatusBarService statusbar = getStatusBarService();
6606 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006607 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006608 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006609 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006610 } catch (RemoteException e) {
6611 // re-acquire status bar service next time it is needed.
6612 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006613 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006614 }
6615 });
6616 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006617 }
6618
Adrian Rooscd3884d2015-02-18 17:25:23 +01006619 private int updateLightStatusBarLw(int vis) {
6620 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6621 ? mStatusBar
6622 : mTopFullscreenOpaqueOrDimmingWindowState;
6623
6624 if (statusColorWin != null) {
6625 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6626 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6627 // its light flag.
6628 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6629 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6630 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6631 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6632 // Otherwise if it's dimming, clear the light flag.
6633 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6634 }
6635 }
6636 return vis;
6637 }
6638
John Spurlock79da8332013-09-20 12:04:47 -04006639 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006640 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006641 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6642 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006643 : mTopFullscreenOpaqueWindowState;
6644 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6645 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6646
John Spurlock27735a42013-08-14 17:57:38 -04006647 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006648 int type = win.getAttrs().type;
6649 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006650 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006651 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6652 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006653 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006654 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6655 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006656 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006657 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6658 }
John Spurlockbd957402013-10-03 11:38:39 -04006659 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006660 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006661
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006662 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006663 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6664 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006665 }
6666
John Spurlock27735a42013-08-14 17:57:38 -04006667 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006668 boolean immersiveSticky =
6669 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006670 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006671 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006672 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006673 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6674 boolean hideStatusBarSysui =
6675 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006676 boolean hideNavBarSysui =
6677 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006678
John Spurlock27735a42013-08-14 17:57:38 -04006679 boolean transientStatusBarAllowed =
6680 mStatusBar != null && (
6681 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006682 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006683 || statusBarHasFocus);
6684
John Spurlockf1a36642013-10-12 17:50:42 -04006685 boolean transientNavBarAllowed =
6686 mNavigationBar != null &&
6687 hideNavBarSysui && immersiveSticky;
6688
Adrian Roosddc8b272015-05-21 16:28:27 -07006689 final long now = SystemClock.uptimeMillis();
6690 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6691 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6692 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6693 // The user performed the panic gesture recently, we're about to hide the bars,
6694 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6695 mPendingPanicGestureUptime = 0;
6696 mStatusBarController.showTransient();
6697 mNavigationBarController.showTransient();
6698 }
6699
John Spurlockf25706f2013-11-07 18:02:43 -05006700 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006701 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006702 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006703 && !transientNavBarAllowed;
6704 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006705 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006706 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006707 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006708 }
John Spurlock27735a42013-08-14 17:57:38 -04006709
Selim Cinekf98702e2015-05-20 22:48:40 -07006710 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6711 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6712 final boolean navAllowedHidden = immersive || immersiveSticky;
6713
Selim Cinekd6623612015-05-22 18:56:22 -07006714 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6715 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006716 // We can't hide the navbar from this window otherwise the input consumer would not get
6717 // the input events.
6718 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6719 }
6720
John Spurlock27735a42013-08-14 17:57:38 -04006721 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6722
6723 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006724 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6725 boolean newImmersiveMode = isImmersiveMode(vis);
6726 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006727 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006728 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6729 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006730 }
John Spurlock27735a42013-08-14 17:57:38 -04006731
John Spurlockf1a36642013-10-12 17:50:42 -04006732 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6733
John Spurlocke1f366f2013-08-05 12:22:40 -04006734 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006735 }
6736
John Spurlockf1a36642013-10-12 17:50:42 -04006737 private void clearClearableFlagsLw() {
6738 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6739 if (newVal != mResettingSystemUiFlags) {
6740 mResettingSystemUiFlags = newVal;
6741 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6742 }
6743 }
6744
6745 private boolean isImmersiveMode(int vis) {
6746 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006747 return mNavigationBar != null
6748 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006749 && (vis & flags) != 0
6750 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006751 }
6752
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006753 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006754 * @return whether the navigation or status bar can be made translucent
6755 *
6756 * This should return true unless touch exploration is not enabled or
6757 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006758 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006759 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006760 return mTranslucentDecorEnabled
6761 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006762 }
6763
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006764 // Use this instead of checking config_showNavigationBar so that it can be consistently
6765 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006766 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006767 public boolean hasNavigationBar() {
6768 return mHasNavigationBar;
6769 }
6770
satok1bc0a492012-04-25 22:47:12 +09006771 @Override
6772 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6773 mLastInputMethodWindow = ime;
6774 mLastInputMethodTargetWindow = target;
6775 }
6776
Craig Mautnerf1b67412012-09-19 13:18:29 -07006777 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006778 public int getInputMethodWindowVisibleHeightLw() {
6779 return mDockBottom - mCurBottom;
6780 }
6781
6782 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006783 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006784 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006785 if (mKeyguardDelegate != null) {
6786 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006787 }
John Spurlock13451a22012-09-28 14:40:41 -04006788 if (mStatusBarService != null) {
6789 try {
6790 mStatusBarService.setCurrentUser(newUserId);
6791 } catch (RemoteException e) {
6792 // oh well
6793 }
6794 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006795 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006796 }
6797
6798 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006799 public boolean canMagnifyWindow(int windowType) {
6800 switch (windowType) {
6801 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6802 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6803 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6804 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6805 return false;
6806 }
6807 }
6808 return true;
6809 }
6810
6811 @Override
6812 public boolean isTopLevelWindow(int windowType) {
6813 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6814 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6815 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6816 }
6817 return true;
6818 }
6819
Jim Miller4eeb4f62012-11-08 00:04:29 -08006820 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006821 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006822 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006823 pw.print(" mSystemReady="); pw.print(mSystemReady);
6824 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006825 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006826 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006827 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006828 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006829 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6830 || mForceClearedSystemUiFlags != 0) {
6831 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6832 pw.print(Integer.toHexString(mLastSystemUiFlags));
6833 pw.print(" mResettingSystemUiFlags=0x");
6834 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6835 pw.print(" mForceClearedSystemUiFlags=0x");
6836 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006837 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006838 if (mLastFocusNeedsMenu) {
6839 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6840 pw.println(mLastFocusNeedsMenu);
6841 }
Jeff Browna20dda42014-05-27 20:57:24 -07006842 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6843 pw.println(mWakeGestureEnabledSetting);
6844
Jeff Brownbcdfc622014-03-06 19:13:04 -08006845 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006846 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6847 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006848 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6849 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6850 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6851 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006852 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006853 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006854 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6855 pw.print(mCarDockEnablesAccelerometer);
6856 pw.print(" mDeskDockEnablesAccelerometer=");
6857 pw.println(mDeskDockEnablesAccelerometer);
6858 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6859 pw.print(mLidKeyboardAccessibility);
6860 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006861 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006862 pw.print(prefix);
6863 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6864 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006865 pw.print(prefix);
6866 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6867 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006868 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006869 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6870 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6871 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6872 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6873 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6874 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6875 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006876 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6877 pw.print(","); pw.print(mOverscanScreenTop);
6878 pw.print(") "); pw.print(mOverscanScreenWidth);
6879 pw.print("x"); pw.println(mOverscanScreenHeight);
6880 if (mOverscanLeft != 0 || mOverscanTop != 0
6881 || mOverscanRight != 0 || mOverscanBottom != 0) {
6882 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6883 pw.print(" top="); pw.print(mOverscanTop);
6884 pw.print(" right="); pw.print(mOverscanRight);
6885 pw.print(" bottom="); pw.println(mOverscanBottom);
6886 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006887 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6888 pw.print(mRestrictedOverscanScreenLeft);
6889 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6890 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6891 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006892 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6893 pw.print(","); pw.print(mUnrestrictedScreenTop);
6894 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6895 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6896 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6897 pw.print(","); pw.print(mRestrictedScreenTop);
6898 pw.print(") "); pw.print(mRestrictedScreenWidth);
6899 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006900 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6901 pw.print(","); pw.print(mStableFullscreenTop);
6902 pw.print(")-("); pw.print(mStableFullscreenRight);
6903 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006904 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6905 pw.print(","); pw.print(mStableTop);
6906 pw.print(")-("); pw.print(mStableRight);
6907 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006908 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6909 pw.print(","); pw.print(mSystemTop);
6910 pw.print(")-("); pw.print(mSystemRight);
6911 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006912 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6913 pw.print(","); pw.print(mCurTop);
6914 pw.print(")-("); pw.print(mCurRight);
6915 pw.print(","); pw.print(mCurBottom); pw.println(")");
6916 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6917 pw.print(","); pw.print(mContentTop);
6918 pw.print(")-("); pw.print(mContentRight);
6919 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006920 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6921 pw.print(","); pw.print(mVoiceContentTop);
6922 pw.print(")-("); pw.print(mVoiceContentRight);
6923 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006924 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6925 pw.print(","); pw.print(mDockTop);
6926 pw.print(")-("); pw.print(mDockRight);
6927 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006928 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6929 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006930 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6931 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006932 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6933 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006934 if (mLastInputMethodWindow != null) {
6935 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6936 pw.println(mLastInputMethodWindow);
6937 }
6938 if (mLastInputMethodTargetWindow != null) {
6939 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6940 pw.println(mLastInputMethodTargetWindow);
6941 }
6942 if (mStatusBar != null) {
6943 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006944 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6945 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006946 }
6947 if (mNavigationBar != null) {
6948 pw.print(prefix); pw.print("mNavigationBar=");
6949 pw.println(mNavigationBar);
6950 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006951 if (mFocusedWindow != null) {
6952 pw.print(prefix); pw.print("mFocusedWindow=");
6953 pw.println(mFocusedWindow);
6954 }
6955 if (mFocusedApp != null) {
6956 pw.print(prefix); pw.print("mFocusedApp=");
6957 pw.println(mFocusedApp);
6958 }
6959 if (mWinDismissingKeyguard != null) {
6960 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6961 pw.println(mWinDismissingKeyguard);
6962 }
6963 if (mTopFullscreenOpaqueWindowState != null) {
6964 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6965 pw.println(mTopFullscreenOpaqueWindowState);
6966 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006967 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6968 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6969 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6970 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006971 if (mForcingShowNavBar) {
6972 pw.print(prefix); pw.print("mForcingShowNavBar=");
6973 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6974 pw.println(mForcingShowNavBarLayer);
6975 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006976 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006977 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006978 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6979 pw.print(" mForceStatusBarFromKeyguard=");
6980 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006981 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006982 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006983 pw.print(" mHomePressed="); pw.println(mHomePressed);
6984 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6985 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6986 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6987 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6988 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6989 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6990 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6991 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6992 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6993 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006994 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6995 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6996 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006997
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006998 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006999 mStatusBarController.dump(pw, prefix);
7000 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007001 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007002
Jeff Browna20dda42014-05-27 20:57:24 -07007003 if (mWakeGestureListener != null) {
7004 mWakeGestureListener.dump(pw, prefix);
7005 }
Jeff Brown600f0032014-05-22 17:06:00 -07007006 if (mOrientationListener != null) {
7007 mOrientationListener.dump(pw, prefix);
7008 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007009 if (mBurnInProtectionHelper != null) {
7010 mBurnInProtectionHelper.dump(prefix, pw);
7011 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007012 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007013}