blob: d31c6e9b5addeec0bd65f675e7fdac55ede2e105 [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;
John Spurlock7b414672014-07-18 13:02:39 -040047import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080048import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050049import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080050import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070051import android.media.Ringtone;
52import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070053import android.media.session.MediaSessionLegacyHelper;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070054import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080055import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070056import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080057import android.os.Handler;
58import android.os.IBinder;
Dianne Hackbornb6683c42015-06-18 17:40:33 -070059import android.os.IDeviceIdleController;
Jeff Brown32cbc38552011-12-01 14:01:49 -080060import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070061import android.os.Message;
62import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080063import android.os.PowerManager;
64import android.os.RemoteException;
65import android.os.ServiceManager;
66import android.os.SystemClock;
67import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080068import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070069import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080070import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070071import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080072import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070073import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040074import android.service.dreams.DreamService;
75import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070076import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070077import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070078import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080079import android.util.EventLog;
80import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070081import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080082import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070083import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080084import android.view.Gravity;
85import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080086import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080087import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070088import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070089import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080090import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080091import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080092import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080093import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080094import android.view.KeyEvent;
95import android.view.MotionEvent;
Adam Powell6711f3b2015-05-06 15:57:09 -070096import com.android.internal.policy.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080097import android.view.Surface;
98import android.view.View;
99import android.view.ViewConfiguration;
100import android.view.Window;
101import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800102import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700103import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800104import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800105import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800106import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800107import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200108import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800109import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800110import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800111import com.android.internal.statusbar.IStatusBarService;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700112import com.android.internal.util.ScreenShapeHelper;
Craig Mautnerae446592012-12-06 19:05:05 -0800113import com.android.internal.widget.PointerLocationView;
Craig Mautner8a0da012014-05-31 15:13:37 -0700114import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100115import com.android.server.policy.keyguard.KeyguardServiceDelegate;
116import com.android.server.policy.keyguard.KeyguardServiceDelegate.ShowListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800117
118import java.io.File;
119import java.io.FileReader;
120import java.io.IOException;
121import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700122import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800123import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800124
Dianne Hackbornc652de82013-02-15 16:32:56 -0800125import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700126import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
127import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
128import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700129import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
130import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
131import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800132
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800133/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700134 * WindowManagerPolicy implementation for the Android phone UI. This
135 * introduces a new method suffix, Lp, for an internal lock of the
136 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400137 * 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 -0700138 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800139 */
140public class PhoneWindowManager implements WindowManagerPolicy {
141 static final String TAG = "WindowManager";
142 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700143 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700144 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700145 static final boolean DEBUG_KEYGUARD = false;
146 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700147 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700148 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800149 static final boolean SHOW_STARTING_ANIMATIONS = true;
150 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400151
Daniel Sandler6396c722013-04-16 20:19:09 -0400152 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
153 // No longer recommended for desk docks; still useful in car docks.
154 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
155 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
156
Jeff Brown6d8fd272014-05-20 21:24:38 -0700157 static final int SHORT_PRESS_POWER_NOTHING = 0;
158 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
159 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
160 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800161 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700162
Joe Onoratod208e702010-10-08 16:22:43 -0400163 static final int LONG_PRESS_POWER_NOTHING = 0;
164 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
165 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700166 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700167
Jeff Brown13f00f02014-10-31 14:45:50 -0700168 static final int MULTI_PRESS_POWER_NOTHING = 0;
169 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
170 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
171
Michael Jurka3b1fc472011-06-13 10:54:40 -0700172 // These need to match the documentation/constant in
173 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800174 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800175 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700176 static final int LONG_PRESS_HOME_ASSIST = 2;
177
178 static final int DOUBLE_TAP_HOME_NOTHING = 0;
179 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800180
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000181 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
182 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
183
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700184 static final int APPLICATION_MEDIA_SUBLAYER = -2;
185 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800186 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800187 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700188 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700189
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800190 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
191 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
192 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500193 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700194 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800195
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700196 /**
197 * These are the system UI flags that, when changing, can cause the layout
198 * of the screen to change.
199 */
200 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400201 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400202 | View.SYSTEM_UI_FLAG_FULLSCREEN
203 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200204 | View.NAVIGATION_BAR_TRANSLUCENT
205 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700206
John Spurlock7b414672014-07-18 13:02:39 -0400207 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
208 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
209 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
210 .build();
211
Adrian Roosddc8b272015-05-21 16:28:27 -0700212 // The panic gesture may become active only after the keyguard is dismissed and the immersive
213 // app shows again. If that doesn't happen for 30s we drop the gesture.
214 private static final long PANIC_GESTURE_EXPIRATION = 30000;
215
Jim Miller5ecd8112013-01-09 18:50:26 -0800216 /**
217 * Keyguard stuff
218 */
219 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100220 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700221 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800222
Jeff Brown6651a632011-11-28 12:59:11 -0800223 /* Table of Application Launch keys. Maps from key codes to intent categories.
224 *
225 * These are special keys that are used to launch particular kinds of applications,
226 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
227 * usage page. We don't support quite that many yet...
228 */
229 static SparseArray<String> sApplicationLaunchKeyCategories;
230 static {
231 sApplicationLaunchKeyCategories = new SparseArray<String>();
232 sApplicationLaunchKeyCategories.append(
233 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
234 sApplicationLaunchKeyCategories.append(
235 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
236 sApplicationLaunchKeyCategories.append(
237 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
238 sApplicationLaunchKeyCategories.append(
239 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
240 sApplicationLaunchKeyCategories.append(
241 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
242 sApplicationLaunchKeyCategories.append(
243 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
244 }
245
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700246 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000247 static final int WAITING_FOR_DRAWN_TIMEOUT = 500;
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700248
Dianne Hackborndf89e652011-10-06 22:35:11 -0700249 /**
250 * Lock protecting internal state. Must not call out into window
251 * manager with lock held. (This lock will be acquired in places
252 * where the window manager is calling in with its own lock held.)
253 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800254 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700255
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800256 Context mContext;
257 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700258 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700259 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700260 PowerManager mPowerManager;
Jeff Brown061ea992015-04-17 19:55:47 -0700261 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700262 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400263 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700264 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700265 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800266 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700267 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800268 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000269 BurnInProtectionHelper mBurnInProtectionHelper;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800270
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700271 // Vibrator pattern for haptic feedback of a long press.
272 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700273
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700274 // Vibrator pattern for haptic feedback of virtual key press.
275 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700276
Amith Yamasanic33cb712010-02-10 15:21:49 -0800277 // Vibrator pattern for a short vibration.
278 long[] mKeyboardTapVibePattern;
279
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700280 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
281 long[] mClockTickVibePattern;
282
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700283 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
284 long[] mCalendarDateVibePattern;
285
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700286 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
287 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700288
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700289 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
290 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700291
Mady Mellore8608912015-06-05 09:02:55 -0700292 // Vibrator pattern for haptic feedback of a context click.
293 long[] mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -0700294
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800295 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
296 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400297
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800298 boolean mSafeMode;
299 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700300 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400301 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400302 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700303 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400304 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
305 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
306 int[] mNavigationBarHeightForRotation = new int[4];
307 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400308
Craig Mautnera631d492014-08-05 15:16:01 -0700309 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800310 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700311 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700312 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700313 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700314 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
315 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
316 }
317 };
318 final ShowListener mKeyguardDelegateCallback = new ShowListener() {
319 @Override
320 public void onShown(IBinder windowToken) {
321 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onShown.");
322 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
323 }
324 };
325
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800326 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800327 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900328 WindowState mLastInputMethodWindow = null;
329 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800330
Jeff Brown13f00f02014-10-31 14:45:50 -0700331 // FIXME This state is shared between the input reader and handler thread.
332 // Technically it's broken and buggy but it has been like this for many years
333 // and we have not yet seen any problems. Someday we'll rewrite this logic
334 // so that only one thread is involved in handling input policy. Unfortunately
335 // it's on a critical path for power management so we can't just post the work to the
336 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
337 // to hold wakelocks during dispatch and eliminating the critical path.
338 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800339 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700340 volatile int mPowerKeyPressCounter;
341 volatile boolean mEndCallKeyHandled;
342
Winson Chungd42a6cf2014-06-03 16:24:04 -0700343 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700344 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700345 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800346
Jeff Brown2e7760e2012-04-11 15:14:55 -0700347 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700348 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700349 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800350
Dianne Hackbornc777e072010-02-12 13:07:59 -0800351 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700352 boolean mSystemBooted;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800353 boolean mHdmiPlugged;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700354 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400355 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700356 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700357 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400358 int mCarDockRotation;
359 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700360 int mUndockedHdmiRotation;
361 int mDemoHdmiRotation;
362 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800363 int mDemoRotation;
364 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400365
Jeff Browna20dda42014-05-27 20:57:24 -0700366 boolean mWakeGestureEnabledSetting;
367 MyWakeGestureListener mWakeGestureListener;
368
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700369 // Default display does not rotate, apps that require non-default orientation will have to
370 // have the orientation emulated.
371 private boolean mForceDefaultOrientation = false;
372
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400373 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
374 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700375 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400376
Jeff Brownbcdfc622014-03-06 19:13:04 -0800377 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700378 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400379 boolean mCarDockEnablesAccelerometer;
380 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700381 int mLidKeyboardAccessibility;
382 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700383 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700384 int mShortPressOnPowerBehavior;
385 int mLongPressOnPowerBehavior;
386 int mDoublePressOnPowerBehavior;
387 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000388 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700389 boolean mAwake;
390 boolean mScreenOnEarly;
391 boolean mScreenOnFully;
392 ScreenOnListener mScreenOnListener;
393 boolean mKeyguardDrawComplete;
394 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800395 boolean mOrientationSensorEnabled = false;
396 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800397 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400398 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800399 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700400
Jeff Brown70825162012-03-28 17:27:48 -0700401 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800402
403 // The last window we were told about in focusChanged.
404 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800405 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800406
Jeff Brown70825162012-03-28 17:27:48 -0700407 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800408
Dianne Hackbornc652de82013-02-15 16:32:56 -0800409 // The current size of the screen; really; extends into the overscan area of
410 // the screen and doesn't account for any system elements like the status bar.
411 int mOverscanScreenLeft, mOverscanScreenTop;
412 int mOverscanScreenWidth, mOverscanScreenHeight;
413 // The current visible size of the screen; really; (ir)regardless of whether the status
414 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800415 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
416 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800417 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
418 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
419 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700420 // The current size of the screen; these may be different than (0,0)-(dw,dh)
421 // if the status bar can't be hidden; in that case it effectively carves out
422 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800423 int mRestrictedScreenLeft, mRestrictedScreenTop;
424 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700425 // During layout, the current screen borders accounting for any currently
426 // visible system UI elements.
427 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700428 // For applications requesting stable content insets, these are them.
429 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700430 // For applications requesting stable content insets but have also set the
431 // fullscreen window flag, these are the stable dimensions without the status bar.
432 int mStableFullscreenLeft, mStableFullscreenTop;
433 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800434 // During layout, the current screen borders with all outer decoration
435 // (status bar, input method dock) accounted for.
436 int mCurLeft, mCurTop, mCurRight, mCurBottom;
437 // During layout, the frame in which content should be displayed
438 // to the user, accounting for all screen decoration except for any
439 // space they deem as available for other content. This is usually
440 // the same as mCur*, but may be larger if the screen decor has supplied
441 // content insets.
442 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700443 // During layout, the frame in which voice content should be displayed
444 // to the user, accounting for all screen decoration except for any
445 // space they deem as available for other content.
446 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800447 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800448 // windows are placed.
449 int mDockLeft, mDockTop, mDockRight, mDockBottom;
450 // During layout, the layer at which the doc window is placed.
451 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700452 // During layout, this is the layer of the status bar.
453 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700454 int mLastSystemUiFlags;
455 // Bits that we are in the process of clearing, so we want to prevent
456 // them from being set by applications until everything has been updated
457 // to have them clear.
458 int mResettingSystemUiFlags = 0;
459 // Bits that we are currently always keeping cleared.
460 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800461 // What we last reported to system UI about whether the compatibility
462 // menu needs to be displayed.
463 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700464 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
465 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700466
Selim Cinekf83e8242015-05-19 18:08:14 -0700467 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700468
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800469 static final Rect mTmpParentFrame = new Rect();
470 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800471 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800472 static final Rect mTmpContentFrame = new Rect();
473 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400474 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700475 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700476 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700477 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700478
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800479 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100480 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700481 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200482 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400483 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800484 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700485 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700486 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700487 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800488 boolean mForcingShowNavBar;
489 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700490
491 // States of keyguard dismiss.
492 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
493 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
494 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
495 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
496
497 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
498 * be done once per window. */
499 private WindowState mWinDismissingKeyguard;
500
tingna_sunge785ffa2015-05-12 13:23:15 +0800501 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
502 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
503 * lock SIM card. This variable is used to record the previous keyguard secure state for
504 * monitoring secure state change on window dismissing keyguard. */
505 private boolean mSecureDismissingKeyguard;
506
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700507 /** The window that is currently showing "over" the keyguard. If there is an app window
508 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
509 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
510 * the wallpaper. */
511 private WindowState mWinShowWhenLocked;
512
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700513 boolean mShowingLockscreen;
514 boolean mShowingDream;
515 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700516 boolean mDreamingSleepTokenNeeded;
517 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700518 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700519 boolean mKeyguardSecure;
520 boolean mKeyguardSecureIncludingHidden;
521 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800522 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700523 boolean mHomeConsumed;
524 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800525 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700526 Intent mCarDockIntent;
527 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700528 boolean mSearchKeyShortcutPending;
529 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700530 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700531 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800532
Mike Lockwood28569302010-01-28 11:54:40 -0500533 // support for activating the lock screen while the screen is on
534 boolean mAllowLockscreenWhenOn;
535 int mLockScreenTimeout;
536 boolean mLockScreenTimerActive;
537
David Brownbaf8d092010-03-08 21:52:59 -0800538 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800539 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800540
541 // Behavior of POWER button while in-call and screen on.
542 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
543 int mIncallPowerBehavior;
544
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700545 Display mDisplay;
546
Dianne Hackborn9d132642011-04-21 17:26:39 -0700547 int mLandscapeRotation = 0; // default landscape rotation
548 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
549 int mPortraitRotation = 0; // default portrait rotation
550 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700551
Dianne Hackbornc652de82013-02-15 16:32:56 -0800552 int mOverscanLeft = 0;
553 int mOverscanTop = 0;
554 int mOverscanRight = 0;
555 int mOverscanBottom = 0;
556
Joe Onorato46b0d682010-11-22 17:37:27 -0800557 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700558 private int mLongPressOnHomeBehavior;
559
560 // What we do when the user double-taps on home
561 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800562
Bryce Lee584a4452014-10-21 15:55:55 -0700563 // Allowed theater mode wake actions
564 private boolean mAllowTheaterModeWakeFromKey;
565 private boolean mAllowTheaterModeWakeFromPowerKey;
566 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800567 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700568 private boolean mAllowTheaterModeWakeFromCameraLens;
569 private boolean mAllowTheaterModeWakeFromLidSwitch;
570 private boolean mAllowTheaterModeWakeFromWakeGesture;
571
Bryce Leed3b28402015-03-09 15:49:13 +0000572 // Whether to support long press from power button in non-interactive mode
573 private boolean mSupportLongPressPowerWhenNonInteractive;
574
Bryce Lee55e846d2014-11-04 12:43:44 -0800575 // Whether to go to sleep entering theater mode from power button
576 private boolean mGoToSleepOnButtonPressTheaterMode;
577
Winson Chung9112ec32011-06-27 13:15:32 -0700578 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700579 // Time to volume and power must be pressed within this interval of each other.
580 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700581 // Increase the chord delay when taking a screenshot from the keyguard
582 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800583 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700584 private boolean mScreenshotChordVolumeDownKeyTriggered;
585 private long mScreenshotChordVolumeDownKeyTime;
586 private boolean mScreenshotChordVolumeDownKeyConsumed;
587 private boolean mScreenshotChordVolumeUpKeyTriggered;
588 private boolean mScreenshotChordPowerKeyTriggered;
589 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700590
Michael Wrightb854e242013-02-05 17:54:02 -0800591 /* The number of steps between min and max brightness */
592 private static final int BRIGHTNESS_STEPS = 10;
593
Christopher Tate5e08af02012-09-21 17:17:22 -0700594 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800595 ShortcutManager mShortcutManager;
596 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700597 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700598 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800599
Craig Mautnerd625ab22013-09-06 13:40:31 -0700600 private int mCurrentUserId;
601
Justin Kohd378ad72013-04-01 12:18:26 -0700602 // Maps global key codes to the components that will handle them.
603 private GlobalKeyManager mGlobalKeyManager;
604
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700605 // Fallback actions by key code.
606 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
607 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800608
Jorim Jaggi76a16232014-08-08 17:00:47 +0200609 private final LogDecelerateInterpolator mLogDecelerateInterpolator
610 = new LogDecelerateInterpolator(100, 0);
611
Jeff Brown70825162012-03-28 17:27:48 -0700612 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
613 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700614 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
615 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700616 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
617 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
618 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700619 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700620 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700621 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700622 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700623 private static final int MSG_POWER_DELAYED_PRESS = 13;
624 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700625 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jeff Brown70825162012-03-28 17:27:48 -0700626
627 private class PolicyHandler extends Handler {
628 @Override
629 public void handleMessage(Message msg) {
630 switch (msg.what) {
631 case MSG_ENABLE_POINTER_LOCATION:
632 enablePointerLocation();
633 break;
634 case MSG_DISABLE_POINTER_LOCATION:
635 disablePointerLocation();
636 break;
Jeff Brown40013652012-05-16 21:22:36 -0700637 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
638 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
639 break;
640 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
641 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
642 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700643 case MSG_DISPATCH_SHOW_RECENTS:
644 showRecentApps(false);
645 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700646 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
647 showGlobalActionsInternal();
648 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700649 case MSG_KEYGUARD_DRAWN_COMPLETE:
650 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700651 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700652 break;
653 case MSG_KEYGUARD_DRAWN_TIMEOUT:
654 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700655 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700656 break;
657 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
658 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700659 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700660 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700661 case MSG_HIDE_BOOT_MESSAGE:
662 handleHideBootMessage();
663 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700664 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
665 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
666 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700667 case MSG_POWER_DELAYED_PRESS:
668 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
669 finishPowerKeyPress();
670 break;
671 case MSG_POWER_LONG_PRESS:
672 powerLongPress();
673 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700674 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
675 updateDreamingSleepToken(msg.arg1 != 0);
676 break;
Jeff Brown70825162012-03-28 17:27:48 -0700677 }
678 }
679 }
680
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800681 private UEventObserver mHDMIObserver = new UEventObserver() {
682 @Override
683 public void onUEvent(UEventObserver.UEvent event) {
684 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
685 }
686 };
687
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800688 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800689 SettingsObserver(Handler handler) {
690 super(handler);
691 }
David Brownbaf8d092010-03-08 21:52:59 -0800692
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800693 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700694 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800695 ContentResolver resolver = mContext.getContentResolver();
696 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700697 Settings.System.END_BUTTON_BEHAVIOR), false, this,
698 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800699 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700700 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
701 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700702 resolver.registerContentObserver(Settings.Secure.getUriFor(
703 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
704 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800705 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700706 Settings.System.ACCELEROMETER_ROTATION), false, this,
707 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500708 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700709 Settings.System.USER_ROTATION), false, this,
710 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400711 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700712 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
713 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800714 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700715 Settings.System.POINTER_LOCATION), false, this,
716 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800717 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700718 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
719 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500720 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400721 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700722 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500723 resolver.registerContentObserver(Settings.Global.getUriFor(
724 Settings.Global.POLICY_CONTROL), false, this,
725 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800726 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800727 }
728
729 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800730 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700731 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800732 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800733 }
Craig Mautner967212c2013-04-13 21:10:58 -0700734
Jeff Browna20dda42014-05-27 20:57:24 -0700735 class MyWakeGestureListener extends WakeGestureListener {
736 MyWakeGestureListener(Context context, Handler handler) {
737 super(context, handler);
738 }
739
740 @Override
741 public void onWakeUp() {
742 synchronized (mLock) {
743 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700744 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Bryce Lee584a4452014-10-21 15:55:55 -0700745 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture);
Jeff Browna20dda42014-05-27 20:57:24 -0700746 }
747 }
748 }
749 }
750
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800751 class MyOrientationListener extends WindowOrientationListener {
Craig Mautnereee29c42013-01-17 14:44:34 -0800752 MyOrientationListener(Context context, Handler handler) {
753 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800754 }
Craig Mautner967212c2013-04-13 21:10:58 -0700755
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800756 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700757 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700758 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700759 updateRotation(false);
760 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800761 }
762 MyOrientationListener mOrientationListener;
763
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100764 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400765
John Spurlock27735a42013-08-14 17:57:38 -0400766 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400767 View.NAVIGATION_BAR_TRANSIENT,
768 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400769 View.NAVIGATION_BAR_TRANSLUCENT,
770 StatusBarManager.WINDOW_NAVIGATION_BAR,
771 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400772
John Spurlockf1a36642013-10-12 17:50:42 -0400773 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400774
Craig Mautner037aa8d2013-06-07 10:35:44 -0700775 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400776
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700777 IStatusBarService getStatusBarService() {
778 synchronized (mServiceAquireLock) {
779 if (mStatusBarService == null) {
780 mStatusBarService = IStatusBarService.Stub.asInterface(
781 ServiceManager.getService("statusbar"));
782 }
783 return mStatusBarService;
784 }
785 }
786
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700787 /*
788 * We always let the sensor be switched on by default except when
789 * the user has explicitly disabled sensor based rotation or when the
790 * screen is switched off.
791 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700792 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800793 if (mSupportAutoRotation) {
794 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
795 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
796 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
797 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
798 // If the application has explicitly requested to follow the
799 // orientation, then we need to turn the sensor on.
800 return true;
801 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800802 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700803 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800804 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
805 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
806 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400807 // enable accelerometer if we are docked in a dock that enables accelerometer
808 // orientation management,
809 return true;
810 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700811 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800812 // If the setting for using the sensor by default is enabled, then
813 // we will always leave it on. Note that the user could go to
814 // a window that forces an orientation that does not use the
815 // sensor and in theory we could turn it off... however, when next
816 // turning it on we won't have a good value for the current
817 // orientation for a little bit, which can cause orientation
818 // changes to lag, so we'd like to keep it always on. (It will
819 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700820 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800821 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800822 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800823 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700824
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800825 /*
826 * Various use cases for invoking this function
827 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700828 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800829 * if not already enabled
830 * screen turned on and current app does not have sensor orientation, disable listeners if
831 * already enabled
832 * screen turning on and current app has sensor based orientation, enable listeners if needed
833 * screen turning on and current app has nosensor based orientation, do nothing
834 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700835 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800836 if (!mOrientationListener.canDetectOrientation()) {
837 // If sensor is turned off or nonexistent for some reason
838 return;
839 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000840 // Could have been invoked due to screen turning on or off or
841 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700842 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
843 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000844 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
845 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
846 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800847 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000848 // Note: We postpone the rotating of the screen until the keyguard as well as the
849 // window manager have reported a draw complete.
850 if (mScreenOnEarly && mAwake &&
851 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700852 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800853 disable = false;
854 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700855 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800856 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700857 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800858 mOrientationSensorEnabled = true;
859 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700860 }
861 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800862 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700863 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800864 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700865 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800866 mOrientationSensorEnabled = false;
867 }
868 }
869
Jeff Brown13f00f02014-10-31 14:45:50 -0700870 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
871 // Hold a wake lock until the power key is released.
872 if (!mPowerKeyWakeLock.isHeld()) {
873 mPowerKeyWakeLock.acquire();
874 }
875
876 // Cancel multi-press detection timeout.
877 if (mPowerKeyPressCounter != 0) {
878 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
879 }
880
881 // Detect user pressing the power button in panic when an application has
882 // taken over the whole screen.
883 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800884 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700885 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700886 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700887 }
888
889 // Latch power key state to detect screenshot chord.
890 if (interactive && !mScreenshotChordPowerKeyTriggered
891 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
892 mScreenshotChordPowerKeyTriggered = true;
893 mScreenshotChordPowerKeyTime = event.getDownTime();
894 interceptScreenshotChord();
895 }
896
897 // Stop ringing or end call if configured to do so when power is pressed.
898 TelecomManager telecomManager = getTelecommService();
899 boolean hungUp = false;
900 if (telecomManager != null) {
901 if (telecomManager.isRinging()) {
902 // Pressing Power while there's a ringing incoming
903 // call should silence the ringer.
904 telecomManager.silenceRinger();
905 } else if ((mIncallPowerBehavior
906 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
907 && telecomManager.isInCall() && interactive) {
908 // Otherwise, if "Power button ends call" is enabled,
909 // the Power button will hang up any current active call.
910 hungUp = telecomManager.endCall();
911 }
912 }
913
914 // If the power key has still not yet been handled, then detect short
915 // press, long press, or multi press and decide what to do.
916 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
917 || mScreenshotChordVolumeUpKeyTriggered;
918 if (!mPowerKeyHandled) {
919 if (interactive) {
920 // When interactive, we're already awake.
921 // Wait for a long press or for the button to be released to decide what to do.
922 if (hasLongPressOnPowerBehavior()) {
923 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
924 msg.setAsynchronous(true);
925 mHandler.sendMessageDelayed(msg,
926 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
927 }
928 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800929 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800930
Bryce Leed3b28402015-03-09 15:49:13 +0000931 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
932 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
933 msg.setAsynchronous(true);
934 mHandler.sendMessageDelayed(msg,
935 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800936 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000937 } else {
938 final int maxCount = getMaxMultiPressPowerCount();
939
940 if (maxCount <= 1) {
941 mPowerKeyHandled = true;
942 } else {
943 mBeganFromNonInteractive = true;
944 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700945 }
946 }
Jeff Brown4d396052010-10-29 21:50:21 -0700947 }
948 }
949
Jeff Brown13f00f02014-10-31 14:45:50 -0700950 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
951 final boolean handled = canceled || mPowerKeyHandled;
952 mScreenshotChordPowerKeyTriggered = false;
953 cancelPendingScreenshotChordAction();
954 cancelPendingPowerKeyAction();
955
956 if (!handled) {
957 // Figure out how to handle the key now that it has been released.
958 mPowerKeyPressCounter += 1;
959
960 final int maxCount = getMaxMultiPressPowerCount();
961 final long eventTime = event.getDownTime();
962 if (mPowerKeyPressCounter < maxCount) {
963 // This could be a multi-press. Wait a little bit longer to confirm.
964 // Continue holding the wake lock.
965 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
966 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
967 msg.setAsynchronous(true);
968 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
969 return;
970 }
971
972 // No other actions. Handle it immediately.
973 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700974 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700975
976 // Done. Reset our state.
977 finishPowerKeyPress();
978 }
979
980 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -0800981 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -0700982 mPowerKeyPressCounter = 0;
983 if (mPowerKeyWakeLock.isHeld()) {
984 mPowerKeyWakeLock.release();
985 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700986 }
987
988 private void cancelPendingPowerKeyAction() {
989 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700990 mPowerKeyHandled = true;
991 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700992 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700993 }
994
995 private void powerPress(long eventTime, boolean interactive, int count) {
996 if (mScreenOnEarly && !mScreenOnFully) {
997 Slog.i(TAG, "Suppressed redundant power key press while "
998 + "already in the process of turning the screen on.");
999 return;
Jeff Brownff204712011-10-25 21:27:54 -07001000 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001001
1002 if (count == 2) {
1003 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1004 } else if (count == 3) {
1005 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001006 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001007 switch (mShortPressOnPowerBehavior) {
1008 case SHORT_PRESS_POWER_NOTHING:
1009 break;
1010 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1011 mPowerManager.goToSleep(eventTime,
1012 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1013 break;
1014 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1015 mPowerManager.goToSleep(eventTime,
1016 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1017 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1018 break;
1019 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1020 mPowerManager.goToSleep(eventTime,
1021 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1022 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1023 launchHomeFromHotKey();
1024 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001025 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001026 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001027 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001028 }
1029 }
1030 }
1031
1032 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1033 switch (behavior) {
1034 case MULTI_PRESS_POWER_NOTHING:
1035 break;
1036 case MULTI_PRESS_POWER_THEATER_MODE:
1037 if (isTheaterModeEnabled()) {
1038 Slog.i(TAG, "Toggling theater mode off.");
1039 Settings.Global.putInt(mContext.getContentResolver(),
1040 Settings.Global.THEATER_MODE_ON, 0);
1041 if (!interactive) {
1042 wakeUpFromPowerKey(eventTime);
1043 }
1044 } else {
1045 Slog.i(TAG, "Toggling theater mode on.");
1046 Settings.Global.putInt(mContext.getContentResolver(),
1047 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001048
1049 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001050 mPowerManager.goToSleep(eventTime,
1051 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1052 }
1053 }
1054 break;
1055 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001056 Slog.i(TAG, "Starting brightness boost.");
1057 if (!interactive) {
1058 wakeUpFromPowerKey(eventTime);
1059 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001060 mPowerManager.boostScreenBrightness(eventTime);
1061 break;
1062 }
1063 }
1064
1065 private int getMaxMultiPressPowerCount() {
1066 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1067 return 3;
1068 }
1069 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1070 return 2;
1071 }
1072 return 1;
1073 }
1074
1075 private void powerLongPress() {
1076 final int behavior = getResolvedLongPressOnPowerBehavior();
1077 switch (behavior) {
1078 case LONG_PRESS_POWER_NOTHING:
1079 break;
1080 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1081 mPowerKeyHandled = true;
1082 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1083 performAuditoryFeedbackForAccessibilityIfNeed();
1084 }
1085 showGlobalActionsInternal();
1086 break;
1087 case LONG_PRESS_POWER_SHUT_OFF:
1088 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1089 mPowerKeyHandled = true;
1090 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1091 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1092 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1093 break;
1094 }
1095 }
1096
Nick Vaccarob593a812015-05-15 11:23:05 -07001097 private void sleepPress(long eventTime) {
1098 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1099 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1100 }
1101 }
1102
1103 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001104 switch (mShortPressOnSleepBehavior) {
1105 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001106 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001107 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1108 mPowerManager.goToSleep(eventTime,
1109 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001110 break;
1111 }
1112 }
1113
Jeff Brown13f00f02014-10-31 14:45:50 -07001114 private int getResolvedLongPressOnPowerBehavior() {
1115 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1116 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1117 }
1118 return mLongPressOnPowerBehavior;
1119 }
1120
1121 private boolean hasLongPressOnPowerBehavior() {
1122 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001123 }
1124
1125 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001126 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001127 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1128 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001129 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001130 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1131 && now <= mScreenshotChordPowerKeyTime
1132 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1133 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001134 cancelPendingPowerKeyAction();
1135
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001136 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001137 }
1138 }
1139 }
1140
Winson Chung1cea2f32012-10-08 20:42:01 -07001141 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001142 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001143 // Double the time it takes to take a screenshot from the keyguard
1144 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001145 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001146 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001147 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001148 }
1149
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001150 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001151 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001152 }
1153
Jeff Brown13f00f02014-10-31 14:45:50 -07001154 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001155 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001156 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001157 mEndCallKeyHandled = true;
1158 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1159 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001160 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001161 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001162 }
1163 };
1164
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001165 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001166 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001167 public void run() {
1168 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001169 }
1170 };
1171
Alan Viverettee34560b22014-07-10 14:50:06 -07001172 @Override
1173 public void showGlobalActions() {
1174 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1175 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1176 }
1177
1178 void showGlobalActionsInternal() {
1179 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001180 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001181 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001182 }
Jim Millerab954542014-10-10 18:21:49 -07001183 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001184 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1185 if (keyguardShowing) {
1186 // since it took two seconds of long press to bring this up,
1187 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001188 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001189 }
1190 }
1191
1192 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001193 return Settings.Global.getInt(
1194 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001195 }
1196
Maurice Lam99c6e072014-04-28 18:24:28 -07001197 boolean isUserSetupComplete() {
1198 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1199 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1200 }
1201
Jeff Brown13f00f02014-10-31 14:45:50 -07001202 private void handleShortPressOnHome() {
1203 // If there's a dream running then use home to escape the dream
1204 // but don't actually go home.
1205 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1206 mDreamManagerInternal.stopDream(false /*immediate*/);
1207 return;
1208 }
1209
1210 // Go home!
1211 launchHomeFromHotKey();
1212 }
1213
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001214 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001215 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001216 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001217 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001218
Jeff Browncaca8812013-05-09 13:34:33 -07001219 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1220 toggleRecentApps();
1221 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001222 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001223 }
1224 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001225 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001226
Jeff Browncaca8812013-05-09 13:34:33 -07001227 private void handleDoubleTapOnHome() {
1228 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1229 mHomeConsumed = true;
1230 toggleRecentApps();
1231 }
1232 }
1233
1234 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1235 @Override
1236 public void run() {
1237 if (mHomeDoubleTapPending) {
1238 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001239 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001240 }
1241 }
1242 };
1243
Mark Renoufc1256912015-03-11 14:38:23 -04001244 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001245 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001246 }
1247
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001248 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001249 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001250 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001251 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001252 mContext = context;
1253 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001254 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001255 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001256 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001257 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Mark Renoufc1256912015-03-11 14:38:23 -04001258
1259 // Init display burn-in protection
1260 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1261 com.android.internal.R.bool.config_enableBurnInProtection);
1262 // Allow a system property to override this. Used by developer settings.
1263 boolean burnInProtectionDevMode =
1264 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1265 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1266 final int minHorizontal;
1267 final int maxHorizontal;
1268 final int minVertical;
1269 final int maxVertical;
1270 final int maxRadius;
1271 if (burnInProtectionDevMode) {
1272 minHorizontal = -8;
1273 maxHorizontal = 8;
1274 minVertical = -8;
1275 maxVertical = -4;
1276 maxRadius = (isRoundWindow()) ? 6 : -1;
1277 } else {
1278 Resources resources = context.getResources();
1279 minHorizontal = resources.getInteger(
1280 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1281 maxHorizontal = resources.getInteger(
1282 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1283 minVertical = resources.getInteger(
1284 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1285 maxVertical = resources.getInteger(
1286 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1287 maxRadius = resources.getInteger(
1288 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1289 }
1290 mBurnInProtectionHelper = new BurnInProtectionHelper(
1291 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001292 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001293
Jeff Brown70825162012-03-28 17:27:48 -07001294 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001295 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001296 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001297 try {
1298 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1299 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001300 mSettingsObserver = new SettingsObserver(mHandler);
1301 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001302 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001303 mUiMode = context.getResources().getInteger(
1304 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001305 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1306 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1307 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1308 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001309 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1310 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1311 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1312 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1313 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1314 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1315 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1316 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001317
Jeff Brown96307042012-07-27 15:51:34 -07001318 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1319 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001320 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001321 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1322 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001323 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001324 mSupportAutoRotation = mContext.getResources().getBoolean(
1325 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001326 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001327 com.android.internal.R.integer.config_lidOpenRotation);
1328 mCarDockRotation = readRotation(
1329 com.android.internal.R.integer.config_carDockRotation);
1330 mDeskDockRotation = readRotation(
1331 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001332 mUndockedHdmiRotation = readRotation(
1333 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001334 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1335 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1336 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1337 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001338 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1339 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1340 mLidNavigationAccessibility = mContext.getResources().getInteger(
1341 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001342 mLidControlsSleep = mContext.getResources().getBoolean(
1343 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001344 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1345 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001346
1347 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1348 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1349 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1350 || mContext.getResources().getBoolean(
1351 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1352 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1353 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001354 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1355 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001356 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1357 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1358 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1359 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1360 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1361 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1362
Bryce Lee55e846d2014-11-04 12:43:44 -08001363 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1364 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1365
Bryce Leed3b28402015-03-09 15:49:13 +00001366 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1367 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1368
Jeff Brown13f00f02014-10-31 14:45:50 -07001369 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1370 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1371 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1372 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1373 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1374 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1375 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1376 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001377 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1378 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001379
John Spurlock61560172015-02-06 19:46:04 -05001380 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001381
Jeff Brownf71343d2013-05-31 17:59:11 -07001382 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001383
Svetoslav8e3feb12014-02-24 13:46:47 -08001384 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1385 Context.ACCESSIBILITY_SERVICE);
1386
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001387 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001388 IntentFilter filter = new IntentFilter();
1389 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1390 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1391 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1392 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001393 filter.addAction(Intent.ACTION_DOCK_EVENT);
1394 Intent intent = context.registerReceiver(mDockReceiver, filter);
1395 if (intent != null) {
1396 // Retrieve current sticky dock event broadcast.
1397 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1398 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1399 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001400
Jeff Brown6aaf2952012-10-05 16:01:08 -07001401 // register for dream-related broadcasts
1402 filter = new IntentFilter();
1403 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1404 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1405 context.registerReceiver(mDreamReceiver, filter);
1406
Christopher Tate5e08af02012-09-21 17:17:22 -07001407 // register for multiuser-relevant broadcasts
1408 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1409 context.registerReceiver(mMultiuserReceiver, filter);
1410
John Spurlock57306e62013-04-22 09:48:49 -04001411 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001412 mSystemGestures = new SystemGesturesPointerEventListener(context,
1413 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001414 @Override
1415 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001416 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001417 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001418 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001419 }
1420 @Override
1421 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001422 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001423 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001424 }
1425 }
1426 @Override
1427 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001428 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001429 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001430 }
1431 }
1432 @Override
1433 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001434 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001435 }
Adrian Roos3595be42015-03-05 16:31:15 +01001436 @Override
1437 public void onDown() {
1438 mOrientationListener.onTouchStart();
1439 }
1440 @Override
1441 public void onUpOrCancel() {
1442 mOrientationListener.onTouchEnd();
1443 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001444 });
John Spurlockf1a36642013-10-12 17:50:42 -04001445 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001446 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001447
Jeff Brownc2346132012-04-13 01:55:38 -07001448 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001449 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1450 com.android.internal.R.array.config_longPressVibePattern);
1451 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1452 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001453 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1454 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001455 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1456 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001457 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1458 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001459 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1460 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1461 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1462 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001463 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1464 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001465
Christopher Tatee90585f2012-03-05 18:56:25 -08001466 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1467 com.android.internal.R.bool.config_enableScreenshotChord);
1468
Justin Kohd378ad72013-04-01 12:18:26 -07001469 mGlobalKeyManager = new GlobalKeyManager(mContext);
1470
Joe Onoratoea495d42011-04-06 11:41:11 -07001471 // Controls rotation and the like.
1472 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001473
1474 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001475 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001476 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1477 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001478 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001479
1480 mWindowManagerInternal.registerAppTransitionListener(
1481 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001482 }
1483
Jeff Brownf71343d2013-05-31 17:59:11 -07001484 /**
1485 * Read values from config.xml that may be overridden depending on
1486 * the configuration of the device.
1487 * eg. Disable long press on home goes to recents on sw600dp.
1488 */
1489 private void readConfigurationDependentBehaviors() {
1490 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1491 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1492 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1493 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1494 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1495 }
1496
1497 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1498 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1499 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1500 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1501 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1502 }
1503 }
1504
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001505 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001506 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001507 // This method might be called before the policy has been fully initialized
1508 // or for other displays we don't care about.
1509 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1510 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001511 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001512 mDisplay = display;
1513
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001514 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001515 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001516 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001517 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001518 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001519 mLandscapeRotation = Surface.ROTATION_0;
1520 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001521 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001522 mPortraitRotation = Surface.ROTATION_90;
1523 mUpsideDownRotation = Surface.ROTATION_270;
1524 } else {
1525 mPortraitRotation = Surface.ROTATION_270;
1526 mUpsideDownRotation = Surface.ROTATION_90;
1527 }
1528 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001529 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001530 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001531 mPortraitRotation = Surface.ROTATION_0;
1532 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001533 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001534 mLandscapeRotation = Surface.ROTATION_270;
1535 mSeascapeRotation = Surface.ROTATION_90;
1536 } else {
1537 mLandscapeRotation = Surface.ROTATION_90;
1538 mSeascapeRotation = Surface.ROTATION_270;
1539 }
1540 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001541
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001542 mStatusBarHeight =
1543 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001544
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001545 // Height of the navigation bar when presented horizontally at bottom
1546 mNavigationBarHeightForRotation[mPortraitRotation] =
1547 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001548 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001549 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001550 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1551 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001552
1553 // Width of the navigation bar when presented vertically along one side
1554 mNavigationBarWidthForRotation[mPortraitRotation] =
1555 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1556 mNavigationBarWidthForRotation[mLandscapeRotation] =
1557 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001558 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001559
1560 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001561 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001562 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001563
Devin Kimd7b12b42014-05-05 14:34:58 -07001564 // Allow the navigation bar to move on non-square small devices (phones).
1565 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001566
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001567 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001568 // Allow a system property to override this. Used by the emulator.
1569 // See also hasNavigationBar().
1570 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1571 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001572 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001573 } else if ("0".equals(navBarOverride)) {
1574 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001575 }
1576
Jeff Brown27f1d672012-10-17 18:32:34 -07001577 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1578 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001579 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001580 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001581 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001582 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001583 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001584 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001585
Chong Zhangae6119ff2014-11-11 18:54:39 -08001586 // For demo purposes, allow the rotation of the remote display to be controlled.
1587 // By default, remote display locks rotation to landscape.
1588 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1589 mDemoRotation = mPortraitRotation;
1590 } else {
1591 mDemoRotation = mLandscapeRotation;
1592 }
1593 mDemoRotationLock = SystemProperties.getBoolean(
1594 "persist.demo.rotationlock", false);
1595
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001596 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1597 // http://developer.android.com/guide/practices/screens_support.html#range
1598 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1599 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1600 // For debug purposes the next line turns this feature off with:
1601 // $ adb shell setprop config.override_forced_orient true
1602 // $ adb shell wm size reset
1603 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1604 }
1605
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001606 /**
1607 * @return whether the navigation bar can be hidden, e.g. the device has a
1608 * navigation bar and touch exploration is not enabled
1609 */
1610 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001611 return mHasNavigationBar
1612 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001613 }
1614
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001615 @Override
1616 public boolean isDefaultOrientationForced() {
1617 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001618 }
1619
Dianne Hackbornc652de82013-02-15 16:32:56 -08001620 @Override
1621 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1622 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1623 mOverscanLeft = left;
1624 mOverscanTop = top;
1625 mOverscanRight = right;
1626 mOverscanBottom = bottom;
1627 }
1628 }
1629
Dianne Hackbornc777e072010-02-12 13:07:59 -08001630 public void updateSettings() {
1631 ContentResolver resolver = mContext.getContentResolver();
1632 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001633 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001634 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001635 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001636 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1637 UserHandle.USER_CURRENT);
1638 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001639 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001640 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1641 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001642
Jeff Browna20dda42014-05-27 20:57:24 -07001643 // Configure wake gesture.
1644 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1645 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1646 UserHandle.USER_CURRENT) != 0;
1647 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1648 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1649 updateWakeGestureListenerLp();
1650 }
1651
Jeff Brown207673cd2012-06-05 17:47:11 -07001652 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001653 int userRotation = Settings.System.getIntForUser(resolver,
1654 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1655 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001656 if (mUserRotation != userRotation) {
1657 mUserRotation = userRotation;
1658 updateRotation = true;
1659 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001660 int userRotationMode = Settings.System.getIntForUser(resolver,
1661 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001662 WindowManagerPolicy.USER_ROTATION_FREE :
1663 WindowManagerPolicy.USER_ROTATION_LOCKED;
1664 if (mUserRotationMode != userRotationMode) {
1665 mUserRotationMode = userRotationMode;
1666 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001667 updateOrientationListenerLp();
1668 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001669
Dianne Hackbornc777e072010-02-12 13:07:59 -08001670 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001671 int pointerLocation = Settings.System.getIntForUser(resolver,
1672 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001673 if (mPointerLocationMode != pointerLocation) {
1674 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001675 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1676 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001677 }
1678 }
1679 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001680 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1681 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1682 String imId = Settings.Secure.getStringForUser(resolver,
1683 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001684 boolean hasSoftInput = imId != null && imId.length() > 0;
1685 if (mHasSoftInput != hasSoftInput) {
1686 mHasSoftInput = hasSoftInput;
1687 updateRotation = true;
1688 }
John Spurlockf1a36642013-10-12 17:50:42 -04001689 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001690 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001691 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001692 }
1693 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001694 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001695 }
1696 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001697 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001698 }
Jeff Brown70825162012-03-28 17:27:48 -07001699 }
1700
Jeff Browna20dda42014-05-27 20:57:24 -07001701 private void updateWakeGestureListenerLp() {
1702 if (shouldEnableWakeGestureLp()) {
1703 mWakeGestureListener.requestWakeUpTrigger();
1704 } else {
1705 mWakeGestureListener.cancelWakeUpTrigger();
1706 }
1707 }
1708
1709 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001710 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001711 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1712 && mWakeGestureListener.isSupported();
1713 }
1714
Jeff Brown70825162012-03-28 17:27:48 -07001715 private void enablePointerLocation() {
1716 if (mPointerLocationView == null) {
1717 mPointerLocationView = new PointerLocationView(mContext);
1718 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001719 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1720 WindowManager.LayoutParams.MATCH_PARENT,
1721 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001722 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001723 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1724 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1725 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1726 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001727 if (ActivityManager.isHighEndGfx()) {
1728 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1729 lp.privateFlags |=
1730 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1731 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001732 lp.format = PixelFormat.TRANSLUCENT;
1733 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001734 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001735 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001736 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001737 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001738 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001739 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001740 }
Jeff Brown70825162012-03-28 17:27:48 -07001741
1742 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001743 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001744 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1745 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001746 wm.removeView(mPointerLocationView);
1747 mPointerLocationView = null;
1748 }
1749 }
1750
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001751 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001752 try {
1753 int rotation = mContext.getResources().getInteger(resID);
1754 switch (rotation) {
1755 case 0:
1756 return Surface.ROTATION_0;
1757 case 90:
1758 return Surface.ROTATION_90;
1759 case 180:
1760 return Surface.ROTATION_180;
1761 case 270:
1762 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001763 }
1764 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001765 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001766 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001767 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001768 }
1769
1770 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001771 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001772 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001773 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001774
1775 outAppOp[0] = AppOpsManager.OP_NONE;
1776
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001777 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1778 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1779 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1780 return WindowManagerGlobal.ADD_INVALID_TYPE;
1781 }
1782
1783 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1784 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001785 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001786 }
1787 String permission = null;
1788 switch (type) {
1789 case TYPE_TOAST:
1790 // XXX right now the app process has complete control over
1791 // this... should introduce a token to let the system
1792 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001793 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001794 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001795 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001796 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001797 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001798 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001799 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001800 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001801 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001802 break;
1803 case TYPE_PHONE:
1804 case TYPE_PRIORITY_PHONE:
1805 case TYPE_SYSTEM_ALERT:
1806 case TYPE_SYSTEM_ERROR:
1807 case TYPE_SYSTEM_OVERLAY:
1808 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001809 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001810 break;
1811 default:
1812 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1813 }
1814 if (permission != null) {
1815 if (mContext.checkCallingOrSelfPermission(permission)
1816 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001817 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001818 }
1819 }
Jeff Brown98365d72012-08-19 20:30:52 -07001820 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001821 }
Craig Mautner88400d32012-09-30 12:35:45 -07001822
1823 @Override
1824 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1825
1826 // If this switch statement is modified, modify the comment in the declarations of
1827 // the type in {@link WindowManager.LayoutParams} as well.
1828 switch (attrs.type) {
1829 default:
1830 // These are the windows that by default are shown only to the user that created
1831 // them. If this needs to be overridden, set
1832 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1833 // {@link WindowManager.LayoutParams}. Note that permission
1834 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1835 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1836 return true;
1837 }
1838 break;
1839
1840 // These are the windows that by default are shown to all users. However, to
1841 // protect against spoofing, check permissions below.
1842 case TYPE_APPLICATION_STARTING:
1843 case TYPE_BOOT_PROGRESS:
1844 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001845 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001846 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001847 case TYPE_KEYGUARD_DIALOG:
1848 case TYPE_MAGNIFICATION_OVERLAY:
1849 case TYPE_NAVIGATION_BAR:
1850 case TYPE_NAVIGATION_BAR_PANEL:
1851 case TYPE_PHONE:
1852 case TYPE_POINTER:
1853 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001854 case TYPE_SEARCH_BAR:
1855 case TYPE_STATUS_BAR:
1856 case TYPE_STATUS_BAR_PANEL:
1857 case TYPE_STATUS_BAR_SUB_PANEL:
1858 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001859 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001860 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001861 break;
1862 }
1863
1864 // Check if third party app has set window to system window type.
1865 return mContext.checkCallingOrSelfPermission(
1866 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1867 != PackageManager.PERMISSION_GRANTED;
1868 }
1869
Craig Mautner967212c2013-04-13 21:10:58 -07001870 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001871 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1872 switch (attrs.type) {
1873 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001874 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001875 // These types of windows can't receive input events.
1876 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1877 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001878 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001879 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001880 case TYPE_STATUS_BAR:
1881
1882 // If the Keyguard is in a hidden state (occluded by another window), we force to
1883 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1884 // the keyguard as occluded wouldn't set these flags again.
1885 // See {@link #processKeyguardSetHiddenResultLw}.
1886 if (mKeyguardHidden) {
1887 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1888 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1889 }
1890 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001891 }
Adrian Roos38502112014-04-09 21:04:11 +02001892
1893 if (attrs.type != TYPE_STATUS_BAR) {
1894 // The status bar is the only window allowed to exhibit keyguard behavior.
1895 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1896 }
Adrian Roosea562512014-05-05 13:33:03 +02001897
1898 if (ActivityManager.isHighEndGfx()
1899 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02001900 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02001901 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1902 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001903 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001904
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001905 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07001906 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001907 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001908
Michael Wright3818c922014-09-02 13:59:07 -07001909 private void readCameraLensCoverState() {
1910 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
1911 }
1912
Jeff Browndaa37532012-05-01 15:54:03 -07001913 private boolean isHidden(int accessibilityMode) {
1914 switch (accessibilityMode) {
1915 case 1:
1916 return mLidState == LID_CLOSED;
1917 case 2:
1918 return mLidState == LID_OPEN;
1919 default:
1920 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001921 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001922 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001923
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001924 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001925 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07001926 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
1927 int navigationPresence) {
1928 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
1929
Jeff Brownf71343d2013-05-31 17:59:11 -07001930 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001931 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07001932 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08001933
Jeff Browndaa37532012-05-01 15:54:03 -07001934 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
1935 || (keyboardPresence == PRESENCE_INTERNAL
1936 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001937 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07001938 if (!mHasSoftInput) {
1939 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
1940 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001941 }
1942
Jeff Browndaa37532012-05-01 15:54:03 -07001943 if (config.navigation == Configuration.NAVIGATION_NONAV
1944 || (navigationPresence == PRESENCE_INTERNAL
1945 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001946 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08001947 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001948 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001949
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001950 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001951 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001952 public int windowTypeToLayerLw(int type) {
1953 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001954 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001955 }
1956 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07001957 case TYPE_PRIVATE_PRESENTATION:
1958 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001959 case TYPE_WALLPAPER:
1960 // wallpaper is at the bottom, though the window manager may move it.
1961 return 2;
1962 case TYPE_PHONE:
1963 return 3;
1964 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07001965 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001966 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001967 case TYPE_VOICE_INTERACTION:
1968 // voice interaction layer is almost immediately above apps.
1969 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07001970 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001971 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07001972 case TYPE_SYSTEM_DIALOG:
1973 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001974 case TYPE_TOAST:
1975 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07001976 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001977 case TYPE_PRIORITY_PHONE:
1978 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07001979 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001980 case TYPE_DREAM:
1981 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07001982 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001983 case TYPE_SYSTEM_ALERT:
1984 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07001985 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001986 case TYPE_INPUT_METHOD:
1987 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07001988 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001989 case TYPE_INPUT_METHOD_DIALOG:
1990 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07001991 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08001992 case TYPE_KEYGUARD_SCRIM:
1993 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001994 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07001995 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001996 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07001997 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001998 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07001999 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002000 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002001 case TYPE_KEYGUARD_DIALOG:
2002 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002003 case TYPE_VOLUME_OVERLAY:
2004 // the on-screen volume indicator and controller shown when the user
2005 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002006 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002007 case TYPE_SYSTEM_OVERLAY:
2008 // the on-screen volume indicator and controller shown when the user
2009 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002010 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002011 case TYPE_NAVIGATION_BAR:
2012 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002013 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002014 case TYPE_NAVIGATION_BAR_PANEL:
2015 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002016 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002017 case TYPE_SYSTEM_ERROR:
2018 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002019 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002020 case TYPE_MAGNIFICATION_OVERLAY:
2021 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002022 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002023 case TYPE_DISPLAY_OVERLAY:
2024 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002025 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002026 case TYPE_DRAG:
2027 // the drag layer: input for drag-and-drop is associated with this window,
2028 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002029 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002030 case TYPE_ACCESSIBILITY_OVERLAY:
2031 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002032 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002033 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002034 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002035 case TYPE_BOOT_PROGRESS:
2036 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002037 case TYPE_POINTER:
2038 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002039 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002040 }
2041 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002042 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002043 }
2044
2045 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002046 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002047 public int subWindowTypeToLayerLw(int type) {
2048 switch (type) {
2049 case TYPE_APPLICATION_PANEL:
2050 case TYPE_APPLICATION_ATTACHED_DIALOG:
2051 return APPLICATION_PANEL_SUBLAYER;
2052 case TYPE_APPLICATION_MEDIA:
2053 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002054 case TYPE_APPLICATION_MEDIA_OVERLAY:
2055 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002056 case TYPE_APPLICATION_SUB_PANEL:
2057 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002058 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2059 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002060 }
2061 Log.e(TAG, "Unknown sub-window type: " + type);
2062 return 0;
2063 }
2064
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002065 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002066 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002067 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002068 }
2069
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002070 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002071 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002072 if (mHasNavigationBar) {
2073 // For a basic navigation bar, when we are in landscape mode we place
2074 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002075 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2076 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002077 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002078 }
2079 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002080 }
2081
Jose Lima9546b202014-07-02 17:21:51 -07002082 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002083 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002084 if (mHasNavigationBar) {
2085 // For a basic navigation bar, when we are in portrait mode we place
2086 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002087 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2088 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002089 }
2090 }
2091 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002092 }
2093
Jose Lima9546b202014-07-02 17:21:51 -07002094 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002095 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2096 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002097 }
2098
Jose Lima9546b202014-07-02 17:21:51 -07002099 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002100 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002101 // There is a separate status bar at the top of the display. We don't count that as part
2102 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002103 // we do want to exclude it since applications can't generally use that part
2104 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002105 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002106 }
2107
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002108 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002109 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2110 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002111 (isKeyguardHostWindow(attrs) &&
2112 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002113 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002114 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002115
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002116 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002117 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2118 return attrs.type == TYPE_STATUS_BAR;
2119 }
2120
2121 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002122 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002123 switch (attrs.type) {
2124 case TYPE_STATUS_BAR:
2125 case TYPE_NAVIGATION_BAR:
2126 case TYPE_WALLPAPER:
2127 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002128 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002129 return false;
2130 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002131 // Hide only windows below the keyguard host window.
2132 return windowTypeToLayerLw(win.getBaseType())
2133 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002134 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002135 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002136
Craig Mautner7d7808f2014-09-11 18:02:38 -07002137 @Override
2138 public WindowState getWinShowWhenLockedLw() {
2139 return mWinShowWhenLocked;
2140 }
2141
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002142 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002143 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002144 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2145 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002146 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002147 if (!SHOW_STARTING_ANIMATIONS) {
2148 return null;
2149 }
2150 if (packageName == null) {
2151 return null;
2152 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002153
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002154 WindowManager wm = null;
2155 View view = null;
2156
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002157 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002158 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002159 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2160 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2161 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002162 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002163 try {
2164 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002165 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002166 } catch (PackageManager.NameNotFoundException e) {
2167 // Ignore
2168 }
2169 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002170
Jorim Jaggia16cc152015-06-01 16:55:05 -07002171 PhoneWindow win = new PhoneWindow(context);
2172 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002173 final TypedArray ta = win.getWindowStyle();
2174 if (ta.getBoolean(
2175 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2176 || ta.getBoolean(
2177 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002178 return null;
2179 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002180
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002181 Resources r = context.getResources();
2182 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002183
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002184 win.setType(
2185 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002186
2187 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2188 // Assumes it's safe to show starting windows of launched apps while
2189 // the keyguard is being hidden. This is okay because starting windows never show
2190 // secret information.
2191 if (mKeyguardHidden) {
2192 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2193 }
2194 }
2195
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002196 // Force the window flags: this is a fake window, so it is not really
2197 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2198 // flag because we do know that the next window will take input
2199 // focus, so we want to get the IME window up on top of us right away.
2200 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002201 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002202 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2203 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2204 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002205 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002206 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2207 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2208 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002209
Adam Powell04fe6eb2013-05-31 14:39:48 -07002210 win.setDefaultIcon(icon);
2211 win.setDefaultLogo(logo);
2212
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002213 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002214 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002215
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002216 final WindowManager.LayoutParams params = win.getAttributes();
2217 params.token = appToken;
2218 params.packageName = packageName;
2219 params.windowAnimations = win.getWindowStyle().getResourceId(
2220 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002221 params.privateFlags |=
2222 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002223 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002224
2225 if (!compatInfo.supportsScreen()) {
2226 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2227 }
2228
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002229 params.setTitle("Starting " + packageName);
2230
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002231 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2232 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002233
2234 if (win.isFloating()) {
2235 // Whoops, there is no way to display an animation/preview
2236 // of such a thing! After all that work... let's skip it.
2237 // (Note that we must do this here because it is in
2238 // getDecorView() where the theme is evaluated... maybe
2239 // we should peek the floating attribute from the theme
2240 // earlier.)
2241 return null;
2242 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002243
Craig Mautner6fbda632012-07-03 09:26:39 -07002244 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002245 TAG, "Adding starting window for " + packageName
2246 + " / " + appToken + ": "
2247 + (view.getParent() != null ? view : null));
2248
2249 wm.addView(view, params);
2250
2251 // Only return the view if it was successfully added to the
2252 // window manager... which we can tell by it having a parent.
2253 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002254 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002255 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002256 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2257 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002258 } catch (RuntimeException e) {
2259 // don't crash if something else bad happens, for example a
2260 // failure loading resources because we are loading from an app
2261 // on external storage that has been unmounted.
2262 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002263 } finally {
2264 if (view != null && view.getParent() == null) {
2265 Log.w(TAG, "view not successfully added to wm, removing view");
2266 wm.removeViewImmediate(view);
2267 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002268 }
2269
2270 return null;
2271 }
2272
2273 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002274 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002275 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002276 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2277 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002278
2279 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002280 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002281 wm.removeView(window);
2282 }
2283 }
2284
2285 /**
2286 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002287 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002288 * Currently enforces that three window types are singletons:
2289 * <ul>
2290 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002291 * <li>KEYGUARD_TYPE</li>
2292 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002293 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002294 * @param win The window to be added
2295 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002296 *
Jeff Brown98365d72012-08-19 20:30:52 -07002297 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2298 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002299 */
Jose Lima9546b202014-07-02 17:21:51 -07002300 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002301 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2302 switch (attrs.type) {
2303 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002304 mContext.enforceCallingOrSelfPermission(
2305 android.Manifest.permission.STATUS_BAR_SERVICE,
2306 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002307 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002308 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002309 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002310 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002311 }
2312 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002313 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002314 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002315 case TYPE_NAVIGATION_BAR:
2316 mContext.enforceCallingOrSelfPermission(
2317 android.Manifest.permission.STATUS_BAR_SERVICE,
2318 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002319 if (mNavigationBar != null) {
2320 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002321 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002322 }
2323 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002324 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002325 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002326 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002327 break;
Jim Millere898ac52012-04-06 17:10:57 -07002328 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002329 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002330 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002331 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002332 mContext.enforceCallingOrSelfPermission(
2333 android.Manifest.permission.STATUS_BAR_SERVICE,
2334 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002335 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002336 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002337 if (mKeyguardScrim != null) {
2338 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2339 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002340 mKeyguardScrim = win;
2341 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002342 }
Jeff Brown98365d72012-08-19 20:30:52 -07002343 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002344 }
2345
2346 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002347 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002348 public void removeWindowLw(WindowState win) {
2349 if (mStatusBar == win) {
2350 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002351 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002352 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002353 } else if (mKeyguardScrim == win) {
2354 Log.v(TAG, "Removing keyguard scrim");
2355 mKeyguardScrim = null;
2356 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002357 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002358 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002359 }
2360 }
2361
2362 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002363
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002364 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002365 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002366 public int selectAnimationLw(WindowState win, int transit) {
2367 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2368 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002369 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002370 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002371 if (transit == TRANSIT_EXIT
2372 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002373 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002374 } else if (transit == TRANSIT_ENTER
2375 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002376 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002377 }
2378 } else if (win == mNavigationBar) {
2379 // This can be on either the bottom or the right.
2380 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002381 if (transit == TRANSIT_EXIT
2382 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002383 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002384 } else if (transit == TRANSIT_ENTER
2385 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002386 return R.anim.dock_bottom_enter;
2387 }
2388 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002389 if (transit == TRANSIT_EXIT
2390 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002391 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002392 } else if (transit == TRANSIT_ENTER
2393 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002394 return R.anim.dock_right_enter;
2395 }
2396 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002397 }
2398
2399 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002400 if (win.hasAppShownWindows()) {
2401 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2402 return com.android.internal.R.anim.app_starting_exit;
2403 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002404 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002405 && transit == TRANSIT_ENTER) {
2406 // Special case: we are animating in a dream, while the keyguard
2407 // is shown. We don't want an animation on the dream, because
2408 // we need it shown immediately with the keyguard animating away
2409 // to reveal it.
2410 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002411 }
2412
2413 return 0;
2414 }
2415
Craig Mautner3c174372013-02-21 17:54:37 -08002416 @Override
2417 public void selectRotationAnimationLw(int anim[]) {
2418 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2419 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2420 + (mTopFullscreenOpaqueWindowState == null ?
2421 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2422 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2423 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2424 case ROTATION_ANIMATION_CROSSFADE:
2425 anim[0] = R.anim.rotation_animation_xfade_exit;
2426 anim[1] = R.anim.rotation_animation_enter;
2427 break;
2428 case ROTATION_ANIMATION_JUMPCUT:
2429 anim[0] = R.anim.rotation_animation_jump_exit;
2430 anim[1] = R.anim.rotation_animation_enter;
2431 break;
2432 case ROTATION_ANIMATION_ROTATE:
2433 default:
2434 anim[0] = anim[1] = 0;
2435 break;
2436 }
2437 } else {
2438 anim[0] = anim[1] = 0;
2439 }
2440 }
2441
2442 @Override
2443 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2444 boolean forceDefault) {
2445 switch (exitAnimId) {
2446 case R.anim.rotation_animation_xfade_exit:
2447 case R.anim.rotation_animation_jump_exit:
2448 // These are the only cases that matter.
2449 if (forceDefault) {
2450 return false;
2451 }
2452 int anim[] = new int[2];
2453 selectRotationAnimationLw(anim);
2454 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2455 default:
2456 return true;
2457 }
2458 }
2459
2460 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002461 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2462 boolean goingToNotificationShade) {
2463 if (goingToNotificationShade) {
2464 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002465 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002466
2467 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2468 R.anim.lock_screen_behind_enter_wallpaper :
2469 R.anim.lock_screen_behind_enter);
2470
2471 // TODO: Use XML interpolators when we have log interpolators available in XML.
2472 final List<Animation> animations = set.getAnimations();
2473 for (int i = animations.size() - 1; i >= 0; --i) {
2474 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2475 }
2476
2477 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002478 }
2479
2480
2481 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002482 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2483 if (goingToNotificationShade) {
2484 return null;
2485 } else {
2486 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2487 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002488 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002489
2490 private static void awakenDreams() {
2491 IDreamManager dreamManager = getDreamManager();
2492 if (dreamManager != null) {
2493 try {
2494 dreamManager.awaken();
2495 } catch (RemoteException e) {
2496 // fine, stay asleep then
2497 }
2498 }
2499 }
2500
2501 static IDreamManager getDreamManager() {
2502 return IDreamManager.Stub.asInterface(
2503 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2504 }
2505
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002506 TelecomManager getTelecommService() {
2507 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002508 }
2509
Jeff Brown4d396052010-10-29 21:50:21 -07002510 static IAudioService getAudioService() {
2511 IAudioService audioService = IAudioService.Stub.asInterface(
2512 ServiceManager.checkService(Context.AUDIO_SERVICE));
2513 if (audioService == null) {
2514 Log.w(TAG, "Unable to find IAudioService interface.");
2515 }
2516 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002517 }
2518
2519 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002520 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002521 }
2522
2523 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2524 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2525 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2526 };
2527
2528 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002529 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002530 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002531 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002532 final int keyCode = event.getKeyCode();
2533 final int repeatCount = event.getRepeatCount();
2534 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002535 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002536 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2537 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002538
Jeff Brown40013652012-05-16 21:22:36 -07002539 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002540 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002541 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2542 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002543 }
2544
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002545 // If we think we might have a volume down & power key chord on the way
2546 // but we're not sure, then tell the dispatcher to wait a little while and
2547 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002548 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002549 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002550 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002551 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2552 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002553 if (now < timeoutTime) {
2554 return timeoutTime - now;
2555 }
2556 }
2557 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002558 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002559 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002560 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002561 }
2562 return -1;
2563 }
2564 }
2565
Michael Wright6a62e552014-06-03 19:19:48 -07002566 // Cancel any pending meta actions if we see any other keys being pressed between the down
2567 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002568 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002569 mPendingMetaAction = false;
2570 }
2571
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002572 // First we always handle the home key here, so applications
2573 // can never break it, although if keyguard is on, we do let
2574 // it handle it, because that gives us the correct 5 second
2575 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002576 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002577
Jeff Brown49ed71d2010-12-06 17:13:33 -08002578 // If we have released the home key, and didn't do anything else
2579 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002580 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002581 cancelPreloadRecentApps();
2582
Jeff Brown49ed71d2010-12-06 17:13:33 -08002583 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002584 if (mHomeConsumed) {
2585 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002586 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002587 }
Jeff Browncaca8812013-05-09 13:34:33 -07002588
2589 if (canceled) {
2590 Log.i(TAG, "Ignoring HOME; event canceled.");
2591 return -1;
2592 }
2593
Yorke Lee4f803242014-12-15 23:22:06 +00002594 // If an incoming call is ringing, HOME is totally disabled.
2595 // (The user is already on the InCallUI at this point,
2596 // and his ONLY options are to answer or reject the call.)
2597 TelecomManager telecomManager = getTelecommService();
2598 if (telecomManager != null && telecomManager.isRinging()) {
2599 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2600 return -1;
2601 }
2602
Jeff Browncaca8812013-05-09 13:34:33 -07002603 // Delay handling home if a double-tap is possible.
2604 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2605 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2606 mHomeDoubleTapPending = true;
2607 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2608 ViewConfiguration.getDoubleTapTimeout());
2609 return -1;
2610 }
2611
Jeff Brown13f00f02014-10-31 14:45:50 -07002612 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002613 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002614 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002615
2616 // If a system window has focus, then it doesn't make sense
2617 // right now to interact with applications.
2618 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2619 if (attrs != null) {
2620 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002621 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2622 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2623 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002624 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002625 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002626 }
2627 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2628 for (int i=0; i<typeCount; i++) {
2629 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2630 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002631 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002632 }
2633 }
2634 }
Jeff Browncaca8812013-05-09 13:34:33 -07002635
2636 // Remember that home is pressed and handle special actions.
2637 if (repeatCount == 0) {
2638 mHomePressed = true;
2639 if (mHomeDoubleTapPending) {
2640 mHomeDoubleTapPending = false;
2641 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2642 handleDoubleTapOnHome();
2643 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2644 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2645 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002646 }
Jeff Browncaca8812013-05-09 13:34:33 -07002647 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2648 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002649 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002650 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002651 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002652 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002653 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002654 // Hijack modified menu keys for debugging features
2655 final int chordBug = KeyEvent.META_SHIFT_ON;
2656
2657 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002658 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002659 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002660 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2661 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002662 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002663 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002664 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002665 Intent service = new Intent();
2666 service.setClassName(mContext, "com.android.server.LoadAverageService");
2667 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002668 boolean shown = Settings.Global.getInt(
2669 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002670 if (!shown) {
2671 mContext.startService(service);
2672 } else {
2673 mContext.stopService(service);
2674 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002675 Settings.Global.putInt(
2676 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002677 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002678 }
2679 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002680 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002681 if (down) {
2682 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002683 mSearchKeyShortcutPending = true;
2684 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002685 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002686 } else {
2687 mSearchKeyShortcutPending = false;
2688 if (mConsumeSearchKeyUp) {
2689 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002690 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002691 }
2692 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002693 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002694 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002695 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002696 if (down && repeatCount == 0) {
2697 preloadRecentApps();
2698 } else if (!down) {
2699 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002700 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002701 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002702 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002703 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2704 if (down) {
2705 IStatusBarService service = getStatusBarService();
2706 if (service != null) {
2707 try {
2708 service.expandNotificationsPanel();
2709 } catch (RemoteException e) {
2710 // do nothing.
2711 }
2712 }
2713 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002714 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2715 if (down) {
2716 if (repeatCount == 0) {
2717 mAssistKeyLongPressed = false;
2718 } else if (repeatCount == 1) {
2719 mAssistKeyLongPressed = true;
2720 if (!keyguardOn) {
2721 launchAssistLongPressAction();
2722 }
2723 }
2724 } else {
2725 if (mAssistKeyLongPressed) {
2726 mAssistKeyLongPressed = false;
2727 } else {
2728 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002729 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002730 }
2731 }
2732 }
2733 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002734 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2735 if (!down) {
2736 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002737 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002738 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2739 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002740 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2741 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2742 if (dic != null) {
2743 try {
2744 dic.exitIdle("voice-search");
2745 } catch (RemoteException e) {
2746 }
2747 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002748 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002749 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002750 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002751 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002752 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002753 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2754 if (down && repeatCount == 0) {
2755 mHandler.post(mScreenshotRunnable);
2756 }
2757 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002758 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2759 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2760 if (down) {
2761 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2762
2763 // Disable autobrightness if it's on
2764 int auto = Settings.System.getIntForUser(
2765 mContext.getContentResolver(),
2766 Settings.System.SCREEN_BRIGHTNESS_MODE,
2767 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2768 UserHandle.USER_CURRENT_OR_SELF);
2769 if (auto != 0) {
2770 Settings.System.putIntForUser(mContext.getContentResolver(),
2771 Settings.System.SCREEN_BRIGHTNESS_MODE,
2772 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2773 UserHandle.USER_CURRENT_OR_SELF);
2774 }
2775
2776 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2777 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2778 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2779 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2780 Settings.System.SCREEN_BRIGHTNESS,
2781 mPowerManager.getDefaultScreenBrightnessSetting(),
2782 UserHandle.USER_CURRENT_OR_SELF);
2783 brightness += step;
2784 // Make sure we don't go beyond the limits.
2785 brightness = Math.min(max, brightness);
2786 brightness = Math.max(min, brightness);
2787
2788 Settings.System.putIntForUser(mContext.getContentResolver(),
2789 Settings.System.SCREEN_BRIGHTNESS, brightness,
2790 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002791 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002792 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002793 }
2794 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002795 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002796 if (down) {
2797 mPendingMetaAction = true;
2798 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002799 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002800 }
2801 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002802 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002803
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002804 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002805 // Any printing key that is chorded with Search should be consumed
2806 // even if no shortcut was invoked. This prevents text from being
2807 // inadvertently inserted when using a keyboard that has built-in macro
2808 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002809 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002810 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2811 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002812 mConsumeSearchKeyUp = true;
2813 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002814 if (down && repeatCount == 0 && !keyguardOn) {
2815 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2816 if (shortcutIntent != null) {
2817 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002818 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002819 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002820 } catch (ActivityNotFoundException ex) {
2821 Slog.w(TAG, "Dropping shortcut key combination because "
2822 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002823 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002824 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002825 } else {
2826 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002827 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002828 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002829 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002830 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002831 }
2832 }
2833
Jeff Brown68b909d2011-12-07 16:36:01 -08002834 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002835 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002836 && (metaState & KeyEvent.META_META_ON) != 0) {
2837 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002838 if (kcm.isPrintingKey(keyCode)) {
2839 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2840 metaState & ~(KeyEvent.META_META_ON
2841 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2842 if (shortcutIntent != null) {
2843 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2844 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002845 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002846 } catch (ActivityNotFoundException ex) {
2847 Slog.w(TAG, "Dropping shortcut key combination because "
2848 + "the activity to which it is registered was not found: "
2849 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2850 }
2851 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002852 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002853 }
2854 }
2855
Jeff Brown6651a632011-11-28 12:59:11 -08002856 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002857 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002858 String category = sApplicationLaunchKeyCategories.get(keyCode);
2859 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002860 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002861 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2862 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002863 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002864 } catch (ActivityNotFoundException ex) {
2865 Slog.w(TAG, "Dropping application launch key because "
2866 + "the activity to which it is registered was not found: "
2867 + "keyCode=" + keyCode + ", category=" + category, ex);
2868 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002869 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002870 }
2871 }
2872
Michael Wright61c46752014-08-21 16:57:33 -07002873 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002874 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002875 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002876 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002877 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002878 mRecentAppsHeldModifiers = shiftlessModifiers;
2879 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002880 return -1;
2881 }
2882 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002883 } else if (!down && mRecentAppsHeldModifiers != 0
2884 && (metaState & mRecentAppsHeldModifiers) == 0) {
2885 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002886 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002887 }
2888
Jeff Browncf39bdf2012-05-18 14:41:19 -07002889 // Handle keyboard language switching.
2890 if (down && repeatCount == 0
2891 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2892 || (keyCode == KeyEvent.KEYCODE_SPACE
2893 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2894 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2895 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2896 return -1;
2897 }
2898 if (mLanguageSwitchKeyPressed && !down
2899 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2900 || keyCode == KeyEvent.KEYCODE_SPACE)) {
2901 mLanguageSwitchKeyPressed = false;
2902 return -1;
2903 }
2904
Jeff Brown13f00f02014-10-31 14:45:50 -07002905 if (isValidGlobalKey(keyCode)
2906 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07002907 return -1;
2908 }
2909
Michael Wright6a62e552014-06-03 19:19:48 -07002910 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07002911 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07002912 return -1;
2913 }
2914
Jeff Brown68b909d2011-12-07 16:36:01 -08002915 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002916 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002917 }
2918
Jeff Brown3915bb82010-11-05 15:02:16 -07002919 /** {@inheritDoc} */
2920 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08002921 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07002922 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07002923 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08002924 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
2925 + ", flags=" + event.getFlags()
2926 + ", keyCode=" + event.getKeyCode()
2927 + ", scanCode=" + event.getScanCode()
2928 + ", metaState=" + event.getMetaState()
2929 + ", repeatCount=" + event.getRepeatCount()
2930 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07002931 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002932
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002933 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002934 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
2935 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002936 final int keyCode = event.getKeyCode();
2937 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002938 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
2939 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002940
Jeff Brown54875002011-04-06 15:33:01 -07002941 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002942 final FallbackAction fallbackAction;
2943 if (initialDown) {
2944 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
2945 } else {
2946 fallbackAction = mFallbackActions.get(keyCode);
2947 }
2948
2949 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07002950 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002951 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
2952 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002953 }
2954
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002955 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
2956 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08002957 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002958 event.getAction(), fallbackAction.keyCode,
2959 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08002960 event.getDeviceId(), event.getScanCode(),
2961 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002962
2963 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
2964 fallbackEvent.recycle();
2965 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002966 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002967
2968 if (initialDown) {
2969 mFallbackActions.put(keyCode, fallbackAction);
2970 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2971 mFallbackActions.remove(keyCode);
2972 fallbackAction.recycle();
2973 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002974 }
2975 }
2976
Jeff Brown40013652012-05-16 21:22:36 -07002977 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002978 if (fallbackEvent == null) {
2979 Slog.d(TAG, "No fallback.");
2980 } else {
2981 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
2982 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002983 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002984 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07002985 }
2986
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002987 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002988 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002989 if ((actions & ACTION_PASS_TO_USER) != 0) {
2990 long delayMillis = interceptKeyBeforeDispatching(
2991 win, fallbackEvent, policyFlags);
2992 if (delayMillis == 0) {
2993 return true;
2994 }
2995 }
2996 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08002997 }
2998
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002999 private void launchAssistLongPressAction() {
3000 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3001 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3002
3003 // launch the search activity
3004 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3005 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3006 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003007 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003008 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003009 SearchManager searchManager = getSearchManager();
3010 if (searchManager != null) {
3011 searchManager.stopSearch();
3012 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003013 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003014 } catch (ActivityNotFoundException e) {
3015 Slog.w(TAG, "No activity to handle assist long press action.", e);
3016 }
3017 }
3018
3019 private void launchAssistAction() {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003020 launchAssistAction(null, Integer.MIN_VALUE);
Michael Wright8ab940a2014-09-01 11:01:27 -07003021 }
3022
3023 private void launchAssistAction(String hint) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003024 launchAssistAction(hint, Integer.MIN_VALUE);
3025 }
3026
3027 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003028 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003029 Bundle args = null;
3030 if (deviceId > Integer.MIN_VALUE) {
3031 args = new Bundle();
3032 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003033 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003034 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3035 .launchAssistAction(hint, UserHandle.myUserId(), args);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003036 }
3037
Bart Sears8b1c27c2015-03-18 23:51:02 +00003038 private void startActivityAsUser(Intent intent, UserHandle handle) {
3039 if (isUserSetupComplete()) {
3040 mContext.startActivityAsUser(intent, handle);
3041 } else {
3042 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3043 }
3044 }
3045
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003046 private SearchManager getSearchManager() {
3047 if (mSearchManager == null) {
3048 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3049 }
3050 return mSearchManager;
3051 }
3052
Jeff Browncaca8812013-05-09 13:34:33 -07003053 private void preloadRecentApps() {
3054 mPreloadedRecentApps = true;
3055 try {
3056 IStatusBarService statusbar = getStatusBarService();
3057 if (statusbar != null) {
3058 statusbar.preloadRecentApps();
3059 }
3060 } catch (RemoteException e) {
3061 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3062 // re-acquire status bar service next time it is needed.
3063 mStatusBarService = null;
3064 }
3065 }
3066
3067 private void cancelPreloadRecentApps() {
3068 if (mPreloadedRecentApps) {
3069 mPreloadedRecentApps = false;
3070 try {
3071 IStatusBarService statusbar = getStatusBarService();
3072 if (statusbar != null) {
3073 statusbar.cancelPreloadRecentApps();
3074 }
3075 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003076 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003077 // re-acquire status bar service next time it is needed.
3078 mStatusBarService = null;
3079 }
3080 }
3081 }
3082
3083 private void toggleRecentApps() {
3084 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003085 try {
3086 IStatusBarService statusbar = getStatusBarService();
3087 if (statusbar != null) {
3088 statusbar.toggleRecentApps();
3089 }
3090 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003091 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3092 // re-acquire status bar service next time it is needed.
3093 mStatusBarService = null;
3094 }
3095 }
3096
Craig Mautner84984fa2014-06-19 11:19:20 -07003097 @Override
3098 public void showRecentApps() {
3099 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3100 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3101 }
3102
Winson Chung1e8d71b2014-05-16 17:05:22 -07003103 private void showRecentApps(boolean triggeredFromAltTab) {
3104 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3105 try {
3106 IStatusBarService statusbar = getStatusBarService();
3107 if (statusbar != null) {
3108 statusbar.showRecentApps(triggeredFromAltTab);
3109 }
3110 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003111 Slog.e(TAG, "RemoteException when showing recent apps", e);
3112 // re-acquire status bar service next time it is needed.
3113 mStatusBarService = null;
3114 }
3115 }
3116
Winson Chungcdcd4872014-08-05 18:00:13 -07003117 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003118 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3119 try {
3120 IStatusBarService statusbar = getStatusBarService();
3121 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003122 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003123 }
3124 } catch (RemoteException e) {
3125 Slog.e(TAG, "RemoteException when closing recent apps", e);
3126 // re-acquire status bar service next time it is needed.
3127 mStatusBarService = null;
3128 }
3129 }
3130
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003131 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003132 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003133 }
3134
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003135 /**
3136 * A home key -> launch home action was detected. Take the appropriate action
3137 * given the situation with the keyguard.
3138 */
Bryce Lee662ed802015-04-10 20:11:39 +00003139 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3140 if (respectKeyguard) {
3141 if (isKeyguardShowingAndNotOccluded()) {
3142 // don't launch home if keyguard showing
3143 return;
3144 }
3145
3146 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3147 // when in keyguard restricted mode, must first verify unlock
3148 // before launching home
3149 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3150 @Override
3151 public void onKeyguardExitResult(boolean success) {
3152 if (success) {
3153 try {
3154 ActivityManagerNative.getDefault().stopAppSwitches();
3155 } catch (RemoteException e) {
3156 }
3157 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3158 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003159 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003160 }
Bryce Lee662ed802015-04-10 20:11:39 +00003161 });
3162 return;
3163 }
3164 }
3165
3166 // no keyguard stuff to worry about, just launch home!
3167 try {
3168 ActivityManagerNative.getDefault().stopAppSwitches();
3169 } catch (RemoteException e) {
3170 }
3171 if (mRecentsVisible) {
3172 // Hide Recents and notify it to launch Home
3173 if (awakenFromDreams) {
3174 awakenDreams();
3175 }
3176 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3177 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003178 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003179 // Otherwise, just launch Home
3180 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3181 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003182 }
3183 }
3184
John Spurlock04db1762013-05-13 12:46:41 -04003185 private final Runnable mClearHideNavigationFlag = new Runnable() {
3186 @Override
3187 public void run() {
3188 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3189 // Clear flags.
3190 mForceClearedSystemUiFlags &=
3191 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3192 }
3193 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003194 }
3195 };
3196
3197 /**
3198 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3199 * to determine when the nav bar should be shown and prevent applications from
3200 * receiving those touches.
3201 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003202 final class HideNavInputEventReceiver extends InputEventReceiver {
3203 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3204 super(inputChannel, looper);
3205 }
3206
Dianne Hackborndf89e652011-10-06 22:35:11 -07003207 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003208 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003209 boolean handled = false;
3210 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003211 if (event instanceof MotionEvent
3212 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3213 final MotionEvent motionEvent = (MotionEvent)event;
3214 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003215 // When the user taps down, we re-show the nav bar.
3216 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003217 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003218 // Any user activity always causes us to show the
3219 // navigation controls, if they had been hidden.
3220 // We also clear the low profile and only content
3221 // flags so that tapping on the screen will atomically
3222 // restore all currently hidden screen decorations.
3223 int newVal = mResettingSystemUiFlags |
3224 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3225 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3226 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003227 if (mResettingSystemUiFlags != newVal) {
3228 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003229 changed = true;
3230 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003231 // We don't allow the system's nav bar to be hidden
3232 // again for 1 second, to prevent applications from
3233 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003234 newVal = mForceClearedSystemUiFlags |
3235 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003236 if (mForceClearedSystemUiFlags != newVal) {
3237 mForceClearedSystemUiFlags = newVal;
3238 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003239 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003240 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003241 }
3242 if (changed) {
3243 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3244 }
3245 }
3246 }
3247 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003248 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003249 }
3250 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003251 }
3252 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3253 new InputEventReceiver.Factory() {
3254 @Override
3255 public InputEventReceiver createInputEventReceiver(
3256 InputChannel inputChannel, Looper looper) {
3257 return new HideNavInputEventReceiver(inputChannel, looper);
3258 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003259 };
3260
3261 @Override
3262 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003263 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3264 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003265 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003266
Dianne Hackborndf89e652011-10-06 22:35:11 -07003267 // Reset any bits in mForceClearingStatusBarVisibility that
3268 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003269 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003270 // Clear any bits in the new visibility that are currently being
3271 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003272 return visibility & ~mResettingSystemUiFlags
3273 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003274 }
3275
Craig Mautner69b08182012-09-05 13:07:13 -07003276 @Override
Adrian Roos37d7a682014-11-06 18:15:16 +01003277 public void getInsetHintLw(WindowManager.LayoutParams attrs, Rect outContentInsets,
3278 Rect outStableInsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003279 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003280 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3281 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003282
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003283 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003284 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003285 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003286 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003287 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003288 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3289 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3290 } else {
3291 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3292 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3293 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003294 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3295 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003296 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003297 availRight - mStableFullscreenRight,
3298 availBottom - mStableFullscreenBottom);
3299 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003300 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003301 availRight - mStableRight, availBottom - mStableBottom);
3302 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003303 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003304 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003305 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003306 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003307 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003308 availRight - mCurRight, availBottom - mCurBottom);
3309 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003310 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003311 availRight - mCurRight, availBottom - mCurBottom);
3312 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003313
3314 outStableInsets.set(mStableLeft, mStableTop,
3315 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003316 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003317 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003318 outContentInsets.setEmpty();
3319 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003320 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003321
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003322 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003323 @Override
3324 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3325 int displayRotation) {
Dianne Hackbornc652de82013-02-15 16:32:56 -08003326 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3327 if (isDefaultDisplay) {
3328 switch (displayRotation) {
3329 case Surface.ROTATION_90:
3330 overscanLeft = mOverscanTop;
3331 overscanTop = mOverscanRight;
3332 overscanRight = mOverscanBottom;
3333 overscanBottom = mOverscanLeft;
3334 break;
3335 case Surface.ROTATION_180:
3336 overscanLeft = mOverscanRight;
3337 overscanTop = mOverscanBottom;
3338 overscanRight = mOverscanLeft;
3339 overscanBottom = mOverscanTop;
3340 break;
3341 case Surface.ROTATION_270:
3342 overscanLeft = mOverscanBottom;
3343 overscanTop = mOverscanLeft;
3344 overscanRight = mOverscanTop;
3345 overscanBottom = mOverscanRight;
3346 break;
3347 default:
3348 overscanLeft = mOverscanLeft;
3349 overscanTop = mOverscanTop;
3350 overscanRight = mOverscanRight;
3351 overscanBottom = mOverscanBottom;
3352 break;
3353 }
3354 } else {
3355 overscanLeft = 0;
3356 overscanTop = 0;
3357 overscanRight = 0;
3358 overscanBottom = 0;
3359 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003360 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3361 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3362 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3363 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003364 mSystemLeft = 0;
3365 mSystemTop = 0;
3366 mSystemRight = displayWidth;
3367 mSystemBottom = displayHeight;
3368 mUnrestrictedScreenLeft = overscanLeft;
3369 mUnrestrictedScreenTop = overscanTop;
3370 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3371 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3372 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3373 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003374 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3375 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003376 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003377 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003378 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003379 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003380 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003381 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003382 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003383 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003384 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003385 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003386
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003387 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3388 final Rect pf = mTmpParentFrame;
3389 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003390 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003391 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003392 final Rect dcf = mTmpDecorFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003393 final Rect osf = mTmpOutsetFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003394 pf.left = df.left = of.left = vf.left = mDockLeft;
3395 pf.top = df.top = of.top = vf.top = mDockTop;
3396 pf.right = df.right = of.right = vf.right = mDockRight;
3397 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003398 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003399
Craig Mautner69b08182012-09-05 13:07:13 -07003400 if (isDefaultDisplay) {
3401 // For purposes of putting out fake window up to steal focus, we will
3402 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003403 final int sysui = mLastSystemUiFlags;
3404 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003405 boolean navTranslucent = (sysui
3406 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003407 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3408 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3409 boolean navAllowedHidden = immersive || immersiveSticky;
3410 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003411 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3412 if (!isKeyguardShowing) {
3413 navTranslucent &= areTranslucentBarsAllowed();
3414 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003415
Craig Mautner69b08182012-09-05 13:07:13 -07003416 // When the navigation bar isn't visible, we put up a fake
3417 // input window to catch all touch events. This way we can
3418 // detect when the user presses anywhere to bring back the nav
3419 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003420 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003421 if (mInputConsumer != null) {
3422 mInputConsumer.dismiss();
3423 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003424 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003425 } else if (mInputConsumer == null) {
3426 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3427 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003428 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003429
Craig Mautner69b08182012-09-05 13:07:13 -07003430 // For purposes of positioning and showing the nav bar, if we have
3431 // decided that it can't be hidden (because of the screen aspect ratio),
3432 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003433 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003434
John Spurlockad3e6cb2013-04-30 08:47:43 -04003435 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003436 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003437 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003438 // Force the navigation bar to its appropriate place and
3439 // size. We need to do this directly, instead of relying on
3440 // it to bubble up from the nav bar, because this needs to
3441 // change atomically with screen rotations.
3442 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3443 if (mNavigationBarOnBottom) {
3444 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003445 int top = displayHeight - overscanBottom
3446 - mNavigationBarHeightForRotation[displayRotation];
3447 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003448 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003449 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003450 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003451 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003452 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003453 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003454 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3455 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003456 } else {
3457 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003458 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003459 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003460 if (navVisible && !navTranslucent && !navAllowedHidden
3461 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003462 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003463 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003464 // and not in the process of animating on or off, then
3465 // we can tell the app that it is covered by it.
3466 mSystemBottom = mTmpNavigationFrame.top;
3467 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003468 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003469 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003470 int left = displayWidth - overscanRight
3471 - mNavigationBarWidthForRotation[displayRotation];
3472 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003473 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003474 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003475 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003476 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003477 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003478 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003479 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3480 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003481 } else {
3482 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003483 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003484 }
John Spurlockbd957402013-10-03 11:38:39 -04003485 if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3486 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003487 // If the nav bar is currently requested to be visible,
3488 // and not in the process of animating on or off, then
3489 // we can tell the app that it is covered by it.
3490 mSystemRight = mTmpNavigationFrame.left;
3491 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003492 }
Craig Mautner69b08182012-09-05 13:07:13 -07003493 // Make sure the content and current rectangles are updated to
3494 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003495 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3496 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3497 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3498 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003499 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3500 // And compute the final frame.
3501 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003502 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003503 mTmpNavigationFrame, mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003504 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003505 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003506 updateSysUiVisibility = true;
3507 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003508 }
Craig Mautnereda67292013-04-28 13:50:14 -07003509 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003510 mDockLeft, mDockTop, mDockRight, mDockBottom));
3511
3512 // decide where the status bar goes ahead of time
3513 if (mStatusBar != null) {
3514 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003515 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3516 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3517 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3518 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3519 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003520 vf.left = mStableLeft;
3521 vf.top = mStableTop;
3522 vf.right = mStableRight;
3523 vf.bottom = mStableBottom;
3524
3525 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3526
3527 // Let the status bar determine its size.
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003528 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3529 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3530 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
Craig Mautner69b08182012-09-05 13:07:13 -07003531
3532 // For layout, the status bar is always at the top with our fixed height.
3533 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3534
John Spurlocke1f366f2013-08-05 12:22:40 -04003535 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003536 boolean statusBarTranslucent = (sysui
3537 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003538 if (!isKeyguardShowing) {
3539 statusBarTranslucent &= areTranslucentBarsAllowed();
3540 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003541
Craig Mautner69b08182012-09-05 13:07:13 -07003542 // If the status bar is hidden, we don't want to cause
3543 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003544 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003545 // Status bar may go away, so the screen area it occupies
3546 // is available to apps but just covering them when the
3547 // status bar is visible.
3548 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3549
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003550 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3551 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3552 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3553 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003554
Craig Mautnereda67292013-04-28 13:50:14 -07003555 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003556 String.format(
3557 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3558 mDockLeft, mDockTop, mDockRight, mDockBottom,
3559 mContentLeft, mContentTop, mContentRight, mContentBottom,
3560 mCurLeft, mCurTop, mCurRight, mCurBottom));
3561 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003562 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003563 && !statusBarTransient && !statusBarTranslucent
3564 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003565 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003566 // and not in the process of animating on or off, then
3567 // we can tell the app that it is covered by it.
3568 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3569 }
John Spurlock27735a42013-08-14 17:57:38 -04003570 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003571 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003572 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003573 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003574 if (updateSysUiVisibility) {
3575 updateSystemUiVisibilityLw();
3576 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003577 }
3578 }
3579
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003580 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003581 @Override
John Spurlock46646232013-09-30 22:32:42 -04003582 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003583 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3584 return mStatusBar.getSurfaceLayer();
3585 }
3586
3587 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3588 return mNavigationBar.getSurfaceLayer();
3589 }
3590
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003591 return 0;
3592 }
3593
Craig Mautner967212c2013-04-13 21:10:58 -07003594 @Override
3595 public void getContentRectLw(Rect r) {
3596 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3597 }
3598
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003599 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3600 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003601 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3602 // Here's a special case: if this attached window is a panel that is
3603 // above the dock window, and the window it is attached to is below
3604 // the dock window, then the frames we computed for the window it is
3605 // attached to can not be used because the dock is effectively part
3606 // of the underlying window and the attached window is floating on top
3607 // of the whole thing. So, we ignore the attached window and explicitly
3608 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003609 df.left = of.left = cf.left = vf.left = mDockLeft;
3610 df.top = of.top = cf.top = vf.top = mDockTop;
3611 df.right = of.right = cf.right = vf.right = mDockRight;
3612 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003613 } else {
3614 // The effective display frame of the attached window depends on
3615 // whether it is taking care of insetting its content. If not,
3616 // we need to use the parent's content frame so that the entire
3617 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003618 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003619 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003620 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003621 // Set the content frame of the attached window to the parent's decor frame
3622 // (same as content frame when IME isn't present) if specifically requested by
3623 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3624 // Otherwise, use the overscan frame.
3625 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3626 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003627 } else {
3628 // If the window is resizing, then we want to base the content
3629 // frame on our attached content frame to resize... however,
3630 // things can be tricky if the attached window is NOT in resize
3631 // mode, in which case its content frame will be larger.
3632 // Ungh. So to deal with that, make sure the content frame
3633 // we end up using is not covering the IM dock.
3634 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003635 if (attached.isVoiceInteraction()) {
3636 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3637 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3638 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3639 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3640 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003641 if (cf.left < mContentLeft) cf.left = mContentLeft;
3642 if (cf.top < mContentTop) cf.top = mContentTop;
3643 if (cf.right > mContentRight) cf.right = mContentRight;
3644 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3645 }
3646 }
3647 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003648 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003649 vf.set(attached.getVisibleFrameLw());
3650 }
3651 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3652 // window should be positioned relative to its parent or the entire
3653 // screen.
3654 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3655 ? attached.getFrameLw() : df);
3656 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003657
3658 private void applyStableConstraints(int sysui, int fl, Rect r) {
3659 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3660 // If app is requesting a stable layout, don't let the
3661 // content insets go below the stable values.
3662 if ((fl & FLAG_FULLSCREEN) != 0) {
3663 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3664 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3665 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3666 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3667 } else {
3668 if (r.left < mStableLeft) r.left = mStableLeft;
3669 if (r.top < mStableTop) r.top = mStableTop;
3670 if (r.right > mStableRight) r.right = mStableRight;
3671 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3672 }
3673 }
3674 }
3675
Jorim Jaggiaa806142015-05-20 18:04:16 -07003676 private boolean canReceiveInput(WindowState win) {
3677 boolean notFocusable =
3678 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3679 boolean altFocusableIm =
3680 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3681 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3682 return !notFocusableForIm;
3683 }
3684
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003685 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003686 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003687 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003688 // We've already done the navigation bar and status bar. If the status bar can receive
3689 // input, we need to layout it again to accomodate for the IME window.
3690 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003691 return;
3692 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003693 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003694 final boolean isDefaultDisplay = win.isDefaultDisplay();
3695 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003696 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3697 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003698 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003699 offsetInputMethodWindowLw(mLastInputMethodWindow);
3700 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003701
John Spurlockc6d1c602014-01-17 15:22:06 -05003702 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003703 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003704 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003705
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003706 final Rect pf = mTmpParentFrame;
3707 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003708 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003709 final Rect cf = mTmpContentFrame;
3710 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003711 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003712 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003713 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003714 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003715
3716 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003717 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003718
Craig Mautnerf683b562012-10-02 11:10:57 -07003719 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3720
Adrian Roosfa104232014-06-20 16:10:14 -07003721 if (isDefaultDisplay) {
3722 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3723 } else {
3724 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3725 }
3726
Craig Mautner69b08182012-09-05 13:07:13 -07003727 if (!isDefaultDisplay) {
3728 if (attached != null) {
3729 // If this window is attached to another, our display
3730 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003731 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003732 } else {
3733 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003734 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3735 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3736 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003737 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003738 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003739 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003740 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003741 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003742 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3743 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3744 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003745 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003746 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003747 // ...with content insets above the nav bar
3748 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003749 // IM dock windows always go to the bottom of the screen.
3750 attrs.gravity = Gravity.BOTTOM;
3751 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003752 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003753 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003754 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003755 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3756 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003757 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003758 // Note: In Phone landscape mode, the button bar should also be excluded.
3759 cf.right = vf.right = mStableRight;
3760 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003761 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003762 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003763 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3764 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3765 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3766 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3767 cf.left = vf.left = mStableLeft;
3768 cf.top = vf.top = mStableTop;
3769 cf.right = vf.right = mStableRight;
3770 vf.bottom = mStableBottom;
3771 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003772 } else {
John Spurlock46646232013-09-30 22:32:42 -04003773
3774 // Default policy decor for the default display
3775 dcf.left = mSystemLeft;
3776 dcf.top = mSystemTop;
3777 dcf.right = mSystemRight;
3778 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003779 final boolean inheritTranslucentDecor = (attrs.privateFlags
3780 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003781 final boolean isAppWindow =
3782 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3783 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3784 final boolean topAtRest =
3785 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3786 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003787 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3788 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003789 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3790 && (fl & WindowManager.LayoutParams.
3791 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003792 // Ensure policy decor includes status bar
3793 dcf.top = mStableTop;
3794 }
John Spurlockbd957402013-10-03 11:38:39 -04003795 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003796 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3797 && (fl & WindowManager.LayoutParams.
3798 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003799 // Ensure policy decor includes navigation bar
3800 dcf.bottom = mStableBottom;
3801 dcf.right = mStableRight;
3802 }
3803 }
3804
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003805 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3806 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003807 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003808 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003809 // This is the case for a normal activity window: we want it
3810 // to cover all of the screen space, and it can take care of
3811 // moving its contents to account for screen decorations that
3812 // intrude into that space.
3813 if (attached != null) {
3814 // If this window is attached to another, our display
3815 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003816 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003817 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003818 if (attrs.type == TYPE_STATUS_BAR_PANEL
3819 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003820 // Status bar panels are the only windows who can go on top of
3821 // the status bar. They are protected by the STATUS_BAR_SERVICE
3822 // permission, so they have the same privileges as the status
3823 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003824 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003825 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003826
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003827 pf.left = df.left = of.left = hasNavBar
3828 ? mDockLeft : mUnrestrictedScreenLeft;
3829 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3830 pf.right = df.right = of.right = hasNavBar
3831 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3832 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3833 pf.bottom = df.bottom = of.bottom = hasNavBar
3834 ? mRestrictedScreenTop+mRestrictedScreenHeight
3835 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003836
Craig Mautnereda67292013-04-28 13:50:14 -07003837 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003838 "Laying out status bar window: (%d,%d - %d,%d)",
3839 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003840 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003841 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3842 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3843 // Asking to layout into the overscan region, so give it that pure
3844 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003845 pf.left = df.left = of.left = mOverscanScreenLeft;
3846 pf.top = df.top = of.top = mOverscanScreenTop;
3847 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3848 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3849 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003850 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003851 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003852 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3853 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003854 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003855 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003856 // only do this for application windows to ensure no window that
3857 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08003858 pf.left = df.left = mOverscanScreenLeft;
3859 pf.top = df.top = mOverscanScreenTop;
3860 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3861 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003862 // We need to tell the app about where the frame inside the overscan
3863 // is, so it can inset its content by that amount -- it didn't ask
3864 // to actually extend itself into the overscan region.
3865 of.left = mUnrestrictedScreenLeft;
3866 of.top = mUnrestrictedScreenTop;
3867 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3868 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003869 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08003870 pf.left = df.left = mRestrictedOverscanScreenLeft;
3871 pf.top = df.top = mRestrictedOverscanScreenTop;
3872 pf.right = df.right = mRestrictedOverscanScreenLeft
3873 + mRestrictedOverscanScreenWidth;
3874 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
3875 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003876 // We need to tell the app about where the frame inside the overscan
3877 // is, so it can inset its content by that amount -- it didn't ask
3878 // to actually extend itself into the overscan region.
3879 of.left = mUnrestrictedScreenLeft;
3880 of.top = mUnrestrictedScreenTop;
3881 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3882 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003883 }
Craig Mautner69b08182012-09-05 13:07:13 -07003884
John Spurlock46646232013-09-30 22:32:42 -04003885 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003886 if (win.isVoiceInteraction()) {
3887 cf.left = mVoiceContentLeft;
3888 cf.top = mVoiceContentTop;
3889 cf.right = mVoiceContentRight;
3890 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003891 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003892 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
3893 cf.left = mDockLeft;
3894 cf.top = mDockTop;
3895 cf.right = mDockRight;
3896 cf.bottom = mDockBottom;
3897 } else {
3898 cf.left = mContentLeft;
3899 cf.top = mContentTop;
3900 cf.right = mContentRight;
3901 cf.bottom = mContentBottom;
3902 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003903 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003904 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003905 // Full screen windows are always given a layout that is as if the
3906 // status bar and other transient decors are gone. This is to avoid
3907 // bad states when moving from a window that is not hding the
3908 // status bar to one that is.
3909 cf.left = mRestrictedScreenLeft;
3910 cf.top = mRestrictedScreenTop;
3911 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
3912 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003913 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003914 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003915 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3916 vf.left = mCurLeft;
3917 vf.top = mCurTop;
3918 vf.right = mCurRight;
3919 vf.bottom = mCurBottom;
3920 } else {
3921 vf.set(cf);
3922 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003923 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003924 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
3925 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
3926 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07003927 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3928 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003929 // A window that has requested to fill the entire screen just
3930 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003931 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04003932 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
3933 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003934 pf.left = df.left = of.left = cf.left = hasNavBar
3935 ? mDockLeft : mUnrestrictedScreenLeft;
3936 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3937 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003938 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08003939 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003940 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003941 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003942 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003943 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04003944 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
3945 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07003946 } else if (attrs.type == TYPE_NAVIGATION_BAR
3947 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003948 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003949 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3950 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3951 pf.right = df.right = of.right = mUnrestrictedScreenLeft
3952 + mUnrestrictedScreenWidth;
3953 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
3954 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003955 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003956 "Laying out navigation bar window: (%d,%d - %d,%d)",
3957 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08003958 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
3959 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07003960 && ((fl & FLAG_FULLSCREEN) != 0)) {
3961 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003962 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3963 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3964 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3965 + mOverscanScreenWidth;
3966 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3967 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08003968 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08003969 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003970 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3971 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3972 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3973 + mOverscanScreenWidth;
3974 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3975 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04003976 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003977 // The wallpaper also has Real Ultimate Power, but we want to tell
3978 // it about the overscan area.
3979 pf.left = df.left = mOverscanScreenLeft;
3980 pf.top = df.top = mOverscanScreenTop;
3981 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3982 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
3983 of.left = cf.left = mUnrestrictedScreenLeft;
3984 of.top = cf.top = mUnrestrictedScreenTop;
3985 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3986 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04003987 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003988 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3989 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3990 // Asking to layout into the overscan region, so give it that pure
3991 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003992 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3993 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3994 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003995 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003996 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003997 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003998 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003999 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004000 && (attrs.type == TYPE_STATUS_BAR
4001 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004002 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004003 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4004 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004005 // Asking for layout as if the nav bar is hidden, lets the
4006 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004007 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004008 // can be above the nav bar can do this.
4009 // XXX This assumes that an app asking for this will also
4010 // ask for layout in only content. We can't currently figure out
4011 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004012 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4013 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4014 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4015 + mUnrestrictedScreenWidth;
4016 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4017 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004018 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004019 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4020 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4021 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4022 + mRestrictedScreenWidth;
4023 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4024 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004025 }
Craig Mautner69b08182012-09-05 13:07:13 -07004026
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004027 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004028
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004029 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4030 vf.left = mCurLeft;
4031 vf.top = mCurTop;
4032 vf.right = mCurRight;
4033 vf.bottom = mCurBottom;
4034 } else {
4035 vf.set(cf);
4036 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004037 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004038 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4039 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004040 // A child window should be placed inside of the same visible
4041 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004042 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004043 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004044 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4045 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004046 // Otherwise, a normal window must be placed inside the content
4047 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004048 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4049 // Status bar panels and the volume dialog are the only windows who can go on
4050 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004051 // permission, so they have the same privileges as the status
4052 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004053 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4054 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4055 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4056 + mRestrictedScreenWidth;
4057 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4058 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004059 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004060 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004061 pf.left = df.left = of.left = cf.left = mStableLeft;
4062 pf.top = df.top = of.top = cf.top = mStableTop;
4063 pf.right = df.right = of.right = cf.right = mStableRight;
4064 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004065 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004066 pf.left = mContentLeft;
4067 pf.top = mContentTop;
4068 pf.right = mContentRight;
4069 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004070 if (win.isVoiceInteraction()) {
4071 df.left = of.left = cf.left = mVoiceContentLeft;
4072 df.top = of.top = cf.top = mVoiceContentTop;
4073 df.right = of.right = cf.right = mVoiceContentRight;
4074 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4075 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004076 df.left = of.left = cf.left = mDockLeft;
4077 df.top = of.top = cf.top = mDockTop;
4078 df.right = of.right = cf.right = mDockRight;
4079 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004080 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004081 df.left = of.left = cf.left = mContentLeft;
4082 df.top = of.top = cf.top = mContentTop;
4083 df.right = of.right = cf.right = mContentRight;
4084 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004085 }
4086 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4087 vf.left = mCurLeft;
4088 vf.top = mCurTop;
4089 vf.right = mCurRight;
4090 vf.bottom = mCurBottom;
4091 } else {
4092 vf.set(cf);
4093 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004094 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004095 }
4096 }
Craig Mautner69b08182012-09-05 13:07:13 -07004097
Craig Mautnerb816bed2013-07-23 10:26:17 -07004098 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4099 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004100 df.left = df.top = -10000;
4101 df.right = df.bottom = 10000;
4102 if (attrs.type != TYPE_WALLPAPER) {
4103 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4104 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4105 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004106 }
4107
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004108 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4109 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004110 // We only want to apply outsets to certain types of windows. For example, we never want to
4111 // apply the outsets to floating dialogs, because they wouldn't make sense there.
4112 final boolean useOutsets = attrs.type == TYPE_WALLPAPER
4113 || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
4114 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
4115 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004116 osf = mTmpOutsetFrame;
4117 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4118 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4119 if (outset > 0) {
4120 int rotation = Surface.ROTATION_0;
4121 try {
4122 rotation = mWindowManager.getRotation();
4123 } catch (RemoteException e) {
4124 }
4125 if (rotation == Surface.ROTATION_0) {
4126 osf.bottom += outset;
4127 } else if (rotation == Surface.ROTATION_90) {
4128 osf.right += outset;
4129 } else if (rotation == Surface.ROTATION_180) {
4130 osf.top -= outset;
4131 } else if (rotation == Surface.ROTATION_270) {
4132 osf.left -= outset;
4133 }
4134 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4135 + " with rotation " + rotation + ", result: " + osf);
4136 }
4137 }
4138
Craig Mautnereda67292013-04-28 13:50:14 -07004139 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004140 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004141 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004142 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004143 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004144 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004145 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004146 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004147 + " sf=" + sf.toShortString()
4148 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004149
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004150 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004151
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004152 // Dock windows carve out the bottom of the screen, so normal windows
4153 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004154 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4155 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004156 setLastInputMethodWindowLw(null, null);
4157 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004158 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004159 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4160 && !win.getGivenInsetsPendingLw()) {
4161 offsetVoiceInputWindowLw(win);
4162 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004163 }
4164
satok1bc0a492012-04-25 22:47:12 +09004165 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004166 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004167 top += win.getGivenContentInsetsLw().top;
4168 if (mContentBottom > top) {
4169 mContentBottom = top;
4170 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004171 if (mVoiceContentBottom > top) {
4172 mVoiceContentBottom = top;
4173 }
satok1bc0a492012-04-25 22:47:12 +09004174 top = win.getVisibleFrameLw().top;
4175 top += win.getGivenVisibleInsetsLw().top;
4176 if (mCurBottom > top) {
4177 mCurBottom = top;
4178 }
Craig Mautnereda67292013-04-28 13:50:14 -07004179 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004180 + mDockBottom + " mContentBottom="
4181 + mContentBottom + " mCurBottom=" + mCurBottom);
4182 }
4183
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004184 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004185 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004186 top += win.getGivenContentInsetsLw().top;
4187 if (mVoiceContentBottom > top) {
4188 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004189 }
4190 }
4191
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004192 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004193 @Override
4194 public void finishLayoutLw() {
4195 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004196 }
4197
4198 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004199 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004200 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004201 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004202 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004203 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004204 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004205 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004206 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004207 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004208 mForcingShowNavBar = false;
4209 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004210
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004211 mHideLockScreen = false;
4212 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004213 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004214 mShowingLockscreen = false;
4215 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004216 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004217 mKeyguardSecure = isKeyguardSecure();
4218 mKeyguardSecureIncludingHidden = mKeyguardSecure
4219 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004220 }
4221
4222 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004223 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004224 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004225 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4226 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004227 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004228 if (mTopFullscreenOpaqueWindowState == null
4229 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4230 mForcingShowNavBar = true;
4231 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004232 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004233 if (attrs.type == TYPE_STATUS_BAR) {
4234 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4235 mForceStatusBarFromKeyguard = true;
4236 }
4237 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4238 mForceStatusBarTransparent = true;
4239 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004240 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004241
4242 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4243 && attrs.type < FIRST_SYSTEM_WINDOW;
4244 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4245 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4246
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004247 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004248 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004249 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004250 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004251 mForceStatusBarFromKeyguard = true;
4252 } else {
4253 mForceStatusBar = true;
4254 }
4255 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004256 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004257 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004258 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004259 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004260 // If the lockscreen was showing when the dream started then wait
4261 // for the dream to draw before hiding the lockscreen.
4262 if (!mDreamingLockscreen
4263 || (win.isVisibleLw() && win.hasDrawnLw())) {
4264 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004265 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004266 }
4267 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004268
Craig Mautnerab55e522014-03-03 13:26:03 -08004269 if (appWindow) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004270 final IApplicationToken appToken = win.getAppToken();
4271 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004272 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004273 mAppsToBeHidden.remove(appToken);
4274 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004275 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004276 if (dismissKeyguard && !mKeyguardSecure) {
4277 mAppsThatDismissKeyguard.add(appToken);
4278 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004279 mWinShowWhenLocked = win;
4280 mHideLockScreen = true;
4281 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004282 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004283 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004284 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004285 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004286 mAppsToBeHidden.add(appToken);
4287 } else {
4288 mAppsToBeHidden.remove(appToken);
4289 }
4290 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004291 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004292 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004293 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004294 if (attrs.x == 0 && attrs.y == 0
4295 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4296 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4297 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4298 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004299 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4300 mTopFullscreenOpaqueOrDimmingWindowState = win;
4301 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004302 if (!mAppsThatDismissKeyguard.isEmpty() &&
4303 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4304 if (DEBUG_LAYOUT) Slog.v(TAG,
4305 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004306 mDismissKeyguard = (mWinDismissingKeyguard == win
4307 && mSecureDismissingKeyguard == mKeyguardSecure)
4308 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004309 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004310 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004311 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004312 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4313 if (DEBUG_LAYOUT) Slog.v(TAG,
4314 "Setting mHideLockScreen to true by win " + win);
4315 mHideLockScreen = true;
4316 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004317 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004318 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004319 mAllowLockscreenWhenOn = true;
4320 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004321 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004322
4323 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004324 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4325 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004326 win.hideLw(false);
4327 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004328 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004329 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4330 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4331 // that is being hidden in an animation - keep the
4332 // keyguard hidden until the new window shows up and
4333 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004334 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004335 mHideLockScreen = true;
4336 mWinShowWhenLocked = win;
4337 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004338 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004339 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4340 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4341 && win.isDimming()) {
4342 mTopFullscreenOpaqueOrDimmingWindowState = win;
4343 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004344 }
4345
4346 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004347 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004348 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004349 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4350 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4351 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004352 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4353 // fullscreen window.
4354 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4355 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4356 mTopFullscreenOpaqueWindowState.hideLw(false);
4357 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4358 }
4359
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004360 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004361 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004362
4363 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4364 ? mTopFullscreenOpaqueWindowState.getAttrs()
4365 : null;
4366
Jeff Brownc8018eb2012-10-29 21:33:27 -07004367 // If we are not currently showing a dream then remember the current
4368 // lockscreen state. We will use this to determine whether the dream
4369 // started while the lockscreen was showing and remember this state
4370 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004371 if (!mShowingDream) {
4372 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004373 if (mDreamingSleepTokenNeeded) {
4374 mDreamingSleepTokenNeeded = false;
4375 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4376 }
4377 } else {
4378 if (!mDreamingSleepTokenNeeded) {
4379 mDreamingSleepTokenNeeded = true;
4380 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4381 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004382 }
4383
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004384 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004385 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004386 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004387 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004388 boolean shouldBeTransparent = mForceStatusBarTransparent
4389 && !mForceStatusBar
4390 && !mForceStatusBarFromKeyguard;
4391 if (!shouldBeTransparent) {
4392 mStatusBarController.setShowTransparent(false /* transparent */);
4393 } else if (!mStatusBar.isVisibleLw()) {
4394 mStatusBarController.setShowTransparent(true /* transparent */);
4395 }
4396 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004397 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004398 if (mStatusBarController.setBarShowingLw(true)) {
4399 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4400 }
Craig Mautner81defc72013-10-29 11:10:42 -07004401 // Maintain fullscreen layout until incoming animation is complete.
4402 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004403 // Transient status bar on the lockscreen is not allowed
4404 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4405 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4406 mLastSystemUiFlags, mLastSystemUiFlags);
4407 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004408 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004409 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004410 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004411 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004412 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004413 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004414 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004415 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004416 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004417 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004418 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004419 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004420 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4421 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004422 if (mStatusBarController.isTransientShowing()) {
4423 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004424 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4425 }
4426 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004427 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004428 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004429 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004430 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004431 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004432 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004433 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004434 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004435 if (mStatusBarController.setBarShowingLw(true)) {
4436 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4437 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004438 }
4439 }
4440 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004441
Craig Mautner81defc72013-10-29 11:10:42 -07004442 if (mTopIsFullscreen != topIsFullscreen) {
4443 if (!topIsFullscreen) {
4444 // Force another layout when status bar becomes fully shown.
4445 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4446 }
4447 mTopIsFullscreen = topIsFullscreen;
4448 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004449
Craig Mautner39834192012-09-02 07:47:24 -07004450 // Hide the key guard if a visible window explicitly specifies that it wants to be
4451 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004452 if (mKeyguardDelegate != null && mStatusBar != null) {
4453 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4454 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004455 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004456 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004457 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004458 changes |= FINISH_LAYOUT_REDO_LAYOUT
4459 | FINISH_LAYOUT_REDO_CONFIG
4460 | FINISH_LAYOUT_REDO_WALLPAPER;
4461 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004462 if (mKeyguardDelegate.isShowing()) {
4463 mHandler.post(new Runnable() {
4464 @Override
4465 public void run() {
4466 mKeyguardDelegate.keyguardDone(false, false);
4467 }
4468 });
4469 }
4470 } else if (mHideLockScreen) {
4471 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004472 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004473 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004474 changes |= FINISH_LAYOUT_REDO_LAYOUT
4475 | FINISH_LAYOUT_REDO_CONFIG
4476 | FINISH_LAYOUT_REDO_WALLPAPER;
4477 }
4478 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004479 mKeyguardHidden = false;
4480 if (setKeyguardOccludedLw(false)) {
4481 changes |= FINISH_LAYOUT_REDO_LAYOUT
4482 | FINISH_LAYOUT_REDO_CONFIG
4483 | FINISH_LAYOUT_REDO_WALLPAPER;
4484 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004485 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4486 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004487 mHandler.post(new Runnable() {
4488 @Override
4489 public void run() {
4490 mKeyguardDelegate.dismiss();
4491 }
4492 });
4493 }
4494 } else {
4495 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004496 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004497 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004498 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004499 changes |= FINISH_LAYOUT_REDO_LAYOUT
4500 | FINISH_LAYOUT_REDO_CONFIG
4501 | FINISH_LAYOUT_REDO_WALLPAPER;
4502 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004503 }
4504 }
Joe Onorato664644d2011-01-23 17:53:23 -08004505
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004506 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004507 // If the navigation bar has been hidden or shown, we need to do another
4508 // layout pass to update that window.
4509 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4510 }
Joe Onorato664644d2011-01-23 17:53:23 -08004511
Mike Lockwood28569302010-01-28 11:54:40 -05004512 // update since mAllowLockscreenWhenOn might have changed
4513 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004514 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004515 }
4516
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004517 /**
Jim Millerab954542014-10-10 18:21:49 -07004518 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004519 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004520 * @return Whether the flags have changed and we have to redo the layout.
4521 */
Jim Millerab954542014-10-10 18:21:49 -07004522 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4523 boolean wasOccluded = mKeyguardOccluded;
4524 boolean showing = mKeyguardDelegate.isShowing();
4525 if (wasOccluded && !isOccluded && showing) {
4526 mKeyguardOccluded = false;
4527 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004528 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4529 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4530 return true;
Jim Millerab954542014-10-10 18:21:49 -07004531 } else if (!wasOccluded && isOccluded && showing) {
4532 mKeyguardOccluded = true;
4533 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004534 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4535 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4536 return true;
4537 } else {
4538 return false;
4539 }
4540 }
4541
4542 private boolean isStatusBarKeyguard() {
4543 return mStatusBar != null
4544 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4545 }
4546
Jose Lima9546b202014-07-02 17:21:51 -07004547 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004548 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004549 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004550 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004551 return false;
4552 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004553 return true;
4554 }
4555
Jose Lima9546b202014-07-02 17:21:51 -07004556 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004557 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004558 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004559 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004560 // If the navigation bar has been hidden or shown, we need to do another
4561 // layout pass to update that window.
4562 return FINISH_LAYOUT_REDO_LAYOUT;
4563 }
4564 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004565 }
4566
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004567 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004568 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004569 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4570 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004571 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4572 if (newLidState == mLidState) {
4573 return;
4574 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004575
Jeff Brownc458ce92012-04-30 14:58:40 -07004576 mLidState = newLidState;
4577 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004578 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004579
4580 if (lidOpen) {
Bryce Lee584a4452014-10-21 15:55:55 -07004581 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch);
Jeff Brownc458ce92012-04-30 14:58:40 -07004582 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004583 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004584 }
4585 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004586
Michael Wright3818c922014-09-02 13:59:07 -07004587 @Override
4588 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4589 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4590 if (mCameraLensCoverState == lensCoverState) {
4591 return;
4592 }
4593 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4594 lensCoverState == CAMERA_LENS_UNCOVERED) {
4595 Intent intent;
4596 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4597 mKeyguardDelegate.isShowing();
4598 if (keyguardActive) {
4599 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4600 } else {
4601 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4602 }
Bryce Lee584a4452014-10-21 15:55:55 -07004603 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens);
Bart Sears8b1c27c2015-03-18 23:51:02 +00004604 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004605 }
4606 mCameraLensCoverState = lensCoverState;
4607 }
4608
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004609 void setHdmiPlugged(boolean plugged) {
4610 if (mHdmiPlugged != plugged) {
4611 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004612 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004613 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004614 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004615 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004616 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004617 }
4618 }
4619
Joe Onoratoea495d42011-04-06 11:41:11 -07004620 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004621 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004622 // watch for HDMI plug messages if the hdmi switch exists
4623 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4624 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4625
Joe Onoratoea495d42011-04-06 11:41:11 -07004626 final String filename = "/sys/class/switch/hdmi/state";
4627 FileReader reader = null;
4628 try {
4629 reader = new FileReader(filename);
4630 char[] buf = new char[15];
4631 int n = reader.read(buf);
4632 if (n > 1) {
4633 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4634 }
4635 } catch (IOException ex) {
4636 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4637 } catch (NumberFormatException ex) {
4638 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4639 } finally {
4640 if (reader != null) {
4641 try {
4642 reader.close();
4643 } catch (IOException ex) {
4644 }
Joe Onoratodc100302011-01-11 17:07:41 -08004645 }
4646 }
4647 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004648 // This dance forces the code in setHdmiPlugged to run.
4649 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4650 mHdmiPlugged = !plugged;
4651 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004652 }
4653
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004654 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004655 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004656
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004657 final Runnable mScreenshotTimeout = new Runnable() {
4658 @Override public void run() {
4659 synchronized (mScreenshotLock) {
4660 if (mScreenshotConnection != null) {
4661 mContext.unbindService(mScreenshotConnection);
4662 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004663 }
Winson Chung9112ec32011-06-27 13:15:32 -07004664 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004665 }
4666 };
4667
4668 // Assume this is called from the Handler thread.
4669 private void takeScreenshot() {
4670 synchronized (mScreenshotLock) {
4671 if (mScreenshotConnection != null) {
4672 return;
4673 }
4674 ComponentName cn = new ComponentName("com.android.systemui",
4675 "com.android.systemui.screenshot.TakeScreenshotService");
4676 Intent intent = new Intent();
4677 intent.setComponent(cn);
4678 ServiceConnection conn = new ServiceConnection() {
4679 @Override
4680 public void onServiceConnected(ComponentName name, IBinder service) {
4681 synchronized (mScreenshotLock) {
4682 if (mScreenshotConnection != this) {
4683 return;
4684 }
4685 Messenger messenger = new Messenger(service);
4686 Message msg = Message.obtain(null, 1);
4687 final ServiceConnection myConn = this;
4688 Handler h = new Handler(mHandler.getLooper()) {
4689 @Override
4690 public void handleMessage(Message msg) {
4691 synchronized (mScreenshotLock) {
4692 if (mScreenshotConnection == myConn) {
4693 mContext.unbindService(mScreenshotConnection);
4694 mScreenshotConnection = null;
4695 mHandler.removeCallbacks(mScreenshotTimeout);
4696 }
4697 }
4698 }
4699 };
4700 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004701 msg.arg1 = msg.arg2 = 0;
4702 if (mStatusBar != null && mStatusBar.isVisibleLw())
4703 msg.arg1 = 1;
4704 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4705 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004706 try {
4707 messenger.send(msg);
4708 } catch (RemoteException e) {
4709 }
4710 }
4711 }
4712 @Override
4713 public void onServiceDisconnected(ComponentName name) {}
4714 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004715 if (mContext.bindServiceAsUser(
4716 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004717 mScreenshotConnection = conn;
4718 mHandler.postDelayed(mScreenshotTimeout, 10000);
4719 }
4720 }
Winson Chung9112ec32011-06-27 13:15:32 -07004721 }
4722
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004723 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004724 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004725 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004726 if (!mSystemBooted) {
4727 // If we have not yet booted, don't let key events do anything.
4728 return 0;
4729 }
4730
Jeff Brown037c33e2014-04-09 00:31:55 -07004731 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004732 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4733 final boolean canceled = event.isCanceled();
4734 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004735
Jeff Brown3122e442010-10-11 23:32:49 -07004736 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004737
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004738 // If screen is off then we treat the case where the keyguard is open but hidden
4739 // the same as if it were open and in front.
4740 // This will prevent any keys other than the power button from waking the screen
4741 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004742 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004743 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004744 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004745 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004746
Jeff Brown40013652012-05-16 21:22:36 -07004747 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004748 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004749 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004750 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004751 }
4752
Jeff Brown037c33e2014-04-09 00:31:55 -07004753 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004754 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004755 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4756 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004757 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004758 // When the device is interactive or the key is injected pass the
4759 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004760 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004761 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004762 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4763 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4764 // to the application but preserve its wake key status to make sure we still move
4765 // from dozing to fully interactive if we would normally go from off to fully
4766 // interactive.
4767 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004768 } else {
4769 // When the screen is off and the key is not injected, determine whether
4770 // to wake the device but don't pass the key to the application.
4771 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004772 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4773 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004774 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004775 }
4776
Justin Kohd378ad72013-04-01 12:18:26 -07004777 // If the key would be handled globally, just return the result, don't worry about special
4778 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004779 if (isValidGlobalKey(keyCode)
4780 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004781 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004782 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Michael Wright85b1af62014-06-04 14:51:58 -07004783 }
Justin Kohd378ad72013-04-01 12:18:26 -07004784 return result;
4785 }
4786
Jeff Brownbae8e772014-06-12 19:59:45 -07004787 boolean useHapticFeedback = down
4788 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4789 && event.getRepeatCount() == 0;
4790
Jeff Brown4d396052010-10-29 21:50:21 -07004791 // Handle special keys.
4792 switch (keyCode) {
4793 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004794 case KeyEvent.KEYCODE_VOLUME_UP:
4795 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004796 if (mUseTvRouting) {
4797 // On TVs volume keys never go to the foreground app
4798 result &= ~ACTION_PASS_TO_USER;
4799 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004800 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4801 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004802 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004803 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004804 mScreenshotChordVolumeDownKeyTriggered = true;
4805 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4806 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004807 cancelPendingPowerKeyAction();
4808 interceptScreenshotChord();
4809 }
4810 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004811 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004812 cancelPendingScreenshotChordAction();
4813 }
4814 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4815 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004816 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004817 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004818 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004819 cancelPendingPowerKeyAction();
4820 cancelPendingScreenshotChordAction();
4821 }
4822 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004823 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004824 cancelPendingScreenshotChordAction();
4825 }
4826 }
Jeff Brown4d396052010-10-29 21:50:21 -07004827 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004828 TelecomManager telecomManager = getTelecommService();
4829 if (telecomManager != null) {
4830 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004831 // If an incoming call is ringing, either VOLUME key means
4832 // "silence ringer". We handle these keys here, rather than
4833 // in the InCallScreen, to make sure we'll respond to them
4834 // even if the InCallScreen hasn't come to the foreground yet.
4835 // Look for the DOWN event here, to agree with the "fallback"
4836 // behavior in the InCallScreen.
4837 Log.i(TAG, "interceptKeyBeforeQueueing:"
4838 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004839
Santos Cordon6848f722014-05-21 15:22:12 -07004840 // Silence the ringer. (It's safe to call this
4841 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004842 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004843
Santos Cordon6848f722014-05-21 15:22:12 -07004844 // And *don't* pass this key thru to the current activity
4845 // (which is probably the InCallScreen.)
4846 result &= ~ACTION_PASS_TO_USER;
4847 break;
4848 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004849 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004850 && (result & ACTION_PASS_TO_USER) == 0) {
4851 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004852 // the application, just pass it to the session service.
4853
4854 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004855 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07004856 break;
Jeff Brown4d396052010-10-29 21:50:21 -07004857 }
4858 }
4859
RoboErik430fc482014-06-12 15:49:20 -07004860 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08004861 if (mUseTvRouting) {
4862 dispatchDirectAudioEvent(event);
4863 } else {
4864 // If we aren't passing to the user and no one else
4865 // handled it send it to the session manager to
4866 // figure out.
4867 MediaSessionLegacyHelper.getHelper(mContext)
4868 .sendVolumeKeyEvent(event, true);
4869 }
Jeff Brown4d396052010-10-29 21:50:21 -07004870 break;
4871 }
4872 }
4873 break;
4874 }
4875
4876 case KeyEvent.KEYCODE_ENDCALL: {
4877 result &= ~ACTION_PASS_TO_USER;
4878 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004879 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07004880 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004881 if (telecomManager != null) {
4882 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07004883 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004884 if (interactive && !hungUp) {
4885 mEndCallKeyHandled = false;
4886 mHandler.postDelayed(mEndCallLongPress,
4887 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
4888 } else {
4889 mEndCallKeyHandled = true;
4890 }
Jeff Brown4d396052010-10-29 21:50:21 -07004891 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004892 if (!mEndCallKeyHandled) {
4893 mHandler.removeCallbacks(mEndCallLongPress);
4894 if (!canceled) {
4895 if ((mEndcallBehavior
4896 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
4897 if (goHome()) {
4898 break;
4899 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07004900 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004901 if ((mEndcallBehavior
4902 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
4903 mPowerManager.goToSleep(event.getEventTime(),
4904 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
4905 isWakeKey = false;
4906 }
Jeff Brown4d396052010-10-29 21:50:21 -07004907 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004908 }
Jeff Brown4d396052010-10-29 21:50:21 -07004909 }
4910 break;
4911 }
4912
4913 case KeyEvent.KEYCODE_POWER: {
4914 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07004915 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07004916 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004917 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004918 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004919 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07004920 }
4921 break;
4922 }
4923
Jeff Brown6212a492014-03-07 13:58:47 -08004924 case KeyEvent.KEYCODE_SLEEP: {
4925 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00004926 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07004927 if (!mPowerManager.isInteractive()) {
4928 useHapticFeedback = false; // suppress feedback if already non-interactive
4929 }
Nick Vaccarob593a812015-05-15 11:23:05 -07004930 if (down) {
4931 sleepPress(event.getEventTime());
4932 } else {
4933 sleepRelease(event.getEventTime());
4934 }
Jeff Brown6212a492014-03-07 13:58:47 -08004935 break;
4936 }
4937
4938 case KeyEvent.KEYCODE_WAKEUP: {
4939 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004940 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08004941 break;
4942 }
4943
Jeff Brown4d396052010-10-29 21:50:21 -07004944 case KeyEvent.KEYCODE_MEDIA_PLAY:
4945 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4946 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07004947 case KeyEvent.KEYCODE_HEADSETHOOK:
4948 case KeyEvent.KEYCODE_MUTE:
4949 case KeyEvent.KEYCODE_MEDIA_STOP:
4950 case KeyEvent.KEYCODE_MEDIA_NEXT:
4951 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4952 case KeyEvent.KEYCODE_MEDIA_REWIND:
4953 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004954 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
4955 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07004956 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
4957 // If the global session is active pass all media keys to it
4958 // instead of the active window.
4959 result &= ~ACTION_PASS_TO_USER;
4960 }
Jeff Brown4d396052010-10-29 21:50:21 -07004961 if ((result & ACTION_PASS_TO_USER) == 0) {
4962 // Only do this if we would otherwise not pass it to the user. In that
4963 // case, the PhoneWindow class will do the same thing, except it will
4964 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07004965 // Note that we need to make a copy of the key event here because the
4966 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07004967 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07004968 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
4969 new KeyEvent(event));
4970 msg.setAsynchronous(true);
4971 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07004972 }
4973 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004974 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004975
Jeff Brown4d396052010-10-29 21:50:21 -07004976 case KeyEvent.KEYCODE_CALL: {
4977 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004978 TelecomManager telecomManager = getTelecommService();
4979 if (telecomManager != null) {
4980 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004981 Log.i(TAG, "interceptKeyBeforeQueueing:"
4982 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004983 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004984
Santos Cordon6848f722014-05-21 15:22:12 -07004985 // And *don't* pass this key thru to the current activity
4986 // (which is presumably the InCallScreen.)
4987 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004988 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004989 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004990 }
Jeff Brown4d396052010-10-29 21:50:21 -07004991 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004992 }
Michael Wright869a67c2014-08-26 19:33:06 -07004993 case KeyEvent.KEYCODE_VOICE_ASSIST: {
4994 // Only do this if we would otherwise not pass it to the user. In that case,
4995 // interceptKeyBeforeDispatching would apply a similar but different policy in
4996 // order to invoke voice assist actions. Note that we need to make a copy of the
4997 // key event here because the original key event will be recycled when we return.
4998 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
4999 mBroadcastWakeLock.acquire();
5000 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5001 keyguardActive ? 1 : 0, 0);
5002 msg.setAsynchronous(true);
5003 msg.sendToTarget();
5004 }
5005 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005006 }
Jeff Brown26875502014-01-30 21:47:47 -08005007
Jeff Brownbae8e772014-06-12 19:59:45 -07005008 if (useHapticFeedback) {
5009 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5010 }
5011
Jeff Brown26875502014-01-30 21:47:47 -08005012 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005013 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Jeff Brown26875502014-01-30 21:47:47 -08005014 }
Bryce Lee584a4452014-10-21 15:55:55 -07005015
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005016 return result;
5017 }
5018
Jeff Brown1c2e4942012-11-06 16:32:01 -08005019 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005020 * Returns true if the key can have global actions attached to it.
5021 * We reserve all power management keys for the system since they require
5022 * very careful handling.
5023 */
5024 private static boolean isValidGlobalKey(int keyCode) {
5025 switch (keyCode) {
5026 case KeyEvent.KEYCODE_POWER:
5027 case KeyEvent.KEYCODE_WAKEUP:
5028 case KeyEvent.KEYCODE_SLEEP:
5029 return false;
5030 default:
5031 return true;
5032 }
5033 }
5034
5035 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005036 * When the screen is off we ignore some keys that might otherwise typically
5037 * be considered wake keys. We filter them out here.
5038 *
5039 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5040 * is always considered a wake key.
5041 */
5042 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5043 switch (keyCode) {
5044 // ignore volume keys unless docked
5045 case KeyEvent.KEYCODE_VOLUME_UP:
5046 case KeyEvent.KEYCODE_VOLUME_DOWN:
5047 case KeyEvent.KEYCODE_VOLUME_MUTE:
5048 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5049
5050 // ignore media and camera keys
5051 case KeyEvent.KEYCODE_MUTE:
5052 case KeyEvent.KEYCODE_HEADSETHOOK:
5053 case KeyEvent.KEYCODE_MEDIA_PLAY:
5054 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5055 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5056 case KeyEvent.KEYCODE_MEDIA_STOP:
5057 case KeyEvent.KEYCODE_MEDIA_NEXT:
5058 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5059 case KeyEvent.KEYCODE_MEDIA_REWIND:
5060 case KeyEvent.KEYCODE_MEDIA_RECORD:
5061 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005062 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005063 case KeyEvent.KEYCODE_CAMERA:
5064 return false;
5065 }
5066 return true;
5067 }
5068
5069
Jeff Brown56194eb2011-03-02 19:23:13 -08005070 /** {@inheritDoc} */
5071 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005072 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5073 if ((policyFlags & FLAG_WAKE) != 0) {
Bryce Lee5c138322014-11-03 08:26:09 -08005074 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion)) {
5075 return 0;
5076 }
Michael Wright70af00a2014-09-03 19:30:20 -07005077 }
Bryce Lee5c138322014-11-03 08:26:09 -08005078
Michael Wright70af00a2014-09-03 19:30:20 -07005079 if (shouldDispatchInputWhenNonInteractive()) {
5080 return ACTION_PASS_TO_USER;
5081 }
Bryce Lee5c138322014-11-03 08:26:09 -08005082
Bryce Lee812d7022014-11-10 13:33:28 -08005083 // If we have not passed the action up and we are in theater mode without dreaming,
5084 // there will be no dream to intercept the touch and wake into ambient. The device should
5085 // wake up in this case.
5086 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
5087 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming);
5088 }
5089
Jeff Brown037c33e2014-04-09 00:31:55 -07005090 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005091 }
5092
Michael Wright70af00a2014-09-03 19:30:20 -07005093 private boolean shouldDispatchInputWhenNonInteractive() {
Bryce Lee5c138322014-11-03 08:26:09 -08005094 // Send events to keyguard while the screen is on.
Jim Millerab954542014-10-10 18:21:49 -07005095 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
5096 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08005097 return true;
5098 }
5099
5100 // Send events to a dozing dream even if the screen is off since the dream
5101 // is in control of the state of the screen.
5102 IDreamManager dreamManager = getDreamManager();
5103
5104 try {
5105 if (dreamManager != null && dreamManager.isDreaming()) {
5106 return true;
5107 }
5108 } catch (RemoteException e) {
5109 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5110 }
5111
5112 // Otherwise, consume events since the user can't see what is being
5113 // interacted with.
5114 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005115 }
5116
RoboErik001c59c2015-01-26 15:53:51 -08005117 private void dispatchDirectAudioEvent(KeyEvent event) {
5118 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5119 return;
5120 }
5121 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005122 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5123 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005124 String pkgName = mContext.getOpPackageName();
5125 switch (keyCode) {
5126 case KeyEvent.KEYCODE_VOLUME_UP:
5127 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005128 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005129 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005130 } catch (RemoteException e) {
5131 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5132 }
5133 break;
5134 case KeyEvent.KEYCODE_VOLUME_DOWN:
5135 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005136 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005137 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005138 } catch (RemoteException e) {
5139 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5140 }
5141 break;
5142 case KeyEvent.KEYCODE_VOLUME_MUTE:
5143 try {
5144 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005145 getAudioService().adjustSuggestedStreamVolume(
5146 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005147 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005148 }
5149 } catch (RemoteException e) {
5150 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5151 }
5152 break;
5153 }
5154 }
5155
Jeff Brown40013652012-05-16 21:22:36 -07005156 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5157 if (DEBUG_INPUT) {
5158 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005159 }
5160
Jeff Brown40013652012-05-16 21:22:36 -07005161 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5162 if (DEBUG_INPUT) {
5163 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5164 }
5165
5166 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5167 mHavePendingMediaKeyRepeatWithWakeLock = false;
5168 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5169 }
5170
5171 dispatchMediaKeyWithWakeLockToAudioService(event);
5172
5173 if (event.getAction() == KeyEvent.ACTION_DOWN
5174 && event.getRepeatCount() == 0) {
5175 mHavePendingMediaKeyRepeatWithWakeLock = true;
5176
5177 Message msg = mHandler.obtainMessage(
5178 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5179 msg.setAsynchronous(true);
5180 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5181 } else {
5182 mBroadcastWakeLock.release();
5183 }
5184 }
5185
5186 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5187 mHavePendingMediaKeyRepeatWithWakeLock = false;
5188
5189 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5190 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5191 if (DEBUG_INPUT) {
5192 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5193 }
5194
5195 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5196 mBroadcastWakeLock.release();
5197 }
5198
5199 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5200 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005201 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005202 }
5203 }
5204
Michael Wright869a67c2014-08-26 19:33:06 -07005205 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005206 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5207 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5208 if (dic != null) {
5209 try {
5210 dic.exitIdle("voice-search");
5211 } catch (RemoteException e) {
5212 }
5213 }
Michael Wright869a67c2014-08-26 19:33:06 -07005214 Intent voiceIntent =
5215 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5216 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005217 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005218 mBroadcastWakeLock.release();
5219 }
5220
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005221 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005222 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005223 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005224 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5225 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5226 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005227 } else {
5228 try {
5229 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5230 ServiceManager.getService(Context.UI_MODE_SERVICE));
5231 mUiMode = uiModeService.getCurrentModeType();
5232 } catch (RemoteException e) {
5233 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005234 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005235 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005236 synchronized (mLock) {
5237 updateOrientationListenerLp();
5238 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005239 }
5240 };
5241
Jeff Brown6aaf2952012-10-05 16:01:08 -07005242 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5243 @Override
5244 public void onReceive(Context context, Intent intent) {
5245 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005246 if (mKeyguardDelegate != null) {
5247 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005248 }
5249 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005250 if (mKeyguardDelegate != null) {
5251 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005252 }
5253 }
5254 }
5255 };
5256
Christopher Tate5e08af02012-09-21 17:17:22 -07005257 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5258 @Override
5259 public void onReceive(Context context, Intent intent) {
5260 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5261 // tickle the settings observer: this first ensures that we're
5262 // observing the relevant settings for the newly-active user,
5263 // and then updates our own bookkeeping based on the now-
5264 // current user.
5265 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005266
5267 // force a re-application of focused window sysui visibility.
5268 // the window may never have been shown for this user
5269 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005270 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005271 mLastSystemUiFlags = 0;
5272 updateSystemUiVisibilityLw();
5273 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005274 }
5275 }
5276 };
5277
Adrian Roosddc8b272015-05-21 16:28:27 -07005278 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005279 @Override
5280 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005281 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5282 if (!isUserSetupComplete()) {
5283 // Swipe-up for navigation bar is disabled during setup
5284 return;
5285 }
5286 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5287 mNavigationBarController.showTransient();
5288 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005289 }
5290 };
5291
John Spurlocke1f366f2013-08-05 12:22:40 -04005292 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005293 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005294 if (!isUserSetupComplete()) {
5295 // Swipe-up for navigation bar is disabled during setup
5296 return;
5297 }
John Spurlock27735a42013-08-14 17:57:38 -04005298 boolean sb = mStatusBarController.checkShowTransientBarLw();
5299 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005300 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005301 // Don't show status bar when swiping on already visible navigation bar
5302 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005303 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005304 return;
5305 }
John Spurlock27735a42013-08-14 17:57:38 -04005306 if (sb) mStatusBarController.showTransient();
5307 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005308 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005309 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005310 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005311 }
5312 }
5313
Jeff Brown3ee549c2014-09-22 20:14:39 -07005314 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005315 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005316 public void startedGoingToSleep(int why) {
5317 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005318 if (mKeyguardDelegate != null) {
5319 mKeyguardDelegate.onStartedGoingToSleep(why);
5320 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005321 }
5322
5323 // Called on the PowerManager's Notifier thread.
5324 @Override
5325 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005326 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005327 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Jeff Brown3ee549c2014-09-22 20:14:39 -07005328
5329 // We must get this work done here because the power manager will drop
5330 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005331 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005332 mAwake = false;
5333 mKeyguardDrawComplete = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005334 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005335 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005336 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005337 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005338 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005339 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005340 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005341 }
5342
Jeff Brown3ee549c2014-09-22 20:14:39 -07005343 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005344 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005345 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005346 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005347 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005348
Jeff Brown3ee549c2014-09-22 20:14:39 -07005349 // Since goToSleep performs these functions synchronously, we must
5350 // do the same here. We cannot post this work to a handler because
5351 // that might cause it to become reordered with respect to what
5352 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005353 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005354 mAwake = true;
5355 mKeyguardDrawComplete = false;
5356 if (mKeyguardDelegate != null) {
5357 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5358 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
5359 }
5360
Jeff Browna20dda42014-05-27 20:57:24 -07005361 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005362 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005363 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005364 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005365
Jim Miller5ecd8112013-01-09 18:50:26 -08005366 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005367 mKeyguardDelegate.onStartedWakingUp(mKeyguardDelegateCallback);
Jeff Brown36c4db82014-09-19 12:05:31 -07005368 // ... eventually calls finishKeyguardDrawn
Jeff Brownc38c9be2012-10-04 13:16:19 -07005369 } else {
Craig Mautner8a0da012014-05-31 15:13:37 -07005370 if (DEBUG_WAKEUP) Slog.d(TAG, "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
Jeff Brown36c4db82014-09-19 12:05:31 -07005371 finishKeyguardDrawn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005372 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005373 }
5374
Jeff Brown416c49c2015-05-26 19:50:18 -07005375 // Called on the PowerManager's Notifier thread.
5376 @Override
5377 public void finishedWakingUp() {
5378 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5379 }
5380
5381 private void wakeUpFromPowerKey(long eventTime) {
5382 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey);
5383 }
5384
5385 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode) {
Bryce Leed3896842015-06-23 17:06:51 -07005386 final boolean theaterModeEnabled = isTheaterModeEnabled();
5387 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005388 return false;
5389 }
5390
Bryce Leed3896842015-06-23 17:06:51 -07005391 if (theaterModeEnabled) {
5392 Settings.Global.putInt(mContext.getContentResolver(),
5393 Settings.Global.THEATER_MODE_ON, 0);
5394 }
5395
Jeff Brown416c49c2015-05-26 19:50:18 -07005396 mPowerManager.wakeUp(wakeTime);
5397 return true;
5398 }
5399
Jeff Brown36c4db82014-09-19 12:05:31 -07005400 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005401 synchronized (mLock) {
5402 if (!mAwake || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005403 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005404 }
5405
Jeff Brown36c4db82014-09-19 12:05:31 -07005406 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005407 if (mKeyguardDelegate != null) {
5408 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5409 }
5410 }
5411
5412 finishScreenTurningOn();
5413 }
5414
5415 // Called on the DisplayManager's DisplayPowerController thread.
5416 @Override
5417 public void screenTurnedOff() {
5418 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5419
Jeff Brown48d1b142015-06-10 16:36:03 -07005420 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005421 synchronized (mLock) {
5422 mScreenOnEarly = false;
5423 mScreenOnFully = false;
5424 mWindowManagerDrawComplete = false;
5425 mScreenOnListener = null;
5426 updateOrientationListenerLp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005427 }
5428 }
5429
Jeff Brown3ee549c2014-09-22 20:14:39 -07005430 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005431 @Override
5432 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005433 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005434
Jeff Brown48d1b142015-06-10 16:36:03 -07005435 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005436 synchronized (mLock) {
5437 mScreenOnEarly = true;
5438 mScreenOnFully = false;
5439 mWindowManagerDrawComplete = false;
5440 mScreenOnListener = screenOnListener;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005441 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005442
Craig Mautnerc3daedd2014-09-13 11:17:23 -07005443 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5444 WAITING_FOR_DRAWN_TIMEOUT);
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005445 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5446 // as well as enabling the orientation change logic/sensor.
Jeff Brown36c4db82014-09-19 12:05:31 -07005447 }
5448
Jeff Brown36c4db82014-09-19 12:05:31 -07005449 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005450 synchronized (mLock) {
5451 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005452 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005453 }
5454
Jeff Brown36c4db82014-09-19 12:05:31 -07005455 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005456 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005457
5458 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005459 }
5460
Craig Mautner8a0da012014-05-31 15:13:37 -07005461 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005462 synchronized (mLock) {
5463 // We have just finished drawing screen content. Since the orientation listener
5464 // gets only installed when all windows are drawn, we try to install it again.
5465 updateOrientationListenerLp();
5466 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005467 final ScreenOnListener listener;
5468 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005469 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005470 if (DEBUG_WAKEUP) Slog.d(TAG,
5471 "finishScreenTurningOn: mAwake=" + mAwake
5472 + ", mScreenOnEarly=" + mScreenOnEarly
5473 + ", mScreenOnFully=" + mScreenOnFully
5474 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5475 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5476
5477 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5478 || (mAwake && !mKeyguardDrawComplete)) {
5479 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005480 }
5481
Jeff Brown3ee549c2014-09-22 20:14:39 -07005482 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5483 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005484 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005485 mScreenOnFully = true;
5486
5487 // Remember the first time we draw the keyguard so we know when we're done with
5488 // the main part of booting and can enable the screen and hide boot messages.
5489 if (!mKeyguardDrawnOnce && mAwake) {
5490 mKeyguardDrawnOnce = true;
5491 enableScreen = true;
5492 if (mBootMessageNeedsHiding) {
5493 mBootMessageNeedsHiding = false;
5494 hideBootMessages();
5495 }
5496 } else {
5497 enableScreen = false;
5498 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005499 }
5500
Jeff Brown3ee549c2014-09-22 20:14:39 -07005501 if (listener != null) {
5502 listener.onScreenOn();
5503 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005504
Jeff Brown3ee549c2014-09-22 20:14:39 -07005505 if (enableScreen) {
5506 try {
5507 mWindowManager.enableScreenIfNeeded();
5508 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005509 }
Craig Mautnera631d492014-08-05 15:16:01 -07005510 }
5511 }
5512
5513 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005514 synchronized (mLock) {
5515 if (!mKeyguardDrawnOnce) {
5516 mBootMessageNeedsHiding = true;
5517 return; // keyguard hasn't drawn the first time yet, not done booting
5518 }
Craig Mautnera631d492014-08-05 15:16:01 -07005519 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005520
5521 if (mBootMsgDialog != null) {
5522 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5523 mBootMsgDialog.dismiss();
5524 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005525 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005526 }
5527
5528 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005529 public boolean isScreenOn() {
5530 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005531 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005532
Dianne Hackborn08743722009-12-21 12:16:51 -08005533 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005534 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005535 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005536 if (mKeyguardDelegate != null) {
5537 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005538 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005539 }
5540
5541 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005542 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005543 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005544 if (mKeyguardDelegate != null) {
5545 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005546 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005547 }
5548
Jim Millerab954542014-10-10 18:21:49 -07005549 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005550 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005551 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005552 }
5553
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005554 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005555 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005556 public boolean isKeyguardLocked() {
5557 return keyguardOn();
5558 }
5559
5560 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005561 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005562 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005563 if (mKeyguardDelegate == null) return false;
5564 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005565 }
5566
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005567 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005568 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005569 public boolean isKeyguardShowingOrOccluded() {
5570 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5571 }
5572
5573 /** {@inheritDoc} */
5574 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005575 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005576 if (mKeyguardDelegate == null) return false;
5577 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005578 }
5579
Jose Lima9546b202014-07-02 17:21:51 -07005580 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005581 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005582 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005583 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005584 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005585 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005586 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005587 // ask the keyguard to prompt the user to authenticate if necessary
5588 mKeyguardDelegate.dismiss();
5589 }
5590 });
5591 }
5592 }
5593
5594 public void notifyActivityDrawnForKeyguardLw() {
5595 if (mKeyguardDelegate != null) {
5596 mHandler.post(new Runnable() {
5597 @Override
5598 public void run() {
5599 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005600 }
5601 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005602 }
5603 }
5604
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005605 @Override
5606 public boolean isKeyguardDrawnLw() {
5607 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005608 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005609 }
5610 }
5611
Jorim Jaggi0d674622014-05-21 01:34:15 +02005612 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005613 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005614 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005615 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005616 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005617 }
5618 }
5619
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005620 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005621 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005622 }
5623
5624 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005625 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005626 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005627
Jeff Brown01a98dd2011-09-20 15:08:29 -07005628 @Override
5629 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005630 if (false) {
5631 Slog.v(TAG, "rotationForOrientationLw(orient="
5632 + orientation + ", last=" + lastRotation
5633 + "); user=" + mUserRotation + " "
5634 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5635 ? "USER_ROTATION_LOCKED" : "")
5636 );
5637 }
5638
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005639 if (mForceDefaultOrientation) {
5640 return Surface.ROTATION_0;
5641 }
5642
The Android Open Source Project0727d222009-03-11 12:11:58 -07005643 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005644 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5645 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005646 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005647 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005648
Jeff Browndec6cf42011-11-15 14:08:20 -08005649 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005650 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005651 // Ignore sensor when lid switch is open and rotation is forced.
5652 preferredRotation = mLidOpenRotation;
5653 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005654 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005655 // Ignore sensor when in car dock unless explicitly enabled.
5656 // This case can override the behavior of NOSENSOR, and can also
5657 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005658 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005659 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005660 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5661 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5662 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005663 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005664 // Ignore sensor when in desk dock unless explicitly enabled.
5665 // This case can override the behavior of NOSENSOR, and can also
5666 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005667 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005668 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005669 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5670 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005671 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005672 preferredRotation = mDemoHdmiRotation;
5673 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5674 && mUndockedHdmiRotation >= 0) {
5675 // Ignore sensor when plugged into HDMI and an undocked orientation has
5676 // been specified in the configuration (only for legacy devices without
5677 // full multi-display support).
5678 // Note that the dock orientation overrides the HDMI orientation.
5679 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005680 } else if (mDemoRotationLock) {
5681 // Ignore sensor when demo rotation lock is enabled.
5682 // Note that the dock orientation and HDMI rotation lock override this.
5683 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005684 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5685 // Application just wants to remain locked in the last rotation.
5686 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005687 } else if (!mSupportAutoRotation) {
5688 // If we don't support auto-rotation then bail out here and ignore
5689 // the sensor and any rotation lock settings.
5690 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005691 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005692 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005693 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5694 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5695 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5696 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005697 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5698 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5699 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5700 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5701 // Otherwise, use sensor only if requested by the application or enabled
5702 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005703 if (mAllowAllRotations < 0) {
5704 // Can't read this during init() because the context doesn't
5705 // have display metrics at that time so we cannot determine
5706 // tablet vs. phone then.
5707 mAllowAllRotations = mContext.getResources().getBoolean(
5708 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5709 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005710 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005711 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005712 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5713 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005714 preferredRotation = sensorRotation;
5715 } else {
5716 preferredRotation = lastRotation;
5717 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005718 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5719 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5720 // Apply rotation lock. Does not apply to NOSENSOR.
5721 // The idea is that the user rotation expresses a weak preference for the direction
5722 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5723 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005724 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005725 } else {
5726 // No overriding preference.
5727 // We will do exactly what the application asked us to do.
5728 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005729 }
5730
Dianne Hackborne5439f22010-10-02 16:53:50 -07005731 switch (orientation) {
5732 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005733 // Return portrait unless overridden.
5734 if (isAnyPortrait(preferredRotation)) {
5735 return preferredRotation;
5736 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005737 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005738
Jeff Brown01a98dd2011-09-20 15:08:29 -07005739 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005740 // Return landscape unless overridden.
5741 if (isLandscapeOrSeascape(preferredRotation)) {
5742 return preferredRotation;
5743 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005744 return mLandscapeRotation;
5745
5746 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005747 // Return reverse portrait unless overridden.
5748 if (isAnyPortrait(preferredRotation)) {
5749 return preferredRotation;
5750 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005751 return mUpsideDownRotation;
5752
5753 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005754 // Return seascape unless overridden.
5755 if (isLandscapeOrSeascape(preferredRotation)) {
5756 return preferredRotation;
5757 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005758 return mSeascapeRotation;
5759
5760 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005761 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005762 // Return either landscape rotation.
5763 if (isLandscapeOrSeascape(preferredRotation)) {
5764 return preferredRotation;
5765 }
5766 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005767 return lastRotation;
5768 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005769 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005770
Jeff Brown01a98dd2011-09-20 15:08:29 -07005771 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005772 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005773 // Return either portrait rotation.
5774 if (isAnyPortrait(preferredRotation)) {
5775 return preferredRotation;
5776 }
5777 if (isAnyPortrait(lastRotation)) {
5778 return lastRotation;
5779 }
5780 return mPortraitRotation;
5781
5782 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005783 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5784 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005785 if (preferredRotation >= 0) {
5786 return preferredRotation;
5787 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005788 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005789 }
5790 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005791 }
5792
Jeff Brown01a98dd2011-09-20 15:08:29 -07005793 @Override
5794 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5795 switch (orientation) {
5796 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5797 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5798 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5799 return isAnyPortrait(rotation);
5800
5801 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5802 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5803 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5804 return isLandscapeOrSeascape(rotation);
5805
5806 default:
5807 return true;
5808 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005809 }
5810
Jeff Brownc0347aa2011-09-23 17:26:09 -07005811 @Override
5812 public void setRotationLw(int rotation) {
5813 mOrientationListener.setCurrentRotation(rotation);
5814 }
5815
Jeff Brown01a98dd2011-09-20 15:08:29 -07005816 private boolean isLandscapeOrSeascape(int rotation) {
5817 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005818 }
5819
Jeff Brown01a98dd2011-09-20 15:08:29 -07005820 private boolean isAnyPortrait(int rotation) {
5821 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005822 }
5823
Jose Lima9546b202014-07-02 17:21:51 -07005824 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005825 public int getUserRotationMode() {
5826 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005827 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5828 WindowManagerPolicy.USER_ROTATION_FREE :
5829 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005830 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005831
5832 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005833 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005834 public void setUserRotationMode(int mode, int rot) {
5835 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005836
5837 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005838 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07005839 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005840 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005841 rot,
5842 UserHandle.USER_CURRENT);
5843 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005844 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005845 0,
5846 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005847 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07005848 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005849 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005850 1,
5851 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005852 }
5853 }
5854
Jose Lima9546b202014-07-02 17:21:51 -07005855 @Override
Jeff Brownac143512012-04-05 18:57:33 -07005856 public void setSafeMode(boolean safeMode) {
5857 mSafeMode = safeMode;
5858 performHapticFeedbackLw(null, safeMode
5859 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
5860 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005861 }
Craig Mautnereda67292013-04-28 13:50:14 -07005862
Dianne Hackborn181ceb52009-08-27 22:16:40 -07005863 static long[] getLongIntArray(Resources r, int resid) {
5864 int[] ar = r.getIntArray(resid);
5865 if (ar == null) {
5866 return null;
5867 }
5868 long[] out = new long[ar.length];
5869 for (int i=0; i<ar.length; i++) {
5870 out[i] = ar[i];
5871 }
5872 return out;
5873 }
Craig Mautnereda67292013-04-28 13:50:14 -07005874
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005875 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005876 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005877 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07005878 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08005879 mKeyguardDelegate.onSystemReady();
5880
Michael Wright3818c922014-09-02 13:59:07 -07005881 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07005882 updateUiMode();
Dianne Hackbornb1a79802009-09-29 15:18:31 -07005883 synchronized (mLock) {
5884 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08005885 mSystemReady = true;
5886 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07005887 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08005888 public void run() {
5889 updateSettings();
5890 }
5891 });
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005892 }
5893 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005894
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005895 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005896 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005897 public void systemBooted() {
Jim Millere5f910a2013-10-16 18:15:46 -07005898 if (mKeyguardDelegate != null) {
Jason Monk5eeebf52014-09-26 12:36:51 -04005899 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07005900 mKeyguardDelegate.onBootCompleted();
5901 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005902 synchronized (mLock) {
5903 mSystemBooted = true;
5904 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005905 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005906 screenTurningOn(null);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005907 }
5908
Dianne Hackborn661cd522011-08-22 00:26:20 -07005909 ProgressDialog mBootMsgDialog = null;
5910
5911 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005912 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005913 public void showBootMessage(final CharSequence msg, final boolean always) {
5914 mHandler.post(new Runnable() {
5915 @Override public void run() {
5916 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07005917 int theme;
5918 if (mContext.getPackageManager().hasSystemFeature(
5919 PackageManager.FEATURE_WATCH)) {
5920 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
5921 } else if (mContext.getPackageManager().hasSystemFeature(
5922 PackageManager.FEATURE_TELEVISION)) {
5923 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
5924 } else {
5925 theme = 0;
5926 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07005927
5928 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07005929 // This dialog will consume all events coming in to
5930 // it, to avoid it trying to do things too early in boot.
5931 @Override public boolean dispatchKeyEvent(KeyEvent event) {
5932 return true;
5933 }
5934 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
5935 return true;
5936 }
5937 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
5938 return true;
5939 }
5940 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
5941 return true;
5942 }
5943 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
5944 return true;
5945 }
5946 @Override public boolean dispatchPopulateAccessibilityEvent(
5947 AccessibilityEvent event) {
5948 return true;
5949 }
5950 };
Jeff Hao9f60c082014-10-28 18:51:07 -07005951 if (mContext.getPackageManager().isUpgrade()) {
5952 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
5953 } else {
5954 mBootMsgDialog.setTitle(R.string.android_start_title);
5955 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005956 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
5957 mBootMsgDialog.setIndeterminate(true);
5958 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07005959 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005960 mBootMsgDialog.getWindow().addFlags(
5961 WindowManager.LayoutParams.FLAG_DIM_BEHIND
5962 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
5963 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08005964 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
5965 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
5966 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005967 mBootMsgDialog.setCancelable(false);
5968 mBootMsgDialog.show();
5969 }
5970 mBootMsgDialog.setMessage(msg);
5971 }
5972 });
5973 }
5974
5975 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005976 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005977 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07005978 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005979 }
5980
Mike Lockwood28569302010-01-28 11:54:40 -05005981 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005982 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005983 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07005984 // ***************************************
5985 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
5986 // ***************************************
5987 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
5988 // WITH ITS LOCKS HELD.
5989 //
5990 // This code must be VERY careful about the locks
5991 // it acquires.
5992 // In fact, the current code acquires way too many,
5993 // and probably has lurking deadlocks.
5994
Mike Lockwood28569302010-01-28 11:54:40 -05005995 synchronized (mScreenLockTimeout) {
5996 if (mLockScreenTimerActive) {
5997 // reset the timer
5998 mHandler.removeCallbacks(mScreenLockTimeout);
5999 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6000 }
6001 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006002 }
6003
Adam Cohenf7522022012-10-03 20:03:18 -07006004 class ScreenLockTimeout implements Runnable {
6005 Bundle options;
6006
6007 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006008 public void run() {
6009 synchronized (this) {
6010 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006011 if (mKeyguardDelegate != null) {
6012 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006013 }
Mike Lockwood28569302010-01-28 11:54:40 -05006014 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006015 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006016 }
6017 }
Mike Lockwood28569302010-01-28 11:54:40 -05006018
Adam Cohenf7522022012-10-03 20:03:18 -07006019 public void setLockOptions(Bundle options) {
6020 this.options = options;
6021 }
6022 }
6023
6024 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6025
Jose Lima9546b202014-07-02 17:21:51 -07006026 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006027 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006028 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6029 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006030 if (options != null) {
6031 // In case multiple calls are made to lockNow, we don't wipe out the options
6032 // until the runnable actually executes.
6033 mScreenLockTimeout.setLockOptions(options);
6034 }
Jim Miller93c518e2012-01-17 15:55:31 -08006035 mHandler.post(mScreenLockTimeout);
6036 }
6037
Mike Lockwood28569302010-01-28 11:54:40 -05006038 private void updateLockScreenTimeout() {
6039 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006040 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006041 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006042 if (mLockScreenTimerActive != enable) {
6043 if (enable) {
6044 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6045 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6046 } else {
6047 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6048 mHandler.removeCallbacks(mScreenLockTimeout);
6049 }
6050 mLockScreenTimerActive = enable;
6051 }
6052 }
6053 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006054
Jeff Brown061ea992015-04-17 19:55:47 -07006055 private void updateDreamingSleepToken(boolean acquire) {
6056 if (acquire) {
6057 if (mDreamingSleepToken == null) {
6058 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6059 }
6060 } else {
6061 if (mDreamingSleepToken != null) {
6062 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006063 mDreamingSleepToken = null;
6064 }
6065 }
6066 }
6067
6068 private void updateScreenOffSleepToken(boolean acquire) {
6069 if (acquire) {
6070 if (mScreenOffSleepToken == null) {
6071 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6072 }
6073 } else {
6074 if (mScreenOffSleepToken != null) {
6075 mScreenOffSleepToken.release();
6076 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006077 }
6078 }
6079 }
6080
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006081 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006082 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006083 public void enableScreenAfterBoot() {
6084 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006085 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006086 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006087 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006088
Jeff Brownc458ce92012-04-30 14:58:40 -07006089 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006090 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006091 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006092 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006093 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006094 }
Jeff Browna20dda42014-05-27 20:57:24 -07006095
6096 synchronized (mLock) {
6097 updateWakeGestureListenerLp();
6098 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006099 }
6100
Jeff Brown4f5fa282014-06-12 19:19:15 -07006101 void updateUiMode() {
6102 if (mUiModeManager == null) {
6103 mUiModeManager = IUiModeManager.Stub.asInterface(
6104 ServiceManager.getService(Context.UI_MODE_SERVICE));
6105 }
6106 try {
6107 mUiMode = mUiModeManager.getCurrentModeType();
6108 } catch (RemoteException e) {
6109 }
6110 }
6111
Jeff Brown01a98dd2011-09-20 15:08:29 -07006112 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006113 try {
6114 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006115 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6116 } catch (RemoteException e) {
6117 // Ignore
6118 }
6119 }
6120
6121 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6122 try {
6123 //set orientation on WindowManager
6124 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006125 } catch (RemoteException e) {
6126 // Ignore
6127 }
6128 }
6129
Daniel Sandler6396c722013-04-16 20:19:09 -04006130 /**
6131 * Return an Intent to launch the currently active dock app as home. Returns
6132 * null if the standard home should be launched, which is the case if any of the following is
6133 * true:
6134 * <ul>
6135 * <li>The device is not in either car mode or desk mode
6136 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6137 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6138 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6139 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6140 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006141 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006142 */
6143 Intent createHomeDockIntent() {
6144 Intent intent = null;
6145
6146 // What home does is based on the mode, not the dock state. That
6147 // is, when in car mode you should be taken to car home regardless
6148 // of whether we are actually in a car dock.
6149 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6150 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6151 intent = mCarDockIntent;
6152 }
6153 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6154 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6155 intent = mDeskDockIntent;
6156 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006157 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6158 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6159 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6160 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6161 // Always launch dock home from home when watch is docked, if it exists.
6162 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006163 }
6164
6165 if (intent == null) {
6166 return null;
6167 }
6168
6169 ActivityInfo ai = null;
6170 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6171 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006172 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006173 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006174 if (info != null) {
6175 ai = info.activityInfo;
6176 }
6177 if (ai != null
6178 && ai.metaData != null
6179 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6180 intent = new Intent(intent);
6181 intent.setClassName(ai.packageName, ai.name);
6182 return intent;
6183 }
6184
6185 return null;
6186 }
6187
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006188 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6189 if (awakenFromDreams) {
6190 awakenDreams();
6191 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006192
6193 Intent dock = createHomeDockIntent();
6194 if (dock != null) {
6195 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006196 if (fromHomeKey) {
6197 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6198 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006199 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006200 return;
6201 } catch (ActivityNotFoundException e) {
6202 }
6203 }
6204
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006205 Intent intent;
6206
6207 if (fromHomeKey) {
6208 intent = new Intent(mHomeIntent);
6209 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6210 } else {
6211 intent = mHomeIntent;
6212 }
6213
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006214 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006215 }
Craig Mautnereda67292013-04-28 13:50:14 -07006216
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006217 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006218 * goes to the home screen
6219 * @return whether it did anything
6220 */
6221 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006222 if (!isUserSetupComplete()) {
6223 Slog.i(TAG, "Not going home because user setup is in progress.");
6224 return false;
6225 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006226 if (false) {
6227 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006228 try {
6229 ActivityManagerNative.getDefault().stopAppSwitches();
6230 } catch (RemoteException e) {
6231 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006232 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006233 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006234 } else {
6235 // This code brings home to the front or, if it is already
6236 // at the front, puts the device to sleep.
6237 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006238 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6239 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6240 Log.d(TAG, "UTS-TEST-MODE");
6241 } else {
6242 ActivityManagerNative.getDefault().stopAppSwitches();
6243 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006244 Intent dock = createHomeDockIntent();
6245 if (dock != null) {
6246 int result = ActivityManagerNative.getDefault()
6247 .startActivityAsUser(null, null, dock,
6248 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6249 null, null, 0,
6250 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006251 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006252 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6253 return false;
6254 }
6255 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006256 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006257 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006258 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006259 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006260 null, null, 0,
6261 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006262 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006263 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006264 return false;
6265 }
6266 } catch (RemoteException ex) {
6267 // bummer, the activity manager, which is in this process, is dead
6268 }
6269 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006270 return true;
6271 }
Craig Mautnereda67292013-04-28 13:50:14 -07006272
6273 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006274 public void setCurrentOrientationLw(int newOrientation) {
6275 synchronized (mLock) {
6276 if (newOrientation != mCurrentAppOrientation) {
6277 mCurrentAppOrientation = newOrientation;
6278 updateOrientationListenerLp();
6279 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006280 }
6281 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006282
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006283 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6284 if (!isGlobalAccessibilityGestureEnabled()) {
6285 return;
6286 }
6287 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6288 Context.AUDIO_SERVICE);
6289 if (audioManager.isSilentMode()) {
6290 return;
6291 }
6292 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6293 Settings.System.DEFAULT_NOTIFICATION_URI);
6294 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6295 ringTone.play();
6296 }
Craig Mautnereda67292013-04-28 13:50:14 -07006297
Bryce Lee584a4452014-10-21 15:55:55 -07006298 private boolean isTheaterModeEnabled() {
6299 return Settings.Global.getInt(mContext.getContentResolver(),
6300 Settings.Global.THEATER_MODE_ON, 0) == 1;
6301 }
6302
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006303 private boolean isGlobalAccessibilityGestureEnabled() {
6304 return Settings.Global.getInt(mContext.getContentResolver(),
6305 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6306 }
6307
Craig Mautnereda67292013-04-28 13:50:14 -07006308 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006309 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006310 if (!mVibrator.hasVibrator()) {
6311 return false;
6312 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006313 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6314 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006315 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006316 return false;
6317 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006318 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006319 switch (effectId) {
6320 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006321 pattern = mLongPressVibePattern;
6322 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006323 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006324 pattern = mVirtualKeyVibePattern;
6325 break;
6326 case HapticFeedbackConstants.KEYBOARD_TAP:
6327 pattern = mKeyboardTapVibePattern;
6328 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006329 case HapticFeedbackConstants.CLOCK_TICK:
6330 pattern = mClockTickVibePattern;
6331 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006332 case HapticFeedbackConstants.CALENDAR_DATE:
6333 pattern = mCalendarDateVibePattern;
6334 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006335 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006336 pattern = mSafeModeDisabledVibePattern;
6337 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006338 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006339 pattern = mSafeModeEnabledVibePattern;
6340 break;
Mady Mellore8608912015-06-05 09:02:55 -07006341 case HapticFeedbackConstants.CONTEXT_CLICK:
6342 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006343 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006344 default:
6345 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006346 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006347 int owningUid;
6348 String owningPackage;
6349 if (win != null) {
6350 owningUid = win.getOwningUid();
6351 owningPackage = win.getOwningPackage();
6352 } else {
6353 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006354 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006355 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006356 if (pattern.length == 1) {
6357 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006358 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006359 } else {
6360 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006361 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006362 }
6363 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006364 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006365
6366 @Override
6367 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006368 }
6369
Jeff Brownc38c9be2012-10-04 13:16:19 -07006370 @Override
6371 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006372 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006373 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006374 }
6375 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006376
Dianne Hackborndf89e652011-10-06 22:35:11 -07006377 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006378 // If there is no window focused, there will be nobody to handle the events
6379 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006380 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6381 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006382 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006383 return 0;
6384 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006385 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006386 // We are updating at a point where the keyguard has gotten
6387 // focus, but we were last in a state where the top window is
6388 // hiding it. This is probably because the keyguard as been
6389 // shown while the top window was displayed, so we want to ignore
6390 // it here because this is just a very transient change and it
6391 // will quickly lose focus once it correctly gets hidden.
6392 return 0;
6393 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006394
John Spurlock1db8b682014-02-18 11:18:59 -05006395 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006396 & ~mResettingSystemUiFlags
6397 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006398 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006399 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006400 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006401 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006402 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006403 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006404 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006405 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006406 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006407 return 0;
6408 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006409 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006410 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006411 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006412 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006413 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006414 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006415 try {
6416 IStatusBarService statusbar = getStatusBarService();
6417 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006418 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006419 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006420 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006421 } catch (RemoteException e) {
6422 // re-acquire status bar service next time it is needed.
6423 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006424 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006425 }
6426 });
6427 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006428 }
6429
Adrian Rooscd3884d2015-02-18 17:25:23 +01006430 private int updateLightStatusBarLw(int vis) {
6431 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6432 ? mStatusBar
6433 : mTopFullscreenOpaqueOrDimmingWindowState;
6434
6435 if (statusColorWin != null) {
6436 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6437 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6438 // its light flag.
6439 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6440 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6441 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6442 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6443 // Otherwise if it's dimming, clear the light flag.
6444 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6445 }
6446 }
6447 return vis;
6448 }
6449
John Spurlock79da8332013-09-20 12:04:47 -04006450 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006451 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006452 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6453 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006454 : mTopFullscreenOpaqueWindowState;
6455 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6456 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6457
John Spurlock27735a42013-08-14 17:57:38 -04006458 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006459 int type = win.getAttrs().type;
6460 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006461 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006462 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6463 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006464 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006465 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6466 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006467 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006468 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6469 }
John Spurlockbd957402013-10-03 11:38:39 -04006470 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006471 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006472
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006473 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006474 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6475 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006476 }
6477
John Spurlock27735a42013-08-14 17:57:38 -04006478 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006479 boolean immersiveSticky =
6480 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006481 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006482 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006483 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006484 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6485 boolean hideStatusBarSysui =
6486 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006487 boolean hideNavBarSysui =
6488 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006489
John Spurlock27735a42013-08-14 17:57:38 -04006490 boolean transientStatusBarAllowed =
6491 mStatusBar != null && (
6492 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006493 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006494 || statusBarHasFocus);
6495
John Spurlockf1a36642013-10-12 17:50:42 -04006496 boolean transientNavBarAllowed =
6497 mNavigationBar != null &&
6498 hideNavBarSysui && immersiveSticky;
6499
Adrian Roosddc8b272015-05-21 16:28:27 -07006500 final long now = SystemClock.uptimeMillis();
6501 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6502 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6503 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6504 // The user performed the panic gesture recently, we're about to hide the bars,
6505 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6506 mPendingPanicGestureUptime = 0;
6507 mStatusBarController.showTransient();
6508 mNavigationBarController.showTransient();
6509 }
6510
John Spurlockf25706f2013-11-07 18:02:43 -05006511 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006512 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006513 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006514 && !transientNavBarAllowed;
6515 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006516 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006517 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006518 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006519 }
John Spurlock27735a42013-08-14 17:57:38 -04006520
Selim Cinekf98702e2015-05-20 22:48:40 -07006521 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6522 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6523 final boolean navAllowedHidden = immersive || immersiveSticky;
6524
Selim Cinekd6623612015-05-22 18:56:22 -07006525 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6526 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006527 // We can't hide the navbar from this window otherwise the input consumer would not get
6528 // the input events.
6529 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6530 }
6531
John Spurlock27735a42013-08-14 17:57:38 -04006532 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6533
6534 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006535 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6536 boolean newImmersiveMode = isImmersiveMode(vis);
6537 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006538 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006539 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6540 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006541 }
John Spurlock27735a42013-08-14 17:57:38 -04006542
John Spurlockf1a36642013-10-12 17:50:42 -04006543 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6544
John Spurlocke1f366f2013-08-05 12:22:40 -04006545 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006546 }
6547
John Spurlockf1a36642013-10-12 17:50:42 -04006548 private void clearClearableFlagsLw() {
6549 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6550 if (newVal != mResettingSystemUiFlags) {
6551 mResettingSystemUiFlags = newVal;
6552 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6553 }
6554 }
6555
6556 private boolean isImmersiveMode(int vis) {
6557 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006558 return mNavigationBar != null
6559 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006560 && (vis & flags) != 0
6561 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006562 }
6563
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006564 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006565 * @return whether the navigation or status bar can be made translucent
6566 *
6567 * This should return true unless touch exploration is not enabled or
6568 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006569 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006570 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006571 return mTranslucentDecorEnabled
6572 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006573 }
6574
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006575 // Use this instead of checking config_showNavigationBar so that it can be consistently
6576 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006577 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006578 public boolean hasNavigationBar() {
6579 return mHasNavigationBar;
6580 }
6581
satok1bc0a492012-04-25 22:47:12 +09006582 @Override
6583 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6584 mLastInputMethodWindow = ime;
6585 mLastInputMethodTargetWindow = target;
6586 }
6587
Craig Mautnerf1b67412012-09-19 13:18:29 -07006588 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006589 public int getInputMethodWindowVisibleHeightLw() {
6590 return mDockBottom - mCurBottom;
6591 }
6592
6593 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006594 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006595 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006596 if (mKeyguardDelegate != null) {
6597 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006598 }
John Spurlock13451a22012-09-28 14:40:41 -04006599 if (mStatusBarService != null) {
6600 try {
6601 mStatusBarService.setCurrentUser(newUserId);
6602 } catch (RemoteException e) {
6603 // oh well
6604 }
6605 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006606 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006607 }
6608
6609 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006610 public boolean canMagnifyWindow(int windowType) {
6611 switch (windowType) {
6612 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6613 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6614 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6615 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6616 return false;
6617 }
6618 }
6619 return true;
6620 }
6621
6622 @Override
6623 public boolean isTopLevelWindow(int windowType) {
6624 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6625 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6626 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6627 }
6628 return true;
6629 }
6630
Jim Miller4eeb4f62012-11-08 00:04:29 -08006631 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006632 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006633 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006634 pw.print(" mSystemReady="); pw.print(mSystemReady);
6635 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006636 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006637 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006638 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006639 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006640 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6641 || mForceClearedSystemUiFlags != 0) {
6642 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6643 pw.print(Integer.toHexString(mLastSystemUiFlags));
6644 pw.print(" mResettingSystemUiFlags=0x");
6645 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6646 pw.print(" mForceClearedSystemUiFlags=0x");
6647 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006648 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006649 if (mLastFocusNeedsMenu) {
6650 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6651 pw.println(mLastFocusNeedsMenu);
6652 }
Jeff Browna20dda42014-05-27 20:57:24 -07006653 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6654 pw.println(mWakeGestureEnabledSetting);
6655
Jeff Brownbcdfc622014-03-06 19:13:04 -08006656 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006657 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6658 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006659 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6660 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6661 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6662 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006663 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006664 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006665 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6666 pw.print(mCarDockEnablesAccelerometer);
6667 pw.print(" mDeskDockEnablesAccelerometer=");
6668 pw.println(mDeskDockEnablesAccelerometer);
6669 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6670 pw.print(mLidKeyboardAccessibility);
6671 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006672 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006673 pw.print(prefix);
6674 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6675 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006676 pw.print(prefix);
6677 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6678 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006679 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006680 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6681 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6682 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6683 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6684 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6685 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6686 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006687 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6688 pw.print(","); pw.print(mOverscanScreenTop);
6689 pw.print(") "); pw.print(mOverscanScreenWidth);
6690 pw.print("x"); pw.println(mOverscanScreenHeight);
6691 if (mOverscanLeft != 0 || mOverscanTop != 0
6692 || mOverscanRight != 0 || mOverscanBottom != 0) {
6693 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6694 pw.print(" top="); pw.print(mOverscanTop);
6695 pw.print(" right="); pw.print(mOverscanRight);
6696 pw.print(" bottom="); pw.println(mOverscanBottom);
6697 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006698 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6699 pw.print(mRestrictedOverscanScreenLeft);
6700 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6701 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6702 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006703 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6704 pw.print(","); pw.print(mUnrestrictedScreenTop);
6705 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6706 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6707 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6708 pw.print(","); pw.print(mRestrictedScreenTop);
6709 pw.print(") "); pw.print(mRestrictedScreenWidth);
6710 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006711 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6712 pw.print(","); pw.print(mStableFullscreenTop);
6713 pw.print(")-("); pw.print(mStableFullscreenRight);
6714 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006715 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6716 pw.print(","); pw.print(mStableTop);
6717 pw.print(")-("); pw.print(mStableRight);
6718 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006719 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6720 pw.print(","); pw.print(mSystemTop);
6721 pw.print(")-("); pw.print(mSystemRight);
6722 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006723 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6724 pw.print(","); pw.print(mCurTop);
6725 pw.print(")-("); pw.print(mCurRight);
6726 pw.print(","); pw.print(mCurBottom); pw.println(")");
6727 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6728 pw.print(","); pw.print(mContentTop);
6729 pw.print(")-("); pw.print(mContentRight);
6730 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006731 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6732 pw.print(","); pw.print(mVoiceContentTop);
6733 pw.print(")-("); pw.print(mVoiceContentRight);
6734 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006735 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6736 pw.print(","); pw.print(mDockTop);
6737 pw.print(")-("); pw.print(mDockRight);
6738 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006739 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6740 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006741 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6742 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006743 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6744 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006745 if (mLastInputMethodWindow != null) {
6746 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6747 pw.println(mLastInputMethodWindow);
6748 }
6749 if (mLastInputMethodTargetWindow != null) {
6750 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6751 pw.println(mLastInputMethodTargetWindow);
6752 }
6753 if (mStatusBar != null) {
6754 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006755 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6756 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006757 }
6758 if (mNavigationBar != null) {
6759 pw.print(prefix); pw.print("mNavigationBar=");
6760 pw.println(mNavigationBar);
6761 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006762 if (mFocusedWindow != null) {
6763 pw.print(prefix); pw.print("mFocusedWindow=");
6764 pw.println(mFocusedWindow);
6765 }
6766 if (mFocusedApp != null) {
6767 pw.print(prefix); pw.print("mFocusedApp=");
6768 pw.println(mFocusedApp);
6769 }
6770 if (mWinDismissingKeyguard != null) {
6771 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6772 pw.println(mWinDismissingKeyguard);
6773 }
6774 if (mTopFullscreenOpaqueWindowState != null) {
6775 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6776 pw.println(mTopFullscreenOpaqueWindowState);
6777 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006778 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6779 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6780 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6781 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006782 if (mForcingShowNavBar) {
6783 pw.print(prefix); pw.print("mForcingShowNavBar=");
6784 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6785 pw.println(mForcingShowNavBarLayer);
6786 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006787 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006788 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006789 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6790 pw.print(" mForceStatusBarFromKeyguard=");
6791 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006792 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006793 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006794 pw.print(" mHomePressed="); pw.println(mHomePressed);
6795 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6796 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6797 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6798 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6799 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6800 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6801 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6802 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6803 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6804 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006805 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6806 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6807 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006808
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006809 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006810 mStatusBarController.dump(pw, prefix);
6811 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05006812 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07006813
Jeff Browna20dda42014-05-27 20:57:24 -07006814 if (mWakeGestureListener != null) {
6815 mWakeGestureListener.dump(pw, prefix);
6816 }
Jeff Brown600f0032014-05-22 17:06:00 -07006817 if (mOrientationListener != null) {
6818 mOrientationListener.dump(pw, prefix);
6819 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00006820 if (mBurnInProtectionHelper != null) {
6821 mBurnInProtectionHelper.dump(prefix, pw);
6822 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006823 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006824}