blob: 5ef7c1e390b8f43a9349540d2e5ce74ec6f616a3 [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;
Mark Renoufc1256912015-03-11 14:38:23 -040054import android.os.Build;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070055import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080056import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070057import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080058import android.os.Handler;
59import android.os.IBinder;
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;
Mark Renoufc1256912015-03-11 14:38:23 -0400100import android.view.ViewRootImpl;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800101import android.view.Window;
102import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800103import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700104import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800105import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800106import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800107import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800108import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200109import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800110import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800111import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800112import com.android.internal.statusbar.IStatusBarService;
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
Jim Miller5ecd8112013-01-09 18:50:26 -0800212 /**
213 * Keyguard stuff
214 */
215 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100216 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700217 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800218
Jeff Brown6651a632011-11-28 12:59:11 -0800219 /* Table of Application Launch keys. Maps from key codes to intent categories.
220 *
221 * These are special keys that are used to launch particular kinds of applications,
222 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
223 * usage page. We don't support quite that many yet...
224 */
225 static SparseArray<String> sApplicationLaunchKeyCategories;
226 static {
227 sApplicationLaunchKeyCategories = new SparseArray<String>();
228 sApplicationLaunchKeyCategories.append(
229 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
230 sApplicationLaunchKeyCategories.append(
231 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
232 sApplicationLaunchKeyCategories.append(
233 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
234 sApplicationLaunchKeyCategories.append(
235 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
236 sApplicationLaunchKeyCategories.append(
237 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
238 sApplicationLaunchKeyCategories.append(
239 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
240 }
241
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700242 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
243 static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
244
Dianne Hackborndf89e652011-10-06 22:35:11 -0700245 /**
246 * Lock protecting internal state. Must not call out into window
247 * manager with lock held. (This lock will be acquired in places
248 * where the window manager is calling in with its own lock held.)
249 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800250 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700251
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800252 Context mContext;
253 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700254 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700255 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700256 PowerManager mPowerManager;
Jeff Brown061ea992015-04-17 19:55:47 -0700257 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700258 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400259 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700260 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700261 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800262 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700263 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800264 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000265 BurnInProtectionHelper mBurnInProtectionHelper;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800266
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700267 // Vibrator pattern for haptic feedback of a long press.
268 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700269
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700270 // Vibrator pattern for haptic feedback of virtual key press.
271 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700272
Amith Yamasanic33cb712010-02-10 15:21:49 -0800273 // Vibrator pattern for a short vibration.
274 long[] mKeyboardTapVibePattern;
275
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700276 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
277 long[] mClockTickVibePattern;
278
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700279 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
280 long[] mCalendarDateVibePattern;
281
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700282 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
283 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700284
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700285 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
286 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700287
Mady Mellore82067b2015-04-30 09:58:35 -0700288 // Vibrator pattern for haptic feedback of a stylus button press.
289 long[] mStylusButtonPressVibePattern;
290
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800291 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
292 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400293
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800294 boolean mSafeMode;
295 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700296 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400297 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400298 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700299 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400300 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
301 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
302 int[] mNavigationBarHeightForRotation = new int[4];
303 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400304
Craig Mautnera631d492014-08-05 15:16:01 -0700305 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800306 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700307 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700308 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700309 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700310 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
311 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
312 }
313 };
314 final ShowListener mKeyguardDelegateCallback = new ShowListener() {
315 @Override
316 public void onShown(IBinder windowToken) {
317 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onShown.");
318 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
319 }
320 };
321
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800322 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800323 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900324 WindowState mLastInputMethodWindow = null;
325 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800326
Jeff Brown13f00f02014-10-31 14:45:50 -0700327 // FIXME This state is shared between the input reader and handler thread.
328 // Technically it's broken and buggy but it has been like this for many years
329 // and we have not yet seen any problems. Someday we'll rewrite this logic
330 // so that only one thread is involved in handling input policy. Unfortunately
331 // it's on a critical path for power management so we can't just post the work to the
332 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
333 // to hold wakelocks during dispatch and eliminating the critical path.
334 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800335 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700336 volatile int mPowerKeyPressCounter;
337 volatile boolean mEndCallKeyHandled;
338
Winson Chungd42a6cf2014-06-03 16:24:04 -0700339 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700340 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700341 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800342
Jeff Brown2e7760e2012-04-11 15:14:55 -0700343 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700344 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700345 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800346
Dianne Hackbornc777e072010-02-12 13:07:59 -0800347 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700348 boolean mSystemBooted;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800349 boolean mHdmiPlugged;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700350 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400351 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700352 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700353 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400354 int mCarDockRotation;
355 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700356 int mUndockedHdmiRotation;
357 int mDemoHdmiRotation;
358 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800359 int mDemoRotation;
360 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400361
Jeff Browna20dda42014-05-27 20:57:24 -0700362 boolean mWakeGestureEnabledSetting;
363 MyWakeGestureListener mWakeGestureListener;
364
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700365 // Default display does not rotate, apps that require non-default orientation will have to
366 // have the orientation emulated.
367 private boolean mForceDefaultOrientation = false;
368
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400369 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
370 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700371 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400372
Jeff Brownbcdfc622014-03-06 19:13:04 -0800373 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700374 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400375 boolean mCarDockEnablesAccelerometer;
376 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700377 int mLidKeyboardAccessibility;
378 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700379 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700380 int mShortPressOnPowerBehavior;
381 int mLongPressOnPowerBehavior;
382 int mDoublePressOnPowerBehavior;
383 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000384 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700385 boolean mAwake;
386 boolean mScreenOnEarly;
387 boolean mScreenOnFully;
388 ScreenOnListener mScreenOnListener;
389 boolean mKeyguardDrawComplete;
390 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800391 boolean mOrientationSensorEnabled = false;
392 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800393 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400394 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800395 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700396
Jeff Brown70825162012-03-28 17:27:48 -0700397 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800398
399 // The last window we were told about in focusChanged.
400 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800401 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800402
Jeff Brown70825162012-03-28 17:27:48 -0700403 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800404
Dianne Hackbornc652de82013-02-15 16:32:56 -0800405 // The current size of the screen; really; extends into the overscan area of
406 // the screen and doesn't account for any system elements like the status bar.
407 int mOverscanScreenLeft, mOverscanScreenTop;
408 int mOverscanScreenWidth, mOverscanScreenHeight;
409 // The current visible size of the screen; really; (ir)regardless of whether the status
410 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800411 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
412 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800413 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
414 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
415 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700416 // The current size of the screen; these may be different than (0,0)-(dw,dh)
417 // if the status bar can't be hidden; in that case it effectively carves out
418 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800419 int mRestrictedScreenLeft, mRestrictedScreenTop;
420 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700421 // During layout, the current screen borders accounting for any currently
422 // visible system UI elements.
423 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700424 // For applications requesting stable content insets, these are them.
425 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700426 // For applications requesting stable content insets but have also set the
427 // fullscreen window flag, these are the stable dimensions without the status bar.
428 int mStableFullscreenLeft, mStableFullscreenTop;
429 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800430 // During layout, the current screen borders with all outer decoration
431 // (status bar, input method dock) accounted for.
432 int mCurLeft, mCurTop, mCurRight, mCurBottom;
433 // During layout, the frame in which content should be displayed
434 // to the user, accounting for all screen decoration except for any
435 // space they deem as available for other content. This is usually
436 // the same as mCur*, but may be larger if the screen decor has supplied
437 // content insets.
438 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700439 // During layout, the frame in which voice content should be displayed
440 // to the user, accounting for all screen decoration except for any
441 // space they deem as available for other content.
442 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800443 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800444 // windows are placed.
445 int mDockLeft, mDockTop, mDockRight, mDockBottom;
446 // During layout, the layer at which the doc window is placed.
447 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700448 // During layout, this is the layer of the status bar.
449 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700450 int mLastSystemUiFlags;
451 // Bits that we are in the process of clearing, so we want to prevent
452 // them from being set by applications until everything has been updated
453 // to have them clear.
454 int mResettingSystemUiFlags = 0;
455 // Bits that we are currently always keeping cleared.
456 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800457 // What we last reported to system UI about whether the compatibility
458 // menu needs to be displayed.
459 boolean mLastFocusNeedsMenu = false;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700460
461 FakeWindow mHideNavFakeWindow = null;
462
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800463 static final Rect mTmpParentFrame = new Rect();
464 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800465 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800466 static final Rect mTmpContentFrame = new Rect();
467 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400468 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700469 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700470 static final Rect mTmpNavigationFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700471
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800472 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100473 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700474 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200475 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400476 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800477 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700478 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700479 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700480 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800481 boolean mForcingShowNavBar;
482 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700483
484 // States of keyguard dismiss.
485 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
486 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
487 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
488 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
489
490 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
491 * be done once per window. */
492 private WindowState mWinDismissingKeyguard;
493
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700494 /** The window that is currently showing "over" the keyguard. If there is an app window
495 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
496 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
497 * the wallpaper. */
498 private WindowState mWinShowWhenLocked;
499
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700500 boolean mShowingLockscreen;
501 boolean mShowingDream;
502 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700503 boolean mDreamingSleepTokenNeeded;
504 SleepToken mDreamingSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700505 boolean mKeyguardSecure;
506 boolean mKeyguardSecureIncludingHidden;
507 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800508 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700509 boolean mHomeConsumed;
510 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800511 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700512 Intent mCarDockIntent;
513 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700514 boolean mSearchKeyShortcutPending;
515 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700516 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700517 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800518
Mike Lockwood28569302010-01-28 11:54:40 -0500519 // support for activating the lock screen while the screen is on
520 boolean mAllowLockscreenWhenOn;
521 int mLockScreenTimeout;
522 boolean mLockScreenTimerActive;
523
David Brownbaf8d092010-03-08 21:52:59 -0800524 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800525 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800526
527 // Behavior of POWER button while in-call and screen on.
528 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
529 int mIncallPowerBehavior;
530
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700531 Display mDisplay;
532
Dianne Hackborn9d132642011-04-21 17:26:39 -0700533 int mLandscapeRotation = 0; // default landscape rotation
534 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
535 int mPortraitRotation = 0; // default portrait rotation
536 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700537
Dianne Hackbornc652de82013-02-15 16:32:56 -0800538 int mOverscanLeft = 0;
539 int mOverscanTop = 0;
540 int mOverscanRight = 0;
541 int mOverscanBottom = 0;
542
Joe Onorato46b0d682010-11-22 17:37:27 -0800543 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700544 private int mLongPressOnHomeBehavior;
545
546 // What we do when the user double-taps on home
547 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800548
Bryce Lee584a4452014-10-21 15:55:55 -0700549 // Allowed theater mode wake actions
550 private boolean mAllowTheaterModeWakeFromKey;
551 private boolean mAllowTheaterModeWakeFromPowerKey;
552 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800553 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700554 private boolean mAllowTheaterModeWakeFromCameraLens;
555 private boolean mAllowTheaterModeWakeFromLidSwitch;
556 private boolean mAllowTheaterModeWakeFromWakeGesture;
557
Bryce Leed3b28402015-03-09 15:49:13 +0000558 // Whether to support long press from power button in non-interactive mode
559 private boolean mSupportLongPressPowerWhenNonInteractive;
560
Bryce Lee55e846d2014-11-04 12:43:44 -0800561 // Whether to go to sleep entering theater mode from power button
562 private boolean mGoToSleepOnButtonPressTheaterMode;
563
Winson Chung9112ec32011-06-27 13:15:32 -0700564 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700565 // Time to volume and power must be pressed within this interval of each other.
566 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700567 // Increase the chord delay when taking a screenshot from the keyguard
568 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800569 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700570 private boolean mScreenshotChordVolumeDownKeyTriggered;
571 private long mScreenshotChordVolumeDownKeyTime;
572 private boolean mScreenshotChordVolumeDownKeyConsumed;
573 private boolean mScreenshotChordVolumeUpKeyTriggered;
574 private boolean mScreenshotChordPowerKeyTriggered;
575 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700576
Michael Wrightb854e242013-02-05 17:54:02 -0800577 /* The number of steps between min and max brightness */
578 private static final int BRIGHTNESS_STEPS = 10;
579
Christopher Tate5e08af02012-09-21 17:17:22 -0700580 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800581 ShortcutManager mShortcutManager;
582 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700583 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700584 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800585
Craig Mautnerd625ab22013-09-06 13:40:31 -0700586 private int mCurrentUserId;
587
Justin Kohd378ad72013-04-01 12:18:26 -0700588 // Maps global key codes to the components that will handle them.
589 private GlobalKeyManager mGlobalKeyManager;
590
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700591 // Fallback actions by key code.
592 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
593 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800594
Jorim Jaggi76a16232014-08-08 17:00:47 +0200595 private final LogDecelerateInterpolator mLogDecelerateInterpolator
596 = new LogDecelerateInterpolator(100, 0);
597
Jeff Brown70825162012-03-28 17:27:48 -0700598 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
599 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700600 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
601 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700602 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
603 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
604 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700605 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700606 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700607 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700608 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700609 private static final int MSG_POWER_DELAYED_PRESS = 13;
610 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700611 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jeff Brown70825162012-03-28 17:27:48 -0700612
613 private class PolicyHandler extends Handler {
614 @Override
615 public void handleMessage(Message msg) {
616 switch (msg.what) {
617 case MSG_ENABLE_POINTER_LOCATION:
618 enablePointerLocation();
619 break;
620 case MSG_DISABLE_POINTER_LOCATION:
621 disablePointerLocation();
622 break;
Jeff Brown40013652012-05-16 21:22:36 -0700623 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
624 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
625 break;
626 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
627 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
628 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700629 case MSG_DISPATCH_SHOW_RECENTS:
630 showRecentApps(false);
631 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700632 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
633 showGlobalActionsInternal();
634 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700635 case MSG_KEYGUARD_DRAWN_COMPLETE:
636 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700637 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700638 break;
639 case MSG_KEYGUARD_DRAWN_TIMEOUT:
640 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700641 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700642 break;
643 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
644 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700645 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700646 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700647 case MSG_HIDE_BOOT_MESSAGE:
648 handleHideBootMessage();
649 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700650 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
651 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
652 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700653 case MSG_POWER_DELAYED_PRESS:
654 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
655 finishPowerKeyPress();
656 break;
657 case MSG_POWER_LONG_PRESS:
658 powerLongPress();
659 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700660 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
661 updateDreamingSleepToken(msg.arg1 != 0);
662 break;
Jeff Brown70825162012-03-28 17:27:48 -0700663 }
664 }
665 }
666
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800667 private UEventObserver mHDMIObserver = new UEventObserver() {
668 @Override
669 public void onUEvent(UEventObserver.UEvent event) {
670 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
671 }
672 };
673
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800674 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800675 SettingsObserver(Handler handler) {
676 super(handler);
677 }
David Brownbaf8d092010-03-08 21:52:59 -0800678
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800679 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700680 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800681 ContentResolver resolver = mContext.getContentResolver();
682 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700683 Settings.System.END_BUTTON_BEHAVIOR), false, this,
684 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800685 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700686 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
687 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700688 resolver.registerContentObserver(Settings.Secure.getUriFor(
689 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
690 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800691 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700692 Settings.System.ACCELEROMETER_ROTATION), false, this,
693 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500694 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700695 Settings.System.USER_ROTATION), false, this,
696 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400697 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700698 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
699 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800700 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700701 Settings.System.POINTER_LOCATION), false, this,
702 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800703 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700704 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
705 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500706 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400707 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700708 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500709 resolver.registerContentObserver(Settings.Global.getUriFor(
710 Settings.Global.POLICY_CONTROL), false, this,
711 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800712 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800713 }
714
715 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800716 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700717 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800718 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800719 }
Craig Mautner967212c2013-04-13 21:10:58 -0700720
Jeff Browna20dda42014-05-27 20:57:24 -0700721 class MyWakeGestureListener extends WakeGestureListener {
722 MyWakeGestureListener(Context context, Handler handler) {
723 super(context, handler);
724 }
725
726 @Override
727 public void onWakeUp() {
728 synchronized (mLock) {
729 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700730 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Bryce Lee584a4452014-10-21 15:55:55 -0700731 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture);
Jeff Browna20dda42014-05-27 20:57:24 -0700732 }
733 }
734 }
735 }
736
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800737 class MyOrientationListener extends WindowOrientationListener {
Craig Mautnereee29c42013-01-17 14:44:34 -0800738 MyOrientationListener(Context context, Handler handler) {
739 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800740 }
Craig Mautner967212c2013-04-13 21:10:58 -0700741
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800742 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700743 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700744 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700745 updateRotation(false);
746 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800747 }
748 MyOrientationListener mOrientationListener;
749
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100750 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400751
John Spurlock27735a42013-08-14 17:57:38 -0400752 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400753 View.NAVIGATION_BAR_TRANSIENT,
754 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400755 View.NAVIGATION_BAR_TRANSLUCENT,
756 StatusBarManager.WINDOW_NAVIGATION_BAR,
757 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400758
John Spurlockf1a36642013-10-12 17:50:42 -0400759 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400760
Craig Mautner037aa8d2013-06-07 10:35:44 -0700761 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400762
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700763 IStatusBarService getStatusBarService() {
764 synchronized (mServiceAquireLock) {
765 if (mStatusBarService == null) {
766 mStatusBarService = IStatusBarService.Stub.asInterface(
767 ServiceManager.getService("statusbar"));
768 }
769 return mStatusBarService;
770 }
771 }
772
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700773 /*
774 * We always let the sensor be switched on by default except when
775 * the user has explicitly disabled sensor based rotation or when the
776 * screen is switched off.
777 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700778 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800779 if (mSupportAutoRotation) {
780 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
781 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
782 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
783 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
784 // If the application has explicitly requested to follow the
785 // orientation, then we need to turn the sensor on.
786 return true;
787 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800788 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700789 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800790 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
791 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
792 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400793 // enable accelerometer if we are docked in a dock that enables accelerometer
794 // orientation management,
795 return true;
796 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700797 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800798 // If the setting for using the sensor by default is enabled, then
799 // we will always leave it on. Note that the user could go to
800 // a window that forces an orientation that does not use the
801 // sensor and in theory we could turn it off... however, when next
802 // turning it on we won't have a good value for the current
803 // orientation for a little bit, which can cause orientation
804 // changes to lag, so we'd like to keep it always on. (It will
805 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700806 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800807 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800808 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800809 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700810
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800811 /*
812 * Various use cases for invoking this function
813 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700814 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800815 * if not already enabled
816 * screen turned on and current app does not have sensor orientation, disable listeners if
817 * already enabled
818 * screen turning on and current app has sensor based orientation, enable listeners if needed
819 * screen turning on and current app has nosensor based orientation, do nothing
820 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700821 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800822 if (!mOrientationListener.canDetectOrientation()) {
823 // If sensor is turned off or nonexistent for some reason
824 return;
825 }
826 //Could have been invoked due to screen turning on or off or
827 //change of the currently visible window's orientation
Jeff Brown3ee549c2014-09-22 20:14:39 -0700828 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
829 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
830 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800831 boolean disable = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700832 if (mScreenOnEarly && mAwake) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700833 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800834 disable = false;
835 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700836 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800837 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700838 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800839 mOrientationSensorEnabled = true;
840 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700841 }
842 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800843 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700844 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800845 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700846 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800847 mOrientationSensorEnabled = false;
848 }
849 }
850
Jeff Brown13f00f02014-10-31 14:45:50 -0700851 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
852 // Hold a wake lock until the power key is released.
853 if (!mPowerKeyWakeLock.isHeld()) {
854 mPowerKeyWakeLock.acquire();
855 }
856
857 // Cancel multi-press detection timeout.
858 if (mPowerKeyPressCounter != 0) {
859 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
860 }
861
862 // Detect user pressing the power button in panic when an application has
863 // taken over the whole screen.
864 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800865 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700866 if (panic) {
867 mHandler.post(mRequestTransientNav);
868 }
869
870 // Latch power key state to detect screenshot chord.
871 if (interactive && !mScreenshotChordPowerKeyTriggered
872 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
873 mScreenshotChordPowerKeyTriggered = true;
874 mScreenshotChordPowerKeyTime = event.getDownTime();
875 interceptScreenshotChord();
876 }
877
878 // Stop ringing or end call if configured to do so when power is pressed.
879 TelecomManager telecomManager = getTelecommService();
880 boolean hungUp = false;
881 if (telecomManager != null) {
882 if (telecomManager.isRinging()) {
883 // Pressing Power while there's a ringing incoming
884 // call should silence the ringer.
885 telecomManager.silenceRinger();
886 } else if ((mIncallPowerBehavior
887 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
888 && telecomManager.isInCall() && interactive) {
889 // Otherwise, if "Power button ends call" is enabled,
890 // the Power button will hang up any current active call.
891 hungUp = telecomManager.endCall();
892 }
893 }
894
895 // If the power key has still not yet been handled, then detect short
896 // press, long press, or multi press and decide what to do.
897 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
898 || mScreenshotChordVolumeUpKeyTriggered;
899 if (!mPowerKeyHandled) {
900 if (interactive) {
901 // When interactive, we're already awake.
902 // Wait for a long press or for the button to be released to decide what to do.
903 if (hasLongPressOnPowerBehavior()) {
904 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
905 msg.setAsynchronous(true);
906 mHandler.sendMessageDelayed(msg,
907 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
908 }
909 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800910 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800911
Bryce Leed3b28402015-03-09 15:49:13 +0000912 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
913 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
914 msg.setAsynchronous(true);
915 mHandler.sendMessageDelayed(msg,
916 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800917 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000918 } else {
919 final int maxCount = getMaxMultiPressPowerCount();
920
921 if (maxCount <= 1) {
922 mPowerKeyHandled = true;
923 } else {
924 mBeganFromNonInteractive = true;
925 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700926 }
927 }
Jeff Brown4d396052010-10-29 21:50:21 -0700928 }
929 }
930
Jeff Brown13f00f02014-10-31 14:45:50 -0700931 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
932 final boolean handled = canceled || mPowerKeyHandled;
933 mScreenshotChordPowerKeyTriggered = false;
934 cancelPendingScreenshotChordAction();
935 cancelPendingPowerKeyAction();
936
937 if (!handled) {
938 // Figure out how to handle the key now that it has been released.
939 mPowerKeyPressCounter += 1;
940
941 final int maxCount = getMaxMultiPressPowerCount();
942 final long eventTime = event.getDownTime();
943 if (mPowerKeyPressCounter < maxCount) {
944 // This could be a multi-press. Wait a little bit longer to confirm.
945 // Continue holding the wake lock.
946 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
947 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
948 msg.setAsynchronous(true);
949 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
950 return;
951 }
952
953 // No other actions. Handle it immediately.
954 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700955 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700956
957 // Done. Reset our state.
958 finishPowerKeyPress();
959 }
960
961 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -0800962 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -0700963 mPowerKeyPressCounter = 0;
964 if (mPowerKeyWakeLock.isHeld()) {
965 mPowerKeyWakeLock.release();
966 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700967 }
968
969 private void cancelPendingPowerKeyAction() {
970 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700971 mPowerKeyHandled = true;
972 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700973 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700974 }
975
976 private void powerPress(long eventTime, boolean interactive, int count) {
977 if (mScreenOnEarly && !mScreenOnFully) {
978 Slog.i(TAG, "Suppressed redundant power key press while "
979 + "already in the process of turning the screen on.");
980 return;
Jeff Brownff204712011-10-25 21:27:54 -0700981 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700982
983 if (count == 2) {
984 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
985 } else if (count == 3) {
986 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -0800987 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700988 switch (mShortPressOnPowerBehavior) {
989 case SHORT_PRESS_POWER_NOTHING:
990 break;
991 case SHORT_PRESS_POWER_GO_TO_SLEEP:
992 mPowerManager.goToSleep(eventTime,
993 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
994 break;
995 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
996 mPowerManager.goToSleep(eventTime,
997 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
998 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
999 break;
1000 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1001 mPowerManager.goToSleep(eventTime,
1002 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1003 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1004 launchHomeFromHotKey();
1005 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001006 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001007 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001008 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001009 }
1010 }
1011 }
1012
1013 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1014 switch (behavior) {
1015 case MULTI_PRESS_POWER_NOTHING:
1016 break;
1017 case MULTI_PRESS_POWER_THEATER_MODE:
1018 if (isTheaterModeEnabled()) {
1019 Slog.i(TAG, "Toggling theater mode off.");
1020 Settings.Global.putInt(mContext.getContentResolver(),
1021 Settings.Global.THEATER_MODE_ON, 0);
1022 if (!interactive) {
1023 wakeUpFromPowerKey(eventTime);
1024 }
1025 } else {
1026 Slog.i(TAG, "Toggling theater mode on.");
1027 Settings.Global.putInt(mContext.getContentResolver(),
1028 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001029
1030 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001031 mPowerManager.goToSleep(eventTime,
1032 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1033 }
1034 }
1035 break;
1036 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001037 Slog.i(TAG, "Starting brightness boost.");
1038 if (!interactive) {
1039 wakeUpFromPowerKey(eventTime);
1040 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001041 mPowerManager.boostScreenBrightness(eventTime);
1042 break;
1043 }
1044 }
1045
1046 private int getMaxMultiPressPowerCount() {
1047 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1048 return 3;
1049 }
1050 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1051 return 2;
1052 }
1053 return 1;
1054 }
1055
1056 private void powerLongPress() {
1057 final int behavior = getResolvedLongPressOnPowerBehavior();
1058 switch (behavior) {
1059 case LONG_PRESS_POWER_NOTHING:
1060 break;
1061 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1062 mPowerKeyHandled = true;
1063 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1064 performAuditoryFeedbackForAccessibilityIfNeed();
1065 }
1066 showGlobalActionsInternal();
1067 break;
1068 case LONG_PRESS_POWER_SHUT_OFF:
1069 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1070 mPowerKeyHandled = true;
1071 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1072 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1073 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1074 break;
1075 }
1076 }
1077
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001078 private void sleepPress(KeyEvent event) {
1079 switch (mShortPressOnSleepBehavior) {
1080 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
1081 mPowerManager.goToSleep(event.getEventTime(),
1082 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
1083 break;
1084 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001085 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001086 mPowerManager.goToSleep(event.getEventTime(),
1087 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
1088 break;
1089 }
1090 }
1091
Jeff Brown13f00f02014-10-31 14:45:50 -07001092 private int getResolvedLongPressOnPowerBehavior() {
1093 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1094 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1095 }
1096 return mLongPressOnPowerBehavior;
1097 }
1098
1099 private boolean hasLongPressOnPowerBehavior() {
1100 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001101 }
1102
1103 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001104 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001105 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1106 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001107 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001108 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1109 && now <= mScreenshotChordPowerKeyTime
1110 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1111 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001112 cancelPendingPowerKeyAction();
1113
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001114 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001115 }
1116 }
1117 }
1118
Winson Chung1cea2f32012-10-08 20:42:01 -07001119 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001120 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001121 // Double the time it takes to take a screenshot from the keyguard
1122 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001123 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001124 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001125 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001126 }
1127
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001128 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001129 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001130 }
1131
Jeff Brown13f00f02014-10-31 14:45:50 -07001132 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001133 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001134 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001135 mEndCallKeyHandled = true;
1136 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1137 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001138 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001139 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001140 }
1141 };
1142
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001143 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001144 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001145 public void run() {
1146 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001147 }
1148 };
1149
Alan Viverettee34560b22014-07-10 14:50:06 -07001150 @Override
1151 public void showGlobalActions() {
1152 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1153 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1154 }
1155
1156 void showGlobalActionsInternal() {
1157 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001158 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001159 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001160 }
Jim Millerab954542014-10-10 18:21:49 -07001161 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001162 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1163 if (keyguardShowing) {
1164 // since it took two seconds of long press to bring this up,
1165 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001166 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001167 }
1168 }
1169
1170 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001171 return Settings.Global.getInt(
1172 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001173 }
1174
Maurice Lam99c6e072014-04-28 18:24:28 -07001175 boolean isUserSetupComplete() {
1176 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1177 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1178 }
1179
Jeff Brown13f00f02014-10-31 14:45:50 -07001180 private void handleShortPressOnHome() {
1181 // If there's a dream running then use home to escape the dream
1182 // but don't actually go home.
1183 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1184 mDreamManagerInternal.stopDream(false /*immediate*/);
1185 return;
1186 }
1187
1188 // Go home!
1189 launchHomeFromHotKey();
1190 }
1191
Patrick Dubroyece94522011-02-23 18:35:01 -08001192 private void handleLongPressOnHome() {
Joe Onorato46b0d682010-11-22 17:37:27 -08001193 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001194 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001195 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001196
Jeff Browncaca8812013-05-09 13:34:33 -07001197 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1198 toggleRecentApps();
1199 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
1200 launchAssistAction();
Jim Millere6ad1a82010-08-20 19:25:39 -07001201 }
1202 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001203 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001204
Jeff Browncaca8812013-05-09 13:34:33 -07001205 private void handleDoubleTapOnHome() {
1206 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1207 mHomeConsumed = true;
1208 toggleRecentApps();
1209 }
1210 }
1211
1212 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1213 @Override
1214 public void run() {
1215 if (mHomeDoubleTapPending) {
1216 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001217 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001218 }
1219 }
1220 };
1221
Mark Renoufc1256912015-03-11 14:38:23 -04001222 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001223 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001224 }
1225
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001226 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001227 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001228 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001229 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001230 mContext = context;
1231 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001232 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001233 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001234 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001235 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Mark Renoufc1256912015-03-11 14:38:23 -04001236
1237 // Init display burn-in protection
1238 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1239 com.android.internal.R.bool.config_enableBurnInProtection);
1240 // Allow a system property to override this. Used by developer settings.
1241 boolean burnInProtectionDevMode =
1242 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1243 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1244 final int minHorizontal;
1245 final int maxHorizontal;
1246 final int minVertical;
1247 final int maxVertical;
1248 final int maxRadius;
1249 if (burnInProtectionDevMode) {
1250 minHorizontal = -8;
1251 maxHorizontal = 8;
1252 minVertical = -8;
1253 maxVertical = -4;
1254 maxRadius = (isRoundWindow()) ? 6 : -1;
1255 } else {
1256 Resources resources = context.getResources();
1257 minHorizontal = resources.getInteger(
1258 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1259 maxHorizontal = resources.getInteger(
1260 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1261 minVertical = resources.getInteger(
1262 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1263 maxVertical = resources.getInteger(
1264 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1265 maxRadius = resources.getInteger(
1266 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1267 }
1268 mBurnInProtectionHelper = new BurnInProtectionHelper(
1269 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001270 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001271
Jeff Brown70825162012-03-28 17:27:48 -07001272 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001273 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001274 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001275 try {
1276 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1277 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001278 mSettingsObserver = new SettingsObserver(mHandler);
1279 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001280 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001281 mUiMode = context.getResources().getInteger(
1282 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001283 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1284 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1285 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1286 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001287 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1288 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1289 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1290 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1291 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1292 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1293 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1294 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001295
Jeff Brown96307042012-07-27 15:51:34 -07001296 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1297 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001298 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001299 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1300 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001301 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001302 mSupportAutoRotation = mContext.getResources().getBoolean(
1303 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001304 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001305 com.android.internal.R.integer.config_lidOpenRotation);
1306 mCarDockRotation = readRotation(
1307 com.android.internal.R.integer.config_carDockRotation);
1308 mDeskDockRotation = readRotation(
1309 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001310 mUndockedHdmiRotation = readRotation(
1311 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001312 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1313 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1314 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1315 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001316 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1317 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1318 mLidNavigationAccessibility = mContext.getResources().getInteger(
1319 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001320 mLidControlsSleep = mContext.getResources().getBoolean(
1321 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001322 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1323 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001324
1325 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1326 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1327 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1328 || mContext.getResources().getBoolean(
1329 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1330 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1331 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001332 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1333 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001334 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1335 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1336 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1337 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1338 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1339 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1340
Bryce Lee55e846d2014-11-04 12:43:44 -08001341 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1342 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1343
Bryce Leed3b28402015-03-09 15:49:13 +00001344 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1345 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1346
Jeff Brown13f00f02014-10-31 14:45:50 -07001347 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1348 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1349 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1350 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1351 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1352 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1353 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1354 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001355 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1356 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001357
John Spurlock61560172015-02-06 19:46:04 -05001358 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001359
Jeff Brownf71343d2013-05-31 17:59:11 -07001360 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001361
Svetoslav8e3feb12014-02-24 13:46:47 -08001362 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1363 Context.ACCESSIBILITY_SERVICE);
1364
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001365 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001366 IntentFilter filter = new IntentFilter();
1367 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1368 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1369 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1370 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001371 filter.addAction(Intent.ACTION_DOCK_EVENT);
1372 Intent intent = context.registerReceiver(mDockReceiver, filter);
1373 if (intent != null) {
1374 // Retrieve current sticky dock event broadcast.
1375 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1376 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1377 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001378
Jeff Brown6aaf2952012-10-05 16:01:08 -07001379 // register for dream-related broadcasts
1380 filter = new IntentFilter();
1381 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1382 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1383 context.registerReceiver(mDreamReceiver, filter);
1384
Christopher Tate5e08af02012-09-21 17:17:22 -07001385 // register for multiuser-relevant broadcasts
1386 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1387 context.registerReceiver(mMultiuserReceiver, filter);
1388
John Spurlock57306e62013-04-22 09:48:49 -04001389 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001390 mSystemGestures = new SystemGesturesPointerEventListener(context,
1391 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001392 @Override
1393 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001394 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001395 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001396 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001397 }
1398 @Override
1399 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001400 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001401 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001402 }
1403 }
1404 @Override
1405 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001406 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001407 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001408 }
1409 }
1410 @Override
1411 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001412 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001413 }
Adrian Roos3595be42015-03-05 16:31:15 +01001414 @Override
1415 public void onDown() {
1416 mOrientationListener.onTouchStart();
1417 }
1418 @Override
1419 public void onUpOrCancel() {
1420 mOrientationListener.onTouchEnd();
1421 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001422 });
John Spurlockf1a36642013-10-12 17:50:42 -04001423 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001424 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001425
Jeff Brownc2346132012-04-13 01:55:38 -07001426 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001427 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1428 com.android.internal.R.array.config_longPressVibePattern);
1429 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1430 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001431 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1432 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001433 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1434 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001435 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1436 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001437 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1438 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1439 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1440 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore82067b2015-04-30 09:58:35 -07001441 mStylusButtonPressVibePattern = getLongIntArray(mContext.getResources(),
1442 com.android.internal.R.array.config_stylusButtonPressVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001443
Christopher Tatee90585f2012-03-05 18:56:25 -08001444 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1445 com.android.internal.R.bool.config_enableScreenshotChord);
1446
Justin Kohd378ad72013-04-01 12:18:26 -07001447 mGlobalKeyManager = new GlobalKeyManager(mContext);
1448
Joe Onoratoea495d42011-04-06 11:41:11 -07001449 // Controls rotation and the like.
1450 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001451
1452 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001453 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001454 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1455 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001456 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001457
1458 mWindowManagerInternal.registerAppTransitionListener(
1459 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001460 }
1461
Jeff Brownf71343d2013-05-31 17:59:11 -07001462 /**
1463 * Read values from config.xml that may be overridden depending on
1464 * the configuration of the device.
1465 * eg. Disable long press on home goes to recents on sw600dp.
1466 */
1467 private void readConfigurationDependentBehaviors() {
1468 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1469 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1470 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1471 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1472 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1473 }
1474
1475 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1476 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1477 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1478 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1479 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1480 }
1481 }
1482
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001483 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001484 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001485 // This method might be called before the policy has been fully initialized
1486 // or for other displays we don't care about.
1487 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1488 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001489 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001490 mDisplay = display;
1491
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001492 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001493 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001494 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001495 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001496 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001497 mLandscapeRotation = Surface.ROTATION_0;
1498 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001499 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001500 mPortraitRotation = Surface.ROTATION_90;
1501 mUpsideDownRotation = Surface.ROTATION_270;
1502 } else {
1503 mPortraitRotation = Surface.ROTATION_270;
1504 mUpsideDownRotation = Surface.ROTATION_90;
1505 }
1506 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001507 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001508 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001509 mPortraitRotation = Surface.ROTATION_0;
1510 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001511 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001512 mLandscapeRotation = Surface.ROTATION_270;
1513 mSeascapeRotation = Surface.ROTATION_90;
1514 } else {
1515 mLandscapeRotation = Surface.ROTATION_90;
1516 mSeascapeRotation = Surface.ROTATION_270;
1517 }
1518 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001519
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001520 mStatusBarHeight =
1521 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001522
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001523 // Height of the navigation bar when presented horizontally at bottom
1524 mNavigationBarHeightForRotation[mPortraitRotation] =
1525 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001526 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001527 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001528 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1529 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001530
1531 // Width of the navigation bar when presented vertically along one side
1532 mNavigationBarWidthForRotation[mPortraitRotation] =
1533 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1534 mNavigationBarWidthForRotation[mLandscapeRotation] =
1535 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001536 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001537
1538 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001539 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001540 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001541
Devin Kimd7b12b42014-05-05 14:34:58 -07001542 // Allow the navigation bar to move on non-square small devices (phones).
1543 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001544
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001545 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001546 // Allow a system property to override this. Used by the emulator.
1547 // See also hasNavigationBar().
1548 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1549 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001550 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001551 } else if ("0".equals(navBarOverride)) {
1552 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001553 }
1554
Jeff Brown27f1d672012-10-17 18:32:34 -07001555 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1556 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001557 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001558 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001559 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001560 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001561 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001562 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001563
Chong Zhangae6119ff2014-11-11 18:54:39 -08001564 // For demo purposes, allow the rotation of the remote display to be controlled.
1565 // By default, remote display locks rotation to landscape.
1566 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1567 mDemoRotation = mPortraitRotation;
1568 } else {
1569 mDemoRotation = mLandscapeRotation;
1570 }
1571 mDemoRotationLock = SystemProperties.getBoolean(
1572 "persist.demo.rotationlock", false);
1573
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001574 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1575 // http://developer.android.com/guide/practices/screens_support.html#range
1576 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1577 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1578 // For debug purposes the next line turns this feature off with:
1579 // $ adb shell setprop config.override_forced_orient true
1580 // $ adb shell wm size reset
1581 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1582 }
1583
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001584 /**
1585 * @return whether the navigation bar can be hidden, e.g. the device has a
1586 * navigation bar and touch exploration is not enabled
1587 */
1588 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001589 return mHasNavigationBar
1590 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001591 }
1592
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001593 @Override
1594 public boolean isDefaultOrientationForced() {
1595 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001596 }
1597
Dianne Hackbornc652de82013-02-15 16:32:56 -08001598 @Override
1599 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1600 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1601 mOverscanLeft = left;
1602 mOverscanTop = top;
1603 mOverscanRight = right;
1604 mOverscanBottom = bottom;
1605 }
1606 }
1607
Dianne Hackbornc777e072010-02-12 13:07:59 -08001608 public void updateSettings() {
1609 ContentResolver resolver = mContext.getContentResolver();
1610 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001611 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001612 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001613 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001614 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1615 UserHandle.USER_CURRENT);
1616 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001617 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001618 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1619 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001620
Jeff Browna20dda42014-05-27 20:57:24 -07001621 // Configure wake gesture.
1622 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1623 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1624 UserHandle.USER_CURRENT) != 0;
1625 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1626 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1627 updateWakeGestureListenerLp();
1628 }
1629
Jeff Brown207673cd2012-06-05 17:47:11 -07001630 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001631 int userRotation = Settings.System.getIntForUser(resolver,
1632 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1633 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001634 if (mUserRotation != userRotation) {
1635 mUserRotation = userRotation;
1636 updateRotation = true;
1637 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001638 int userRotationMode = Settings.System.getIntForUser(resolver,
1639 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001640 WindowManagerPolicy.USER_ROTATION_FREE :
1641 WindowManagerPolicy.USER_ROTATION_LOCKED;
1642 if (mUserRotationMode != userRotationMode) {
1643 mUserRotationMode = userRotationMode;
1644 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001645 updateOrientationListenerLp();
1646 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001647
Dianne Hackbornc777e072010-02-12 13:07:59 -08001648 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001649 int pointerLocation = Settings.System.getIntForUser(resolver,
1650 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001651 if (mPointerLocationMode != pointerLocation) {
1652 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001653 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1654 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001655 }
1656 }
1657 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001658 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1659 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1660 String imId = Settings.Secure.getStringForUser(resolver,
1661 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001662 boolean hasSoftInput = imId != null && imId.length() > 0;
1663 if (mHasSoftInput != hasSoftInput) {
1664 mHasSoftInput = hasSoftInput;
1665 updateRotation = true;
1666 }
John Spurlockf1a36642013-10-12 17:50:42 -04001667 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001668 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001669 }
John Spurlockc6d1c602014-01-17 15:22:06 -05001670 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001671 }
1672 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001673 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001674 }
Jeff Brown70825162012-03-28 17:27:48 -07001675 }
1676
Jeff Browna20dda42014-05-27 20:57:24 -07001677 private void updateWakeGestureListenerLp() {
1678 if (shouldEnableWakeGestureLp()) {
1679 mWakeGestureListener.requestWakeUpTrigger();
1680 } else {
1681 mWakeGestureListener.cancelWakeUpTrigger();
1682 }
1683 }
1684
1685 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001686 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001687 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1688 && mWakeGestureListener.isSupported();
1689 }
1690
Jeff Brown70825162012-03-28 17:27:48 -07001691 private void enablePointerLocation() {
1692 if (mPointerLocationView == null) {
1693 mPointerLocationView = new PointerLocationView(mContext);
1694 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001695 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1696 WindowManager.LayoutParams.MATCH_PARENT,
1697 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001698 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001699 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1700 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1701 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1702 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001703 if (ActivityManager.isHighEndGfx()) {
1704 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1705 lp.privateFlags |=
1706 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1707 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001708 lp.format = PixelFormat.TRANSLUCENT;
1709 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001710 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001711 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001712 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001713 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001714 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001715 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001716 }
Jeff Brown70825162012-03-28 17:27:48 -07001717
1718 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001719 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001720 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1721 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001722 wm.removeView(mPointerLocationView);
1723 mPointerLocationView = null;
1724 }
1725 }
1726
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001727 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001728 try {
1729 int rotation = mContext.getResources().getInteger(resID);
1730 switch (rotation) {
1731 case 0:
1732 return Surface.ROTATION_0;
1733 case 90:
1734 return Surface.ROTATION_90;
1735 case 180:
1736 return Surface.ROTATION_180;
1737 case 270:
1738 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001739 }
1740 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001741 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001742 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001743 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001744 }
1745
1746 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001747 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001748 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001749 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001750
1751 outAppOp[0] = AppOpsManager.OP_NONE;
1752
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001753 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1754 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1755 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1756 return WindowManagerGlobal.ADD_INVALID_TYPE;
1757 }
1758
1759 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1760 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001761 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001762 }
1763 String permission = null;
1764 switch (type) {
1765 case TYPE_TOAST:
1766 // XXX right now the app process has complete control over
1767 // this... should introduce a token to let the system
1768 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001769 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001770 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001771 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001772 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001773 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001774 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001775 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001776 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001777 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001778 break;
1779 case TYPE_PHONE:
1780 case TYPE_PRIORITY_PHONE:
1781 case TYPE_SYSTEM_ALERT:
1782 case TYPE_SYSTEM_ERROR:
1783 case TYPE_SYSTEM_OVERLAY:
1784 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001785 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001786 break;
1787 default:
1788 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1789 }
1790 if (permission != null) {
1791 if (mContext.checkCallingOrSelfPermission(permission)
1792 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001793 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001794 }
1795 }
Jeff Brown98365d72012-08-19 20:30:52 -07001796 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001797 }
Craig Mautner88400d32012-09-30 12:35:45 -07001798
1799 @Override
1800 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1801
1802 // If this switch statement is modified, modify the comment in the declarations of
1803 // the type in {@link WindowManager.LayoutParams} as well.
1804 switch (attrs.type) {
1805 default:
1806 // These are the windows that by default are shown only to the user that created
1807 // them. If this needs to be overridden, set
1808 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1809 // {@link WindowManager.LayoutParams}. Note that permission
1810 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1811 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1812 return true;
1813 }
1814 break;
1815
1816 // These are the windows that by default are shown to all users. However, to
1817 // protect against spoofing, check permissions below.
1818 case TYPE_APPLICATION_STARTING:
1819 case TYPE_BOOT_PROGRESS:
1820 case TYPE_DISPLAY_OVERLAY:
1821 case TYPE_HIDDEN_NAV_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001822 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001823 case TYPE_KEYGUARD_DIALOG:
1824 case TYPE_MAGNIFICATION_OVERLAY:
1825 case TYPE_NAVIGATION_BAR:
1826 case TYPE_NAVIGATION_BAR_PANEL:
1827 case TYPE_PHONE:
1828 case TYPE_POINTER:
1829 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001830 case TYPE_SEARCH_BAR:
1831 case TYPE_STATUS_BAR:
1832 case TYPE_STATUS_BAR_PANEL:
1833 case TYPE_STATUS_BAR_SUB_PANEL:
1834 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001835 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001836 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001837 break;
1838 }
1839
1840 // Check if third party app has set window to system window type.
1841 return mContext.checkCallingOrSelfPermission(
1842 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1843 != PackageManager.PERMISSION_GRANTED;
1844 }
1845
Craig Mautner967212c2013-04-13 21:10:58 -07001846 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001847 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1848 switch (attrs.type) {
1849 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001850 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001851 // These types of windows can't receive input events.
1852 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1853 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001854 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001855 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001856 case TYPE_STATUS_BAR:
1857
1858 // If the Keyguard is in a hidden state (occluded by another window), we force to
1859 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1860 // the keyguard as occluded wouldn't set these flags again.
1861 // See {@link #processKeyguardSetHiddenResultLw}.
1862 if (mKeyguardHidden) {
1863 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1864 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1865 }
1866 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001867 }
Adrian Roos38502112014-04-09 21:04:11 +02001868
1869 if (attrs.type != TYPE_STATUS_BAR) {
1870 // The status bar is the only window allowed to exhibit keyguard behavior.
1871 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1872 }
Adrian Roosea562512014-05-05 13:33:03 +02001873
1874 if (ActivityManager.isHighEndGfx()
1875 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02001876 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02001877 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1878 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001879 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001880
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001881 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07001882 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001883 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001884
Michael Wright3818c922014-09-02 13:59:07 -07001885 private void readCameraLensCoverState() {
1886 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
1887 }
1888
Jeff Browndaa37532012-05-01 15:54:03 -07001889 private boolean isHidden(int accessibilityMode) {
1890 switch (accessibilityMode) {
1891 case 1:
1892 return mLidState == LID_CLOSED;
1893 case 2:
1894 return mLidState == LID_OPEN;
1895 default:
1896 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001897 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001898 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001899
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001900 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001901 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07001902 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
1903 int navigationPresence) {
1904 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
1905
Jeff Brownf71343d2013-05-31 17:59:11 -07001906 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001907 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07001908 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08001909
Jeff Browndaa37532012-05-01 15:54:03 -07001910 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
1911 || (keyboardPresence == PRESENCE_INTERNAL
1912 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001913 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07001914 if (!mHasSoftInput) {
1915 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
1916 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001917 }
1918
Jeff Browndaa37532012-05-01 15:54:03 -07001919 if (config.navigation == Configuration.NAVIGATION_NONAV
1920 || (navigationPresence == PRESENCE_INTERNAL
1921 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001922 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08001923 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001924 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001925
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001926 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001927 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001928 public int windowTypeToLayerLw(int type) {
1929 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001930 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001931 }
1932 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07001933 case TYPE_PRIVATE_PRESENTATION:
1934 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001935 case TYPE_WALLPAPER:
1936 // wallpaper is at the bottom, though the window manager may move it.
1937 return 2;
1938 case TYPE_PHONE:
1939 return 3;
1940 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07001941 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001942 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001943 case TYPE_VOICE_INTERACTION:
1944 // voice interaction layer is almost immediately above apps.
1945 return 5;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001946 case TYPE_SYSTEM_DIALOG:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001947 return 6;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001948 case TYPE_TOAST:
1949 // toasts and the plugged-in battery thing
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001950 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001951 case TYPE_PRIORITY_PHONE:
1952 // SIM errors and unlock. Not sure if this really should be in a high layer.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001953 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001954 case TYPE_DREAM:
1955 // used for Dreams (screensavers with TYPE_DREAM windows)
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001956 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001957 case TYPE_SYSTEM_ALERT:
1958 // like the ANR / app crashed dialogs
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001959 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001960 case TYPE_INPUT_METHOD:
1961 // on-screen keyboards and other such input method user interfaces go here.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001962 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001963 case TYPE_INPUT_METHOD_DIALOG:
1964 // on-screen keyboards and other such input method user interfaces go here.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001965 return 12;
Jim Miller5ecd8112013-01-09 18:50:26 -08001966 case TYPE_KEYGUARD_SCRIM:
1967 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001968 return 13;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001969 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001970 return 14;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001971 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001972 return 15;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001973 case TYPE_STATUS_BAR_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001974 return 16;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001975 case TYPE_KEYGUARD_DIALOG:
1976 return 17;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001977 case TYPE_VOLUME_OVERLAY:
1978 // the on-screen volume indicator and controller shown when the user
1979 // changes the device volume
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001980 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001981 case TYPE_SYSTEM_OVERLAY:
1982 // the on-screen volume indicator and controller shown when the user
1983 // changes the device volume
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001984 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001985 case TYPE_NAVIGATION_BAR:
1986 // the navigation bar, if available, shows atop most things
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001987 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001988 case TYPE_NAVIGATION_BAR_PANEL:
1989 // some panels (e.g. search) need to show on top of the navigation bar
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001990 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001991 case TYPE_SYSTEM_ERROR:
1992 // system-level error dialogs
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001993 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001994 case TYPE_MAGNIFICATION_OVERLAY:
1995 // used to highlight the magnified portion of a display
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001996 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001997 case TYPE_DISPLAY_OVERLAY:
1998 // used to simulate secondary display devices
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001999 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002000 case TYPE_DRAG:
2001 // the drag layer: input for drag-and-drop is associated with this window,
2002 // which sits above all other focusable windows
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002003 return 25;
Svetoslav3a5c7212014-10-14 09:54:26 -07002004 case TYPE_ACCESSIBILITY_OVERLAY:
2005 // overlay put by accessibility services to intercept user interaction
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002006 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002007 case TYPE_SECURE_SYSTEM_OVERLAY:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002008 return 27;
Svetoslav3a5c7212014-10-14 09:54:26 -07002009 case TYPE_BOOT_PROGRESS:
2010 return 28;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002011 case TYPE_POINTER:
2012 // the (mouse) pointer layer
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002013 return 29;
Svetoslav3a5c7212014-10-14 09:54:26 -07002014 case TYPE_HIDDEN_NAV_CONSUMER:
2015 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002016 }
2017 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002018 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002019 }
2020
2021 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002022 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002023 public int subWindowTypeToLayerLw(int type) {
2024 switch (type) {
2025 case TYPE_APPLICATION_PANEL:
2026 case TYPE_APPLICATION_ATTACHED_DIALOG:
2027 return APPLICATION_PANEL_SUBLAYER;
2028 case TYPE_APPLICATION_MEDIA:
2029 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002030 case TYPE_APPLICATION_MEDIA_OVERLAY:
2031 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002032 case TYPE_APPLICATION_SUB_PANEL:
2033 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002034 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2035 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002036 }
2037 Log.e(TAG, "Unknown sub-window type: " + type);
2038 return 0;
2039 }
2040
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002041 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002042 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002043 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002044 }
2045
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002046 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002047 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002048 if (mHasNavigationBar) {
2049 // For a basic navigation bar, when we are in landscape mode we place
2050 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002051 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2052 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002053 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002054 }
2055 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002056 }
2057
Jose Lima9546b202014-07-02 17:21:51 -07002058 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002059 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002060 if (mHasNavigationBar) {
2061 // For a basic navigation bar, when we are in portrait mode we place
2062 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002063 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2064 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002065 }
2066 }
2067 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002068 }
2069
Jose Lima9546b202014-07-02 17:21:51 -07002070 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002071 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2072 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002073 }
2074
Jose Lima9546b202014-07-02 17:21:51 -07002075 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002076 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002077 // There is a separate status bar at the top of the display. We don't count that as part
2078 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002079 // we do want to exclude it since applications can't generally use that part
2080 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002081 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002082 }
2083
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002084 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002085 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2086 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002087 (isKeyguardHostWindow(attrs) &&
2088 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002089 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002090 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002091
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002092 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002093 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2094 return attrs.type == TYPE_STATUS_BAR;
2095 }
2096
2097 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002098 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002099 switch (attrs.type) {
2100 case TYPE_STATUS_BAR:
2101 case TYPE_NAVIGATION_BAR:
2102 case TYPE_WALLPAPER:
2103 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002104 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002105 return false;
2106 default:
2107 return true;
2108 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002109 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002110
Craig Mautner7d7808f2014-09-11 18:02:38 -07002111 @Override
2112 public WindowState getWinShowWhenLockedLw() {
2113 return mWinShowWhenLocked;
2114 }
2115
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002116 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002117 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002118 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2119 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002120 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002121 if (!SHOW_STARTING_ANIMATIONS) {
2122 return null;
2123 }
2124 if (packageName == null) {
2125 return null;
2126 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002127
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002128 WindowManager wm = null;
2129 View view = null;
2130
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002131 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002132 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002133 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2134 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2135 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002136 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002137 try {
2138 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002139 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002140 } catch (PackageManager.NameNotFoundException e) {
2141 // Ignore
2142 }
2143 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002144
Jorim Jaggib10e33f2015-02-04 21:57:40 +01002145 Window win = new PhoneWindow(context);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002146 final TypedArray ta = win.getWindowStyle();
2147 if (ta.getBoolean(
2148 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2149 || ta.getBoolean(
2150 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002151 return null;
2152 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002153
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002154 Resources r = context.getResources();
2155 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002156
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002157 win.setType(
2158 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002159
2160 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2161 // Assumes it's safe to show starting windows of launched apps while
2162 // the keyguard is being hidden. This is okay because starting windows never show
2163 // secret information.
2164 if (mKeyguardHidden) {
2165 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2166 }
2167 }
2168
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002169 // Force the window flags: this is a fake window, so it is not really
2170 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2171 // flag because we do know that the next window will take input
2172 // focus, so we want to get the IME window up on top of us right away.
2173 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002174 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002175 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2176 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2177 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002178 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002179 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2180 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2181 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002182
Adam Powell04fe6eb2013-05-31 14:39:48 -07002183 win.setDefaultIcon(icon);
2184 win.setDefaultLogo(logo);
2185
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002186 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002187 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002188
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002189 final WindowManager.LayoutParams params = win.getAttributes();
2190 params.token = appToken;
2191 params.packageName = packageName;
2192 params.windowAnimations = win.getWindowStyle().getResourceId(
2193 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002194 params.privateFlags |=
2195 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002196 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002197
2198 if (!compatInfo.supportsScreen()) {
2199 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2200 }
2201
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002202 params.setTitle("Starting " + packageName);
2203
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002204 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2205 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002206
2207 if (win.isFloating()) {
2208 // Whoops, there is no way to display an animation/preview
2209 // of such a thing! After all that work... let's skip it.
2210 // (Note that we must do this here because it is in
2211 // getDecorView() where the theme is evaluated... maybe
2212 // we should peek the floating attribute from the theme
2213 // earlier.)
2214 return null;
2215 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002216
Craig Mautner6fbda632012-07-03 09:26:39 -07002217 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002218 TAG, "Adding starting window for " + packageName
2219 + " / " + appToken + ": "
2220 + (view.getParent() != null ? view : null));
2221
2222 wm.addView(view, params);
2223
2224 // Only return the view if it was successfully added to the
2225 // window manager... which we can tell by it having a parent.
2226 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002227 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002228 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002229 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2230 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002231 } catch (RuntimeException e) {
2232 // don't crash if something else bad happens, for example a
2233 // failure loading resources because we are loading from an app
2234 // on external storage that has been unmounted.
2235 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002236 } finally {
2237 if (view != null && view.getParent() == null) {
2238 Log.w(TAG, "view not successfully added to wm, removing view");
2239 wm.removeViewImmediate(view);
2240 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002241 }
2242
2243 return null;
2244 }
2245
2246 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002247 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002248 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002249 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2250 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002251
2252 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002253 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002254 wm.removeView(window);
2255 }
2256 }
2257
2258 /**
2259 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002260 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002261 * Currently enforces that three window types are singletons:
2262 * <ul>
2263 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002264 * <li>KEYGUARD_TYPE</li>
2265 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002266 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002267 * @param win The window to be added
2268 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002269 *
Jeff Brown98365d72012-08-19 20:30:52 -07002270 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2271 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002272 */
Jose Lima9546b202014-07-02 17:21:51 -07002273 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002274 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2275 switch (attrs.type) {
2276 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002277 mContext.enforceCallingOrSelfPermission(
2278 android.Manifest.permission.STATUS_BAR_SERVICE,
2279 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002280 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002281 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002282 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002283 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002284 }
2285 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002286 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002287 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002288 case TYPE_NAVIGATION_BAR:
2289 mContext.enforceCallingOrSelfPermission(
2290 android.Manifest.permission.STATUS_BAR_SERVICE,
2291 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002292 if (mNavigationBar != null) {
2293 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002294 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002295 }
2296 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002297 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002298 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002299 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002300 break;
Jim Millere898ac52012-04-06 17:10:57 -07002301 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002302 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002303 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002304 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002305 mContext.enforceCallingOrSelfPermission(
2306 android.Manifest.permission.STATUS_BAR_SERVICE,
2307 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002308 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002309 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002310 if (mKeyguardScrim != null) {
2311 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2312 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002313 mKeyguardScrim = win;
2314 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002315 }
Jeff Brown98365d72012-08-19 20:30:52 -07002316 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002317 }
2318
2319 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002320 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002321 public void removeWindowLw(WindowState win) {
2322 if (mStatusBar == win) {
2323 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002324 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002325 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002326 } else if (mKeyguardScrim == win) {
2327 Log.v(TAG, "Removing keyguard scrim");
2328 mKeyguardScrim = null;
2329 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002330 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002331 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002332 }
2333 }
2334
2335 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002336
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002337 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002338 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002339 public int selectAnimationLw(WindowState win, int transit) {
2340 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2341 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002342 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002343 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002344 if (transit == TRANSIT_EXIT
2345 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002346 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002347 } else if (transit == TRANSIT_ENTER
2348 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002349 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002350 }
2351 } else if (win == mNavigationBar) {
2352 // This can be on either the bottom or the right.
2353 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002354 if (transit == TRANSIT_EXIT
2355 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002356 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002357 } else if (transit == TRANSIT_ENTER
2358 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002359 return R.anim.dock_bottom_enter;
2360 }
2361 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002362 if (transit == TRANSIT_EXIT
2363 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002364 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002365 } else if (transit == TRANSIT_ENTER
2366 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002367 return R.anim.dock_right_enter;
2368 }
2369 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002370 }
2371
2372 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002373 if (win.hasAppShownWindows()) {
2374 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2375 return com.android.internal.R.anim.app_starting_exit;
2376 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002377 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002378 && transit == TRANSIT_ENTER) {
2379 // Special case: we are animating in a dream, while the keyguard
2380 // is shown. We don't want an animation on the dream, because
2381 // we need it shown immediately with the keyguard animating away
2382 // to reveal it.
2383 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002384 }
2385
2386 return 0;
2387 }
2388
Craig Mautner3c174372013-02-21 17:54:37 -08002389 @Override
2390 public void selectRotationAnimationLw(int anim[]) {
2391 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2392 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2393 + (mTopFullscreenOpaqueWindowState == null ?
2394 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2395 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2396 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2397 case ROTATION_ANIMATION_CROSSFADE:
2398 anim[0] = R.anim.rotation_animation_xfade_exit;
2399 anim[1] = R.anim.rotation_animation_enter;
2400 break;
2401 case ROTATION_ANIMATION_JUMPCUT:
2402 anim[0] = R.anim.rotation_animation_jump_exit;
2403 anim[1] = R.anim.rotation_animation_enter;
2404 break;
2405 case ROTATION_ANIMATION_ROTATE:
2406 default:
2407 anim[0] = anim[1] = 0;
2408 break;
2409 }
2410 } else {
2411 anim[0] = anim[1] = 0;
2412 }
2413 }
2414
2415 @Override
2416 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2417 boolean forceDefault) {
2418 switch (exitAnimId) {
2419 case R.anim.rotation_animation_xfade_exit:
2420 case R.anim.rotation_animation_jump_exit:
2421 // These are the only cases that matter.
2422 if (forceDefault) {
2423 return false;
2424 }
2425 int anim[] = new int[2];
2426 selectRotationAnimationLw(anim);
2427 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2428 default:
2429 return true;
2430 }
2431 }
2432
2433 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002434 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2435 boolean goingToNotificationShade) {
2436 if (goingToNotificationShade) {
2437 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002438 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002439
2440 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2441 R.anim.lock_screen_behind_enter_wallpaper :
2442 R.anim.lock_screen_behind_enter);
2443
2444 // TODO: Use XML interpolators when we have log interpolators available in XML.
2445 final List<Animation> animations = set.getAnimations();
2446 for (int i = animations.size() - 1; i >= 0; --i) {
2447 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2448 }
2449
2450 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002451 }
2452
2453
2454 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002455 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2456 if (goingToNotificationShade) {
2457 return null;
2458 } else {
2459 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2460 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002461 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002462
2463 private static void awakenDreams() {
2464 IDreamManager dreamManager = getDreamManager();
2465 if (dreamManager != null) {
2466 try {
2467 dreamManager.awaken();
2468 } catch (RemoteException e) {
2469 // fine, stay asleep then
2470 }
2471 }
2472 }
2473
2474 static IDreamManager getDreamManager() {
2475 return IDreamManager.Stub.asInterface(
2476 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2477 }
2478
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002479 TelecomManager getTelecommService() {
2480 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002481 }
2482
Jeff Brown4d396052010-10-29 21:50:21 -07002483 static IAudioService getAudioService() {
2484 IAudioService audioService = IAudioService.Stub.asInterface(
2485 ServiceManager.checkService(Context.AUDIO_SERVICE));
2486 if (audioService == null) {
2487 Log.w(TAG, "Unable to find IAudioService interface.");
2488 }
2489 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002490 }
2491
2492 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002493 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002494 }
2495
2496 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2497 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2498 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2499 };
2500
2501 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002502 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002503 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002504 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002505 final int keyCode = event.getKeyCode();
2506 final int repeatCount = event.getRepeatCount();
2507 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002508 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002509 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2510 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002511
Jeff Brown40013652012-05-16 21:22:36 -07002512 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002513 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002514 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2515 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002516 }
2517
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002518 // If we think we might have a volume down & power key chord on the way
2519 // but we're not sure, then tell the dispatcher to wait a little while and
2520 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002521 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002522 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002523 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002524 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2525 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002526 if (now < timeoutTime) {
2527 return timeoutTime - now;
2528 }
2529 }
2530 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002531 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002532 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002533 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002534 }
2535 return -1;
2536 }
2537 }
2538
Michael Wright6a62e552014-06-03 19:19:48 -07002539 // Cancel any pending meta actions if we see any other keys being pressed between the down
2540 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002541 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002542 mPendingMetaAction = false;
2543 }
2544
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002545 // First we always handle the home key here, so applications
2546 // can never break it, although if keyguard is on, we do let
2547 // it handle it, because that gives us the correct 5 second
2548 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002549 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002550
Jeff Brown49ed71d2010-12-06 17:13:33 -08002551 // If we have released the home key, and didn't do anything else
2552 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002553 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002554 cancelPreloadRecentApps();
2555
Jeff Brown49ed71d2010-12-06 17:13:33 -08002556 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002557 if (mHomeConsumed) {
2558 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002559 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002560 }
Jeff Browncaca8812013-05-09 13:34:33 -07002561
2562 if (canceled) {
2563 Log.i(TAG, "Ignoring HOME; event canceled.");
2564 return -1;
2565 }
2566
Yorke Lee4f803242014-12-15 23:22:06 +00002567 // If an incoming call is ringing, HOME is totally disabled.
2568 // (The user is already on the InCallUI at this point,
2569 // and his ONLY options are to answer or reject the call.)
2570 TelecomManager telecomManager = getTelecommService();
2571 if (telecomManager != null && telecomManager.isRinging()) {
2572 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2573 return -1;
2574 }
2575
Jeff Browncaca8812013-05-09 13:34:33 -07002576 // Delay handling home if a double-tap is possible.
2577 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2578 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2579 mHomeDoubleTapPending = true;
2580 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2581 ViewConfiguration.getDoubleTapTimeout());
2582 return -1;
2583 }
2584
Jeff Brown13f00f02014-10-31 14:45:50 -07002585 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002586 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002587 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002588
2589 // If a system window has focus, then it doesn't make sense
2590 // right now to interact with applications.
2591 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2592 if (attrs != null) {
2593 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002594 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2595 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2596 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002597 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002598 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002599 }
2600 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2601 for (int i=0; i<typeCount; i++) {
2602 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2603 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002604 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002605 }
2606 }
2607 }
Jeff Browncaca8812013-05-09 13:34:33 -07002608
2609 // Remember that home is pressed and handle special actions.
2610 if (repeatCount == 0) {
2611 mHomePressed = true;
2612 if (mHomeDoubleTapPending) {
2613 mHomeDoubleTapPending = false;
2614 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2615 handleDoubleTapOnHome();
2616 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2617 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2618 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002619 }
Jeff Browncaca8812013-05-09 13:34:33 -07002620 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2621 if (!keyguardOn) {
2622 handleLongPressOnHome();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002623 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002624 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002625 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002626 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002627 // Hijack modified menu keys for debugging features
2628 final int chordBug = KeyEvent.META_SHIFT_ON;
2629
2630 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002631 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002632 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002633 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2634 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002635 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002636 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002637 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002638 Intent service = new Intent();
2639 service.setClassName(mContext, "com.android.server.LoadAverageService");
2640 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002641 boolean shown = Settings.Global.getInt(
2642 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002643 if (!shown) {
2644 mContext.startService(service);
2645 } else {
2646 mContext.stopService(service);
2647 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002648 Settings.Global.putInt(
2649 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002650 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002651 }
2652 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002653 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002654 if (down) {
2655 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002656 mSearchKeyShortcutPending = true;
2657 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002658 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002659 } else {
2660 mSearchKeyShortcutPending = false;
2661 if (mConsumeSearchKeyUp) {
2662 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002663 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002664 }
2665 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002666 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002667 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002668 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002669 if (down && repeatCount == 0) {
2670 preloadRecentApps();
2671 } else if (!down) {
2672 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002673 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002674 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002675 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002676 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2677 if (down) {
2678 IStatusBarService service = getStatusBarService();
2679 if (service != null) {
2680 try {
2681 service.expandNotificationsPanel();
2682 } catch (RemoteException e) {
2683 // do nothing.
2684 }
2685 }
2686 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002687 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2688 if (down) {
2689 if (repeatCount == 0) {
2690 mAssistKeyLongPressed = false;
2691 } else if (repeatCount == 1) {
2692 mAssistKeyLongPressed = true;
2693 if (!keyguardOn) {
2694 launchAssistLongPressAction();
2695 }
2696 }
2697 } else {
2698 if (mAssistKeyLongPressed) {
2699 mAssistKeyLongPressed = false;
2700 } else {
2701 if (!keyguardOn) {
2702 launchAssistAction();
2703 }
2704 }
2705 }
2706 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002707 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2708 if (!down) {
2709 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002710 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002711 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2712 } else {
2713 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002714 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002715 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002716 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002717 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002718 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2719 if (down && repeatCount == 0) {
2720 mHandler.post(mScreenshotRunnable);
2721 }
2722 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002723 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2724 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2725 if (down) {
2726 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2727
2728 // Disable autobrightness if it's on
2729 int auto = Settings.System.getIntForUser(
2730 mContext.getContentResolver(),
2731 Settings.System.SCREEN_BRIGHTNESS_MODE,
2732 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2733 UserHandle.USER_CURRENT_OR_SELF);
2734 if (auto != 0) {
2735 Settings.System.putIntForUser(mContext.getContentResolver(),
2736 Settings.System.SCREEN_BRIGHTNESS_MODE,
2737 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2738 UserHandle.USER_CURRENT_OR_SELF);
2739 }
2740
2741 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2742 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2743 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2744 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2745 Settings.System.SCREEN_BRIGHTNESS,
2746 mPowerManager.getDefaultScreenBrightnessSetting(),
2747 UserHandle.USER_CURRENT_OR_SELF);
2748 brightness += step;
2749 // Make sure we don't go beyond the limits.
2750 brightness = Math.min(max, brightness);
2751 brightness = Math.max(min, brightness);
2752
2753 Settings.System.putIntForUser(mContext.getContentResolver(),
2754 Settings.System.SCREEN_BRIGHTNESS, brightness,
2755 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002756 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002757 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002758 }
2759 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002760 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002761 if (down) {
2762 mPendingMetaAction = true;
2763 } else if (mPendingMetaAction) {
Michael Wright8ab940a2014-09-01 11:01:27 -07002764 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD);
Michael Wright6a62e552014-06-03 19:19:48 -07002765 }
2766 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002767 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002768
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002769 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002770 // Any printing key that is chorded with Search should be consumed
2771 // even if no shortcut was invoked. This prevents text from being
2772 // inadvertently inserted when using a keyboard that has built-in macro
2773 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002774 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002775 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2776 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002777 mConsumeSearchKeyUp = true;
2778 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002779 if (down && repeatCount == 0 && !keyguardOn) {
2780 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2781 if (shortcutIntent != null) {
2782 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002783 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002784 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002785 } catch (ActivityNotFoundException ex) {
2786 Slog.w(TAG, "Dropping shortcut key combination because "
2787 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002788 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002789 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002790 } else {
2791 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002792 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002793 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002794 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002795 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002796 }
2797 }
2798
Jeff Brown68b909d2011-12-07 16:36:01 -08002799 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002800 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002801 && (metaState & KeyEvent.META_META_ON) != 0) {
2802 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002803 if (kcm.isPrintingKey(keyCode)) {
2804 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2805 metaState & ~(KeyEvent.META_META_ON
2806 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2807 if (shortcutIntent != null) {
2808 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2809 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002810 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002811 } catch (ActivityNotFoundException ex) {
2812 Slog.w(TAG, "Dropping shortcut key combination because "
2813 + "the activity to which it is registered was not found: "
2814 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2815 }
2816 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002817 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002818 }
2819 }
2820
Jeff Brown6651a632011-11-28 12:59:11 -08002821 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002822 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002823 String category = sApplicationLaunchKeyCategories.get(keyCode);
2824 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002825 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002826 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2827 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002828 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002829 } catch (ActivityNotFoundException ex) {
2830 Slog.w(TAG, "Dropping application launch key because "
2831 + "the activity to which it is registered was not found: "
2832 + "keyCode=" + keyCode + ", category=" + category, ex);
2833 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002834 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002835 }
2836 }
2837
Michael Wright61c46752014-08-21 16:57:33 -07002838 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002839 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002840 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002841 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002842 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002843 mRecentAppsHeldModifiers = shiftlessModifiers;
2844 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002845 return -1;
2846 }
2847 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002848 } else if (!down && mRecentAppsHeldModifiers != 0
2849 && (metaState & mRecentAppsHeldModifiers) == 0) {
2850 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002851 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002852 }
2853
Jeff Browncf39bdf2012-05-18 14:41:19 -07002854 // Handle keyboard language switching.
2855 if (down && repeatCount == 0
2856 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2857 || (keyCode == KeyEvent.KEYCODE_SPACE
2858 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2859 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2860 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2861 return -1;
2862 }
2863 if (mLanguageSwitchKeyPressed && !down
2864 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2865 || keyCode == KeyEvent.KEYCODE_SPACE)) {
2866 mLanguageSwitchKeyPressed = false;
2867 return -1;
2868 }
2869
Jeff Brown13f00f02014-10-31 14:45:50 -07002870 if (isValidGlobalKey(keyCode)
2871 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07002872 return -1;
2873 }
2874
Michael Wright6a62e552014-06-03 19:19:48 -07002875 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07002876 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07002877 return -1;
2878 }
2879
Jeff Brown68b909d2011-12-07 16:36:01 -08002880 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002881 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002882 }
2883
Jeff Brown3915bb82010-11-05 15:02:16 -07002884 /** {@inheritDoc} */
2885 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08002886 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07002887 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07002888 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08002889 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
2890 + ", flags=" + event.getFlags()
2891 + ", keyCode=" + event.getKeyCode()
2892 + ", scanCode=" + event.getScanCode()
2893 + ", metaState=" + event.getMetaState()
2894 + ", repeatCount=" + event.getRepeatCount()
2895 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07002896 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002897
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002898 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002899 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
2900 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002901 final int keyCode = event.getKeyCode();
2902 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002903 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
2904 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002905
Jeff Brown54875002011-04-06 15:33:01 -07002906 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002907 final FallbackAction fallbackAction;
2908 if (initialDown) {
2909 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
2910 } else {
2911 fallbackAction = mFallbackActions.get(keyCode);
2912 }
2913
2914 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07002915 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002916 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
2917 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002918 }
2919
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002920 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
2921 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08002922 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002923 event.getAction(), fallbackAction.keyCode,
2924 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08002925 event.getDeviceId(), event.getScanCode(),
2926 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002927
2928 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
2929 fallbackEvent.recycle();
2930 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002931 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002932
2933 if (initialDown) {
2934 mFallbackActions.put(keyCode, fallbackAction);
2935 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2936 mFallbackActions.remove(keyCode);
2937 fallbackAction.recycle();
2938 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002939 }
2940 }
2941
Jeff Brown40013652012-05-16 21:22:36 -07002942 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002943 if (fallbackEvent == null) {
2944 Slog.d(TAG, "No fallback.");
2945 } else {
2946 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
2947 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002948 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002949 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07002950 }
2951
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002952 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002953 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002954 if ((actions & ACTION_PASS_TO_USER) != 0) {
2955 long delayMillis = interceptKeyBeforeDispatching(
2956 win, fallbackEvent, policyFlags);
2957 if (delayMillis == 0) {
2958 return true;
2959 }
2960 }
2961 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08002962 }
2963
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002964 private void launchAssistLongPressAction() {
2965 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
2966 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
2967
2968 // launch the search activity
2969 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
2970 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2971 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07002972 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07002973 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002974 SearchManager searchManager = getSearchManager();
2975 if (searchManager != null) {
2976 searchManager.stopSearch();
2977 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002978 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002979 } catch (ActivityNotFoundException e) {
2980 Slog.w(TAG, "No activity to handle assist long press action.", e);
2981 }
2982 }
2983
2984 private void launchAssistAction() {
Michael Wright8ab940a2014-09-01 11:01:27 -07002985 launchAssistAction(null);
2986 }
2987
2988 private void launchAssistAction(String hint) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002989 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Amith Yamasanic1d07a42012-08-14 09:32:02 -07002990 Intent intent = ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08002991 .getAssistIntent(mContext, true, UserHandle.USER_CURRENT);
Jim Miller45308b12012-06-18 19:23:39 -07002992 if (intent != null) {
Michael Wright8ab940a2014-09-01 11:01:27 -07002993 if (hint != null) {
2994 intent.putExtra(hint, true);
2995 }
Jim Miller45308b12012-06-18 19:23:39 -07002996 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2997 | Intent.FLAG_ACTIVITY_SINGLE_TOP
2998 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
2999 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00003000 startActivityAsUser(intent, UserHandle.CURRENT);
Jim Miller45308b12012-06-18 19:23:39 -07003001 } catch (ActivityNotFoundException e) {
3002 Slog.w(TAG, "No activity to handle assist action.", e);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003003 }
3004 }
3005 }
3006
Bart Sears8b1c27c2015-03-18 23:51:02 +00003007 private void startActivityAsUser(Intent intent, UserHandle handle) {
3008 if (isUserSetupComplete()) {
3009 mContext.startActivityAsUser(intent, handle);
3010 } else {
3011 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3012 }
3013 }
3014
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003015 private SearchManager getSearchManager() {
3016 if (mSearchManager == null) {
3017 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3018 }
3019 return mSearchManager;
3020 }
3021
Jeff Browncaca8812013-05-09 13:34:33 -07003022 private void preloadRecentApps() {
3023 mPreloadedRecentApps = true;
3024 try {
3025 IStatusBarService statusbar = getStatusBarService();
3026 if (statusbar != null) {
3027 statusbar.preloadRecentApps();
3028 }
3029 } catch (RemoteException e) {
3030 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3031 // re-acquire status bar service next time it is needed.
3032 mStatusBarService = null;
3033 }
3034 }
3035
3036 private void cancelPreloadRecentApps() {
3037 if (mPreloadedRecentApps) {
3038 mPreloadedRecentApps = false;
3039 try {
3040 IStatusBarService statusbar = getStatusBarService();
3041 if (statusbar != null) {
3042 statusbar.cancelPreloadRecentApps();
3043 }
3044 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003045 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003046 // re-acquire status bar service next time it is needed.
3047 mStatusBarService = null;
3048 }
3049 }
3050 }
3051
3052 private void toggleRecentApps() {
3053 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003054 try {
3055 IStatusBarService statusbar = getStatusBarService();
3056 if (statusbar != null) {
3057 statusbar.toggleRecentApps();
3058 }
3059 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003060 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3061 // re-acquire status bar service next time it is needed.
3062 mStatusBarService = null;
3063 }
3064 }
3065
Craig Mautner84984fa2014-06-19 11:19:20 -07003066 @Override
3067 public void showRecentApps() {
3068 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3069 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3070 }
3071
Winson Chung1e8d71b2014-05-16 17:05:22 -07003072 private void showRecentApps(boolean triggeredFromAltTab) {
3073 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3074 try {
3075 IStatusBarService statusbar = getStatusBarService();
3076 if (statusbar != null) {
3077 statusbar.showRecentApps(triggeredFromAltTab);
3078 }
3079 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003080 Slog.e(TAG, "RemoteException when showing recent apps", e);
3081 // re-acquire status bar service next time it is needed.
3082 mStatusBarService = null;
3083 }
3084 }
3085
Winson Chungcdcd4872014-08-05 18:00:13 -07003086 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003087 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3088 try {
3089 IStatusBarService statusbar = getStatusBarService();
3090 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003091 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003092 }
3093 } catch (RemoteException e) {
3094 Slog.e(TAG, "RemoteException when closing recent apps", e);
3095 // re-acquire status bar service next time it is needed.
3096 mStatusBarService = null;
3097 }
3098 }
3099
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003100 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003101 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003102 }
3103
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003104 /**
3105 * A home key -> launch home action was detected. Take the appropriate action
3106 * given the situation with the keyguard.
3107 */
Bryce Lee662ed802015-04-10 20:11:39 +00003108 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3109 if (respectKeyguard) {
3110 if (isKeyguardShowingAndNotOccluded()) {
3111 // don't launch home if keyguard showing
3112 return;
3113 }
3114
3115 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3116 // when in keyguard restricted mode, must first verify unlock
3117 // before launching home
3118 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3119 @Override
3120 public void onKeyguardExitResult(boolean success) {
3121 if (success) {
3122 try {
3123 ActivityManagerNative.getDefault().stopAppSwitches();
3124 } catch (RemoteException e) {
3125 }
3126 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3127 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003128 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003129 }
Bryce Lee662ed802015-04-10 20:11:39 +00003130 });
3131 return;
3132 }
3133 }
3134
3135 // no keyguard stuff to worry about, just launch home!
3136 try {
3137 ActivityManagerNative.getDefault().stopAppSwitches();
3138 } catch (RemoteException e) {
3139 }
3140 if (mRecentsVisible) {
3141 // Hide Recents and notify it to launch Home
3142 if (awakenFromDreams) {
3143 awakenDreams();
3144 }
3145 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3146 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003147 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003148 // Otherwise, just launch Home
3149 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3150 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003151 }
3152 }
3153
John Spurlock04db1762013-05-13 12:46:41 -04003154 private final Runnable mClearHideNavigationFlag = new Runnable() {
3155 @Override
3156 public void run() {
3157 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3158 // Clear flags.
3159 mForceClearedSystemUiFlags &=
3160 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3161 }
3162 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003163 }
3164 };
3165
3166 /**
3167 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3168 * to determine when the nav bar should be shown and prevent applications from
3169 * receiving those touches.
3170 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003171 final class HideNavInputEventReceiver extends InputEventReceiver {
3172 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3173 super(inputChannel, looper);
3174 }
3175
Dianne Hackborndf89e652011-10-06 22:35:11 -07003176 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003177 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003178 boolean handled = false;
3179 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003180 if (event instanceof MotionEvent
3181 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3182 final MotionEvent motionEvent = (MotionEvent)event;
3183 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003184 // When the user taps down, we re-show the nav bar.
3185 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003186 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003187 // Any user activity always causes us to show the
3188 // navigation controls, if they had been hidden.
3189 // We also clear the low profile and only content
3190 // flags so that tapping on the screen will atomically
3191 // restore all currently hidden screen decorations.
3192 int newVal = mResettingSystemUiFlags |
3193 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3194 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3195 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003196 if (mResettingSystemUiFlags != newVal) {
3197 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003198 changed = true;
3199 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003200 // We don't allow the system's nav bar to be hidden
3201 // again for 1 second, to prevent applications from
3202 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003203 newVal = mForceClearedSystemUiFlags |
3204 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003205 if (mForceClearedSystemUiFlags != newVal) {
3206 mForceClearedSystemUiFlags = newVal;
3207 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003208 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003209 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003210 }
3211 if (changed) {
3212 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3213 }
3214 }
3215 }
3216 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003217 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003218 }
3219 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003220 }
3221 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3222 new InputEventReceiver.Factory() {
3223 @Override
3224 public InputEventReceiver createInputEventReceiver(
3225 InputChannel inputChannel, Looper looper) {
3226 return new HideNavInputEventReceiver(inputChannel, looper);
3227 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003228 };
3229
3230 @Override
3231 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003232 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3233 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003234 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003235
Dianne Hackborndf89e652011-10-06 22:35:11 -07003236 // Reset any bits in mForceClearingStatusBarVisibility that
3237 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003238 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003239 // Clear any bits in the new visibility that are currently being
3240 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003241 return visibility & ~mResettingSystemUiFlags
3242 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003243 }
3244
Craig Mautner69b08182012-09-05 13:07:13 -07003245 @Override
Adrian Roos37d7a682014-11-06 18:15:16 +01003246 public void getInsetHintLw(WindowManager.LayoutParams attrs, Rect outContentInsets,
3247 Rect outStableInsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003248 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003249 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3250 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003251
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003252 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003253 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003254 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003255 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003256 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003257 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3258 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3259 } else {
3260 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3261 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3262 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003263 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3264 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003265 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003266 availRight - mStableFullscreenRight,
3267 availBottom - mStableFullscreenBottom);
3268 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003269 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003270 availRight - mStableRight, availBottom - mStableBottom);
3271 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003272 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003273 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003274 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003275 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003276 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003277 availRight - mCurRight, availBottom - mCurBottom);
3278 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003279 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003280 availRight - mCurRight, availBottom - mCurBottom);
3281 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003282
3283 outStableInsets.set(mStableLeft, mStableTop,
3284 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003285 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003286 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003287 outContentInsets.setEmpty();
3288 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003289 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003290
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003291 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003292 @Override
3293 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3294 int displayRotation) {
Dianne Hackbornc652de82013-02-15 16:32:56 -08003295 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3296 if (isDefaultDisplay) {
3297 switch (displayRotation) {
3298 case Surface.ROTATION_90:
3299 overscanLeft = mOverscanTop;
3300 overscanTop = mOverscanRight;
3301 overscanRight = mOverscanBottom;
3302 overscanBottom = mOverscanLeft;
3303 break;
3304 case Surface.ROTATION_180:
3305 overscanLeft = mOverscanRight;
3306 overscanTop = mOverscanBottom;
3307 overscanRight = mOverscanLeft;
3308 overscanBottom = mOverscanTop;
3309 break;
3310 case Surface.ROTATION_270:
3311 overscanLeft = mOverscanBottom;
3312 overscanTop = mOverscanLeft;
3313 overscanRight = mOverscanTop;
3314 overscanBottom = mOverscanRight;
3315 break;
3316 default:
3317 overscanLeft = mOverscanLeft;
3318 overscanTop = mOverscanTop;
3319 overscanRight = mOverscanRight;
3320 overscanBottom = mOverscanBottom;
3321 break;
3322 }
3323 } else {
3324 overscanLeft = 0;
3325 overscanTop = 0;
3326 overscanRight = 0;
3327 overscanBottom = 0;
3328 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003329 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3330 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3331 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3332 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003333 mSystemLeft = 0;
3334 mSystemTop = 0;
3335 mSystemRight = displayWidth;
3336 mSystemBottom = displayHeight;
3337 mUnrestrictedScreenLeft = overscanLeft;
3338 mUnrestrictedScreenTop = overscanTop;
3339 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3340 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3341 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3342 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003343 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3344 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003345 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003346 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003347 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003348 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003349 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003350 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003351 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003352 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003353 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003354 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003355
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003356 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3357 final Rect pf = mTmpParentFrame;
3358 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003359 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003360 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003361 final Rect dcf = mTmpDecorFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003362 pf.left = df.left = of.left = vf.left = mDockLeft;
3363 pf.top = df.top = of.top = vf.top = mDockTop;
3364 pf.right = df.right = of.right = vf.right = mDockRight;
3365 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003366 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003367
Craig Mautner69b08182012-09-05 13:07:13 -07003368 if (isDefaultDisplay) {
3369 // For purposes of putting out fake window up to steal focus, we will
3370 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003371 final int sysui = mLastSystemUiFlags;
3372 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003373 boolean navTranslucent = (sysui
3374 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003375 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3376 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3377 boolean navAllowedHidden = immersive || immersiveSticky;
3378 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003379 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3380 if (!isKeyguardShowing) {
3381 navTranslucent &= areTranslucentBarsAllowed();
3382 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003383
Craig Mautner69b08182012-09-05 13:07:13 -07003384 // When the navigation bar isn't visible, we put up a fake
3385 // input window to catch all touch events. This way we can
3386 // detect when the user presses anywhere to bring back the nav
3387 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003388 if (navVisible || navAllowedHidden) {
Craig Mautner69b08182012-09-05 13:07:13 -07003389 if (mHideNavFakeWindow != null) {
3390 mHideNavFakeWindow.dismiss();
3391 mHideNavFakeWindow = null;
3392 }
3393 } else if (mHideNavFakeWindow == null) {
3394 mHideNavFakeWindow = mWindowManagerFuncs.addFakeWindow(
3395 mHandler.getLooper(), mHideNavInputEventReceiverFactory,
Adam Lesinski95c42972013-10-02 10:13:27 -07003396 "hidden nav", WindowManager.LayoutParams.TYPE_HIDDEN_NAV_CONSUMER, 0,
Craig Mautner69b08182012-09-05 13:07:13 -07003397 0, false, false, true);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003398 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003399
Craig Mautner69b08182012-09-05 13:07:13 -07003400 // For purposes of positioning and showing the nav bar, if we have
3401 // decided that it can't be hidden (because of the screen aspect ratio),
3402 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003403 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003404
John Spurlockad3e6cb2013-04-30 08:47:43 -04003405 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003406 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003407 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003408 // Force the navigation bar to its appropriate place and
3409 // size. We need to do this directly, instead of relying on
3410 // it to bubble up from the nav bar, because this needs to
3411 // change atomically with screen rotations.
3412 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3413 if (mNavigationBarOnBottom) {
3414 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003415 int top = displayHeight - overscanBottom
3416 - mNavigationBarHeightForRotation[displayRotation];
3417 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003418 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003419 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003420 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003421 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003422 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003423 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003424 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3425 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003426 } else {
3427 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003428 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003429 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003430 if (navVisible && !navTranslucent && !navAllowedHidden
3431 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003432 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003433 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003434 // and not in the process of animating on or off, then
3435 // we can tell the app that it is covered by it.
3436 mSystemBottom = mTmpNavigationFrame.top;
3437 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003438 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003439 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003440 int left = displayWidth - overscanRight
3441 - mNavigationBarWidthForRotation[displayRotation];
3442 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003443 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003444 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003445 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003446 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003447 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003448 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003449 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3450 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003451 } else {
3452 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003453 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003454 }
John Spurlockbd957402013-10-03 11:38:39 -04003455 if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3456 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003457 // If the nav bar is currently requested to be visible,
3458 // and not in the process of animating on or off, then
3459 // we can tell the app that it is covered by it.
3460 mSystemRight = mTmpNavigationFrame.left;
3461 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003462 }
Craig Mautner69b08182012-09-05 13:07:13 -07003463 // Make sure the content and current rectangles are updated to
3464 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003465 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3466 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3467 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3468 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003469 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3470 // And compute the final frame.
3471 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003472 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3473 mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003474 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003475 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003476 updateSysUiVisibility = true;
3477 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003478 }
Craig Mautnereda67292013-04-28 13:50:14 -07003479 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003480 mDockLeft, mDockTop, mDockRight, mDockBottom));
3481
3482 // decide where the status bar goes ahead of time
3483 if (mStatusBar != null) {
3484 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003485 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3486 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3487 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3488 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3489 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003490 vf.left = mStableLeft;
3491 vf.top = mStableTop;
3492 vf.right = mStableRight;
3493 vf.bottom = mStableBottom;
3494
3495 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3496
3497 // Let the status bar determine its size.
Adrian Roosfa104232014-06-20 16:10:14 -07003498 mStatusBar.computeFrameLw(pf, df, vf, vf, vf, dcf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003499
3500 // For layout, the status bar is always at the top with our fixed height.
3501 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3502
John Spurlocke1f366f2013-08-05 12:22:40 -04003503 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003504 boolean statusBarTranslucent = (sysui
3505 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003506 if (!isKeyguardShowing) {
3507 statusBarTranslucent &= areTranslucentBarsAllowed();
3508 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003509
Craig Mautner69b08182012-09-05 13:07:13 -07003510 // If the status bar is hidden, we don't want to cause
3511 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003512 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003513 // Status bar may go away, so the screen area it occupies
3514 // is available to apps but just covering them when the
3515 // status bar is visible.
3516 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3517
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003518 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3519 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3520 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3521 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003522
Craig Mautnereda67292013-04-28 13:50:14 -07003523 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003524 String.format(
3525 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3526 mDockLeft, mDockTop, mDockRight, mDockBottom,
3527 mContentLeft, mContentTop, mContentRight, mContentBottom,
3528 mCurLeft, mCurTop, mCurRight, mCurBottom));
3529 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003530 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003531 && !statusBarTransient && !statusBarTranslucent
3532 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003533 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003534 // and not in the process of animating on or off, then
3535 // we can tell the app that it is covered by it.
3536 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3537 }
John Spurlock27735a42013-08-14 17:57:38 -04003538 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003539 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003540 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003541 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003542 if (updateSysUiVisibility) {
3543 updateSystemUiVisibilityLw();
3544 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003545 }
3546 }
3547
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003548 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003549 @Override
John Spurlock46646232013-09-30 22:32:42 -04003550 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003551 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3552 return mStatusBar.getSurfaceLayer();
3553 }
3554
3555 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3556 return mNavigationBar.getSurfaceLayer();
3557 }
3558
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003559 return 0;
3560 }
3561
Craig Mautner967212c2013-04-13 21:10:58 -07003562 @Override
3563 public void getContentRectLw(Rect r) {
3564 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3565 }
3566
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003567 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3568 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003569 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3570 // Here's a special case: if this attached window is a panel that is
3571 // above the dock window, and the window it is attached to is below
3572 // the dock window, then the frames we computed for the window it is
3573 // attached to can not be used because the dock is effectively part
3574 // of the underlying window and the attached window is floating on top
3575 // of the whole thing. So, we ignore the attached window and explicitly
3576 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003577 df.left = of.left = cf.left = vf.left = mDockLeft;
3578 df.top = of.top = cf.top = vf.top = mDockTop;
3579 df.right = of.right = cf.right = vf.right = mDockRight;
3580 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003581 } else {
3582 // The effective display frame of the attached window depends on
3583 // whether it is taking care of insetting its content. If not,
3584 // we need to use the parent's content frame so that the entire
3585 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003586 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003587 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003588 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003589 // Set the content frame of the attached window to the parent's decor frame
3590 // (same as content frame when IME isn't present) if specifically requested by
3591 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3592 // Otherwise, use the overscan frame.
3593 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3594 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003595 } else {
3596 // If the window is resizing, then we want to base the content
3597 // frame on our attached content frame to resize... however,
3598 // things can be tricky if the attached window is NOT in resize
3599 // mode, in which case its content frame will be larger.
3600 // Ungh. So to deal with that, make sure the content frame
3601 // we end up using is not covering the IM dock.
3602 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003603 if (attached.isVoiceInteraction()) {
3604 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3605 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3606 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3607 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3608 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003609 if (cf.left < mContentLeft) cf.left = mContentLeft;
3610 if (cf.top < mContentTop) cf.top = mContentTop;
3611 if (cf.right > mContentRight) cf.right = mContentRight;
3612 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3613 }
3614 }
3615 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003616 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003617 vf.set(attached.getVisibleFrameLw());
3618 }
3619 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3620 // window should be positioned relative to its parent or the entire
3621 // screen.
3622 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3623 ? attached.getFrameLw() : df);
3624 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003625
3626 private void applyStableConstraints(int sysui, int fl, Rect r) {
3627 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3628 // If app is requesting a stable layout, don't let the
3629 // content insets go below the stable values.
3630 if ((fl & FLAG_FULLSCREEN) != 0) {
3631 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3632 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3633 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3634 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3635 } else {
3636 if (r.left < mStableLeft) r.left = mStableLeft;
3637 if (r.top < mStableTop) r.top = mStableTop;
3638 if (r.right > mStableRight) r.right = mStableRight;
3639 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3640 }
3641 }
3642 }
3643
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003644 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003645 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003646 public void layoutWindowLw(WindowState win, WindowState attached) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003647 // we've already done the status bar
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003648 final WindowManager.LayoutParams attrs = win.getAttrs();
3649 if ((win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) == 0) ||
3650 win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003651 return;
3652 }
Craig Mautner69b08182012-09-05 13:07:13 -07003653 final boolean isDefaultDisplay = win.isDefaultDisplay();
3654 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003655 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3656 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003657 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003658 offsetInputMethodWindowLw(mLastInputMethodWindow);
3659 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003660
John Spurlockc6d1c602014-01-17 15:22:06 -05003661 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003662 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003663 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003664
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003665 final Rect pf = mTmpParentFrame;
3666 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003667 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003668 final Rect cf = mTmpContentFrame;
3669 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003670 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003671 final Rect sf = mTmpStableFrame;
John Spurlock46646232013-09-30 22:32:42 -04003672 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003673
3674 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003675 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003676
Craig Mautnerf683b562012-10-02 11:10:57 -07003677 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3678
Adrian Roosfa104232014-06-20 16:10:14 -07003679 if (isDefaultDisplay) {
3680 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3681 } else {
3682 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3683 }
3684
Craig Mautner69b08182012-09-05 13:07:13 -07003685 if (!isDefaultDisplay) {
3686 if (attached != null) {
3687 // If this window is attached to another, our display
3688 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003689 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003690 } else {
3691 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003692 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3693 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3694 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003695 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003696 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003697 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003698 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003699 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003700 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3701 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3702 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003703 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003704 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003705 // ...with content insets above the nav bar
3706 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003707 // IM dock windows always go to the bottom of the screen.
3708 attrs.gravity = Gravity.BOTTOM;
3709 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003710 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
3711 pf.left = df.left = of.left = cf.left = vf.left = mUnrestrictedScreenLeft;
3712 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3713 pf.right = df.right = of.right = cf.right = vf.right = mUnrestrictedScreenLeft
3714 + mUnrestrictedScreenWidth;
3715 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
3716 + mUnrestrictedScreenHeight;
3717 cf.bottom = vf.bottom = mStableBottom;
3718 cf.top = vf.top = mStableTop;
Jorim Jaggie0700182014-08-21 01:12:37 +02003719 } else if (win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
3720 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3721 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3722 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3723 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3724 cf.left = vf.left = mStableLeft;
3725 cf.top = vf.top = mStableTop;
3726 cf.right = vf.right = mStableRight;
3727 vf.bottom = mStableBottom;
3728 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003729 } else {
John Spurlock46646232013-09-30 22:32:42 -04003730
3731 // Default policy decor for the default display
3732 dcf.left = mSystemLeft;
3733 dcf.top = mSystemTop;
3734 dcf.right = mSystemRight;
3735 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003736 final boolean inheritTranslucentDecor = (attrs.privateFlags
3737 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003738 final boolean isAppWindow =
3739 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3740 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3741 final boolean topAtRest =
3742 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3743 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003744 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3745 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003746 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3747 && (fl & WindowManager.LayoutParams.
3748 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003749 // Ensure policy decor includes status bar
3750 dcf.top = mStableTop;
3751 }
John Spurlockbd957402013-10-03 11:38:39 -04003752 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003753 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3754 && (fl & WindowManager.LayoutParams.
3755 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003756 // Ensure policy decor includes navigation bar
3757 dcf.bottom = mStableBottom;
3758 dcf.right = mStableRight;
3759 }
3760 }
3761
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003762 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3763 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003764 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003765 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003766 // This is the case for a normal activity window: we want it
3767 // to cover all of the screen space, and it can take care of
3768 // moving its contents to account for screen decorations that
3769 // intrude into that space.
3770 if (attached != null) {
3771 // If this window is attached to another, our display
3772 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003773 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003774 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003775 if (attrs.type == TYPE_STATUS_BAR_PANEL
3776 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003777 // Status bar panels are the only windows who can go on top of
3778 // the status bar. They are protected by the STATUS_BAR_SERVICE
3779 // permission, so they have the same privileges as the status
3780 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003781 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003782 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003783
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003784 pf.left = df.left = of.left = hasNavBar
3785 ? mDockLeft : mUnrestrictedScreenLeft;
3786 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3787 pf.right = df.right = of.right = hasNavBar
3788 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3789 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3790 pf.bottom = df.bottom = of.bottom = hasNavBar
3791 ? mRestrictedScreenTop+mRestrictedScreenHeight
3792 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003793
Craig Mautnereda67292013-04-28 13:50:14 -07003794 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003795 "Laying out status bar window: (%d,%d - %d,%d)",
3796 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003797 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003798 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3799 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3800 // Asking to layout into the overscan region, so give it that pure
3801 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003802 pf.left = df.left = of.left = mOverscanScreenLeft;
3803 pf.top = df.top = of.top = mOverscanScreenTop;
3804 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3805 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3806 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003807 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003808 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003809 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3810 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003811 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003812 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003813 // only do this for application windows to ensure no window that
3814 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08003815 pf.left = df.left = mOverscanScreenLeft;
3816 pf.top = df.top = mOverscanScreenTop;
3817 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3818 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003819 // We need to tell the app about where the frame inside the overscan
3820 // is, so it can inset its content by that amount -- it didn't ask
3821 // to actually extend itself into the overscan region.
3822 of.left = mUnrestrictedScreenLeft;
3823 of.top = mUnrestrictedScreenTop;
3824 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3825 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003826 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08003827 pf.left = df.left = mRestrictedOverscanScreenLeft;
3828 pf.top = df.top = mRestrictedOverscanScreenTop;
3829 pf.right = df.right = mRestrictedOverscanScreenLeft
3830 + mRestrictedOverscanScreenWidth;
3831 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
3832 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003833 // We need to tell the app about where the frame inside the overscan
3834 // is, so it can inset its content by that amount -- it didn't ask
3835 // to actually extend itself into the overscan region.
3836 of.left = mUnrestrictedScreenLeft;
3837 of.top = mUnrestrictedScreenTop;
3838 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3839 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003840 }
Craig Mautner69b08182012-09-05 13:07:13 -07003841
John Spurlock46646232013-09-30 22:32:42 -04003842 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003843 if (win.isVoiceInteraction()) {
3844 cf.left = mVoiceContentLeft;
3845 cf.top = mVoiceContentTop;
3846 cf.right = mVoiceContentRight;
3847 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003848 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003849 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
3850 cf.left = mDockLeft;
3851 cf.top = mDockTop;
3852 cf.right = mDockRight;
3853 cf.bottom = mDockBottom;
3854 } else {
3855 cf.left = mContentLeft;
3856 cf.top = mContentTop;
3857 cf.right = mContentRight;
3858 cf.bottom = mContentBottom;
3859 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003860 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003861 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003862 // Full screen windows are always given a layout that is as if the
3863 // status bar and other transient decors are gone. This is to avoid
3864 // bad states when moving from a window that is not hding the
3865 // status bar to one that is.
3866 cf.left = mRestrictedScreenLeft;
3867 cf.top = mRestrictedScreenTop;
3868 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
3869 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003870 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003871 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003872 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3873 vf.left = mCurLeft;
3874 vf.top = mCurTop;
3875 vf.right = mCurRight;
3876 vf.bottom = mCurBottom;
3877 } else {
3878 vf.set(cf);
3879 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003880 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003881 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
3882 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
3883 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07003884 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3885 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003886 // A window that has requested to fill the entire screen just
3887 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003888 if (attrs.type == TYPE_STATUS_BAR_PANEL
3889 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003890 pf.left = df.left = of.left = cf.left = hasNavBar
3891 ? mDockLeft : mUnrestrictedScreenLeft;
3892 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3893 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003894 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08003895 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003896 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003897 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003898 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003899 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04003900 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
3901 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07003902 } else if (attrs.type == TYPE_NAVIGATION_BAR
3903 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003904 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003905 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3906 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3907 pf.right = df.right = of.right = mUnrestrictedScreenLeft
3908 + mUnrestrictedScreenWidth;
3909 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
3910 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003911 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003912 "Laying out navigation bar window: (%d,%d - %d,%d)",
3913 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08003914 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
3915 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07003916 && ((fl & FLAG_FULLSCREEN) != 0)) {
3917 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003918 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3919 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3920 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3921 + mOverscanScreenWidth;
3922 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3923 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08003924 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08003925 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003926 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3927 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3928 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3929 + mOverscanScreenWidth;
3930 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3931 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04003932 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003933 // The wallpaper also has Real Ultimate Power, but we want to tell
3934 // it about the overscan area.
3935 pf.left = df.left = mOverscanScreenLeft;
3936 pf.top = df.top = mOverscanScreenTop;
3937 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3938 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
3939 of.left = cf.left = mUnrestrictedScreenLeft;
3940 of.top = cf.top = mUnrestrictedScreenTop;
3941 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3942 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04003943 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003944 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3945 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3946 // Asking to layout into the overscan region, so give it that pure
3947 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003948 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3949 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3950 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003951 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003952 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003953 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003954 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003955 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07003956 && (attrs.type == TYPE_STATUS_BAR
3957 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07003958 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04003959 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3960 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003961 // Asking for layout as if the nav bar is hidden, lets the
3962 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04003963 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003964 // can be above the nav bar can do this.
3965 // XXX This assumes that an app asking for this will also
3966 // ask for layout in only content. We can't currently figure out
3967 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003968 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
3969 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3970 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
3971 + mUnrestrictedScreenWidth;
3972 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
3973 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003974 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003975 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3976 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3977 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3978 + mRestrictedScreenWidth;
3979 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3980 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003981 }
Craig Mautner69b08182012-09-05 13:07:13 -07003982
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003983 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07003984
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003985 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3986 vf.left = mCurLeft;
3987 vf.top = mCurTop;
3988 vf.right = mCurRight;
3989 vf.bottom = mCurBottom;
3990 } else {
3991 vf.set(cf);
3992 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003993 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07003994 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3995 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003996 // A child window should be placed inside of the same visible
3997 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003998 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003999 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004000 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4001 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004002 // Otherwise, a normal window must be placed inside the content
4003 // of all screen decorations.
Dianne Hackborna239c842011-06-01 12:28:20 -07004004 if (attrs.type == TYPE_STATUS_BAR_PANEL) {
4005 // Status bar panels are the only windows who can go on top of
4006 // the status bar. They are protected by the STATUS_BAR_SERVICE
4007 // permission, so they have the same privileges as the status
4008 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004009 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4010 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4011 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4012 + mRestrictedScreenWidth;
4013 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4014 + mRestrictedScreenHeight;
John Spurlock414c1f02013-12-04 13:47:36 -05004015 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT
4016 || attrs.type == TYPE_VOLUME_OVERLAY) {
4017 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004018 pf.left = df.left = of.left = cf.left = mStableLeft;
4019 pf.top = df.top = of.top = cf.top = mStableTop;
4020 pf.right = df.right = of.right = cf.right = mStableRight;
4021 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004022 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004023 pf.left = mContentLeft;
4024 pf.top = mContentTop;
4025 pf.right = mContentRight;
4026 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004027 if (win.isVoiceInteraction()) {
4028 df.left = of.left = cf.left = mVoiceContentLeft;
4029 df.top = of.top = cf.top = mVoiceContentTop;
4030 df.right = of.right = cf.right = mVoiceContentRight;
4031 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4032 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004033 df.left = of.left = cf.left = mDockLeft;
4034 df.top = of.top = cf.top = mDockTop;
4035 df.right = of.right = cf.right = mDockRight;
4036 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004037 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004038 df.left = of.left = cf.left = mContentLeft;
4039 df.top = of.top = cf.top = mContentTop;
4040 df.right = of.right = cf.right = mContentRight;
4041 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004042 }
4043 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4044 vf.left = mCurLeft;
4045 vf.top = mCurTop;
4046 vf.right = mCurRight;
4047 vf.bottom = mCurBottom;
4048 } else {
4049 vf.set(cf);
4050 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004051 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004052 }
4053 }
Craig Mautner69b08182012-09-05 13:07:13 -07004054
Craig Mautnerb816bed2013-07-23 10:26:17 -07004055 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4056 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004057 df.left = df.top = -10000;
4058 df.right = df.bottom = 10000;
4059 if (attrs.type != TYPE_WALLPAPER) {
4060 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4061 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4062 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004063 }
4064
Craig Mautnereda67292013-04-28 13:50:14 -07004065 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004066 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004067 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004068 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004069 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004070 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004071 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004072 + " dcf=" + dcf.toShortString()
4073 + " sf=" + sf.toShortString());
Craig Mautner69b08182012-09-05 13:07:13 -07004074
Adrian Roosfa104232014-06-20 16:10:14 -07004075 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf);
Craig Mautner69b08182012-09-05 13:07:13 -07004076
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004077 // Dock windows carve out the bottom of the screen, so normal windows
4078 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004079 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4080 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004081 setLastInputMethodWindowLw(null, null);
4082 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004083 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004084 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4085 && !win.getGivenInsetsPendingLw()) {
4086 offsetVoiceInputWindowLw(win);
4087 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004088 }
4089
satok1bc0a492012-04-25 22:47:12 +09004090 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004091 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004092 top += win.getGivenContentInsetsLw().top;
4093 if (mContentBottom > top) {
4094 mContentBottom = top;
4095 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004096 if (mVoiceContentBottom > top) {
4097 mVoiceContentBottom = top;
4098 }
satok1bc0a492012-04-25 22:47:12 +09004099 top = win.getVisibleFrameLw().top;
4100 top += win.getGivenVisibleInsetsLw().top;
4101 if (mCurBottom > top) {
4102 mCurBottom = top;
4103 }
Craig Mautnereda67292013-04-28 13:50:14 -07004104 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004105 + mDockBottom + " mContentBottom="
4106 + mContentBottom + " mCurBottom=" + mCurBottom);
4107 }
4108
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004109 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004110 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004111 top += win.getGivenContentInsetsLw().top;
4112 if (mVoiceContentBottom > top) {
4113 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004114 }
4115 }
4116
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004117 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004118 @Override
4119 public void finishLayoutLw() {
4120 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004121 }
4122
4123 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004124 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004125 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004126 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004127 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004128 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004129 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004130 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004131 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004132 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004133 mForcingShowNavBar = false;
4134 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004135
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004136 mHideLockScreen = false;
4137 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004138 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004139 mShowingLockscreen = false;
4140 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004141 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004142 mKeyguardSecure = isKeyguardSecure();
4143 mKeyguardSecureIncludingHidden = mKeyguardSecure
4144 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004145 }
4146
4147 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004148 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004149 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004150 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4151 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004152 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004153 if (mTopFullscreenOpaqueWindowState == null
4154 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4155 mForcingShowNavBar = true;
4156 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004157 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004158 if (attrs.type == TYPE_STATUS_BAR) {
4159 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4160 mForceStatusBarFromKeyguard = true;
4161 }
4162 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4163 mForceStatusBarTransparent = true;
4164 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004165 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004166
4167 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4168 && attrs.type < FIRST_SYSTEM_WINDOW;
4169 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4170 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4171
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004172 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004173 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004174 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004175 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004176 mForceStatusBarFromKeyguard = true;
4177 } else {
4178 mForceStatusBar = true;
4179 }
4180 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004181 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004182 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004183 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004184 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004185 // If the lockscreen was showing when the dream started then wait
4186 // for the dream to draw before hiding the lockscreen.
4187 if (!mDreamingLockscreen
4188 || (win.isVisibleLw() && win.hasDrawnLw())) {
4189 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004190 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004191 }
4192 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004193
Craig Mautnerab55e522014-03-03 13:26:03 -08004194 if (appWindow) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004195 final IApplicationToken appToken = win.getAppToken();
4196 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004197 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004198 mAppsToBeHidden.remove(appToken);
4199 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004200 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004201 if (dismissKeyguard && !mKeyguardSecure) {
4202 mAppsThatDismissKeyguard.add(appToken);
4203 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004204 mWinShowWhenLocked = win;
4205 mHideLockScreen = true;
4206 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004207 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004208 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004209 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004210 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004211 mAppsToBeHidden.add(appToken);
4212 } else {
4213 mAppsToBeHidden.remove(appToken);
4214 }
4215 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004216 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004217 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004218 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004219 if (attrs.x == 0 && attrs.y == 0
4220 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4221 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4222 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4223 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004224 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4225 mTopFullscreenOpaqueOrDimmingWindowState = win;
4226 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004227 if (!mAppsThatDismissKeyguard.isEmpty() &&
4228 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4229 if (DEBUG_LAYOUT) Slog.v(TAG,
4230 "Setting mDismissKeyguard true by win " + win);
4231 mDismissKeyguard = mWinDismissingKeyguard == win ?
4232 DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
4233 mWinDismissingKeyguard = win;
Jim Millerab954542014-10-10 18:21:49 -07004234 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004235 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4236 if (DEBUG_LAYOUT) Slog.v(TAG,
4237 "Setting mHideLockScreen to true by win " + win);
4238 mHideLockScreen = true;
4239 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004240 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004241 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004242 mAllowLockscreenWhenOn = true;
4243 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004244 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004245
4246 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004247 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4248 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004249 win.hideLw(false);
4250 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004251 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004252 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4253 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4254 // that is being hidden in an animation - keep the
4255 // keyguard hidden until the new window shows up and
4256 // we know whether to show the keyguard or not.
4257 if (win.isAnimatingLw() && appWindow && showWhenLocked) {
4258 mHideLockScreen = true;
4259 mWinShowWhenLocked = win;
4260 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004261 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004262 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4263 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4264 && win.isDimming()) {
4265 mTopFullscreenOpaqueOrDimmingWindowState = win;
4266 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004267 }
4268
4269 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004270 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004271 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004272 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4273 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4274 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004275 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4276 // fullscreen window.
4277 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4278 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4279 mTopFullscreenOpaqueWindowState.hideLw(false);
4280 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4281 }
4282
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004283 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004284 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004285
4286 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4287 ? mTopFullscreenOpaqueWindowState.getAttrs()
4288 : null;
4289
Jeff Brownc8018eb2012-10-29 21:33:27 -07004290 // If we are not currently showing a dream then remember the current
4291 // lockscreen state. We will use this to determine whether the dream
4292 // started while the lockscreen was showing and remember this state
4293 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004294 if (!mShowingDream) {
4295 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004296 if (mDreamingSleepTokenNeeded) {
4297 mDreamingSleepTokenNeeded = false;
4298 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4299 }
4300 } else {
4301 if (!mDreamingSleepTokenNeeded) {
4302 mDreamingSleepTokenNeeded = true;
4303 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4304 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004305 }
4306
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004307 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004308 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004309 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004310 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004311 boolean shouldBeTransparent = mForceStatusBarTransparent
4312 && !mForceStatusBar
4313 && !mForceStatusBarFromKeyguard;
4314 if (!shouldBeTransparent) {
4315 mStatusBarController.setShowTransparent(false /* transparent */);
4316 } else if (!mStatusBar.isVisibleLw()) {
4317 mStatusBarController.setShowTransparent(true /* transparent */);
4318 }
4319 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004320 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004321 if (mStatusBarController.setBarShowingLw(true)) {
4322 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4323 }
Craig Mautner81defc72013-10-29 11:10:42 -07004324 // Maintain fullscreen layout until incoming animation is complete.
4325 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004326 // Transient status bar on the lockscreen is not allowed
4327 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4328 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4329 mLastSystemUiFlags, mLastSystemUiFlags);
4330 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004331 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004332 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004333 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004334 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004335 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004336 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004337 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004338 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004339 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004340 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004341 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004342 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004343 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4344 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004345 if (mStatusBarController.isTransientShowing()) {
4346 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004347 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4348 }
4349 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004350 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004351 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004352 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004353 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004354 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004355 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004356 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004357 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004358 if (mStatusBarController.setBarShowingLw(true)) {
4359 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4360 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004361 }
4362 }
4363 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004364
Craig Mautner81defc72013-10-29 11:10:42 -07004365 if (mTopIsFullscreen != topIsFullscreen) {
4366 if (!topIsFullscreen) {
4367 // Force another layout when status bar becomes fully shown.
4368 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4369 }
4370 mTopIsFullscreen = topIsFullscreen;
4371 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004372
Craig Mautner39834192012-09-02 07:47:24 -07004373 // Hide the key guard if a visible window explicitly specifies that it wants to be
4374 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004375 if (mKeyguardDelegate != null && mStatusBar != null) {
4376 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4377 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004378 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004379 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004380 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004381 changes |= FINISH_LAYOUT_REDO_LAYOUT
4382 | FINISH_LAYOUT_REDO_CONFIG
4383 | FINISH_LAYOUT_REDO_WALLPAPER;
4384 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004385 if (mKeyguardDelegate.isShowing()) {
4386 mHandler.post(new Runnable() {
4387 @Override
4388 public void run() {
4389 mKeyguardDelegate.keyguardDone(false, false);
4390 }
4391 });
4392 }
4393 } else if (mHideLockScreen) {
4394 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004395 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004396 changes |= FINISH_LAYOUT_REDO_LAYOUT
4397 | FINISH_LAYOUT_REDO_CONFIG
4398 | FINISH_LAYOUT_REDO_WALLPAPER;
4399 }
4400 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
4401 // This is the case of keyguard isSecure() and not mHideLockScreen.
4402 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4403 // Only launch the next keyguard unlock window once per window.
4404 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004405 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004406 changes |= FINISH_LAYOUT_REDO_LAYOUT
4407 | FINISH_LAYOUT_REDO_CONFIG
4408 | FINISH_LAYOUT_REDO_WALLPAPER;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004409 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004410 mHandler.post(new Runnable() {
4411 @Override
4412 public void run() {
4413 mKeyguardDelegate.dismiss();
4414 }
4415 });
4416 }
4417 } else {
4418 mWinDismissingKeyguard = null;
4419 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004420 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004421 changes |= FINISH_LAYOUT_REDO_LAYOUT
4422 | FINISH_LAYOUT_REDO_CONFIG
4423 | FINISH_LAYOUT_REDO_WALLPAPER;
4424 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004425 }
4426 }
Joe Onorato664644d2011-01-23 17:53:23 -08004427
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004428 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004429 // If the navigation bar has been hidden or shown, we need to do another
4430 // layout pass to update that window.
4431 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4432 }
Joe Onorato664644d2011-01-23 17:53:23 -08004433
Mike Lockwood28569302010-01-28 11:54:40 -05004434 // update since mAllowLockscreenWhenOn might have changed
4435 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004436 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004437 }
4438
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004439 /**
Jim Millerab954542014-10-10 18:21:49 -07004440 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004441 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004442 * @return Whether the flags have changed and we have to redo the layout.
4443 */
Jim Millerab954542014-10-10 18:21:49 -07004444 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4445 boolean wasOccluded = mKeyguardOccluded;
4446 boolean showing = mKeyguardDelegate.isShowing();
4447 if (wasOccluded && !isOccluded && showing) {
4448 mKeyguardOccluded = false;
4449 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004450 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4451 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4452 return true;
Jim Millerab954542014-10-10 18:21:49 -07004453 } else if (!wasOccluded && isOccluded && showing) {
4454 mKeyguardOccluded = true;
4455 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004456 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4457 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4458 return true;
4459 } else {
4460 return false;
4461 }
4462 }
4463
4464 private boolean isStatusBarKeyguard() {
4465 return mStatusBar != null
4466 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4467 }
4468
Jose Lima9546b202014-07-02 17:21:51 -07004469 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004470 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004471 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004472 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004473 return false;
4474 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004475 return true;
4476 }
4477
Jose Lima9546b202014-07-02 17:21:51 -07004478 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004479 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004480 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004481 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004482 // If the navigation bar has been hidden or shown, we need to do another
4483 // layout pass to update that window.
4484 return FINISH_LAYOUT_REDO_LAYOUT;
4485 }
4486 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004487 }
4488
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004489 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004490 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004491 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4492 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004493 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4494 if (newLidState == mLidState) {
4495 return;
4496 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004497
Jeff Brownc458ce92012-04-30 14:58:40 -07004498 mLidState = newLidState;
4499 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004500 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004501
4502 if (lidOpen) {
Bryce Lee584a4452014-10-21 15:55:55 -07004503 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch);
Jeff Brownc458ce92012-04-30 14:58:40 -07004504 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004505 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004506 }
4507 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004508
Michael Wright3818c922014-09-02 13:59:07 -07004509 @Override
4510 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4511 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4512 if (mCameraLensCoverState == lensCoverState) {
4513 return;
4514 }
4515 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4516 lensCoverState == CAMERA_LENS_UNCOVERED) {
4517 Intent intent;
4518 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4519 mKeyguardDelegate.isShowing();
4520 if (keyguardActive) {
4521 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4522 } else {
4523 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4524 }
Bryce Lee584a4452014-10-21 15:55:55 -07004525 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens);
Bart Sears8b1c27c2015-03-18 23:51:02 +00004526 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004527 }
4528 mCameraLensCoverState = lensCoverState;
4529 }
4530
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004531 void setHdmiPlugged(boolean plugged) {
4532 if (mHdmiPlugged != plugged) {
4533 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004534 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004535 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004536 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004537 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004538 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004539 }
4540 }
4541
Joe Onoratoea495d42011-04-06 11:41:11 -07004542 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004543 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004544 // watch for HDMI plug messages if the hdmi switch exists
4545 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4546 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4547
Joe Onoratoea495d42011-04-06 11:41:11 -07004548 final String filename = "/sys/class/switch/hdmi/state";
4549 FileReader reader = null;
4550 try {
4551 reader = new FileReader(filename);
4552 char[] buf = new char[15];
4553 int n = reader.read(buf);
4554 if (n > 1) {
4555 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4556 }
4557 } catch (IOException ex) {
4558 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4559 } catch (NumberFormatException ex) {
4560 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4561 } finally {
4562 if (reader != null) {
4563 try {
4564 reader.close();
4565 } catch (IOException ex) {
4566 }
Joe Onoratodc100302011-01-11 17:07:41 -08004567 }
4568 }
4569 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004570 // This dance forces the code in setHdmiPlugged to run.
4571 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4572 mHdmiPlugged = !plugged;
4573 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004574 }
4575
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004576 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004577 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004578
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004579 final Runnable mScreenshotTimeout = new Runnable() {
4580 @Override public void run() {
4581 synchronized (mScreenshotLock) {
4582 if (mScreenshotConnection != null) {
4583 mContext.unbindService(mScreenshotConnection);
4584 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004585 }
Winson Chung9112ec32011-06-27 13:15:32 -07004586 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004587 }
4588 };
4589
4590 // Assume this is called from the Handler thread.
4591 private void takeScreenshot() {
4592 synchronized (mScreenshotLock) {
4593 if (mScreenshotConnection != null) {
4594 return;
4595 }
4596 ComponentName cn = new ComponentName("com.android.systemui",
4597 "com.android.systemui.screenshot.TakeScreenshotService");
4598 Intent intent = new Intent();
4599 intent.setComponent(cn);
4600 ServiceConnection conn = new ServiceConnection() {
4601 @Override
4602 public void onServiceConnected(ComponentName name, IBinder service) {
4603 synchronized (mScreenshotLock) {
4604 if (mScreenshotConnection != this) {
4605 return;
4606 }
4607 Messenger messenger = new Messenger(service);
4608 Message msg = Message.obtain(null, 1);
4609 final ServiceConnection myConn = this;
4610 Handler h = new Handler(mHandler.getLooper()) {
4611 @Override
4612 public void handleMessage(Message msg) {
4613 synchronized (mScreenshotLock) {
4614 if (mScreenshotConnection == myConn) {
4615 mContext.unbindService(mScreenshotConnection);
4616 mScreenshotConnection = null;
4617 mHandler.removeCallbacks(mScreenshotTimeout);
4618 }
4619 }
4620 }
4621 };
4622 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004623 msg.arg1 = msg.arg2 = 0;
4624 if (mStatusBar != null && mStatusBar.isVisibleLw())
4625 msg.arg1 = 1;
4626 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4627 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004628 try {
4629 messenger.send(msg);
4630 } catch (RemoteException e) {
4631 }
4632 }
4633 }
4634 @Override
4635 public void onServiceDisconnected(ComponentName name) {}
4636 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004637 if (mContext.bindServiceAsUser(
4638 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004639 mScreenshotConnection = conn;
4640 mHandler.postDelayed(mScreenshotTimeout, 10000);
4641 }
4642 }
Winson Chung9112ec32011-06-27 13:15:32 -07004643 }
4644
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004645 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004646 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004647 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004648 if (!mSystemBooted) {
4649 // If we have not yet booted, don't let key events do anything.
4650 return 0;
4651 }
4652
Jeff Brown037c33e2014-04-09 00:31:55 -07004653 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004654 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4655 final boolean canceled = event.isCanceled();
4656 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004657
Jeff Brown3122e442010-10-11 23:32:49 -07004658 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004659
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004660 // If screen is off then we treat the case where the keyguard is open but hidden
4661 // the same as if it were open and in front.
4662 // This will prevent any keys other than the power button from waking the screen
4663 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004664 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004665 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004666 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004667 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004668
Jeff Brown40013652012-05-16 21:22:36 -07004669 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004670 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004671 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004672 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004673 }
4674
Jeff Brown037c33e2014-04-09 00:31:55 -07004675 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004676 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004677 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4678 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004679 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004680 // When the device is interactive or the key is injected pass the
4681 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004682 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004683 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004684 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4685 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4686 // to the application but preserve its wake key status to make sure we still move
4687 // from dozing to fully interactive if we would normally go from off to fully
4688 // interactive.
4689 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004690 } else {
4691 // When the screen is off and the key is not injected, determine whether
4692 // to wake the device but don't pass the key to the application.
4693 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004694 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4695 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004696 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004697 }
4698
Justin Kohd378ad72013-04-01 12:18:26 -07004699 // If the key would be handled globally, just return the result, don't worry about special
4700 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004701 if (isValidGlobalKey(keyCode)
4702 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004703 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004704 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Michael Wright85b1af62014-06-04 14:51:58 -07004705 }
Justin Kohd378ad72013-04-01 12:18:26 -07004706 return result;
4707 }
4708
Jeff Brownbae8e772014-06-12 19:59:45 -07004709 boolean useHapticFeedback = down
4710 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4711 && event.getRepeatCount() == 0;
4712
Jeff Brown4d396052010-10-29 21:50:21 -07004713 // Handle special keys.
4714 switch (keyCode) {
4715 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004716 case KeyEvent.KEYCODE_VOLUME_UP:
4717 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004718 if (mUseTvRouting) {
4719 // On TVs volume keys never go to the foreground app
4720 result &= ~ACTION_PASS_TO_USER;
4721 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004722 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4723 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004724 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004725 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004726 mScreenshotChordVolumeDownKeyTriggered = true;
4727 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4728 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004729 cancelPendingPowerKeyAction();
4730 interceptScreenshotChord();
4731 }
4732 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004733 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004734 cancelPendingScreenshotChordAction();
4735 }
4736 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4737 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004738 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004739 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004740 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004741 cancelPendingPowerKeyAction();
4742 cancelPendingScreenshotChordAction();
4743 }
4744 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004745 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004746 cancelPendingScreenshotChordAction();
4747 }
4748 }
Jeff Brown4d396052010-10-29 21:50:21 -07004749 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004750 TelecomManager telecomManager = getTelecommService();
4751 if (telecomManager != null) {
4752 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004753 // If an incoming call is ringing, either VOLUME key means
4754 // "silence ringer". We handle these keys here, rather than
4755 // in the InCallScreen, to make sure we'll respond to them
4756 // even if the InCallScreen hasn't come to the foreground yet.
4757 // Look for the DOWN event here, to agree with the "fallback"
4758 // behavior in the InCallScreen.
4759 Log.i(TAG, "interceptKeyBeforeQueueing:"
4760 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004761
Santos Cordon6848f722014-05-21 15:22:12 -07004762 // Silence the ringer. (It's safe to call this
4763 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004764 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004765
Santos Cordon6848f722014-05-21 15:22:12 -07004766 // And *don't* pass this key thru to the current activity
4767 // (which is probably the InCallScreen.)
4768 result &= ~ACTION_PASS_TO_USER;
4769 break;
4770 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004771 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004772 && (result & ACTION_PASS_TO_USER) == 0) {
4773 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004774 // the application, just pass it to the session service.
4775
4776 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004777 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07004778 break;
Jeff Brown4d396052010-10-29 21:50:21 -07004779 }
4780 }
4781
RoboErik430fc482014-06-12 15:49:20 -07004782 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08004783 if (mUseTvRouting) {
4784 dispatchDirectAudioEvent(event);
4785 } else {
4786 // If we aren't passing to the user and no one else
4787 // handled it send it to the session manager to
4788 // figure out.
4789 MediaSessionLegacyHelper.getHelper(mContext)
4790 .sendVolumeKeyEvent(event, true);
4791 }
Jeff Brown4d396052010-10-29 21:50:21 -07004792 break;
4793 }
4794 }
4795 break;
4796 }
4797
4798 case KeyEvent.KEYCODE_ENDCALL: {
4799 result &= ~ACTION_PASS_TO_USER;
4800 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004801 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07004802 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004803 if (telecomManager != null) {
4804 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07004805 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004806 if (interactive && !hungUp) {
4807 mEndCallKeyHandled = false;
4808 mHandler.postDelayed(mEndCallLongPress,
4809 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
4810 } else {
4811 mEndCallKeyHandled = true;
4812 }
Jeff Brown4d396052010-10-29 21:50:21 -07004813 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004814 if (!mEndCallKeyHandled) {
4815 mHandler.removeCallbacks(mEndCallLongPress);
4816 if (!canceled) {
4817 if ((mEndcallBehavior
4818 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
4819 if (goHome()) {
4820 break;
4821 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07004822 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004823 if ((mEndcallBehavior
4824 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
4825 mPowerManager.goToSleep(event.getEventTime(),
4826 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
4827 isWakeKey = false;
4828 }
Jeff Brown4d396052010-10-29 21:50:21 -07004829 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004830 }
Jeff Brown4d396052010-10-29 21:50:21 -07004831 }
4832 break;
4833 }
4834
4835 case KeyEvent.KEYCODE_POWER: {
4836 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07004837 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07004838 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004839 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004840 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004841 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07004842 }
4843 break;
4844 }
4845
Jeff Brown6212a492014-03-07 13:58:47 -08004846 case KeyEvent.KEYCODE_SLEEP: {
4847 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00004848 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07004849 if (!mPowerManager.isInteractive()) {
4850 useHapticFeedback = false; // suppress feedback if already non-interactive
4851 }
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00004852 sleepPress(event);
Jeff Brown6212a492014-03-07 13:58:47 -08004853 break;
4854 }
4855
4856 case KeyEvent.KEYCODE_WAKEUP: {
4857 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004858 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08004859 break;
4860 }
4861
Jeff Brown4d396052010-10-29 21:50:21 -07004862 case KeyEvent.KEYCODE_MEDIA_PLAY:
4863 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4864 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07004865 case KeyEvent.KEYCODE_HEADSETHOOK:
4866 case KeyEvent.KEYCODE_MUTE:
4867 case KeyEvent.KEYCODE_MEDIA_STOP:
4868 case KeyEvent.KEYCODE_MEDIA_NEXT:
4869 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4870 case KeyEvent.KEYCODE_MEDIA_REWIND:
4871 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004872 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
4873 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07004874 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
4875 // If the global session is active pass all media keys to it
4876 // instead of the active window.
4877 result &= ~ACTION_PASS_TO_USER;
4878 }
Jeff Brown4d396052010-10-29 21:50:21 -07004879 if ((result & ACTION_PASS_TO_USER) == 0) {
4880 // Only do this if we would otherwise not pass it to the user. In that
4881 // case, the PhoneWindow class will do the same thing, except it will
4882 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07004883 // Note that we need to make a copy of the key event here because the
4884 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07004885 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07004886 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
4887 new KeyEvent(event));
4888 msg.setAsynchronous(true);
4889 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07004890 }
4891 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004892 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004893
Jeff Brown4d396052010-10-29 21:50:21 -07004894 case KeyEvent.KEYCODE_CALL: {
4895 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004896 TelecomManager telecomManager = getTelecommService();
4897 if (telecomManager != null) {
4898 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004899 Log.i(TAG, "interceptKeyBeforeQueueing:"
4900 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004901 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004902
Santos Cordon6848f722014-05-21 15:22:12 -07004903 // And *don't* pass this key thru to the current activity
4904 // (which is presumably the InCallScreen.)
4905 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004906 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004907 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004908 }
Jeff Brown4d396052010-10-29 21:50:21 -07004909 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004910 }
Michael Wright869a67c2014-08-26 19:33:06 -07004911 case KeyEvent.KEYCODE_VOICE_ASSIST: {
4912 // Only do this if we would otherwise not pass it to the user. In that case,
4913 // interceptKeyBeforeDispatching would apply a similar but different policy in
4914 // order to invoke voice assist actions. Note that we need to make a copy of the
4915 // key event here because the original key event will be recycled when we return.
4916 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
4917 mBroadcastWakeLock.acquire();
4918 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
4919 keyguardActive ? 1 : 0, 0);
4920 msg.setAsynchronous(true);
4921 msg.sendToTarget();
4922 }
4923 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004924 }
Jeff Brown26875502014-01-30 21:47:47 -08004925
Jeff Brownbae8e772014-06-12 19:59:45 -07004926 if (useHapticFeedback) {
4927 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
4928 }
4929
Jeff Brown26875502014-01-30 21:47:47 -08004930 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004931 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Jeff Brown26875502014-01-30 21:47:47 -08004932 }
Bryce Lee584a4452014-10-21 15:55:55 -07004933
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004934 return result;
4935 }
4936
Jeff Brown1c2e4942012-11-06 16:32:01 -08004937 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07004938 * Returns true if the key can have global actions attached to it.
4939 * We reserve all power management keys for the system since they require
4940 * very careful handling.
4941 */
4942 private static boolean isValidGlobalKey(int keyCode) {
4943 switch (keyCode) {
4944 case KeyEvent.KEYCODE_POWER:
4945 case KeyEvent.KEYCODE_WAKEUP:
4946 case KeyEvent.KEYCODE_SLEEP:
4947 return false;
4948 default:
4949 return true;
4950 }
4951 }
4952
4953 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08004954 * When the screen is off we ignore some keys that might otherwise typically
4955 * be considered wake keys. We filter them out here.
4956 *
4957 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
4958 * is always considered a wake key.
4959 */
4960 private boolean isWakeKeyWhenScreenOff(int keyCode) {
4961 switch (keyCode) {
4962 // ignore volume keys unless docked
4963 case KeyEvent.KEYCODE_VOLUME_UP:
4964 case KeyEvent.KEYCODE_VOLUME_DOWN:
4965 case KeyEvent.KEYCODE_VOLUME_MUTE:
4966 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
4967
4968 // ignore media and camera keys
4969 case KeyEvent.KEYCODE_MUTE:
4970 case KeyEvent.KEYCODE_HEADSETHOOK:
4971 case KeyEvent.KEYCODE_MEDIA_PLAY:
4972 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4973 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
4974 case KeyEvent.KEYCODE_MEDIA_STOP:
4975 case KeyEvent.KEYCODE_MEDIA_NEXT:
4976 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4977 case KeyEvent.KEYCODE_MEDIA_REWIND:
4978 case KeyEvent.KEYCODE_MEDIA_RECORD:
4979 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004980 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08004981 case KeyEvent.KEYCODE_CAMERA:
4982 return false;
4983 }
4984 return true;
4985 }
4986
4987
Jeff Brown56194eb2011-03-02 19:23:13 -08004988 /** {@inheritDoc} */
4989 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07004990 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
4991 if ((policyFlags & FLAG_WAKE) != 0) {
Bryce Lee5c138322014-11-03 08:26:09 -08004992 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion)) {
4993 return 0;
4994 }
Michael Wright70af00a2014-09-03 19:30:20 -07004995 }
Bryce Lee5c138322014-11-03 08:26:09 -08004996
Michael Wright70af00a2014-09-03 19:30:20 -07004997 if (shouldDispatchInputWhenNonInteractive()) {
4998 return ACTION_PASS_TO_USER;
4999 }
Bryce Lee5c138322014-11-03 08:26:09 -08005000
Bryce Lee812d7022014-11-10 13:33:28 -08005001 // If we have not passed the action up and we are in theater mode without dreaming,
5002 // there will be no dream to intercept the touch and wake into ambient. The device should
5003 // wake up in this case.
5004 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
5005 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming);
5006 }
5007
Jeff Brown037c33e2014-04-09 00:31:55 -07005008 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005009 }
5010
Michael Wright70af00a2014-09-03 19:30:20 -07005011 private boolean shouldDispatchInputWhenNonInteractive() {
Bryce Lee5c138322014-11-03 08:26:09 -08005012 // Send events to keyguard while the screen is on.
Jim Millerab954542014-10-10 18:21:49 -07005013 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
5014 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08005015 return true;
5016 }
5017
5018 // Send events to a dozing dream even if the screen is off since the dream
5019 // is in control of the state of the screen.
5020 IDreamManager dreamManager = getDreamManager();
5021
5022 try {
5023 if (dreamManager != null && dreamManager.isDreaming()) {
5024 return true;
5025 }
5026 } catch (RemoteException e) {
5027 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5028 }
5029
5030 // Otherwise, consume events since the user can't see what is being
5031 // interacted with.
5032 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005033 }
5034
RoboErik001c59c2015-01-26 15:53:51 -08005035 private void dispatchDirectAudioEvent(KeyEvent event) {
5036 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5037 return;
5038 }
5039 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005040 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5041 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005042 String pkgName = mContext.getOpPackageName();
5043 switch (keyCode) {
5044 case KeyEvent.KEYCODE_VOLUME_UP:
5045 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005046 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005047 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005048 } catch (RemoteException e) {
5049 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5050 }
5051 break;
5052 case KeyEvent.KEYCODE_VOLUME_DOWN:
5053 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005054 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005055 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005056 } catch (RemoteException e) {
5057 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5058 }
5059 break;
5060 case KeyEvent.KEYCODE_VOLUME_MUTE:
5061 try {
5062 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005063 getAudioService().adjustSuggestedStreamVolume(
5064 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005065 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005066 }
5067 } catch (RemoteException e) {
5068 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5069 }
5070 break;
5071 }
5072 }
5073
Jeff Brown40013652012-05-16 21:22:36 -07005074 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5075 if (DEBUG_INPUT) {
5076 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005077 }
5078
Jeff Brown40013652012-05-16 21:22:36 -07005079 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5080 if (DEBUG_INPUT) {
5081 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5082 }
5083
5084 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5085 mHavePendingMediaKeyRepeatWithWakeLock = false;
5086 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5087 }
5088
5089 dispatchMediaKeyWithWakeLockToAudioService(event);
5090
5091 if (event.getAction() == KeyEvent.ACTION_DOWN
5092 && event.getRepeatCount() == 0) {
5093 mHavePendingMediaKeyRepeatWithWakeLock = true;
5094
5095 Message msg = mHandler.obtainMessage(
5096 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5097 msg.setAsynchronous(true);
5098 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5099 } else {
5100 mBroadcastWakeLock.release();
5101 }
5102 }
5103
5104 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5105 mHavePendingMediaKeyRepeatWithWakeLock = false;
5106
5107 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5108 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5109 if (DEBUG_INPUT) {
5110 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5111 }
5112
5113 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5114 mBroadcastWakeLock.release();
5115 }
5116
5117 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5118 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005119 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005120 }
5121 }
5122
Michael Wright869a67c2014-08-26 19:33:06 -07005123 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
5124 Intent voiceIntent =
5125 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5126 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005127 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005128 mBroadcastWakeLock.release();
5129 }
5130
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005131 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005132 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005133 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005134 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5135 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5136 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005137 } else {
5138 try {
5139 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5140 ServiceManager.getService(Context.UI_MODE_SERVICE));
5141 mUiMode = uiModeService.getCurrentModeType();
5142 } catch (RemoteException e) {
5143 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005144 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005145 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005146 synchronized (mLock) {
5147 updateOrientationListenerLp();
5148 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005149 }
5150 };
5151
Jeff Brown6aaf2952012-10-05 16:01:08 -07005152 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5153 @Override
5154 public void onReceive(Context context, Intent intent) {
5155 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005156 if (mKeyguardDelegate != null) {
5157 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005158 }
5159 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005160 if (mKeyguardDelegate != null) {
5161 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005162 }
5163 }
5164 }
5165 };
5166
Christopher Tate5e08af02012-09-21 17:17:22 -07005167 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5168 @Override
5169 public void onReceive(Context context, Intent intent) {
5170 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5171 // tickle the settings observer: this first ensures that we're
5172 // observing the relevant settings for the newly-active user,
5173 // and then updates our own bookkeeping based on the now-
5174 // current user.
5175 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005176
5177 // force a re-application of focused window sysui visibility.
5178 // the window may never have been shown for this user
5179 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005180 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005181 mLastSystemUiFlags = 0;
5182 updateSystemUiVisibilityLw();
5183 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005184 }
5185 }
5186 };
5187
John Spurlockd9b70bd2014-02-06 17:02:44 -05005188 private final Runnable mRequestTransientNav = new Runnable() {
5189 @Override
5190 public void run() {
5191 requestTransientBars(mNavigationBar);
5192 }
5193 };
5194
John Spurlocke1f366f2013-08-05 12:22:40 -04005195 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005196 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005197 if (!isUserSetupComplete()) {
5198 // Swipe-up for navigation bar is disabled during setup
5199 return;
5200 }
John Spurlock27735a42013-08-14 17:57:38 -04005201 boolean sb = mStatusBarController.checkShowTransientBarLw();
5202 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005203 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005204 // Don't show status bar when swiping on already visible navigation bar
5205 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005206 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005207 return;
5208 }
John Spurlock27735a42013-08-14 17:57:38 -04005209 if (sb) mStatusBarController.showTransient();
5210 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005211 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005212 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005213 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005214 }
5215 }
5216
Jeff Brown3ee549c2014-09-22 20:14:39 -07005217 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005218 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005219 public void startedGoingToSleep(int why) {
5220 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
5221 }
5222
5223 // Called on the PowerManager's Notifier thread.
5224 @Override
5225 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005226 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005227 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Jeff Brown3ee549c2014-09-22 20:14:39 -07005228
5229 // We must get this work done here because the power manager will drop
5230 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005231 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005232 mAwake = false;
5233 mKeyguardDrawComplete = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005234 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005235 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005236 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005237 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005238
5239 if (mKeyguardDelegate != null) {
5240 mKeyguardDelegate.onScreenTurnedOff(why);
5241 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005242 }
5243
Jeff Brown3ee549c2014-09-22 20:14:39 -07005244 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005245 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005246 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005247 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005248 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005249
Jeff Brown3ee549c2014-09-22 20:14:39 -07005250 // Since goToSleep performs these functions synchronously, we must
5251 // do the same here. We cannot post this work to a handler because
5252 // that might cause it to become reordered with respect to what
5253 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005254 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005255 mAwake = true;
5256 mKeyguardDrawComplete = false;
5257 if (mKeyguardDelegate != null) {
5258 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5259 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
5260 }
5261
Jeff Browna20dda42014-05-27 20:57:24 -07005262 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005263 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005264 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005265 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005266
Jim Miller5ecd8112013-01-09 18:50:26 -08005267 if (mKeyguardDelegate != null) {
Craig Mautner8a0da012014-05-31 15:13:37 -07005268 mKeyguardDelegate.onScreenTurnedOn(mKeyguardDelegateCallback);
Jeff Brown36c4db82014-09-19 12:05:31 -07005269 // ... eventually calls finishKeyguardDrawn
Jeff Brownc38c9be2012-10-04 13:16:19 -07005270 } else {
Craig Mautner8a0da012014-05-31 15:13:37 -07005271 if (DEBUG_WAKEUP) Slog.d(TAG, "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
Jeff Brown36c4db82014-09-19 12:05:31 -07005272 finishKeyguardDrawn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005273 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005274 }
5275
Jeff Brown416c49c2015-05-26 19:50:18 -07005276 // Called on the PowerManager's Notifier thread.
5277 @Override
5278 public void finishedWakingUp() {
5279 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5280 }
5281
5282 private void wakeUpFromPowerKey(long eventTime) {
5283 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey);
5284 }
5285
5286 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode) {
5287 if (!wakeInTheaterMode && isTheaterModeEnabled()) {
5288 return false;
5289 }
5290
5291 mPowerManager.wakeUp(wakeTime);
5292 return true;
5293 }
5294
Jeff Brown36c4db82014-09-19 12:05:31 -07005295 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005296 synchronized (mLock) {
5297 if (!mAwake || mKeyguardDrawComplete) {
5298 return; // spurious
5299 }
5300
Jeff Brown36c4db82014-09-19 12:05:31 -07005301 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005302 if (mKeyguardDelegate != null) {
5303 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5304 }
5305 }
5306
5307 finishScreenTurningOn();
5308 }
5309
5310 // Called on the DisplayManager's DisplayPowerController thread.
5311 @Override
5312 public void screenTurnedOff() {
5313 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5314
5315 synchronized (mLock) {
5316 mScreenOnEarly = false;
5317 mScreenOnFully = false;
5318 mWindowManagerDrawComplete = false;
5319 mScreenOnListener = null;
5320 updateOrientationListenerLp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005321 }
5322 }
5323
Jeff Brown3ee549c2014-09-22 20:14:39 -07005324 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005325 @Override
5326 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005327 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005328
Jeff Brown3ee549c2014-09-22 20:14:39 -07005329 synchronized (mLock) {
5330 mScreenOnEarly = true;
5331 mScreenOnFully = false;
5332 mWindowManagerDrawComplete = false;
5333 mScreenOnListener = screenOnListener;
5334 updateOrientationListenerLp();
5335 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005336
Craig Mautnerc3daedd2014-09-13 11:17:23 -07005337 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5338 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown36c4db82014-09-19 12:05:31 -07005339 // ... eventually calls finishWindowsDrawn
5340 }
5341
Jeff Brown36c4db82014-09-19 12:05:31 -07005342 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005343 synchronized (mLock) {
5344 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
5345 return; // spurious
5346 }
5347
Jeff Brown36c4db82014-09-19 12:05:31 -07005348 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005349 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005350
5351 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005352 }
5353
Craig Mautner8a0da012014-05-31 15:13:37 -07005354 private void finishScreenTurningOn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005355 final ScreenOnListener listener;
5356 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005357 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005358 if (DEBUG_WAKEUP) Slog.d(TAG,
5359 "finishScreenTurningOn: mAwake=" + mAwake
5360 + ", mScreenOnEarly=" + mScreenOnEarly
5361 + ", mScreenOnFully=" + mScreenOnFully
5362 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5363 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5364
5365 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5366 || (mAwake && !mKeyguardDrawComplete)) {
5367 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005368 }
5369
Jeff Brown3ee549c2014-09-22 20:14:39 -07005370 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5371 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005372 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005373 mScreenOnFully = true;
5374
5375 // Remember the first time we draw the keyguard so we know when we're done with
5376 // the main part of booting and can enable the screen and hide boot messages.
5377 if (!mKeyguardDrawnOnce && mAwake) {
5378 mKeyguardDrawnOnce = true;
5379 enableScreen = true;
5380 if (mBootMessageNeedsHiding) {
5381 mBootMessageNeedsHiding = false;
5382 hideBootMessages();
5383 }
5384 } else {
5385 enableScreen = false;
5386 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005387 }
5388
Jeff Brown3ee549c2014-09-22 20:14:39 -07005389 if (listener != null) {
5390 listener.onScreenOn();
5391 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005392
Jeff Brown3ee549c2014-09-22 20:14:39 -07005393 if (enableScreen) {
5394 try {
5395 mWindowManager.enableScreenIfNeeded();
5396 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005397 }
Craig Mautnera631d492014-08-05 15:16:01 -07005398 }
5399 }
5400
5401 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005402 synchronized (mLock) {
5403 if (!mKeyguardDrawnOnce) {
5404 mBootMessageNeedsHiding = true;
5405 return; // keyguard hasn't drawn the first time yet, not done booting
5406 }
Craig Mautnera631d492014-08-05 15:16:01 -07005407 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005408
5409 if (mBootMsgDialog != null) {
5410 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5411 mBootMsgDialog.dismiss();
5412 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005413 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005414 }
5415
5416 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005417 public boolean isScreenOn() {
5418 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005419 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005420
Dianne Hackborn08743722009-12-21 12:16:51 -08005421 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005422 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005423 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005424 if (mKeyguardDelegate != null) {
5425 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005426 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005427 }
5428
5429 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005430 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005431 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005432 if (mKeyguardDelegate != null) {
5433 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005434 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005435 }
5436
Jim Millerab954542014-10-10 18:21:49 -07005437 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005438 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005439 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005440 }
5441
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005442 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005443 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005444 public boolean isKeyguardLocked() {
5445 return keyguardOn();
5446 }
5447
5448 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005449 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005450 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005451 if (mKeyguardDelegate == null) return false;
5452 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005453 }
5454
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005455 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005456 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005457 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005458 if (mKeyguardDelegate == null) return false;
5459 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005460 }
5461
Jose Lima9546b202014-07-02 17:21:51 -07005462 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005463 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005464 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005465 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005466 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005467 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005468 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005469 // ask the keyguard to prompt the user to authenticate if necessary
5470 mKeyguardDelegate.dismiss();
5471 }
5472 });
5473 }
5474 }
5475
5476 public void notifyActivityDrawnForKeyguardLw() {
5477 if (mKeyguardDelegate != null) {
5478 mHandler.post(new Runnable() {
5479 @Override
5480 public void run() {
5481 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005482 }
5483 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005484 }
5485 }
5486
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005487 @Override
5488 public boolean isKeyguardDrawnLw() {
5489 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005490 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005491 }
5492 }
5493
Jorim Jaggi0d674622014-05-21 01:34:15 +02005494 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005495 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005496 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005497 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005498 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005499 }
5500 }
5501
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005502 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005503 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005504 }
5505
5506 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005507 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005508 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005509
Jeff Brown01a98dd2011-09-20 15:08:29 -07005510 @Override
5511 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005512 if (false) {
5513 Slog.v(TAG, "rotationForOrientationLw(orient="
5514 + orientation + ", last=" + lastRotation
5515 + "); user=" + mUserRotation + " "
5516 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5517 ? "USER_ROTATION_LOCKED" : "")
5518 );
5519 }
5520
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005521 if (mForceDefaultOrientation) {
5522 return Surface.ROTATION_0;
5523 }
5524
The Android Open Source Project0727d222009-03-11 12:11:58 -07005525 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005526 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5527 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005528 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005529 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005530
Jeff Browndec6cf42011-11-15 14:08:20 -08005531 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005532 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005533 // Ignore sensor when lid switch is open and rotation is forced.
5534 preferredRotation = mLidOpenRotation;
5535 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005536 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005537 // Ignore sensor when in car dock unless explicitly enabled.
5538 // This case can override the behavior of NOSENSOR, and can also
5539 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005540 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005541 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005542 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5543 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5544 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005545 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005546 // Ignore sensor when in desk dock unless explicitly enabled.
5547 // This case can override the behavior of NOSENSOR, and can also
5548 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005549 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005550 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005551 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5552 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005553 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005554 preferredRotation = mDemoHdmiRotation;
5555 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5556 && mUndockedHdmiRotation >= 0) {
5557 // Ignore sensor when plugged into HDMI and an undocked orientation has
5558 // been specified in the configuration (only for legacy devices without
5559 // full multi-display support).
5560 // Note that the dock orientation overrides the HDMI orientation.
5561 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005562 } else if (mDemoRotationLock) {
5563 // Ignore sensor when demo rotation lock is enabled.
5564 // Note that the dock orientation and HDMI rotation lock override this.
5565 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005566 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5567 // Application just wants to remain locked in the last rotation.
5568 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005569 } else if (!mSupportAutoRotation) {
5570 // If we don't support auto-rotation then bail out here and ignore
5571 // the sensor and any rotation lock settings.
5572 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005573 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005574 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005575 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5576 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5577 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5578 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005579 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5580 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5581 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5582 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5583 // Otherwise, use sensor only if requested by the application or enabled
5584 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005585 if (mAllowAllRotations < 0) {
5586 // Can't read this during init() because the context doesn't
5587 // have display metrics at that time so we cannot determine
5588 // tablet vs. phone then.
5589 mAllowAllRotations = mContext.getResources().getBoolean(
5590 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5591 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005592 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005593 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005594 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5595 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005596 preferredRotation = sensorRotation;
5597 } else {
5598 preferredRotation = lastRotation;
5599 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005600 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5601 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5602 // Apply rotation lock. Does not apply to NOSENSOR.
5603 // The idea is that the user rotation expresses a weak preference for the direction
5604 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5605 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005606 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005607 } else {
5608 // No overriding preference.
5609 // We will do exactly what the application asked us to do.
5610 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005611 }
5612
Dianne Hackborne5439f22010-10-02 16:53:50 -07005613 switch (orientation) {
5614 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005615 // Return portrait unless overridden.
5616 if (isAnyPortrait(preferredRotation)) {
5617 return preferredRotation;
5618 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005619 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005620
Jeff Brown01a98dd2011-09-20 15:08:29 -07005621 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005622 // Return landscape unless overridden.
5623 if (isLandscapeOrSeascape(preferredRotation)) {
5624 return preferredRotation;
5625 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005626 return mLandscapeRotation;
5627
5628 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005629 // Return reverse portrait unless overridden.
5630 if (isAnyPortrait(preferredRotation)) {
5631 return preferredRotation;
5632 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005633 return mUpsideDownRotation;
5634
5635 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005636 // Return seascape unless overridden.
5637 if (isLandscapeOrSeascape(preferredRotation)) {
5638 return preferredRotation;
5639 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005640 return mSeascapeRotation;
5641
5642 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005643 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005644 // Return either landscape rotation.
5645 if (isLandscapeOrSeascape(preferredRotation)) {
5646 return preferredRotation;
5647 }
5648 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005649 return lastRotation;
5650 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005651 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005652
Jeff Brown01a98dd2011-09-20 15:08:29 -07005653 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005654 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005655 // Return either portrait rotation.
5656 if (isAnyPortrait(preferredRotation)) {
5657 return preferredRotation;
5658 }
5659 if (isAnyPortrait(lastRotation)) {
5660 return lastRotation;
5661 }
5662 return mPortraitRotation;
5663
5664 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005665 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5666 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005667 if (preferredRotation >= 0) {
5668 return preferredRotation;
5669 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005670 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005671 }
5672 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005673 }
5674
Jeff Brown01a98dd2011-09-20 15:08:29 -07005675 @Override
5676 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5677 switch (orientation) {
5678 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5679 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5680 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5681 return isAnyPortrait(rotation);
5682
5683 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5684 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5685 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5686 return isLandscapeOrSeascape(rotation);
5687
5688 default:
5689 return true;
5690 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005691 }
5692
Jeff Brownc0347aa2011-09-23 17:26:09 -07005693 @Override
5694 public void setRotationLw(int rotation) {
5695 mOrientationListener.setCurrentRotation(rotation);
5696 }
5697
Jeff Brown01a98dd2011-09-20 15:08:29 -07005698 private boolean isLandscapeOrSeascape(int rotation) {
5699 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005700 }
5701
Jeff Brown01a98dd2011-09-20 15:08:29 -07005702 private boolean isAnyPortrait(int rotation) {
5703 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005704 }
5705
Jose Lima9546b202014-07-02 17:21:51 -07005706 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005707 public int getUserRotationMode() {
5708 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005709 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5710 WindowManagerPolicy.USER_ROTATION_FREE :
5711 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005712 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005713
5714 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005715 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005716 public void setUserRotationMode(int mode, int rot) {
5717 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005718
5719 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005720 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07005721 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005722 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005723 rot,
5724 UserHandle.USER_CURRENT);
5725 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005726 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005727 0,
5728 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005729 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07005730 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005731 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005732 1,
5733 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005734 }
5735 }
5736
Jose Lima9546b202014-07-02 17:21:51 -07005737 @Override
Jeff Brownac143512012-04-05 18:57:33 -07005738 public void setSafeMode(boolean safeMode) {
5739 mSafeMode = safeMode;
5740 performHapticFeedbackLw(null, safeMode
5741 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
5742 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005743 }
Craig Mautnereda67292013-04-28 13:50:14 -07005744
Dianne Hackborn181ceb52009-08-27 22:16:40 -07005745 static long[] getLongIntArray(Resources r, int resid) {
5746 int[] ar = r.getIntArray(resid);
5747 if (ar == null) {
5748 return null;
5749 }
5750 long[] out = new long[ar.length];
5751 for (int i=0; i<ar.length; i++) {
5752 out[i] = ar[i];
5753 }
5754 return out;
5755 }
Craig Mautnereda67292013-04-28 13:50:14 -07005756
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005757 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005758 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005759 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07005760 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08005761 mKeyguardDelegate.onSystemReady();
5762
Michael Wright3818c922014-09-02 13:59:07 -07005763 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07005764 updateUiMode();
Dianne Hackbornb1a79802009-09-29 15:18:31 -07005765 synchronized (mLock) {
5766 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08005767 mSystemReady = true;
5768 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07005769 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08005770 public void run() {
5771 updateSettings();
5772 }
5773 });
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005774 }
5775 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005776
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005777 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005778 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005779 public void systemBooted() {
Jim Millere5f910a2013-10-16 18:15:46 -07005780 if (mKeyguardDelegate != null) {
Jason Monk5eeebf52014-09-26 12:36:51 -04005781 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07005782 mKeyguardDelegate.onBootCompleted();
5783 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005784 synchronized (mLock) {
5785 mSystemBooted = true;
5786 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005787 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005788 screenTurningOn(null);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005789 }
5790
Dianne Hackborn661cd522011-08-22 00:26:20 -07005791 ProgressDialog mBootMsgDialog = null;
5792
5793 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005794 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005795 public void showBootMessage(final CharSequence msg, final boolean always) {
5796 mHandler.post(new Runnable() {
5797 @Override public void run() {
5798 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07005799 int theme;
5800 if (mContext.getPackageManager().hasSystemFeature(
5801 PackageManager.FEATURE_WATCH)) {
5802 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
5803 } else if (mContext.getPackageManager().hasSystemFeature(
5804 PackageManager.FEATURE_TELEVISION)) {
5805 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
5806 } else {
5807 theme = 0;
5808 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07005809
5810 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07005811 // This dialog will consume all events coming in to
5812 // it, to avoid it trying to do things too early in boot.
5813 @Override public boolean dispatchKeyEvent(KeyEvent event) {
5814 return true;
5815 }
5816 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
5817 return true;
5818 }
5819 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
5820 return true;
5821 }
5822 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
5823 return true;
5824 }
5825 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
5826 return true;
5827 }
5828 @Override public boolean dispatchPopulateAccessibilityEvent(
5829 AccessibilityEvent event) {
5830 return true;
5831 }
5832 };
Jeff Hao9f60c082014-10-28 18:51:07 -07005833 if (mContext.getPackageManager().isUpgrade()) {
5834 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
5835 } else {
5836 mBootMsgDialog.setTitle(R.string.android_start_title);
5837 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005838 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
5839 mBootMsgDialog.setIndeterminate(true);
5840 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07005841 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005842 mBootMsgDialog.getWindow().addFlags(
5843 WindowManager.LayoutParams.FLAG_DIM_BEHIND
5844 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
5845 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08005846 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
5847 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
5848 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005849 mBootMsgDialog.setCancelable(false);
5850 mBootMsgDialog.show();
5851 }
5852 mBootMsgDialog.setMessage(msg);
5853 }
5854 });
5855 }
5856
5857 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005858 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005859 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07005860 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005861 }
5862
Mike Lockwood28569302010-01-28 11:54:40 -05005863 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005864 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005865 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07005866 // ***************************************
5867 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
5868 // ***************************************
5869 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
5870 // WITH ITS LOCKS HELD.
5871 //
5872 // This code must be VERY careful about the locks
5873 // it acquires.
5874 // In fact, the current code acquires way too many,
5875 // and probably has lurking deadlocks.
5876
Mike Lockwood28569302010-01-28 11:54:40 -05005877 synchronized (mScreenLockTimeout) {
5878 if (mLockScreenTimerActive) {
5879 // reset the timer
5880 mHandler.removeCallbacks(mScreenLockTimeout);
5881 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5882 }
5883 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04005884 }
5885
Adam Cohenf7522022012-10-03 20:03:18 -07005886 class ScreenLockTimeout implements Runnable {
5887 Bundle options;
5888
5889 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005890 public void run() {
5891 synchronized (this) {
5892 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08005893 if (mKeyguardDelegate != null) {
5894 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005895 }
Mike Lockwood28569302010-01-28 11:54:40 -05005896 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07005897 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05005898 }
5899 }
Mike Lockwood28569302010-01-28 11:54:40 -05005900
Adam Cohenf7522022012-10-03 20:03:18 -07005901 public void setLockOptions(Bundle options) {
5902 this.options = options;
5903 }
5904 }
5905
5906 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
5907
Jose Lima9546b202014-07-02 17:21:51 -07005908 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07005909 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08005910 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
5911 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07005912 if (options != null) {
5913 // In case multiple calls are made to lockNow, we don't wipe out the options
5914 // until the runnable actually executes.
5915 mScreenLockTimeout.setLockOptions(options);
5916 }
Jim Miller93c518e2012-01-17 15:55:31 -08005917 mHandler.post(mScreenLockTimeout);
5918 }
5919
Mike Lockwood28569302010-01-28 11:54:40 -05005920 private void updateLockScreenTimeout() {
5921 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005922 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08005923 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05005924 if (mLockScreenTimerActive != enable) {
5925 if (enable) {
5926 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
5927 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5928 } else {
5929 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
5930 mHandler.removeCallbacks(mScreenLockTimeout);
5931 }
5932 mLockScreenTimerActive = enable;
5933 }
5934 }
5935 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005936
Jeff Brown061ea992015-04-17 19:55:47 -07005937 private void updateDreamingSleepToken(boolean acquire) {
5938 if (acquire) {
5939 if (mDreamingSleepToken == null) {
5940 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
5941 }
5942 } else {
5943 if (mDreamingSleepToken != null) {
5944 mDreamingSleepToken.release();
5945 }
5946 }
5947 }
5948
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005949 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005950 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005951 public void enableScreenAfterBoot() {
5952 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07005953 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07005954 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005955 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07005956
Jeff Brownc458ce92012-04-30 14:58:40 -07005957 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07005958 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07005959 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07005960 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07005961 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07005962 }
Jeff Browna20dda42014-05-27 20:57:24 -07005963
5964 synchronized (mLock) {
5965 updateWakeGestureListenerLp();
5966 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005967 }
5968
Jeff Brown4f5fa282014-06-12 19:19:15 -07005969 void updateUiMode() {
5970 if (mUiModeManager == null) {
5971 mUiModeManager = IUiModeManager.Stub.asInterface(
5972 ServiceManager.getService(Context.UI_MODE_SERVICE));
5973 }
5974 try {
5975 mUiMode = mUiModeManager.getCurrentModeType();
5976 } catch (RemoteException e) {
5977 }
5978 }
5979
Jeff Brown01a98dd2011-09-20 15:08:29 -07005980 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005981 try {
5982 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07005983 mWindowManager.updateRotation(alwaysSendConfiguration, false);
5984 } catch (RemoteException e) {
5985 // Ignore
5986 }
5987 }
5988
5989 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
5990 try {
5991 //set orientation on WindowManager
5992 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005993 } catch (RemoteException e) {
5994 // Ignore
5995 }
5996 }
5997
Daniel Sandler6396c722013-04-16 20:19:09 -04005998 /**
5999 * Return an Intent to launch the currently active dock app as home. Returns
6000 * null if the standard home should be launched, which is the case if any of the following is
6001 * true:
6002 * <ul>
6003 * <li>The device is not in either car mode or desk mode
6004 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6005 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6006 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6007 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6008 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006009 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006010 */
6011 Intent createHomeDockIntent() {
6012 Intent intent = null;
6013
6014 // What home does is based on the mode, not the dock state. That
6015 // is, when in car mode you should be taken to car home regardless
6016 // of whether we are actually in a car dock.
6017 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6018 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6019 intent = mCarDockIntent;
6020 }
6021 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6022 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6023 intent = mDeskDockIntent;
6024 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006025 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6026 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6027 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6028 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6029 // Always launch dock home from home when watch is docked, if it exists.
6030 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006031 }
6032
6033 if (intent == null) {
6034 return null;
6035 }
6036
6037 ActivityInfo ai = null;
6038 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6039 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006040 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006041 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006042 if (info != null) {
6043 ai = info.activityInfo;
6044 }
6045 if (ai != null
6046 && ai.metaData != null
6047 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6048 intent = new Intent(intent);
6049 intent.setClassName(ai.packageName, ai.name);
6050 return intent;
6051 }
6052
6053 return null;
6054 }
6055
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006056 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6057 if (awakenFromDreams) {
6058 awakenDreams();
6059 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006060
6061 Intent dock = createHomeDockIntent();
6062 if (dock != null) {
6063 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006064 if (fromHomeKey) {
6065 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6066 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006067 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006068 return;
6069 } catch (ActivityNotFoundException e) {
6070 }
6071 }
6072
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006073 Intent intent;
6074
6075 if (fromHomeKey) {
6076 intent = new Intent(mHomeIntent);
6077 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6078 } else {
6079 intent = mHomeIntent;
6080 }
6081
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006082 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006083 }
Craig Mautnereda67292013-04-28 13:50:14 -07006084
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006085 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006086 * goes to the home screen
6087 * @return whether it did anything
6088 */
6089 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006090 if (!isUserSetupComplete()) {
6091 Slog.i(TAG, "Not going home because user setup is in progress.");
6092 return false;
6093 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006094 if (false) {
6095 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006096 try {
6097 ActivityManagerNative.getDefault().stopAppSwitches();
6098 } catch (RemoteException e) {
6099 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006100 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006101 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006102 } else {
6103 // This code brings home to the front or, if it is already
6104 // at the front, puts the device to sleep.
6105 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006106 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6107 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6108 Log.d(TAG, "UTS-TEST-MODE");
6109 } else {
6110 ActivityManagerNative.getDefault().stopAppSwitches();
6111 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006112 Intent dock = createHomeDockIntent();
6113 if (dock != null) {
6114 int result = ActivityManagerNative.getDefault()
6115 .startActivityAsUser(null, null, dock,
6116 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6117 null, null, 0,
6118 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006119 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006120 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6121 return false;
6122 }
6123 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006124 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006125 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006126 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006127 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006128 null, null, 0,
6129 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006130 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006131 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006132 return false;
6133 }
6134 } catch (RemoteException ex) {
6135 // bummer, the activity manager, which is in this process, is dead
6136 }
6137 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006138 return true;
6139 }
Craig Mautnereda67292013-04-28 13:50:14 -07006140
6141 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006142 public void setCurrentOrientationLw(int newOrientation) {
6143 synchronized (mLock) {
6144 if (newOrientation != mCurrentAppOrientation) {
6145 mCurrentAppOrientation = newOrientation;
6146 updateOrientationListenerLp();
6147 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006148 }
6149 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006150
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006151 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6152 if (!isGlobalAccessibilityGestureEnabled()) {
6153 return;
6154 }
6155 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6156 Context.AUDIO_SERVICE);
6157 if (audioManager.isSilentMode()) {
6158 return;
6159 }
6160 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6161 Settings.System.DEFAULT_NOTIFICATION_URI);
6162 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6163 ringTone.play();
6164 }
Craig Mautnereda67292013-04-28 13:50:14 -07006165
Bryce Lee584a4452014-10-21 15:55:55 -07006166 private boolean isTheaterModeEnabled() {
6167 return Settings.Global.getInt(mContext.getContentResolver(),
6168 Settings.Global.THEATER_MODE_ON, 0) == 1;
6169 }
6170
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006171 private boolean isGlobalAccessibilityGestureEnabled() {
6172 return Settings.Global.getInt(mContext.getContentResolver(),
6173 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6174 }
6175
Craig Mautnereda67292013-04-28 13:50:14 -07006176 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006177 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006178 if (!mVibrator.hasVibrator()) {
6179 return false;
6180 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006181 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6182 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006183 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006184 return false;
6185 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006186 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006187 switch (effectId) {
6188 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006189 pattern = mLongPressVibePattern;
6190 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006191 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006192 pattern = mVirtualKeyVibePattern;
6193 break;
6194 case HapticFeedbackConstants.KEYBOARD_TAP:
6195 pattern = mKeyboardTapVibePattern;
6196 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006197 case HapticFeedbackConstants.CLOCK_TICK:
6198 pattern = mClockTickVibePattern;
6199 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006200 case HapticFeedbackConstants.CALENDAR_DATE:
6201 pattern = mCalendarDateVibePattern;
6202 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006203 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006204 pattern = mSafeModeDisabledVibePattern;
6205 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006206 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006207 pattern = mSafeModeEnabledVibePattern;
6208 break;
Mady Mellore82067b2015-04-30 09:58:35 -07006209 case HapticFeedbackConstants.STYLUS_BUTTON_PRESS:
6210 pattern = mStylusButtonPressVibePattern;
6211 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006212 default:
6213 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006214 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006215 int owningUid;
6216 String owningPackage;
6217 if (win != null) {
6218 owningUid = win.getOwningUid();
6219 owningPackage = win.getOwningPackage();
6220 } else {
6221 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006222 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006223 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006224 if (pattern.length == 1) {
6225 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006226 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006227 } else {
6228 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006229 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006230 }
6231 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006232 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006233
6234 @Override
6235 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006236 }
6237
Jeff Brownc38c9be2012-10-04 13:16:19 -07006238 @Override
6239 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006240 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006241 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006242 }
6243 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006244
Dianne Hackborndf89e652011-10-06 22:35:11 -07006245 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006246 // If there is no window focused, there will be nobody to handle the events
6247 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006248 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6249 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006250 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006251 return 0;
6252 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006253 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006254 // We are updating at a point where the keyguard has gotten
6255 // focus, but we were last in a state where the top window is
6256 // hiding it. This is probably because the keyguard as been
6257 // shown while the top window was displayed, so we want to ignore
6258 // it here because this is just a very transient change and it
6259 // will quickly lose focus once it correctly gets hidden.
6260 return 0;
6261 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006262
John Spurlock1db8b682014-02-18 11:18:59 -05006263 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006264 & ~mResettingSystemUiFlags
6265 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006266 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006267 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006268 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006269 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006270 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006271 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006272 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006273 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006274 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006275 return 0;
6276 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006277 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006278 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006279 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006280 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006281 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006282 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006283 try {
6284 IStatusBarService statusbar = getStatusBarService();
6285 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006286 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006287 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006288 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006289 } catch (RemoteException e) {
6290 // re-acquire status bar service next time it is needed.
6291 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006292 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006293 }
6294 });
6295 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006296 }
6297
Adrian Rooscd3884d2015-02-18 17:25:23 +01006298 private int updateLightStatusBarLw(int vis) {
6299 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6300 ? mStatusBar
6301 : mTopFullscreenOpaqueOrDimmingWindowState;
6302
6303 if (statusColorWin != null) {
6304 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6305 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6306 // its light flag.
6307 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6308 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6309 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6310 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6311 // Otherwise if it's dimming, clear the light flag.
6312 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6313 }
6314 }
6315 return vis;
6316 }
6317
John Spurlock79da8332013-09-20 12:04:47 -04006318 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006319 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006320 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6321 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006322 : mTopFullscreenOpaqueWindowState;
6323 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6324 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6325
John Spurlock27735a42013-08-14 17:57:38 -04006326 // prevent status bar interaction from clearing certain flags
John Spurlock79da8332013-09-20 12:04:47 -04006327 boolean statusBarHasFocus = win.getAttrs().type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006328 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006329 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6330 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006331 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006332 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6333 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006334 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006335 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6336 }
John Spurlockbd957402013-10-03 11:38:39 -04006337 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006338 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006339
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006340 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006341 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6342 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006343 }
6344
John Spurlock27735a42013-08-14 17:57:38 -04006345 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006346 boolean immersiveSticky =
6347 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006348 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006349 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006350 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006351 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6352 boolean hideStatusBarSysui =
6353 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006354 boolean hideNavBarSysui =
6355 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006356
John Spurlock27735a42013-08-14 17:57:38 -04006357 boolean transientStatusBarAllowed =
6358 mStatusBar != null && (
6359 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006360 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006361 || statusBarHasFocus);
6362
John Spurlockf1a36642013-10-12 17:50:42 -04006363 boolean transientNavBarAllowed =
6364 mNavigationBar != null &&
6365 hideNavBarSysui && immersiveSticky;
6366
John Spurlockf25706f2013-11-07 18:02:43 -05006367 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006368 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006369 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006370 && !transientNavBarAllowed;
6371 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006372 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006373 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006374 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006375 }
John Spurlock27735a42013-08-14 17:57:38 -04006376
6377 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6378
6379 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006380 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6381 boolean newImmersiveMode = isImmersiveMode(vis);
6382 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006383 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006384 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6385 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006386 }
John Spurlock27735a42013-08-14 17:57:38 -04006387
John Spurlockf1a36642013-10-12 17:50:42 -04006388 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6389
John Spurlocke1f366f2013-08-05 12:22:40 -04006390 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006391 }
6392
John Spurlockf1a36642013-10-12 17:50:42 -04006393 private void clearClearableFlagsLw() {
6394 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6395 if (newVal != mResettingSystemUiFlags) {
6396 mResettingSystemUiFlags = newVal;
6397 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6398 }
6399 }
6400
6401 private boolean isImmersiveMode(int vis) {
6402 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006403 return mNavigationBar != null
6404 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006405 && (vis & flags) != 0
6406 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006407 }
6408
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006409 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006410 * @return whether the navigation or status bar can be made translucent
6411 *
6412 * This should return true unless touch exploration is not enabled or
6413 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006414 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006415 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006416 return mTranslucentDecorEnabled
6417 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006418 }
6419
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006420 // Use this instead of checking config_showNavigationBar so that it can be consistently
6421 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006422 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006423 public boolean hasNavigationBar() {
6424 return mHasNavigationBar;
6425 }
6426
satok1bc0a492012-04-25 22:47:12 +09006427 @Override
6428 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6429 mLastInputMethodWindow = ime;
6430 mLastInputMethodTargetWindow = target;
6431 }
6432
Craig Mautnerf1b67412012-09-19 13:18:29 -07006433 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006434 public int getInputMethodWindowVisibleHeightLw() {
6435 return mDockBottom - mCurBottom;
6436 }
6437
6438 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006439 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006440 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006441 if (mKeyguardDelegate != null) {
6442 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006443 }
John Spurlock13451a22012-09-28 14:40:41 -04006444 if (mStatusBarService != null) {
6445 try {
6446 mStatusBarService.setCurrentUser(newUserId);
6447 } catch (RemoteException e) {
6448 // oh well
6449 }
6450 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006451 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006452 }
6453
6454 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006455 public boolean canMagnifyWindow(int windowType) {
6456 switch (windowType) {
6457 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6458 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6459 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6460 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6461 return false;
6462 }
6463 }
6464 return true;
6465 }
6466
6467 @Override
6468 public boolean isTopLevelWindow(int windowType) {
6469 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6470 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6471 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6472 }
6473 return true;
6474 }
6475
Jim Miller4eeb4f62012-11-08 00:04:29 -08006476 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006477 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006478 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006479 pw.print(" mSystemReady="); pw.print(mSystemReady);
6480 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006481 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006482 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006483 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006484 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006485 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6486 || mForceClearedSystemUiFlags != 0) {
6487 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6488 pw.print(Integer.toHexString(mLastSystemUiFlags));
6489 pw.print(" mResettingSystemUiFlags=0x");
6490 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6491 pw.print(" mForceClearedSystemUiFlags=0x");
6492 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006493 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006494 if (mLastFocusNeedsMenu) {
6495 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6496 pw.println(mLastFocusNeedsMenu);
6497 }
Jeff Browna20dda42014-05-27 20:57:24 -07006498 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6499 pw.println(mWakeGestureEnabledSetting);
6500
Jeff Brownbcdfc622014-03-06 19:13:04 -08006501 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006502 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6503 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006504 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6505 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6506 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6507 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006508 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006509 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006510 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6511 pw.print(mCarDockEnablesAccelerometer);
6512 pw.print(" mDeskDockEnablesAccelerometer=");
6513 pw.println(mDeskDockEnablesAccelerometer);
6514 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6515 pw.print(mLidKeyboardAccessibility);
6516 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006517 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006518 pw.print(prefix);
6519 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6520 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006521 pw.print(prefix);
6522 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6523 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006524 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006525 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6526 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6527 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6528 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6529 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6530 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6531 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006532 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6533 pw.print(","); pw.print(mOverscanScreenTop);
6534 pw.print(") "); pw.print(mOverscanScreenWidth);
6535 pw.print("x"); pw.println(mOverscanScreenHeight);
6536 if (mOverscanLeft != 0 || mOverscanTop != 0
6537 || mOverscanRight != 0 || mOverscanBottom != 0) {
6538 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6539 pw.print(" top="); pw.print(mOverscanTop);
6540 pw.print(" right="); pw.print(mOverscanRight);
6541 pw.print(" bottom="); pw.println(mOverscanBottom);
6542 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006543 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6544 pw.print(mRestrictedOverscanScreenLeft);
6545 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6546 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6547 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006548 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6549 pw.print(","); pw.print(mUnrestrictedScreenTop);
6550 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6551 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6552 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6553 pw.print(","); pw.print(mRestrictedScreenTop);
6554 pw.print(") "); pw.print(mRestrictedScreenWidth);
6555 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006556 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6557 pw.print(","); pw.print(mStableFullscreenTop);
6558 pw.print(")-("); pw.print(mStableFullscreenRight);
6559 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006560 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6561 pw.print(","); pw.print(mStableTop);
6562 pw.print(")-("); pw.print(mStableRight);
6563 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006564 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6565 pw.print(","); pw.print(mSystemTop);
6566 pw.print(")-("); pw.print(mSystemRight);
6567 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006568 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6569 pw.print(","); pw.print(mCurTop);
6570 pw.print(")-("); pw.print(mCurRight);
6571 pw.print(","); pw.print(mCurBottom); pw.println(")");
6572 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6573 pw.print(","); pw.print(mContentTop);
6574 pw.print(")-("); pw.print(mContentRight);
6575 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006576 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6577 pw.print(","); pw.print(mVoiceContentTop);
6578 pw.print(")-("); pw.print(mVoiceContentRight);
6579 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006580 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6581 pw.print(","); pw.print(mDockTop);
6582 pw.print(")-("); pw.print(mDockRight);
6583 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006584 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6585 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006586 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6587 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006588 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6589 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006590 if (mLastInputMethodWindow != null) {
6591 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6592 pw.println(mLastInputMethodWindow);
6593 }
6594 if (mLastInputMethodTargetWindow != null) {
6595 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6596 pw.println(mLastInputMethodTargetWindow);
6597 }
6598 if (mStatusBar != null) {
6599 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006600 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6601 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006602 }
6603 if (mNavigationBar != null) {
6604 pw.print(prefix); pw.print("mNavigationBar=");
6605 pw.println(mNavigationBar);
6606 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006607 if (mFocusedWindow != null) {
6608 pw.print(prefix); pw.print("mFocusedWindow=");
6609 pw.println(mFocusedWindow);
6610 }
6611 if (mFocusedApp != null) {
6612 pw.print(prefix); pw.print("mFocusedApp=");
6613 pw.println(mFocusedApp);
6614 }
6615 if (mWinDismissingKeyguard != null) {
6616 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6617 pw.println(mWinDismissingKeyguard);
6618 }
6619 if (mTopFullscreenOpaqueWindowState != null) {
6620 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6621 pw.println(mTopFullscreenOpaqueWindowState);
6622 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006623 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6624 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6625 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6626 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006627 if (mForcingShowNavBar) {
6628 pw.print(prefix); pw.print("mForcingShowNavBar=");
6629 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6630 pw.println(mForcingShowNavBarLayer);
6631 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006632 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006633 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006634 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6635 pw.print(" mForceStatusBarFromKeyguard=");
6636 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006637 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006638 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006639 pw.print(" mHomePressed="); pw.println(mHomePressed);
6640 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6641 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6642 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6643 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6644 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6645 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6646 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6647 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6648 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6649 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006650 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6651 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6652 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006653
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006654 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006655 mStatusBarController.dump(pw, prefix);
6656 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05006657 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07006658
Jeff Browna20dda42014-05-27 20:57:24 -07006659 if (mWakeGestureListener != null) {
6660 mWakeGestureListener.dump(pw, prefix);
6661 }
Jeff Brown600f0032014-05-22 17:06:00 -07006662 if (mOrientationListener != null) {
6663 mOrientationListener.dump(pw, prefix);
6664 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00006665 if (mBurnInProtectionHelper != null) {
6666 mBurnInProtectionHelper.dump(prefix, pw);
6667 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006668 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006669}