blob: b44eade7701ff97d90ce0a3b392b440284f6641c [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;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080020import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080021import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040022import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070023import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070024import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040025import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080026import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070027import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080028import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040029import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080030import android.content.ContentResolver;
31import android.content.Context;
32import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070033import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070034import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080035import android.content.pm.ActivityInfo;
36import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040037import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070038import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080039import android.content.res.Configuration;
40import android.content.res.Resources;
Craig Mautner8e4df6c2012-05-23 16:57:23 -070041import android.content.res.TypedArray;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080042import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080043import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080044import android.graphics.Rect;
John Spurlock7b414672014-07-18 13:02:39 -040045import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080046import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050047import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080048import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070049import android.media.Ringtone;
50import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070051import android.media.session.MediaSessionLegacyHelper;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070052import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080053import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070054import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080055import android.os.Handler;
56import android.os.IBinder;
Jeff Brown32cbc38552011-12-01 14:01:49 -080057import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070058import android.os.Message;
59import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080060import android.os.PowerManager;
61import android.os.RemoteException;
62import android.os.ServiceManager;
63import android.os.SystemClock;
64import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080065import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070066import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080067import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070068import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080069import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070070import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040071import android.service.dreams.DreamService;
72import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070073import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070074import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070075import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080076import android.util.EventLog;
77import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070078import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080079import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070080import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080081import android.view.Gravity;
82import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080083import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080084import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070085import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070086import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080087import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080088import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080089import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080090import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080091import android.view.KeyEvent;
92import android.view.MotionEvent;
Jorim Jaggib10e33f2015-02-04 21:57:40 +010093import android.view.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080094import android.view.Surface;
95import android.view.View;
96import android.view.ViewConfiguration;
97import android.view.Window;
98import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -080099import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700100import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800101import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800102import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800103import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800104import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200105import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800106import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800107import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800108import com.android.internal.statusbar.IStatusBarService;
Craig Mautnerae446592012-12-06 19:05:05 -0800109import com.android.internal.widget.PointerLocationView;
Craig Mautner8a0da012014-05-31 15:13:37 -0700110import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100111import com.android.server.policy.keyguard.KeyguardServiceDelegate;
112import com.android.server.policy.keyguard.KeyguardServiceDelegate.ShowListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800113
114import java.io.File;
115import java.io.FileReader;
116import java.io.IOException;
117import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700118import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800119import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800120
Dianne Hackbornc652de82013-02-15 16:32:56 -0800121import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700122import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
123import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
124import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700125import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
126import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
127import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800128
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800129/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700130 * WindowManagerPolicy implementation for the Android phone UI. This
131 * introduces a new method suffix, Lp, for an internal lock of the
132 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400133 * 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 -0700134 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800135 */
136public class PhoneWindowManager implements WindowManagerPolicy {
137 static final String TAG = "WindowManager";
138 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700139 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700140 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700141 static final boolean DEBUG_KEYGUARD = false;
142 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700143 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700144 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800145 static final boolean SHOW_STARTING_ANIMATIONS = true;
146 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400147
Daniel Sandler6396c722013-04-16 20:19:09 -0400148 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
149 // No longer recommended for desk docks; still useful in car docks.
150 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
151 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
152
Jeff Brown6d8fd272014-05-20 21:24:38 -0700153 static final int SHORT_PRESS_POWER_NOTHING = 0;
154 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
155 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
156 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800157 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700158
Joe Onoratod208e702010-10-08 16:22:43 -0400159 static final int LONG_PRESS_POWER_NOTHING = 0;
160 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
161 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700162 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700163
Jeff Brown13f00f02014-10-31 14:45:50 -0700164 static final int MULTI_PRESS_POWER_NOTHING = 0;
165 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
166 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
167
Michael Jurka3b1fc472011-06-13 10:54:40 -0700168 // These need to match the documentation/constant in
169 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800170 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800171 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700172 static final int LONG_PRESS_HOME_ASSIST = 2;
173
174 static final int DOUBLE_TAP_HOME_NOTHING = 0;
175 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800176
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700177 static final int APPLICATION_MEDIA_SUBLAYER = -2;
178 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800179 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800180 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Craig Mautner88400d32012-09-30 12:35:45 -0700181
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800182 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
183 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
184 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500185 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700186 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800187
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700188 /**
189 * These are the system UI flags that, when changing, can cause the layout
190 * of the screen to change.
191 */
192 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400193 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400194 | View.SYSTEM_UI_FLAG_FULLSCREEN
195 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200196 | View.NAVIGATION_BAR_TRANSLUCENT
197 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700198
John Spurlock7b414672014-07-18 13:02:39 -0400199 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
200 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
201 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
202 .build();
203
Jim Miller5ecd8112013-01-09 18:50:26 -0800204 /**
205 * Keyguard stuff
206 */
207 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100208 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700209 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800210
Jeff Brown6651a632011-11-28 12:59:11 -0800211 /* Table of Application Launch keys. Maps from key codes to intent categories.
212 *
213 * These are special keys that are used to launch particular kinds of applications,
214 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
215 * usage page. We don't support quite that many yet...
216 */
217 static SparseArray<String> sApplicationLaunchKeyCategories;
218 static {
219 sApplicationLaunchKeyCategories = new SparseArray<String>();
220 sApplicationLaunchKeyCategories.append(
221 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
222 sApplicationLaunchKeyCategories.append(
223 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
224 sApplicationLaunchKeyCategories.append(
225 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
226 sApplicationLaunchKeyCategories.append(
227 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
228 sApplicationLaunchKeyCategories.append(
229 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
230 sApplicationLaunchKeyCategories.append(
231 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
232 }
233
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700234 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
235 static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
236
Dianne Hackborndf89e652011-10-06 22:35:11 -0700237 /**
238 * Lock protecting internal state. Must not call out into window
239 * manager with lock held. (This lock will be acquired in places
240 * where the window manager is calling in with its own lock held.)
241 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800242 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700243
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800244 Context mContext;
245 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700246 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700247 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700248 PowerManager mPowerManager;
Jose Lima9546b202014-07-02 17:21:51 -0700249 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400250 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700251 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700252 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800253 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700254 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800255 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000256 BurnInProtectionHelper mBurnInProtectionHelper;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800257
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700258 // Vibrator pattern for haptic feedback of a long press.
259 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700260
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700261 // Vibrator pattern for haptic feedback of virtual key press.
262 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700263
Amith Yamasanic33cb712010-02-10 15:21:49 -0800264 // Vibrator pattern for a short vibration.
265 long[] mKeyboardTapVibePattern;
266
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700267 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
268 long[] mClockTickVibePattern;
269
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700270 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
271 long[] mCalendarDateVibePattern;
272
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700273 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
274 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700275
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700276 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
277 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700278
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800279 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
280 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400281
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800282 boolean mSafeMode;
283 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700284 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400285 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400286 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700287 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400288 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
289 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
290 int[] mNavigationBarHeightForRotation = new int[4];
291 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400292
Craig Mautnera631d492014-08-05 15:16:01 -0700293 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800294 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700295 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700296 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700297 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700298 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
299 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
300 }
301 };
302 final ShowListener mKeyguardDelegateCallback = new ShowListener() {
303 @Override
304 public void onShown(IBinder windowToken) {
305 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onShown.");
306 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
307 }
308 };
309
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800310 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800311 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900312 WindowState mLastInputMethodWindow = null;
313 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800314
Jeff Brown13f00f02014-10-31 14:45:50 -0700315 // FIXME This state is shared between the input reader and handler thread.
316 // Technically it's broken and buggy but it has been like this for many years
317 // and we have not yet seen any problems. Someday we'll rewrite this logic
318 // so that only one thread is involved in handling input policy. Unfortunately
319 // it's on a critical path for power management so we can't just post the work to the
320 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
321 // to hold wakelocks during dispatch and eliminating the critical path.
322 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800323 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700324 volatile int mPowerKeyPressCounter;
325 volatile boolean mEndCallKeyHandled;
326
Winson Chungd42a6cf2014-06-03 16:24:04 -0700327 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700328 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700329 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800330
Jeff Brown2e7760e2012-04-11 15:14:55 -0700331 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700332 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700333 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800334
Dianne Hackbornc777e072010-02-12 13:07:59 -0800335 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700336 boolean mSystemBooted;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800337 boolean mHdmiPlugged;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700338 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400339 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700340 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700341 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400342 int mCarDockRotation;
343 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700344 int mUndockedHdmiRotation;
345 int mDemoHdmiRotation;
346 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800347 int mDemoRotation;
348 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400349
Jeff Browna20dda42014-05-27 20:57:24 -0700350 boolean mWakeGestureEnabledSetting;
351 MyWakeGestureListener mWakeGestureListener;
352
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700353 // Default display does not rotate, apps that require non-default orientation will have to
354 // have the orientation emulated.
355 private boolean mForceDefaultOrientation = false;
356
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400357 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
358 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700359 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400360
Jeff Brownbcdfc622014-03-06 19:13:04 -0800361 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700362 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400363 boolean mCarDockEnablesAccelerometer;
364 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700365 int mLidKeyboardAccessibility;
366 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700367 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700368 int mShortPressOnPowerBehavior;
369 int mLongPressOnPowerBehavior;
370 int mDoublePressOnPowerBehavior;
371 int mTriplePressOnPowerBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700372 boolean mAwake;
373 boolean mScreenOnEarly;
374 boolean mScreenOnFully;
375 ScreenOnListener mScreenOnListener;
376 boolean mKeyguardDrawComplete;
377 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800378 boolean mOrientationSensorEnabled = false;
379 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800380 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400381 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800382 boolean mUseTvRouting;
383 boolean mUseMasterVolume;
Craig Mautner967212c2013-04-13 21:10:58 -0700384
Jeff Brown70825162012-03-28 17:27:48 -0700385 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800386
387 // The last window we were told about in focusChanged.
388 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800389 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800390
Jeff Brown70825162012-03-28 17:27:48 -0700391 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800392
Dianne Hackbornc652de82013-02-15 16:32:56 -0800393 // The current size of the screen; really; extends into the overscan area of
394 // the screen and doesn't account for any system elements like the status bar.
395 int mOverscanScreenLeft, mOverscanScreenTop;
396 int mOverscanScreenWidth, mOverscanScreenHeight;
397 // The current visible size of the screen; really; (ir)regardless of whether the status
398 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800399 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
400 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800401 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
402 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
403 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700404 // The current size of the screen; these may be different than (0,0)-(dw,dh)
405 // if the status bar can't be hidden; in that case it effectively carves out
406 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800407 int mRestrictedScreenLeft, mRestrictedScreenTop;
408 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700409 // During layout, the current screen borders accounting for any currently
410 // visible system UI elements.
411 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700412 // For applications requesting stable content insets, these are them.
413 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700414 // For applications requesting stable content insets but have also set the
415 // fullscreen window flag, these are the stable dimensions without the status bar.
416 int mStableFullscreenLeft, mStableFullscreenTop;
417 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800418 // During layout, the current screen borders with all outer decoration
419 // (status bar, input method dock) accounted for.
420 int mCurLeft, mCurTop, mCurRight, mCurBottom;
421 // During layout, the frame in which content should be displayed
422 // to the user, accounting for all screen decoration except for any
423 // space they deem as available for other content. This is usually
424 // the same as mCur*, but may be larger if the screen decor has supplied
425 // content insets.
426 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700427 // During layout, the frame in which voice content should be displayed
428 // to the user, accounting for all screen decoration except for any
429 // space they deem as available for other content.
430 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800431 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800432 // windows are placed.
433 int mDockLeft, mDockTop, mDockRight, mDockBottom;
434 // During layout, the layer at which the doc window is placed.
435 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700436 // During layout, this is the layer of the status bar.
437 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700438 int mLastSystemUiFlags;
439 // Bits that we are in the process of clearing, so we want to prevent
440 // them from being set by applications until everything has been updated
441 // to have them clear.
442 int mResettingSystemUiFlags = 0;
443 // Bits that we are currently always keeping cleared.
444 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800445 // What we last reported to system UI about whether the compatibility
446 // menu needs to be displayed.
447 boolean mLastFocusNeedsMenu = false;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700448
449 FakeWindow mHideNavFakeWindow = null;
450
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800451 static final Rect mTmpParentFrame = new Rect();
452 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800453 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800454 static final Rect mTmpContentFrame = new Rect();
455 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400456 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700457 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700458 static final Rect mTmpNavigationFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700459
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800460 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100461 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700462 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200463 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400464 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800465 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700466 boolean mForceStatusBarFromKeyguard;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700467 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800468 boolean mForcingShowNavBar;
469 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700470
471 // States of keyguard dismiss.
472 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
473 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
474 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
475 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
476
477 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
478 * be done once per window. */
479 private WindowState mWinDismissingKeyguard;
480
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700481 /** The window that is currently showing "over" the keyguard. If there is an app window
482 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
483 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
484 * the wallpaper. */
485 private WindowState mWinShowWhenLocked;
486
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700487 boolean mShowingLockscreen;
488 boolean mShowingDream;
489 boolean mDreamingLockscreen;
Jim Millerab954542014-10-10 18:21:49 -0700490 boolean mKeyguardSecure;
491 boolean mKeyguardSecureIncludingHidden;
492 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800493 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700494 boolean mHomeConsumed;
495 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800496 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700497 Intent mCarDockIntent;
498 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700499 boolean mSearchKeyShortcutPending;
500 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700501 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700502 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800503
Mike Lockwood28569302010-01-28 11:54:40 -0500504 // support for activating the lock screen while the screen is on
505 boolean mAllowLockscreenWhenOn;
506 int mLockScreenTimeout;
507 boolean mLockScreenTimerActive;
508
David Brownbaf8d092010-03-08 21:52:59 -0800509 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800510 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800511
512 // Behavior of POWER button while in-call and screen on.
513 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
514 int mIncallPowerBehavior;
515
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700516 Display mDisplay;
517
Dianne Hackborn9d132642011-04-21 17:26:39 -0700518 int mLandscapeRotation = 0; // default landscape rotation
519 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
520 int mPortraitRotation = 0; // default portrait rotation
521 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700522
Dianne Hackbornc652de82013-02-15 16:32:56 -0800523 int mOverscanLeft = 0;
524 int mOverscanTop = 0;
525 int mOverscanRight = 0;
526 int mOverscanBottom = 0;
527
Joe Onorato46b0d682010-11-22 17:37:27 -0800528 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700529 private int mLongPressOnHomeBehavior;
530
531 // What we do when the user double-taps on home
532 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800533
Bryce Lee584a4452014-10-21 15:55:55 -0700534 // Allowed theater mode wake actions
535 private boolean mAllowTheaterModeWakeFromKey;
536 private boolean mAllowTheaterModeWakeFromPowerKey;
537 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800538 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700539 private boolean mAllowTheaterModeWakeFromCameraLens;
540 private boolean mAllowTheaterModeWakeFromLidSwitch;
541 private boolean mAllowTheaterModeWakeFromWakeGesture;
542
Bryce Lee55e846d2014-11-04 12:43:44 -0800543 // Whether to go to sleep entering theater mode from power button
544 private boolean mGoToSleepOnButtonPressTheaterMode;
545
Winson Chung9112ec32011-06-27 13:15:32 -0700546 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700547 // Time to volume and power must be pressed within this interval of each other.
548 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700549 // Increase the chord delay when taking a screenshot from the keyguard
550 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800551 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700552 private boolean mScreenshotChordVolumeDownKeyTriggered;
553 private long mScreenshotChordVolumeDownKeyTime;
554 private boolean mScreenshotChordVolumeDownKeyConsumed;
555 private boolean mScreenshotChordVolumeUpKeyTriggered;
556 private boolean mScreenshotChordPowerKeyTriggered;
557 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700558
Michael Wrightb854e242013-02-05 17:54:02 -0800559 /* The number of steps between min and max brightness */
560 private static final int BRIGHTNESS_STEPS = 10;
561
Christopher Tate5e08af02012-09-21 17:17:22 -0700562 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800563 ShortcutManager mShortcutManager;
564 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700565 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700566 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800567
Craig Mautnerd625ab22013-09-06 13:40:31 -0700568 private int mCurrentUserId;
569
Justin Kohd378ad72013-04-01 12:18:26 -0700570 // Maps global key codes to the components that will handle them.
571 private GlobalKeyManager mGlobalKeyManager;
572
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700573 // Fallback actions by key code.
574 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
575 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800576
Jorim Jaggi76a16232014-08-08 17:00:47 +0200577 private final LogDecelerateInterpolator mLogDecelerateInterpolator
578 = new LogDecelerateInterpolator(100, 0);
579
Jeff Brown70825162012-03-28 17:27:48 -0700580 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
581 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700582 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
583 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700584 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
585 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
586 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700587 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700588 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700589 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700590 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700591 private static final int MSG_POWER_DELAYED_PRESS = 13;
592 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown70825162012-03-28 17:27:48 -0700593
594 private class PolicyHandler extends Handler {
595 @Override
596 public void handleMessage(Message msg) {
597 switch (msg.what) {
598 case MSG_ENABLE_POINTER_LOCATION:
599 enablePointerLocation();
600 break;
601 case MSG_DISABLE_POINTER_LOCATION:
602 disablePointerLocation();
603 break;
Jeff Brown40013652012-05-16 21:22:36 -0700604 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
605 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
606 break;
607 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
608 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
609 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700610 case MSG_DISPATCH_SHOW_RECENTS:
611 showRecentApps(false);
612 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700613 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
614 showGlobalActionsInternal();
615 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700616 case MSG_KEYGUARD_DRAWN_COMPLETE:
617 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700618 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700619 break;
620 case MSG_KEYGUARD_DRAWN_TIMEOUT:
621 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700622 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700623 break;
624 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
625 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700626 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700627 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700628 case MSG_HIDE_BOOT_MESSAGE:
629 handleHideBootMessage();
630 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700631 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
632 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
633 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700634 case MSG_POWER_DELAYED_PRESS:
635 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
636 finishPowerKeyPress();
637 break;
638 case MSG_POWER_LONG_PRESS:
639 powerLongPress();
640 break;
Jeff Brown70825162012-03-28 17:27:48 -0700641 }
642 }
643 }
644
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800645 private UEventObserver mHDMIObserver = new UEventObserver() {
646 @Override
647 public void onUEvent(UEventObserver.UEvent event) {
648 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
649 }
650 };
651
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800652 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800653 SettingsObserver(Handler handler) {
654 super(handler);
655 }
David Brownbaf8d092010-03-08 21:52:59 -0800656
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800657 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700658 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800659 ContentResolver resolver = mContext.getContentResolver();
660 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700661 Settings.System.END_BUTTON_BEHAVIOR), false, this,
662 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800663 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700664 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
665 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700666 resolver.registerContentObserver(Settings.Secure.getUriFor(
667 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
668 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800669 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700670 Settings.System.ACCELEROMETER_ROTATION), false, this,
671 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500672 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700673 Settings.System.USER_ROTATION), false, this,
674 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400675 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700676 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
677 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800678 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700679 Settings.System.POINTER_LOCATION), false, this,
680 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800681 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700682 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
683 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500684 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400685 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700686 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500687 resolver.registerContentObserver(Settings.Global.getUriFor(
688 Settings.Global.POLICY_CONTROL), false, this,
689 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800690 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800691 }
692
693 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800694 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700695 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800696 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800697 }
Craig Mautner967212c2013-04-13 21:10:58 -0700698
Jeff Browna20dda42014-05-27 20:57:24 -0700699 class MyWakeGestureListener extends WakeGestureListener {
700 MyWakeGestureListener(Context context, Handler handler) {
701 super(context, handler);
702 }
703
704 @Override
705 public void onWakeUp() {
706 synchronized (mLock) {
707 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700708 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Bryce Lee584a4452014-10-21 15:55:55 -0700709 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture);
Jeff Browna20dda42014-05-27 20:57:24 -0700710 }
711 }
712 }
713 }
714
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800715 class MyOrientationListener extends WindowOrientationListener {
Craig Mautnereee29c42013-01-17 14:44:34 -0800716 MyOrientationListener(Context context, Handler handler) {
717 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800718 }
Craig Mautner967212c2013-04-13 21:10:58 -0700719
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800720 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700721 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700722 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700723 updateRotation(false);
724 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800725 }
726 MyOrientationListener mOrientationListener;
727
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100728 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400729
John Spurlock27735a42013-08-14 17:57:38 -0400730 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400731 View.NAVIGATION_BAR_TRANSIENT,
732 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400733 View.NAVIGATION_BAR_TRANSLUCENT,
734 StatusBarManager.WINDOW_NAVIGATION_BAR,
735 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400736
John Spurlockf1a36642013-10-12 17:50:42 -0400737 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400738
Craig Mautner037aa8d2013-06-07 10:35:44 -0700739 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400740
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700741 IStatusBarService getStatusBarService() {
742 synchronized (mServiceAquireLock) {
743 if (mStatusBarService == null) {
744 mStatusBarService = IStatusBarService.Stub.asInterface(
745 ServiceManager.getService("statusbar"));
746 }
747 return mStatusBarService;
748 }
749 }
750
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700751 /*
752 * We always let the sensor be switched on by default except when
753 * the user has explicitly disabled sensor based rotation or when the
754 * screen is switched off.
755 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700756 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800757 if (mSupportAutoRotation) {
758 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
759 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
760 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
761 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
762 // If the application has explicitly requested to follow the
763 // orientation, then we need to turn the sensor on.
764 return true;
765 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800766 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700767 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800768 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
769 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
770 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400771 // enable accelerometer if we are docked in a dock that enables accelerometer
772 // orientation management,
773 return true;
774 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700775 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800776 // If the setting for using the sensor by default is enabled, then
777 // we will always leave it on. Note that the user could go to
778 // a window that forces an orientation that does not use the
779 // sensor and in theory we could turn it off... however, when next
780 // turning it on we won't have a good value for the current
781 // orientation for a little bit, which can cause orientation
782 // changes to lag, so we'd like to keep it always on. (It will
783 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700784 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800785 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800786 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800787 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700788
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800789 /*
790 * Various use cases for invoking this function
791 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700792 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800793 * if not already enabled
794 * screen turned on and current app does not have sensor orientation, disable listeners if
795 * already enabled
796 * screen turning on and current app has sensor based orientation, enable listeners if needed
797 * screen turning on and current app has nosensor based orientation, do nothing
798 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700799 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800800 if (!mOrientationListener.canDetectOrientation()) {
801 // If sensor is turned off or nonexistent for some reason
802 return;
803 }
804 //Could have been invoked due to screen turning on or off or
805 //change of the currently visible window's orientation
Jeff Brown3ee549c2014-09-22 20:14:39 -0700806 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
807 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
808 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800809 boolean disable = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700810 if (mScreenOnEarly && mAwake) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700811 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800812 disable = false;
813 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700814 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800815 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700816 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800817 mOrientationSensorEnabled = true;
818 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700819 }
820 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800821 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700822 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800823 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700824 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800825 mOrientationSensorEnabled = false;
826 }
827 }
828
Jeff Brown13f00f02014-10-31 14:45:50 -0700829 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
830 // Hold a wake lock until the power key is released.
831 if (!mPowerKeyWakeLock.isHeld()) {
832 mPowerKeyWakeLock.acquire();
833 }
834
835 // Cancel multi-press detection timeout.
836 if (mPowerKeyPressCounter != 0) {
837 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
838 }
839
840 // Detect user pressing the power button in panic when an application has
841 // taken over the whole screen.
842 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800843 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700844 if (panic) {
845 mHandler.post(mRequestTransientNav);
846 }
847
848 // Latch power key state to detect screenshot chord.
849 if (interactive && !mScreenshotChordPowerKeyTriggered
850 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
851 mScreenshotChordPowerKeyTriggered = true;
852 mScreenshotChordPowerKeyTime = event.getDownTime();
853 interceptScreenshotChord();
854 }
855
856 // Stop ringing or end call if configured to do so when power is pressed.
857 TelecomManager telecomManager = getTelecommService();
858 boolean hungUp = false;
859 if (telecomManager != null) {
860 if (telecomManager.isRinging()) {
861 // Pressing Power while there's a ringing incoming
862 // call should silence the ringer.
863 telecomManager.silenceRinger();
864 } else if ((mIncallPowerBehavior
865 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
866 && telecomManager.isInCall() && interactive) {
867 // Otherwise, if "Power button ends call" is enabled,
868 // the Power button will hang up any current active call.
869 hungUp = telecomManager.endCall();
870 }
871 }
872
873 // If the power key has still not yet been handled, then detect short
874 // press, long press, or multi press and decide what to do.
875 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
876 || mScreenshotChordVolumeUpKeyTriggered;
877 if (!mPowerKeyHandled) {
878 if (interactive) {
879 // When interactive, we're already awake.
880 // Wait for a long press or for the button to be released to decide what to do.
881 if (hasLongPressOnPowerBehavior()) {
882 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
883 msg.setAsynchronous(true);
884 mHandler.sendMessageDelayed(msg,
885 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
886 }
887 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800888 wakeUpFromPowerKey(event.getDownTime());
Jeff Brown13f00f02014-10-31 14:45:50 -0700889 final int maxCount = getMaxMultiPressPowerCount();
Bryce Leed9268e32014-11-17 17:40:59 -0800890
Jeff Brown13f00f02014-10-31 14:45:50 -0700891 if (maxCount <= 1) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700892 mPowerKeyHandled = true;
Bryce Leed9268e32014-11-17 17:40:59 -0800893 } else {
894 mBeganFromNonInteractive = true;
Jeff Brown13f00f02014-10-31 14:45:50 -0700895 }
896 }
Jeff Brown4d396052010-10-29 21:50:21 -0700897 }
898 }
899
Jeff Brown13f00f02014-10-31 14:45:50 -0700900 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
901 final boolean handled = canceled || mPowerKeyHandled;
902 mScreenshotChordPowerKeyTriggered = false;
903 cancelPendingScreenshotChordAction();
904 cancelPendingPowerKeyAction();
905
906 if (!handled) {
907 // Figure out how to handle the key now that it has been released.
908 mPowerKeyPressCounter += 1;
909
910 final int maxCount = getMaxMultiPressPowerCount();
911 final long eventTime = event.getDownTime();
912 if (mPowerKeyPressCounter < maxCount) {
913 // This could be a multi-press. Wait a little bit longer to confirm.
914 // Continue holding the wake lock.
915 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
916 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
917 msg.setAsynchronous(true);
918 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
919 return;
920 }
921
922 // No other actions. Handle it immediately.
923 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700924 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700925
926 // Done. Reset our state.
927 finishPowerKeyPress();
928 }
929
930 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -0800931 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -0700932 mPowerKeyPressCounter = 0;
933 if (mPowerKeyWakeLock.isHeld()) {
934 mPowerKeyWakeLock.release();
935 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700936 }
937
938 private void cancelPendingPowerKeyAction() {
939 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700940 mPowerKeyHandled = true;
941 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700942 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700943 }
944
945 private void powerPress(long eventTime, boolean interactive, int count) {
946 if (mScreenOnEarly && !mScreenOnFully) {
947 Slog.i(TAG, "Suppressed redundant power key press while "
948 + "already in the process of turning the screen on.");
949 return;
Jeff Brownff204712011-10-25 21:27:54 -0700950 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700951
952 if (count == 2) {
953 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
954 } else if (count == 3) {
955 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -0800956 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700957 switch (mShortPressOnPowerBehavior) {
958 case SHORT_PRESS_POWER_NOTHING:
959 break;
960 case SHORT_PRESS_POWER_GO_TO_SLEEP:
961 mPowerManager.goToSleep(eventTime,
962 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
963 break;
964 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
965 mPowerManager.goToSleep(eventTime,
966 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
967 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
968 break;
969 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
970 mPowerManager.goToSleep(eventTime,
971 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
972 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
973 launchHomeFromHotKey();
974 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800975 case SHORT_PRESS_POWER_GO_HOME:
976 launchHomeFromHotKey();
977 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700978 }
979 }
980 }
981
982 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
983 switch (behavior) {
984 case MULTI_PRESS_POWER_NOTHING:
985 break;
986 case MULTI_PRESS_POWER_THEATER_MODE:
987 if (isTheaterModeEnabled()) {
988 Slog.i(TAG, "Toggling theater mode off.");
989 Settings.Global.putInt(mContext.getContentResolver(),
990 Settings.Global.THEATER_MODE_ON, 0);
991 if (!interactive) {
992 wakeUpFromPowerKey(eventTime);
993 }
994 } else {
995 Slog.i(TAG, "Toggling theater mode on.");
996 Settings.Global.putInt(mContext.getContentResolver(),
997 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -0800998
999 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001000 mPowerManager.goToSleep(eventTime,
1001 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1002 }
1003 }
1004 break;
1005 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001006 Slog.i(TAG, "Starting brightness boost.");
1007 if (!interactive) {
1008 wakeUpFromPowerKey(eventTime);
1009 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001010 mPowerManager.boostScreenBrightness(eventTime);
1011 break;
1012 }
1013 }
1014
1015 private int getMaxMultiPressPowerCount() {
1016 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1017 return 3;
1018 }
1019 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1020 return 2;
1021 }
1022 return 1;
1023 }
1024
1025 private void powerLongPress() {
1026 final int behavior = getResolvedLongPressOnPowerBehavior();
1027 switch (behavior) {
1028 case LONG_PRESS_POWER_NOTHING:
1029 break;
1030 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1031 mPowerKeyHandled = true;
1032 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1033 performAuditoryFeedbackForAccessibilityIfNeed();
1034 }
1035 showGlobalActionsInternal();
1036 break;
1037 case LONG_PRESS_POWER_SHUT_OFF:
1038 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1039 mPowerKeyHandled = true;
1040 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1041 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1042 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1043 break;
1044 }
1045 }
1046
1047 private int getResolvedLongPressOnPowerBehavior() {
1048 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1049 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1050 }
1051 return mLongPressOnPowerBehavior;
1052 }
1053
1054 private boolean hasLongPressOnPowerBehavior() {
1055 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001056 }
1057
1058 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001059 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001060 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1061 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001062 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001063 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1064 && now <= mScreenshotChordPowerKeyTime
1065 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1066 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001067 cancelPendingPowerKeyAction();
1068
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001069 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001070 }
1071 }
1072 }
1073
Winson Chung1cea2f32012-10-08 20:42:01 -07001074 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001075 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001076 // Double the time it takes to take a screenshot from the keyguard
1077 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001078 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001079 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001080 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001081 }
1082
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001083 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001084 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001085 }
1086
Jeff Brown13f00f02014-10-31 14:45:50 -07001087 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001088 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001089 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001090 mEndCallKeyHandled = true;
1091 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1092 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001093 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001094 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001095 }
1096 };
1097
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001098 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001099 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001100 public void run() {
1101 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001102 }
1103 };
1104
Alan Viverettee34560b22014-07-10 14:50:06 -07001105 @Override
1106 public void showGlobalActions() {
1107 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1108 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1109 }
1110
1111 void showGlobalActionsInternal() {
1112 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001113 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001114 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001115 }
Jim Millerab954542014-10-10 18:21:49 -07001116 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001117 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1118 if (keyguardShowing) {
1119 // since it took two seconds of long press to bring this up,
1120 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001121 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001122 }
1123 }
1124
1125 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001126 return Settings.Global.getInt(
1127 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001128 }
1129
Maurice Lam99c6e072014-04-28 18:24:28 -07001130 boolean isUserSetupComplete() {
1131 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1132 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1133 }
1134
Jeff Brown13f00f02014-10-31 14:45:50 -07001135 private void handleShortPressOnHome() {
1136 // If there's a dream running then use home to escape the dream
1137 // but don't actually go home.
1138 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1139 mDreamManagerInternal.stopDream(false /*immediate*/);
1140 return;
1141 }
1142
1143 // Go home!
1144 launchHomeFromHotKey();
1145 }
1146
Patrick Dubroyece94522011-02-23 18:35:01 -08001147 private void handleLongPressOnHome() {
Joe Onorato46b0d682010-11-22 17:37:27 -08001148 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001149 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001150 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001151
Jeff Browncaca8812013-05-09 13:34:33 -07001152 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1153 toggleRecentApps();
1154 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
1155 launchAssistAction();
Jim Millere6ad1a82010-08-20 19:25:39 -07001156 }
1157 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001158 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001159
Jeff Browncaca8812013-05-09 13:34:33 -07001160 private void handleDoubleTapOnHome() {
1161 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1162 mHomeConsumed = true;
1163 toggleRecentApps();
1164 }
1165 }
1166
1167 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1168 @Override
1169 public void run() {
1170 if (mHomeDoubleTapPending) {
1171 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001172 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001173 }
1174 }
1175 };
1176
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001177 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001178 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001179 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001180 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001181 mContext = context;
1182 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001183 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001184 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001185 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001186 if (context.getResources().getBoolean(
1187 com.android.internal.R.bool.config_enableBurnInProtection)){
1188 mBurnInProtectionHelper = new BurnInProtectionHelper(context);
1189 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001190
Jeff Brown70825162012-03-28 17:27:48 -07001191 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001192 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001193 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001194 try {
1195 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1196 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001197 mSettingsObserver = new SettingsObserver(mHandler);
1198 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001199 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001200 mUiMode = context.getResources().getInteger(
1201 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001202 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1203 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1204 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1205 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001206 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1207 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1208 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1209 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1210 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1211 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1212 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1213 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001214
Jeff Brown96307042012-07-27 15:51:34 -07001215 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1216 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001217 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001218 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1219 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001220 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001221 mSupportAutoRotation = mContext.getResources().getBoolean(
1222 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001223 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001224 com.android.internal.R.integer.config_lidOpenRotation);
1225 mCarDockRotation = readRotation(
1226 com.android.internal.R.integer.config_carDockRotation);
1227 mDeskDockRotation = readRotation(
1228 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001229 mUndockedHdmiRotation = readRotation(
1230 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001231 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1232 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1233 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1234 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001235 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1236 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1237 mLidNavigationAccessibility = mContext.getResources().getInteger(
1238 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001239 mLidControlsSleep = mContext.getResources().getBoolean(
1240 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001241 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1242 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001243
1244 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1245 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1246 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1247 || mContext.getResources().getBoolean(
1248 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1249 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1250 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001251 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1252 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001253 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1254 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1255 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1256 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1257 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1258 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1259
Bryce Lee55e846d2014-11-04 12:43:44 -08001260 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1261 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1262
Jeff Brown13f00f02014-10-31 14:45:50 -07001263 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1264 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1265 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1266 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1267 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1268 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1269 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1270 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
1271
John Spurlock61560172015-02-06 19:46:04 -05001272 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001273 mUseMasterVolume = mContext.getResources().getBoolean(
1274 com.android.internal.R.bool.config_useMasterVolume);
1275
Jeff Brownf71343d2013-05-31 17:59:11 -07001276 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001277
Svetoslav8e3feb12014-02-24 13:46:47 -08001278 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1279 Context.ACCESSIBILITY_SERVICE);
1280
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001281 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001282 IntentFilter filter = new IntentFilter();
1283 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1284 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1285 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1286 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001287 filter.addAction(Intent.ACTION_DOCK_EVENT);
1288 Intent intent = context.registerReceiver(mDockReceiver, filter);
1289 if (intent != null) {
1290 // Retrieve current sticky dock event broadcast.
1291 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1292 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1293 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001294
Jeff Brown6aaf2952012-10-05 16:01:08 -07001295 // register for dream-related broadcasts
1296 filter = new IntentFilter();
1297 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1298 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1299 context.registerReceiver(mDreamReceiver, filter);
1300
Christopher Tate5e08af02012-09-21 17:17:22 -07001301 // register for multiuser-relevant broadcasts
1302 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1303 context.registerReceiver(mMultiuserReceiver, filter);
1304
John Spurlock57306e62013-04-22 09:48:49 -04001305 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001306 mSystemGestures = new SystemGesturesPointerEventListener(context,
1307 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001308 @Override
1309 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001310 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001311 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001312 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001313 }
1314 @Override
1315 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001316 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001317 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001318 }
1319 }
1320 @Override
1321 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001322 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001323 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001324 }
1325 }
1326 @Override
1327 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001328 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001329 }
Adrian Roos3595be42015-03-05 16:31:15 +01001330 @Override
1331 public void onDown() {
1332 mOrientationListener.onTouchStart();
1333 }
1334 @Override
1335 public void onUpOrCancel() {
1336 mOrientationListener.onTouchEnd();
1337 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001338 });
John Spurlockf1a36642013-10-12 17:50:42 -04001339 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001340 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001341
Jeff Brownc2346132012-04-13 01:55:38 -07001342 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001343 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1344 com.android.internal.R.array.config_longPressVibePattern);
1345 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1346 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001347 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1348 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001349 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1350 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001351 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1352 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001353 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1354 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1355 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1356 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001357
Christopher Tatee90585f2012-03-05 18:56:25 -08001358 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1359 com.android.internal.R.bool.config_enableScreenshotChord);
1360
Justin Kohd378ad72013-04-01 12:18:26 -07001361 mGlobalKeyManager = new GlobalKeyManager(mContext);
1362
Joe Onoratoea495d42011-04-06 11:41:11 -07001363 // Controls rotation and the like.
1364 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001365
1366 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001367 if (!mPowerManager.isInteractive()) {
Jeff Brown140ffc72014-05-01 15:18:00 -07001368 goingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001369 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001370
1371 mWindowManagerInternal.registerAppTransitionListener(
1372 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001373 }
1374
Jeff Brownf71343d2013-05-31 17:59:11 -07001375 /**
1376 * Read values from config.xml that may be overridden depending on
1377 * the configuration of the device.
1378 * eg. Disable long press on home goes to recents on sw600dp.
1379 */
1380 private void readConfigurationDependentBehaviors() {
1381 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1382 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1383 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1384 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1385 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1386 }
1387
1388 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1389 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1390 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1391 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1392 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1393 }
1394 }
1395
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001396 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001397 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001398 // This method might be called before the policy has been fully initialized
1399 // or for other displays we don't care about.
1400 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1401 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001402 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001403 mDisplay = display;
1404
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001405 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001406 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001407 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001408 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001409 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001410 mLandscapeRotation = Surface.ROTATION_0;
1411 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001412 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001413 mPortraitRotation = Surface.ROTATION_90;
1414 mUpsideDownRotation = Surface.ROTATION_270;
1415 } else {
1416 mPortraitRotation = Surface.ROTATION_270;
1417 mUpsideDownRotation = Surface.ROTATION_90;
1418 }
1419 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001420 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001421 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001422 mPortraitRotation = Surface.ROTATION_0;
1423 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001424 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001425 mLandscapeRotation = Surface.ROTATION_270;
1426 mSeascapeRotation = Surface.ROTATION_90;
1427 } else {
1428 mLandscapeRotation = Surface.ROTATION_90;
1429 mSeascapeRotation = Surface.ROTATION_270;
1430 }
1431 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001432
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001433 mStatusBarHeight =
1434 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001435
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001436 // Height of the navigation bar when presented horizontally at bottom
1437 mNavigationBarHeightForRotation[mPortraitRotation] =
1438 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001439 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001440 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001441 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1442 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001443
1444 // Width of the navigation bar when presented vertically along one side
1445 mNavigationBarWidthForRotation[mPortraitRotation] =
1446 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1447 mNavigationBarWidthForRotation[mLandscapeRotation] =
1448 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001449 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001450
1451 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001452 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001453 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001454
Devin Kimd7b12b42014-05-05 14:34:58 -07001455 // Allow the navigation bar to move on non-square small devices (phones).
1456 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001457
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001458 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001459 // Allow a system property to override this. Used by the emulator.
1460 // See also hasNavigationBar().
1461 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1462 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001463 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001464 } else if ("0".equals(navBarOverride)) {
1465 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001466 }
1467
Jeff Brown27f1d672012-10-17 18:32:34 -07001468 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1469 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001470 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001471 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001472 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001473 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001474 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001475 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001476
Chong Zhangae6119ff2014-11-11 18:54:39 -08001477 // For demo purposes, allow the rotation of the remote display to be controlled.
1478 // By default, remote display locks rotation to landscape.
1479 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1480 mDemoRotation = mPortraitRotation;
1481 } else {
1482 mDemoRotation = mLandscapeRotation;
1483 }
1484 mDemoRotationLock = SystemProperties.getBoolean(
1485 "persist.demo.rotationlock", false);
1486
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001487 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1488 // http://developer.android.com/guide/practices/screens_support.html#range
1489 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1490 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1491 // For debug purposes the next line turns this feature off with:
1492 // $ adb shell setprop config.override_forced_orient true
1493 // $ adb shell wm size reset
1494 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1495 }
1496
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001497 /**
1498 * @return whether the navigation bar can be hidden, e.g. the device has a
1499 * navigation bar and touch exploration is not enabled
1500 */
1501 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001502 return mHasNavigationBar
1503 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001504 }
1505
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001506 @Override
1507 public boolean isDefaultOrientationForced() {
1508 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001509 }
1510
Dianne Hackbornc652de82013-02-15 16:32:56 -08001511 @Override
1512 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1513 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1514 mOverscanLeft = left;
1515 mOverscanTop = top;
1516 mOverscanRight = right;
1517 mOverscanBottom = bottom;
1518 }
1519 }
1520
Dianne Hackbornc777e072010-02-12 13:07:59 -08001521 public void updateSettings() {
1522 ContentResolver resolver = mContext.getContentResolver();
1523 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001524 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001525 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001526 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001527 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1528 UserHandle.USER_CURRENT);
1529 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001530 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001531 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1532 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001533
Jeff Browna20dda42014-05-27 20:57:24 -07001534 // Configure wake gesture.
1535 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1536 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1537 UserHandle.USER_CURRENT) != 0;
1538 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1539 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1540 updateWakeGestureListenerLp();
1541 }
1542
Jeff Brown207673cd2012-06-05 17:47:11 -07001543 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001544 int userRotation = Settings.System.getIntForUser(resolver,
1545 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1546 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001547 if (mUserRotation != userRotation) {
1548 mUserRotation = userRotation;
1549 updateRotation = true;
1550 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001551 int userRotationMode = Settings.System.getIntForUser(resolver,
1552 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001553 WindowManagerPolicy.USER_ROTATION_FREE :
1554 WindowManagerPolicy.USER_ROTATION_LOCKED;
1555 if (mUserRotationMode != userRotationMode) {
1556 mUserRotationMode = userRotationMode;
1557 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001558 updateOrientationListenerLp();
1559 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001560
Dianne Hackbornc777e072010-02-12 13:07:59 -08001561 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001562 int pointerLocation = Settings.System.getIntForUser(resolver,
1563 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001564 if (mPointerLocationMode != pointerLocation) {
1565 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001566 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1567 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001568 }
1569 }
1570 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001571 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1572 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1573 String imId = Settings.Secure.getStringForUser(resolver,
1574 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001575 boolean hasSoftInput = imId != null && imId.length() > 0;
1576 if (mHasSoftInput != hasSoftInput) {
1577 mHasSoftInput = hasSoftInput;
1578 updateRotation = true;
1579 }
John Spurlockf1a36642013-10-12 17:50:42 -04001580 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001581 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001582 }
John Spurlockc6d1c602014-01-17 15:22:06 -05001583 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001584 }
1585 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001586 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001587 }
Jeff Brown70825162012-03-28 17:27:48 -07001588 }
1589
Jeff Browna20dda42014-05-27 20:57:24 -07001590 private void updateWakeGestureListenerLp() {
1591 if (shouldEnableWakeGestureLp()) {
1592 mWakeGestureListener.requestWakeUpTrigger();
1593 } else {
1594 mWakeGestureListener.cancelWakeUpTrigger();
1595 }
1596 }
1597
1598 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001599 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001600 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1601 && mWakeGestureListener.isSupported();
1602 }
1603
Jeff Brown70825162012-03-28 17:27:48 -07001604 private void enablePointerLocation() {
1605 if (mPointerLocationView == null) {
1606 mPointerLocationView = new PointerLocationView(mContext);
1607 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001608 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1609 WindowManager.LayoutParams.MATCH_PARENT,
1610 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001611 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001612 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1613 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1614 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1615 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001616 if (ActivityManager.isHighEndGfx()) {
1617 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1618 lp.privateFlags |=
1619 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1620 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001621 lp.format = PixelFormat.TRANSLUCENT;
1622 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001623 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001624 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001625 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001626 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001627 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001628 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001629 }
Jeff Brown70825162012-03-28 17:27:48 -07001630
1631 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001632 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001633 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1634 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001635 wm.removeView(mPointerLocationView);
1636 mPointerLocationView = null;
1637 }
1638 }
1639
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001640 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001641 try {
1642 int rotation = mContext.getResources().getInteger(resID);
1643 switch (rotation) {
1644 case 0:
1645 return Surface.ROTATION_0;
1646 case 90:
1647 return Surface.ROTATION_90;
1648 case 180:
1649 return Surface.ROTATION_180;
1650 case 270:
1651 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001652 }
1653 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001654 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001655 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001656 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001657 }
1658
1659 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001660 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001661 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001662 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001663
1664 outAppOp[0] = AppOpsManager.OP_NONE;
1665
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001666 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1667 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1668 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1669 return WindowManagerGlobal.ADD_INVALID_TYPE;
1670 }
1671
1672 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1673 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001674 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001675 }
1676 String permission = null;
1677 switch (type) {
1678 case TYPE_TOAST:
1679 // XXX right now the app process has complete control over
1680 // this... should introduce a token to let the system
1681 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001682 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001683 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001684 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001685 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001686 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001687 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001688 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001689 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001690 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001691 break;
1692 case TYPE_PHONE:
1693 case TYPE_PRIORITY_PHONE:
1694 case TYPE_SYSTEM_ALERT:
1695 case TYPE_SYSTEM_ERROR:
1696 case TYPE_SYSTEM_OVERLAY:
1697 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001698 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001699 break;
1700 default:
1701 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1702 }
1703 if (permission != null) {
1704 if (mContext.checkCallingOrSelfPermission(permission)
1705 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001706 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001707 }
1708 }
Jeff Brown98365d72012-08-19 20:30:52 -07001709 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001710 }
Craig Mautner88400d32012-09-30 12:35:45 -07001711
1712 @Override
1713 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1714
1715 // If this switch statement is modified, modify the comment in the declarations of
1716 // the type in {@link WindowManager.LayoutParams} as well.
1717 switch (attrs.type) {
1718 default:
1719 // These are the windows that by default are shown only to the user that created
1720 // them. If this needs to be overridden, set
1721 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1722 // {@link WindowManager.LayoutParams}. Note that permission
1723 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1724 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1725 return true;
1726 }
1727 break;
1728
1729 // These are the windows that by default are shown to all users. However, to
1730 // protect against spoofing, check permissions below.
1731 case TYPE_APPLICATION_STARTING:
1732 case TYPE_BOOT_PROGRESS:
1733 case TYPE_DISPLAY_OVERLAY:
1734 case TYPE_HIDDEN_NAV_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001735 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001736 case TYPE_KEYGUARD_DIALOG:
1737 case TYPE_MAGNIFICATION_OVERLAY:
1738 case TYPE_NAVIGATION_BAR:
1739 case TYPE_NAVIGATION_BAR_PANEL:
1740 case TYPE_PHONE:
1741 case TYPE_POINTER:
1742 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001743 case TYPE_SEARCH_BAR:
1744 case TYPE_STATUS_BAR:
1745 case TYPE_STATUS_BAR_PANEL:
1746 case TYPE_STATUS_BAR_SUB_PANEL:
1747 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001748 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001749 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001750 break;
1751 }
1752
1753 // Check if third party app has set window to system window type.
1754 return mContext.checkCallingOrSelfPermission(
1755 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1756 != PackageManager.PERMISSION_GRANTED;
1757 }
1758
Craig Mautner967212c2013-04-13 21:10:58 -07001759 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001760 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1761 switch (attrs.type) {
1762 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001763 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001764 // These types of windows can't receive input events.
1765 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1766 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001767 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001768 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001769 case TYPE_STATUS_BAR:
1770
1771 // If the Keyguard is in a hidden state (occluded by another window), we force to
1772 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1773 // the keyguard as occluded wouldn't set these flags again.
1774 // See {@link #processKeyguardSetHiddenResultLw}.
1775 if (mKeyguardHidden) {
1776 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1777 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1778 }
1779 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001780 }
Adrian Roos38502112014-04-09 21:04:11 +02001781
1782 if (attrs.type != TYPE_STATUS_BAR) {
1783 // The status bar is the only window allowed to exhibit keyguard behavior.
1784 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1785 }
Adrian Roosea562512014-05-05 13:33:03 +02001786
1787 if (ActivityManager.isHighEndGfx()
1788 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02001789 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02001790 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1791 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001792 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001793
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001794 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07001795 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001796 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001797
Michael Wright3818c922014-09-02 13:59:07 -07001798 private void readCameraLensCoverState() {
1799 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
1800 }
1801
Jeff Browndaa37532012-05-01 15:54:03 -07001802 private boolean isHidden(int accessibilityMode) {
1803 switch (accessibilityMode) {
1804 case 1:
1805 return mLidState == LID_CLOSED;
1806 case 2:
1807 return mLidState == LID_OPEN;
1808 default:
1809 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001810 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001811 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001812
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001813 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001814 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07001815 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
1816 int navigationPresence) {
1817 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
1818
Jeff Brownf71343d2013-05-31 17:59:11 -07001819 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001820 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07001821 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08001822
Jeff Browndaa37532012-05-01 15:54:03 -07001823 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
1824 || (keyboardPresence == PRESENCE_INTERNAL
1825 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001826 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07001827 if (!mHasSoftInput) {
1828 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
1829 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001830 }
1831
Jeff Browndaa37532012-05-01 15:54:03 -07001832 if (config.navigation == Configuration.NAVIGATION_NONAV
1833 || (navigationPresence == PRESENCE_INTERNAL
1834 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001835 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08001836 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001837 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001838
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001839 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001840 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001841 public int windowTypeToLayerLw(int type) {
1842 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001843 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001844 }
1845 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07001846 case TYPE_PRIVATE_PRESENTATION:
1847 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001848 case TYPE_WALLPAPER:
1849 // wallpaper is at the bottom, though the window manager may move it.
1850 return 2;
1851 case TYPE_PHONE:
1852 return 3;
1853 case TYPE_SEARCH_BAR:
1854 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001855 case TYPE_VOICE_INTERACTION:
1856 // voice interaction layer is almost immediately above apps.
1857 return 5;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001858 case TYPE_SYSTEM_DIALOG:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001859 return 6;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001860 case TYPE_TOAST:
1861 // toasts and the plugged-in battery thing
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001862 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001863 case TYPE_PRIORITY_PHONE:
1864 // SIM errors and unlock. Not sure if this really should be in a high layer.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001865 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001866 case TYPE_DREAM:
1867 // used for Dreams (screensavers with TYPE_DREAM windows)
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001868 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001869 case TYPE_SYSTEM_ALERT:
1870 // like the ANR / app crashed dialogs
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001871 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001872 case TYPE_INPUT_METHOD:
1873 // on-screen keyboards and other such input method user interfaces go here.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001874 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001875 case TYPE_INPUT_METHOD_DIALOG:
1876 // on-screen keyboards and other such input method user interfaces go here.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001877 return 12;
Jim Miller5ecd8112013-01-09 18:50:26 -08001878 case TYPE_KEYGUARD_SCRIM:
1879 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001880 return 13;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001881 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001882 return 14;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001883 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001884 return 15;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001885 case TYPE_STATUS_BAR_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001886 return 16;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001887 case TYPE_KEYGUARD_DIALOG:
1888 return 17;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001889 case TYPE_VOLUME_OVERLAY:
1890 // the on-screen volume indicator and controller shown when the user
1891 // changes the device volume
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001892 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001893 case TYPE_SYSTEM_OVERLAY:
1894 // the on-screen volume indicator and controller shown when the user
1895 // changes the device volume
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001896 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001897 case TYPE_NAVIGATION_BAR:
1898 // the navigation bar, if available, shows atop most things
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001899 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001900 case TYPE_NAVIGATION_BAR_PANEL:
1901 // some panels (e.g. search) need to show on top of the navigation bar
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001902 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001903 case TYPE_SYSTEM_ERROR:
1904 // system-level error dialogs
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001905 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001906 case TYPE_MAGNIFICATION_OVERLAY:
1907 // used to highlight the magnified portion of a display
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001908 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001909 case TYPE_DISPLAY_OVERLAY:
1910 // used to simulate secondary display devices
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001911 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001912 case TYPE_DRAG:
1913 // the drag layer: input for drag-and-drop is associated with this window,
1914 // which sits above all other focusable windows
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001915 return 25;
Svetoslav3a5c7212014-10-14 09:54:26 -07001916 case TYPE_ACCESSIBILITY_OVERLAY:
1917 // overlay put by accessibility services to intercept user interaction
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001918 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07001919 case TYPE_SECURE_SYSTEM_OVERLAY:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001920 return 27;
Svetoslav3a5c7212014-10-14 09:54:26 -07001921 case TYPE_BOOT_PROGRESS:
1922 return 28;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001923 case TYPE_POINTER:
1924 // the (mouse) pointer layer
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001925 return 29;
Svetoslav3a5c7212014-10-14 09:54:26 -07001926 case TYPE_HIDDEN_NAV_CONSUMER:
1927 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001928 }
1929 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001930 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001931 }
1932
1933 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001934 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001935 public int subWindowTypeToLayerLw(int type) {
1936 switch (type) {
1937 case TYPE_APPLICATION_PANEL:
1938 case TYPE_APPLICATION_ATTACHED_DIALOG:
1939 return APPLICATION_PANEL_SUBLAYER;
1940 case TYPE_APPLICATION_MEDIA:
1941 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07001942 case TYPE_APPLICATION_MEDIA_OVERLAY:
1943 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001944 case TYPE_APPLICATION_SUB_PANEL:
1945 return APPLICATION_SUB_PANEL_SUBLAYER;
1946 }
1947 Log.e(TAG, "Unknown sub-window type: " + type);
1948 return 0;
1949 }
1950
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001951 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07001952 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001953 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07001954 }
1955
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001956 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001957 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07001958 if (mHasNavigationBar) {
1959 // For a basic navigation bar, when we are in landscape mode we place
1960 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04001961 if (mNavigationBarCanMove && fullWidth > fullHeight) {
1962 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07001963 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001964 }
1965 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001966 }
1967
Jose Lima9546b202014-07-02 17:21:51 -07001968 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001969 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07001970 if (mHasNavigationBar) {
1971 // For a basic navigation bar, when we are in portrait mode we place
1972 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04001973 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
1974 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07001975 }
1976 }
1977 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07001978 }
1979
Jose Lima9546b202014-07-02 17:21:51 -07001980 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001981 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
1982 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07001983 }
1984
Jose Lima9546b202014-07-02 17:21:51 -07001985 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07001986 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04001987 // There is a separate status bar at the top of the display. We don't count that as part
1988 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07001989 // we do want to exclude it since applications can't generally use that part
1990 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04001991 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001992 }
1993
Craig Mautnera3f4bf52012-10-10 20:37:48 -07001994 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07001995 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
1996 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07001997 (isKeyguardHostWindow(attrs) &&
1998 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02001999 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002000 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002001
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002002 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002003 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2004 return attrs.type == TYPE_STATUS_BAR;
2005 }
2006
2007 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002008 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002009 switch (attrs.type) {
2010 case TYPE_STATUS_BAR:
2011 case TYPE_NAVIGATION_BAR:
2012 case TYPE_WALLPAPER:
2013 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002014 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002015 return false;
2016 default:
2017 return true;
2018 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002019 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002020
Craig Mautner7d7808f2014-09-11 18:02:38 -07002021 @Override
2022 public WindowState getWinShowWhenLockedLw() {
2023 return mWinShowWhenLocked;
2024 }
2025
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002026 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002027 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002028 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2029 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002030 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002031 if (!SHOW_STARTING_ANIMATIONS) {
2032 return null;
2033 }
2034 if (packageName == null) {
2035 return null;
2036 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002037
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002038 WindowManager wm = null;
2039 View view = null;
2040
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002041 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002042 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002043 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2044 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2045 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002046 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002047 try {
2048 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002049 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002050 } catch (PackageManager.NameNotFoundException e) {
2051 // Ignore
2052 }
2053 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002054
Jorim Jaggib10e33f2015-02-04 21:57:40 +01002055 Window win = new PhoneWindow(context);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002056 final TypedArray ta = win.getWindowStyle();
2057 if (ta.getBoolean(
2058 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2059 || ta.getBoolean(
2060 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002061 return null;
2062 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002063
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002064 Resources r = context.getResources();
2065 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002066
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002067 win.setType(
2068 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
2069 // Force the window flags: this is a fake window, so it is not really
2070 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2071 // flag because we do know that the next window will take input
2072 // focus, so we want to get the IME window up on top of us right away.
2073 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002074 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002075 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2076 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2077 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002078 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002079 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2080 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2081 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002082
Adam Powell04fe6eb2013-05-31 14:39:48 -07002083 win.setDefaultIcon(icon);
2084 win.setDefaultLogo(logo);
2085
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002086 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002087 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002088
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002089 final WindowManager.LayoutParams params = win.getAttributes();
2090 params.token = appToken;
2091 params.packageName = packageName;
2092 params.windowAnimations = win.getWindowStyle().getResourceId(
2093 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002094 params.privateFlags |=
2095 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002096 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002097
2098 if (!compatInfo.supportsScreen()) {
2099 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2100 }
2101
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002102 params.setTitle("Starting " + packageName);
2103
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002104 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2105 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002106
2107 if (win.isFloating()) {
2108 // Whoops, there is no way to display an animation/preview
2109 // of such a thing! After all that work... let's skip it.
2110 // (Note that we must do this here because it is in
2111 // getDecorView() where the theme is evaluated... maybe
2112 // we should peek the floating attribute from the theme
2113 // earlier.)
2114 return null;
2115 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002116
Craig Mautner6fbda632012-07-03 09:26:39 -07002117 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002118 TAG, "Adding starting window for " + packageName
2119 + " / " + appToken + ": "
2120 + (view.getParent() != null ? view : null));
2121
2122 wm.addView(view, params);
2123
2124 // Only return the view if it was successfully added to the
2125 // window manager... which we can tell by it having a parent.
2126 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002127 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002128 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002129 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2130 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002131 } catch (RuntimeException e) {
2132 // don't crash if something else bad happens, for example a
2133 // failure loading resources because we are loading from an app
2134 // on external storage that has been unmounted.
2135 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002136 } finally {
2137 if (view != null && view.getParent() == null) {
2138 Log.w(TAG, "view not successfully added to wm, removing view");
2139 wm.removeViewImmediate(view);
2140 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002141 }
2142
2143 return null;
2144 }
2145
2146 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002147 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002148 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002149 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2150 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002151
2152 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002153 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002154 wm.removeView(window);
2155 }
2156 }
2157
2158 /**
2159 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002160 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002161 * Currently enforces that three window types are singletons:
2162 * <ul>
2163 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002164 * <li>KEYGUARD_TYPE</li>
2165 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002166 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002167 * @param win The window to be added
2168 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002169 *
Jeff Brown98365d72012-08-19 20:30:52 -07002170 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2171 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002172 */
Jose Lima9546b202014-07-02 17:21:51 -07002173 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002174 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2175 switch (attrs.type) {
2176 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002177 mContext.enforceCallingOrSelfPermission(
2178 android.Manifest.permission.STATUS_BAR_SERVICE,
2179 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002180 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002181 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002182 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002183 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002184 }
2185 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002186 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002187 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002188 case TYPE_NAVIGATION_BAR:
2189 mContext.enforceCallingOrSelfPermission(
2190 android.Manifest.permission.STATUS_BAR_SERVICE,
2191 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002192 if (mNavigationBar != null) {
2193 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002194 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002195 }
2196 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002197 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002198 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002199 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002200 break;
Jim Millere898ac52012-04-06 17:10:57 -07002201 case TYPE_NAVIGATION_BAR_PANEL:
2202 mContext.enforceCallingOrSelfPermission(
2203 android.Manifest.permission.STATUS_BAR_SERVICE,
2204 "PhoneWindowManager");
2205 break;
Dianne Hackborn08743722009-12-21 12:16:51 -08002206 case TYPE_STATUS_BAR_PANEL:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002207 mContext.enforceCallingOrSelfPermission(
2208 android.Manifest.permission.STATUS_BAR_SERVICE,
2209 "PhoneWindowManager");
Dianne Hackborn08743722009-12-21 12:16:51 -08002210 break;
Joe Onorato29fc2c92010-11-24 10:26:50 -08002211 case TYPE_STATUS_BAR_SUB_PANEL:
2212 mContext.enforceCallingOrSelfPermission(
2213 android.Manifest.permission.STATUS_BAR_SERVICE,
2214 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002215 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002216 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002217 if (mKeyguardScrim != null) {
2218 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2219 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002220 mKeyguardScrim = win;
2221 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002222 }
Jeff Brown98365d72012-08-19 20:30:52 -07002223 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002224 }
2225
2226 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002227 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002228 public void removeWindowLw(WindowState win) {
2229 if (mStatusBar == win) {
2230 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002231 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002232 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002233 } else if (mKeyguardScrim == win) {
2234 Log.v(TAG, "Removing keyguard scrim");
2235 mKeyguardScrim = null;
2236 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002237 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002238 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002239 }
2240 }
2241
2242 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002243
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002244 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002245 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002246 public int selectAnimationLw(WindowState win, int transit) {
2247 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2248 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002249 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002250 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002251 if (transit == TRANSIT_EXIT
2252 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002253 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002254 } else if (transit == TRANSIT_ENTER
2255 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002256 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002257 }
2258 } else if (win == mNavigationBar) {
2259 // This can be on either the bottom or the right.
2260 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002261 if (transit == TRANSIT_EXIT
2262 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002263 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002264 } else if (transit == TRANSIT_ENTER
2265 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002266 return R.anim.dock_bottom_enter;
2267 }
2268 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002269 if (transit == TRANSIT_EXIT
2270 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002271 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002272 } else if (transit == TRANSIT_ENTER
2273 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002274 return R.anim.dock_right_enter;
2275 }
2276 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002277 }
2278
2279 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002280 if (win.hasAppShownWindows()) {
2281 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2282 return com.android.internal.R.anim.app_starting_exit;
2283 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002284 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002285 && transit == TRANSIT_ENTER) {
2286 // Special case: we are animating in a dream, while the keyguard
2287 // is shown. We don't want an animation on the dream, because
2288 // we need it shown immediately with the keyguard animating away
2289 // to reveal it.
2290 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002291 }
2292
2293 return 0;
2294 }
2295
Craig Mautner3c174372013-02-21 17:54:37 -08002296 @Override
2297 public void selectRotationAnimationLw(int anim[]) {
2298 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2299 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2300 + (mTopFullscreenOpaqueWindowState == null ?
2301 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2302 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2303 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2304 case ROTATION_ANIMATION_CROSSFADE:
2305 anim[0] = R.anim.rotation_animation_xfade_exit;
2306 anim[1] = R.anim.rotation_animation_enter;
2307 break;
2308 case ROTATION_ANIMATION_JUMPCUT:
2309 anim[0] = R.anim.rotation_animation_jump_exit;
2310 anim[1] = R.anim.rotation_animation_enter;
2311 break;
2312 case ROTATION_ANIMATION_ROTATE:
2313 default:
2314 anim[0] = anim[1] = 0;
2315 break;
2316 }
2317 } else {
2318 anim[0] = anim[1] = 0;
2319 }
2320 }
2321
2322 @Override
2323 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2324 boolean forceDefault) {
2325 switch (exitAnimId) {
2326 case R.anim.rotation_animation_xfade_exit:
2327 case R.anim.rotation_animation_jump_exit:
2328 // These are the only cases that matter.
2329 if (forceDefault) {
2330 return false;
2331 }
2332 int anim[] = new int[2];
2333 selectRotationAnimationLw(anim);
2334 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2335 default:
2336 return true;
2337 }
2338 }
2339
2340 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002341 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2342 boolean goingToNotificationShade) {
2343 if (goingToNotificationShade) {
2344 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002345 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002346
2347 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2348 R.anim.lock_screen_behind_enter_wallpaper :
2349 R.anim.lock_screen_behind_enter);
2350
2351 // TODO: Use XML interpolators when we have log interpolators available in XML.
2352 final List<Animation> animations = set.getAnimations();
2353 for (int i = animations.size() - 1; i >= 0; --i) {
2354 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2355 }
2356
2357 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002358 }
2359
2360
2361 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002362 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2363 if (goingToNotificationShade) {
2364 return null;
2365 } else {
2366 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2367 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002368 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002369
2370 private static void awakenDreams() {
2371 IDreamManager dreamManager = getDreamManager();
2372 if (dreamManager != null) {
2373 try {
2374 dreamManager.awaken();
2375 } catch (RemoteException e) {
2376 // fine, stay asleep then
2377 }
2378 }
2379 }
2380
2381 static IDreamManager getDreamManager() {
2382 return IDreamManager.Stub.asInterface(
2383 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2384 }
2385
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002386 TelecomManager getTelecommService() {
2387 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002388 }
2389
Jeff Brown4d396052010-10-29 21:50:21 -07002390 static IAudioService getAudioService() {
2391 IAudioService audioService = IAudioService.Stub.asInterface(
2392 ServiceManager.checkService(Context.AUDIO_SERVICE));
2393 if (audioService == null) {
2394 Log.w(TAG, "Unable to find IAudioService interface.");
2395 }
2396 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002397 }
2398
2399 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002400 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002401 }
2402
2403 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2404 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2405 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2406 };
2407
2408 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002409 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002410 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002411 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002412 final int keyCode = event.getKeyCode();
2413 final int repeatCount = event.getRepeatCount();
2414 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002415 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002416 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2417 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002418
Jeff Brown40013652012-05-16 21:22:36 -07002419 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002420 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002421 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2422 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002423 }
2424
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002425 // If we think we might have a volume down & power key chord on the way
2426 // but we're not sure, then tell the dispatcher to wait a little while and
2427 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002428 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002429 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002430 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002431 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2432 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002433 if (now < timeoutTime) {
2434 return timeoutTime - now;
2435 }
2436 }
2437 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002438 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002439 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002440 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002441 }
2442 return -1;
2443 }
2444 }
2445
Michael Wright6a62e552014-06-03 19:19:48 -07002446 // Cancel any pending meta actions if we see any other keys being pressed between the down
2447 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002448 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002449 mPendingMetaAction = false;
2450 }
2451
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002452 // First we always handle the home key here, so applications
2453 // can never break it, although if keyguard is on, we do let
2454 // it handle it, because that gives us the correct 5 second
2455 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002456 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002457
Jeff Brown49ed71d2010-12-06 17:13:33 -08002458 // If we have released the home key, and didn't do anything else
2459 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002460 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002461 cancelPreloadRecentApps();
2462
Jeff Brown49ed71d2010-12-06 17:13:33 -08002463 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002464 if (mHomeConsumed) {
2465 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002466 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002467 }
Jeff Browncaca8812013-05-09 13:34:33 -07002468
2469 if (canceled) {
2470 Log.i(TAG, "Ignoring HOME; event canceled.");
2471 return -1;
2472 }
2473
Yorke Lee4f803242014-12-15 23:22:06 +00002474 // If an incoming call is ringing, HOME is totally disabled.
2475 // (The user is already on the InCallUI at this point,
2476 // and his ONLY options are to answer or reject the call.)
2477 TelecomManager telecomManager = getTelecommService();
2478 if (telecomManager != null && telecomManager.isRinging()) {
2479 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2480 return -1;
2481 }
2482
Jeff Browncaca8812013-05-09 13:34:33 -07002483 // Delay handling home if a double-tap is possible.
2484 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2485 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2486 mHomeDoubleTapPending = true;
2487 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2488 ViewConfiguration.getDoubleTapTimeout());
2489 return -1;
2490 }
2491
Jeff Brown13f00f02014-10-31 14:45:50 -07002492 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002493 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002494 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002495
2496 // If a system window has focus, then it doesn't make sense
2497 // right now to interact with applications.
2498 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2499 if (attrs != null) {
2500 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002501 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2502 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2503 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002504 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002505 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002506 }
2507 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2508 for (int i=0; i<typeCount; i++) {
2509 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2510 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002511 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002512 }
2513 }
2514 }
Jeff Browncaca8812013-05-09 13:34:33 -07002515
2516 // Remember that home is pressed and handle special actions.
2517 if (repeatCount == 0) {
2518 mHomePressed = true;
2519 if (mHomeDoubleTapPending) {
2520 mHomeDoubleTapPending = false;
2521 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2522 handleDoubleTapOnHome();
2523 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2524 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2525 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002526 }
Jeff Browncaca8812013-05-09 13:34:33 -07002527 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2528 if (!keyguardOn) {
2529 handleLongPressOnHome();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002530 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002531 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002532 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002533 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002534 // Hijack modified menu keys for debugging features
2535 final int chordBug = KeyEvent.META_SHIFT_ON;
2536
2537 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002538 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002539 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002540 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2541 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002542 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002543 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002544 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002545 Intent service = new Intent();
2546 service.setClassName(mContext, "com.android.server.LoadAverageService");
2547 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002548 boolean shown = Settings.Global.getInt(
2549 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002550 if (!shown) {
2551 mContext.startService(service);
2552 } else {
2553 mContext.stopService(service);
2554 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002555 Settings.Global.putInt(
2556 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002557 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002558 }
2559 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002560 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002561 if (down) {
2562 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002563 mSearchKeyShortcutPending = true;
2564 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002565 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002566 } else {
2567 mSearchKeyShortcutPending = false;
2568 if (mConsumeSearchKeyUp) {
2569 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002570 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002571 }
2572 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002573 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002574 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002575 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002576 if (down && repeatCount == 0) {
2577 preloadRecentApps();
2578 } else if (!down) {
2579 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002580 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002581 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002582 return -1;
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002583 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2584 if (down) {
2585 if (repeatCount == 0) {
2586 mAssistKeyLongPressed = false;
2587 } else if (repeatCount == 1) {
2588 mAssistKeyLongPressed = true;
2589 if (!keyguardOn) {
2590 launchAssistLongPressAction();
2591 }
2592 }
2593 } else {
2594 if (mAssistKeyLongPressed) {
2595 mAssistKeyLongPressed = false;
2596 } else {
2597 if (!keyguardOn) {
2598 launchAssistAction();
2599 }
2600 }
2601 }
2602 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002603 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2604 if (!down) {
2605 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002606 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002607 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2608 } else {
2609 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002610 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002611 }
2612 mContext.startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
2613 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002614 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2615 if (down && repeatCount == 0) {
2616 mHandler.post(mScreenshotRunnable);
2617 }
2618 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002619 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2620 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2621 if (down) {
2622 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2623
2624 // Disable autobrightness if it's on
2625 int auto = Settings.System.getIntForUser(
2626 mContext.getContentResolver(),
2627 Settings.System.SCREEN_BRIGHTNESS_MODE,
2628 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2629 UserHandle.USER_CURRENT_OR_SELF);
2630 if (auto != 0) {
2631 Settings.System.putIntForUser(mContext.getContentResolver(),
2632 Settings.System.SCREEN_BRIGHTNESS_MODE,
2633 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2634 UserHandle.USER_CURRENT_OR_SELF);
2635 }
2636
2637 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2638 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2639 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2640 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2641 Settings.System.SCREEN_BRIGHTNESS,
2642 mPowerManager.getDefaultScreenBrightnessSetting(),
2643 UserHandle.USER_CURRENT_OR_SELF);
2644 brightness += step;
2645 // Make sure we don't go beyond the limits.
2646 brightness = Math.min(max, brightness);
2647 brightness = Math.max(min, brightness);
2648
2649 Settings.System.putIntForUser(mContext.getContentResolver(),
2650 Settings.System.SCREEN_BRIGHTNESS, brightness,
2651 UserHandle.USER_CURRENT_OR_SELF);
Alan Viverette5a399492014-07-14 16:19:38 -07002652 mContext.startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
2653 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002654 }
2655 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002656 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002657 if (down) {
2658 mPendingMetaAction = true;
2659 } else if (mPendingMetaAction) {
Michael Wright8ab940a2014-09-01 11:01:27 -07002660 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD);
Michael Wright6a62e552014-06-03 19:19:48 -07002661 }
2662 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002663 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002664
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002665 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002666 // Any printing key that is chorded with Search should be consumed
2667 // even if no shortcut was invoked. This prevents text from being
2668 // inadvertently inserted when using a keyboard that has built-in macro
2669 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002670 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002671 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2672 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002673 mConsumeSearchKeyUp = true;
2674 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002675 if (down && repeatCount == 0 && !keyguardOn) {
2676 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2677 if (shortcutIntent != null) {
2678 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002679 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002680 mContext.startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002681 } catch (ActivityNotFoundException ex) {
2682 Slog.w(TAG, "Dropping shortcut key combination because "
2683 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002684 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002685 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002686 } else {
2687 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002688 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002689 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002690 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002691 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002692 }
2693 }
2694
Jeff Brown68b909d2011-12-07 16:36:01 -08002695 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002696 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002697 && (metaState & KeyEvent.META_META_ON) != 0) {
2698 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002699 if (kcm.isPrintingKey(keyCode)) {
2700 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2701 metaState & ~(KeyEvent.META_META_ON
2702 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2703 if (shortcutIntent != null) {
2704 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2705 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002706 mContext.startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002707 } catch (ActivityNotFoundException ex) {
2708 Slog.w(TAG, "Dropping shortcut key combination because "
2709 + "the activity to which it is registered was not found: "
2710 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2711 }
2712 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002713 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002714 }
2715 }
2716
Jeff Brown6651a632011-11-28 12:59:11 -08002717 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002718 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002719 String category = sApplicationLaunchKeyCategories.get(keyCode);
2720 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002721 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002722 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2723 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002724 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002725 } catch (ActivityNotFoundException ex) {
2726 Slog.w(TAG, "Dropping application launch key because "
2727 + "the activity to which it is registered was not found: "
2728 + "keyCode=" + keyCode + ", category=" + category, ex);
2729 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002730 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002731 }
2732 }
2733
Michael Wright61c46752014-08-21 16:57:33 -07002734 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002735 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002736 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002737 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002738 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002739 mRecentAppsHeldModifiers = shiftlessModifiers;
2740 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002741 return -1;
2742 }
2743 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002744 } else if (!down && mRecentAppsHeldModifiers != 0
2745 && (metaState & mRecentAppsHeldModifiers) == 0) {
2746 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002747 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002748 }
2749
Jeff Browncf39bdf2012-05-18 14:41:19 -07002750 // Handle keyboard language switching.
2751 if (down && repeatCount == 0
2752 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2753 || (keyCode == KeyEvent.KEYCODE_SPACE
2754 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2755 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2756 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2757 return -1;
2758 }
2759 if (mLanguageSwitchKeyPressed && !down
2760 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2761 || keyCode == KeyEvent.KEYCODE_SPACE)) {
2762 mLanguageSwitchKeyPressed = false;
2763 return -1;
2764 }
2765
Jeff Brown13f00f02014-10-31 14:45:50 -07002766 if (isValidGlobalKey(keyCode)
2767 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07002768 return -1;
2769 }
2770
Michael Wright6a62e552014-06-03 19:19:48 -07002771 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07002772 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07002773 return -1;
2774 }
2775
Jeff Brown68b909d2011-12-07 16:36:01 -08002776 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002777 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002778 }
2779
Jeff Brown3915bb82010-11-05 15:02:16 -07002780 /** {@inheritDoc} */
2781 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08002782 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07002783 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07002784 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08002785 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
2786 + ", flags=" + event.getFlags()
2787 + ", keyCode=" + event.getKeyCode()
2788 + ", scanCode=" + event.getScanCode()
2789 + ", metaState=" + event.getMetaState()
2790 + ", repeatCount=" + event.getRepeatCount()
2791 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07002792 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002793
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002794 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002795 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
2796 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002797 final int keyCode = event.getKeyCode();
2798 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002799 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
2800 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002801
Jeff Brown54875002011-04-06 15:33:01 -07002802 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002803 final FallbackAction fallbackAction;
2804 if (initialDown) {
2805 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
2806 } else {
2807 fallbackAction = mFallbackActions.get(keyCode);
2808 }
2809
2810 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07002811 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002812 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
2813 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002814 }
2815
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002816 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
2817 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08002818 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002819 event.getAction(), fallbackAction.keyCode,
2820 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08002821 event.getDeviceId(), event.getScanCode(),
2822 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002823
2824 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
2825 fallbackEvent.recycle();
2826 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002827 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002828
2829 if (initialDown) {
2830 mFallbackActions.put(keyCode, fallbackAction);
2831 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2832 mFallbackActions.remove(keyCode);
2833 fallbackAction.recycle();
2834 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002835 }
2836 }
2837
Jeff Brown40013652012-05-16 21:22:36 -07002838 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002839 if (fallbackEvent == null) {
2840 Slog.d(TAG, "No fallback.");
2841 } else {
2842 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
2843 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002844 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002845 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07002846 }
2847
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002848 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002849 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002850 if ((actions & ACTION_PASS_TO_USER) != 0) {
2851 long delayMillis = interceptKeyBeforeDispatching(
2852 win, fallbackEvent, policyFlags);
2853 if (delayMillis == 0) {
2854 return true;
2855 }
2856 }
2857 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08002858 }
2859
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002860 private void launchAssistLongPressAction() {
2861 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
2862 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
2863
2864 // launch the search activity
2865 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
2866 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2867 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07002868 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07002869 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002870 SearchManager searchManager = getSearchManager();
2871 if (searchManager != null) {
2872 searchManager.stopSearch();
2873 }
Michael Wright43e27f72013-04-10 14:06:48 -07002874 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002875 } catch (ActivityNotFoundException e) {
2876 Slog.w(TAG, "No activity to handle assist long press action.", e);
2877 }
2878 }
2879
2880 private void launchAssistAction() {
Michael Wright8ab940a2014-09-01 11:01:27 -07002881 launchAssistAction(null);
2882 }
2883
2884 private void launchAssistAction(String hint) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002885 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Amith Yamasanic1d07a42012-08-14 09:32:02 -07002886 Intent intent = ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08002887 .getAssistIntent(mContext, true, UserHandle.USER_CURRENT);
Jim Miller45308b12012-06-18 19:23:39 -07002888 if (intent != null) {
Michael Wright8ab940a2014-09-01 11:01:27 -07002889 if (hint != null) {
2890 intent.putExtra(hint, true);
2891 }
Jim Miller45308b12012-06-18 19:23:39 -07002892 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2893 | Intent.FLAG_ACTIVITY_SINGLE_TOP
2894 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
2895 try {
Michael Wright43e27f72013-04-10 14:06:48 -07002896 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Jim Miller45308b12012-06-18 19:23:39 -07002897 } catch (ActivityNotFoundException e) {
2898 Slog.w(TAG, "No activity to handle assist action.", e);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002899 }
2900 }
2901 }
2902
2903 private SearchManager getSearchManager() {
2904 if (mSearchManager == null) {
2905 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
2906 }
2907 return mSearchManager;
2908 }
2909
Jeff Browncaca8812013-05-09 13:34:33 -07002910 private void preloadRecentApps() {
2911 mPreloadedRecentApps = true;
2912 try {
2913 IStatusBarService statusbar = getStatusBarService();
2914 if (statusbar != null) {
2915 statusbar.preloadRecentApps();
2916 }
2917 } catch (RemoteException e) {
2918 Slog.e(TAG, "RemoteException when preloading recent apps", e);
2919 // re-acquire status bar service next time it is needed.
2920 mStatusBarService = null;
2921 }
2922 }
2923
2924 private void cancelPreloadRecentApps() {
2925 if (mPreloadedRecentApps) {
2926 mPreloadedRecentApps = false;
2927 try {
2928 IStatusBarService statusbar = getStatusBarService();
2929 if (statusbar != null) {
2930 statusbar.cancelPreloadRecentApps();
2931 }
2932 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002933 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07002934 // re-acquire status bar service next time it is needed.
2935 mStatusBarService = null;
2936 }
2937 }
2938 }
2939
2940 private void toggleRecentApps() {
2941 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07002942 try {
2943 IStatusBarService statusbar = getStatusBarService();
2944 if (statusbar != null) {
2945 statusbar.toggleRecentApps();
2946 }
2947 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002948 Slog.e(TAG, "RemoteException when toggling recent apps", e);
2949 // re-acquire status bar service next time it is needed.
2950 mStatusBarService = null;
2951 }
2952 }
2953
Craig Mautner84984fa2014-06-19 11:19:20 -07002954 @Override
2955 public void showRecentApps() {
2956 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
2957 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
2958 }
2959
Winson Chung1e8d71b2014-05-16 17:05:22 -07002960 private void showRecentApps(boolean triggeredFromAltTab) {
2961 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
2962 try {
2963 IStatusBarService statusbar = getStatusBarService();
2964 if (statusbar != null) {
2965 statusbar.showRecentApps(triggeredFromAltTab);
2966 }
2967 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07002968 Slog.e(TAG, "RemoteException when showing recent apps", e);
2969 // re-acquire status bar service next time it is needed.
2970 mStatusBarService = null;
2971 }
2972 }
2973
Winson Chungcdcd4872014-08-05 18:00:13 -07002974 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002975 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
2976 try {
2977 IStatusBarService statusbar = getStatusBarService();
2978 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07002979 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07002980 }
2981 } catch (RemoteException e) {
2982 Slog.e(TAG, "RemoteException when closing recent apps", e);
2983 // re-acquire status bar service next time it is needed.
2984 mStatusBarService = null;
2985 }
2986 }
2987
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002988 /**
2989 * A home key -> launch home action was detected. Take the appropriate action
2990 * given the situation with the keyguard.
2991 */
2992 void launchHomeFromHotKey() {
Jim Millerab954542014-10-10 18:21:49 -07002993 if (isKeyguardShowingAndNotOccluded()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002994 // don't launch home if keyguard showing
Jim Miller5ecd8112013-01-09 18:50:26 -08002995 } else if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002996 // when in keyguard restricted mode, must first verify unlock
2997 // before launching home
Jim Miller5ecd8112013-01-09 18:50:26 -08002998 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
Jose Lima9546b202014-07-02 17:21:51 -07002999 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003000 public void onKeyguardExitResult(boolean success) {
3001 if (success) {
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003002 try {
3003 ActivityManagerNative.getDefault().stopAppSwitches();
3004 } catch (RemoteException e) {
3005 }
Joe Onoratof275f0c2009-11-24 16:11:13 -05003006 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08003007 startDockOrHome(true /*fromHomeKey*/);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003008 }
3009 }
3010 });
3011 } else {
3012 // no keyguard stuff to worry about, just launch home!
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003013 try {
3014 ActivityManagerNative.getDefault().stopAppSwitches();
3015 } catch (RemoteException e) {
3016 }
Winson Chungd543c1b2014-06-23 15:06:45 -07003017 if (mRecentsVisible) {
3018 // Hide Recents and notify it to launch Home
3019 awakenDreams();
3020 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Winson Chungcdcd4872014-08-05 18:00:13 -07003021 hideRecentApps(false, true);
Winson Chungd543c1b2014-06-23 15:06:45 -07003022 } else {
3023 // Otherwise, just launch Home
3024 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08003025 startDockOrHome(true /*fromHomeKey*/);
Winson Chungd543c1b2014-06-23 15:06:45 -07003026 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003027 }
3028 }
3029
John Spurlock04db1762013-05-13 12:46:41 -04003030 private final Runnable mClearHideNavigationFlag = new Runnable() {
3031 @Override
3032 public void run() {
3033 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3034 // Clear flags.
3035 mForceClearedSystemUiFlags &=
3036 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3037 }
3038 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003039 }
3040 };
3041
3042 /**
3043 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3044 * to determine when the nav bar should be shown and prevent applications from
3045 * receiving those touches.
3046 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003047 final class HideNavInputEventReceiver extends InputEventReceiver {
3048 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3049 super(inputChannel, looper);
3050 }
3051
Dianne Hackborndf89e652011-10-06 22:35:11 -07003052 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003053 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003054 boolean handled = false;
3055 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003056 if (event instanceof MotionEvent
3057 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3058 final MotionEvent motionEvent = (MotionEvent)event;
3059 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003060 // When the user taps down, we re-show the nav bar.
3061 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003062 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003063 // Any user activity always causes us to show the
3064 // navigation controls, if they had been hidden.
3065 // We also clear the low profile and only content
3066 // flags so that tapping on the screen will atomically
3067 // restore all currently hidden screen decorations.
3068 int newVal = mResettingSystemUiFlags |
3069 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3070 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3071 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003072 if (mResettingSystemUiFlags != newVal) {
3073 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003074 changed = true;
3075 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003076 // We don't allow the system's nav bar to be hidden
3077 // again for 1 second, to prevent applications from
3078 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003079 newVal = mForceClearedSystemUiFlags |
3080 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003081 if (mForceClearedSystemUiFlags != newVal) {
3082 mForceClearedSystemUiFlags = newVal;
3083 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003084 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003085 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003086 }
3087 if (changed) {
3088 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3089 }
3090 }
3091 }
3092 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003093 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003094 }
3095 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003096 }
3097 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3098 new InputEventReceiver.Factory() {
3099 @Override
3100 public InputEventReceiver createInputEventReceiver(
3101 InputChannel inputChannel, Looper looper) {
3102 return new HideNavInputEventReceiver(inputChannel, looper);
3103 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003104 };
3105
3106 @Override
3107 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003108 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3109 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003110 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003111
Dianne Hackborndf89e652011-10-06 22:35:11 -07003112 // Reset any bits in mForceClearingStatusBarVisibility that
3113 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003114 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003115 // Clear any bits in the new visibility that are currently being
3116 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003117 return visibility & ~mResettingSystemUiFlags
3118 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003119 }
3120
Craig Mautner69b08182012-09-05 13:07:13 -07003121 @Override
Adrian Roos37d7a682014-11-06 18:15:16 +01003122 public void getInsetHintLw(WindowManager.LayoutParams attrs, Rect outContentInsets,
3123 Rect outStableInsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003124 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003125 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3126 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003127
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003128 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003129 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003130 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003131 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003132 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003133 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3134 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3135 } else {
3136 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3137 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3138 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003139 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3140 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003141 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003142 availRight - mStableFullscreenRight,
3143 availBottom - mStableFullscreenBottom);
3144 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003145 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003146 availRight - mStableRight, availBottom - mStableBottom);
3147 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003148 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003149 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003150 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003151 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003152 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003153 availRight - mCurRight, availBottom - mCurBottom);
3154 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003155 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003156 availRight - mCurRight, availBottom - mCurBottom);
3157 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003158
3159 outStableInsets.set(mStableLeft, mStableTop,
3160 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003161 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003162 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003163 outContentInsets.setEmpty();
3164 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003165 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003166
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003167 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003168 @Override
3169 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3170 int displayRotation) {
Dianne Hackbornc652de82013-02-15 16:32:56 -08003171 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3172 if (isDefaultDisplay) {
3173 switch (displayRotation) {
3174 case Surface.ROTATION_90:
3175 overscanLeft = mOverscanTop;
3176 overscanTop = mOverscanRight;
3177 overscanRight = mOverscanBottom;
3178 overscanBottom = mOverscanLeft;
3179 break;
3180 case Surface.ROTATION_180:
3181 overscanLeft = mOverscanRight;
3182 overscanTop = mOverscanBottom;
3183 overscanRight = mOverscanLeft;
3184 overscanBottom = mOverscanTop;
3185 break;
3186 case Surface.ROTATION_270:
3187 overscanLeft = mOverscanBottom;
3188 overscanTop = mOverscanLeft;
3189 overscanRight = mOverscanTop;
3190 overscanBottom = mOverscanRight;
3191 break;
3192 default:
3193 overscanLeft = mOverscanLeft;
3194 overscanTop = mOverscanTop;
3195 overscanRight = mOverscanRight;
3196 overscanBottom = mOverscanBottom;
3197 break;
3198 }
3199 } else {
3200 overscanLeft = 0;
3201 overscanTop = 0;
3202 overscanRight = 0;
3203 overscanBottom = 0;
3204 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003205 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3206 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3207 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3208 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003209 mSystemLeft = 0;
3210 mSystemTop = 0;
3211 mSystemRight = displayWidth;
3212 mSystemBottom = displayHeight;
3213 mUnrestrictedScreenLeft = overscanLeft;
3214 mUnrestrictedScreenTop = overscanTop;
3215 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3216 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3217 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3218 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003219 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3220 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003221 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003222 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003223 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003224 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003225 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003226 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003227 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003228 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003229 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003230 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003231
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003232 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3233 final Rect pf = mTmpParentFrame;
3234 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003235 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003236 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003237 final Rect dcf = mTmpDecorFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003238 pf.left = df.left = of.left = vf.left = mDockLeft;
3239 pf.top = df.top = of.top = vf.top = mDockTop;
3240 pf.right = df.right = of.right = vf.right = mDockRight;
3241 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003242 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003243
Craig Mautner69b08182012-09-05 13:07:13 -07003244 if (isDefaultDisplay) {
3245 // For purposes of putting out fake window up to steal focus, we will
3246 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003247 final int sysui = mLastSystemUiFlags;
3248 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003249 boolean navTranslucent = (sysui
3250 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003251 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3252 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3253 boolean navAllowedHidden = immersive || immersiveSticky;
3254 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003255 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3256 if (!isKeyguardShowing) {
3257 navTranslucent &= areTranslucentBarsAllowed();
3258 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003259
Craig Mautner69b08182012-09-05 13:07:13 -07003260 // When the navigation bar isn't visible, we put up a fake
3261 // input window to catch all touch events. This way we can
3262 // detect when the user presses anywhere to bring back the nav
3263 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003264 if (navVisible || navAllowedHidden) {
Craig Mautner69b08182012-09-05 13:07:13 -07003265 if (mHideNavFakeWindow != null) {
3266 mHideNavFakeWindow.dismiss();
3267 mHideNavFakeWindow = null;
3268 }
3269 } else if (mHideNavFakeWindow == null) {
3270 mHideNavFakeWindow = mWindowManagerFuncs.addFakeWindow(
3271 mHandler.getLooper(), mHideNavInputEventReceiverFactory,
Adam Lesinski95c42972013-10-02 10:13:27 -07003272 "hidden nav", WindowManager.LayoutParams.TYPE_HIDDEN_NAV_CONSUMER, 0,
Craig Mautner69b08182012-09-05 13:07:13 -07003273 0, false, false, true);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003274 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003275
Craig Mautner69b08182012-09-05 13:07:13 -07003276 // For purposes of positioning and showing the nav bar, if we have
3277 // decided that it can't be hidden (because of the screen aspect ratio),
3278 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003279 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003280
John Spurlockad3e6cb2013-04-30 08:47:43 -04003281 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003282 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003283 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003284 // Force the navigation bar to its appropriate place and
3285 // size. We need to do this directly, instead of relying on
3286 // it to bubble up from the nav bar, because this needs to
3287 // change atomically with screen rotations.
3288 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3289 if (mNavigationBarOnBottom) {
3290 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003291 int top = displayHeight - overscanBottom
3292 - mNavigationBarHeightForRotation[displayRotation];
3293 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003294 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003295 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003296 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003297 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003298 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003299 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003300 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3301 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003302 } else {
3303 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003304 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003305 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003306 if (navVisible && !navTranslucent && !navAllowedHidden
3307 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003308 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003309 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003310 // and not in the process of animating on or off, then
3311 // we can tell the app that it is covered by it.
3312 mSystemBottom = mTmpNavigationFrame.top;
3313 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003314 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003315 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003316 int left = displayWidth - overscanRight
3317 - mNavigationBarWidthForRotation[displayRotation];
3318 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003319 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003320 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003321 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003322 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003323 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003324 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003325 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3326 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003327 } else {
3328 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003329 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003330 }
John Spurlockbd957402013-10-03 11:38:39 -04003331 if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3332 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003333 // If the nav bar is currently requested to be visible,
3334 // and not in the process of animating on or off, then
3335 // we can tell the app that it is covered by it.
3336 mSystemRight = mTmpNavigationFrame.left;
3337 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003338 }
Craig Mautner69b08182012-09-05 13:07:13 -07003339 // Make sure the content and current rectangles are updated to
3340 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003341 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3342 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3343 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3344 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003345 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3346 // And compute the final frame.
3347 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003348 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3349 mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003350 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003351 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003352 updateSysUiVisibility = true;
3353 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003354 }
Craig Mautnereda67292013-04-28 13:50:14 -07003355 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003356 mDockLeft, mDockTop, mDockRight, mDockBottom));
3357
3358 // decide where the status bar goes ahead of time
3359 if (mStatusBar != null) {
3360 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003361 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3362 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3363 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3364 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3365 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003366 vf.left = mStableLeft;
3367 vf.top = mStableTop;
3368 vf.right = mStableRight;
3369 vf.bottom = mStableBottom;
3370
3371 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3372
3373 // Let the status bar determine its size.
Adrian Roosfa104232014-06-20 16:10:14 -07003374 mStatusBar.computeFrameLw(pf, df, vf, vf, vf, dcf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003375
3376 // For layout, the status bar is always at the top with our fixed height.
3377 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3378
John Spurlocke1f366f2013-08-05 12:22:40 -04003379 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003380 boolean statusBarTranslucent = (sysui
3381 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003382 if (!isKeyguardShowing) {
3383 statusBarTranslucent &= areTranslucentBarsAllowed();
3384 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003385
Craig Mautner69b08182012-09-05 13:07:13 -07003386 // If the status bar is hidden, we don't want to cause
3387 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003388 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003389 // Status bar may go away, so the screen area it occupies
3390 // is available to apps but just covering them when the
3391 // status bar is visible.
3392 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3393
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003394 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3395 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3396 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3397 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003398
Craig Mautnereda67292013-04-28 13:50:14 -07003399 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003400 String.format(
3401 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3402 mDockLeft, mDockTop, mDockRight, mDockBottom,
3403 mContentLeft, mContentTop, mContentRight, mContentBottom,
3404 mCurLeft, mCurTop, mCurRight, mCurBottom));
3405 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003406 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003407 && !statusBarTransient && !statusBarTranslucent
3408 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003409 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003410 // and not in the process of animating on or off, then
3411 // we can tell the app that it is covered by it.
3412 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3413 }
John Spurlock27735a42013-08-14 17:57:38 -04003414 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003415 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003416 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003417 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003418 if (updateSysUiVisibility) {
3419 updateSystemUiVisibilityLw();
3420 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003421 }
3422 }
3423
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003424 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003425 @Override
John Spurlock46646232013-09-30 22:32:42 -04003426 public int getSystemDecorLayerLw() {
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003427 if (mStatusBar != null) return mStatusBar.getSurfaceLayer();
3428 if (mNavigationBar != null) return mNavigationBar.getSurfaceLayer();
3429 return 0;
3430 }
3431
Craig Mautner967212c2013-04-13 21:10:58 -07003432 @Override
3433 public void getContentRectLw(Rect r) {
3434 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3435 }
3436
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003437 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3438 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003439 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3440 // Here's a special case: if this attached window is a panel that is
3441 // above the dock window, and the window it is attached to is below
3442 // the dock window, then the frames we computed for the window it is
3443 // attached to can not be used because the dock is effectively part
3444 // of the underlying window and the attached window is floating on top
3445 // of the whole thing. So, we ignore the attached window and explicitly
3446 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003447 df.left = of.left = cf.left = vf.left = mDockLeft;
3448 df.top = of.top = cf.top = vf.top = mDockTop;
3449 df.right = of.right = cf.right = vf.right = mDockRight;
3450 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003451 } else {
3452 // The effective display frame of the attached window depends on
3453 // whether it is taking care of insetting its content. If not,
3454 // we need to use the parent's content frame so that the entire
3455 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003456 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003457 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003458 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003459 // Set the content frame of the attached window to the parent's decor frame
3460 // (same as content frame when IME isn't present) if specifically requested by
3461 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3462 // Otherwise, use the overscan frame.
3463 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3464 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003465 } else {
3466 // If the window is resizing, then we want to base the content
3467 // frame on our attached content frame to resize... however,
3468 // things can be tricky if the attached window is NOT in resize
3469 // mode, in which case its content frame will be larger.
3470 // Ungh. So to deal with that, make sure the content frame
3471 // we end up using is not covering the IM dock.
3472 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003473 if (attached.isVoiceInteraction()) {
3474 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3475 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3476 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3477 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3478 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003479 if (cf.left < mContentLeft) cf.left = mContentLeft;
3480 if (cf.top < mContentTop) cf.top = mContentTop;
3481 if (cf.right > mContentRight) cf.right = mContentRight;
3482 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3483 }
3484 }
3485 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003486 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003487 vf.set(attached.getVisibleFrameLw());
3488 }
3489 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3490 // window should be positioned relative to its parent or the entire
3491 // screen.
3492 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3493 ? attached.getFrameLw() : df);
3494 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003495
3496 private void applyStableConstraints(int sysui, int fl, Rect r) {
3497 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3498 // If app is requesting a stable layout, don't let the
3499 // content insets go below the stable values.
3500 if ((fl & FLAG_FULLSCREEN) != 0) {
3501 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3502 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3503 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3504 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3505 } else {
3506 if (r.left < mStableLeft) r.left = mStableLeft;
3507 if (r.top < mStableTop) r.top = mStableTop;
3508 if (r.right > mStableRight) r.right = mStableRight;
3509 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3510 }
3511 }
3512 }
3513
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003514 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003515 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003516 public void layoutWindowLw(WindowState win, WindowState attached) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003517 // we've already done the status bar
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003518 final WindowManager.LayoutParams attrs = win.getAttrs();
3519 if ((win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) == 0) ||
3520 win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003521 return;
3522 }
Craig Mautner69b08182012-09-05 13:07:13 -07003523 final boolean isDefaultDisplay = win.isDefaultDisplay();
3524 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003525 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3526 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003527 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003528 offsetInputMethodWindowLw(mLastInputMethodWindow);
3529 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003530
John Spurlockc6d1c602014-01-17 15:22:06 -05003531 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003532 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003533 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003534
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003535 final Rect pf = mTmpParentFrame;
3536 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003537 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003538 final Rect cf = mTmpContentFrame;
3539 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003540 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003541 final Rect sf = mTmpStableFrame;
John Spurlock46646232013-09-30 22:32:42 -04003542 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003543
3544 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003545 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003546
Craig Mautnerf683b562012-10-02 11:10:57 -07003547 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3548
Adrian Roosfa104232014-06-20 16:10:14 -07003549 if (isDefaultDisplay) {
3550 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3551 } else {
3552 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3553 }
3554
Craig Mautner69b08182012-09-05 13:07:13 -07003555 if (!isDefaultDisplay) {
3556 if (attached != null) {
3557 // If this window is attached to another, our display
3558 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003559 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003560 } else {
3561 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003562 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3563 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3564 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003565 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003566 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003567 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003568 }
Dianne Hackbornae6688b2015-02-11 17:02:41 -08003569 } else if (attrs.type == TYPE_INPUT_METHOD || attrs.type == TYPE_VOICE_INTERACTION) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003570 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3571 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3572 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003573 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003574 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003575 // ...with content insets above the nav bar
3576 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003577 // IM dock windows always go to the bottom of the screen.
3578 attrs.gravity = Gravity.BOTTOM;
3579 mDockLayer = win.getSurfaceLayer();
Jorim Jaggie0700182014-08-21 01:12:37 +02003580 } else if (win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
3581 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3582 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3583 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3584 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3585 cf.left = vf.left = mStableLeft;
3586 cf.top = vf.top = mStableTop;
3587 cf.right = vf.right = mStableRight;
3588 vf.bottom = mStableBottom;
3589 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003590 } else {
John Spurlock46646232013-09-30 22:32:42 -04003591
3592 // Default policy decor for the default display
3593 dcf.left = mSystemLeft;
3594 dcf.top = mSystemTop;
3595 dcf.right = mSystemRight;
3596 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003597 final boolean inheritTranslucentDecor = (attrs.privateFlags
3598 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003599 final boolean isAppWindow =
3600 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3601 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3602 final boolean topAtRest =
3603 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3604 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003605 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3606 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003607 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3608 && (fl & WindowManager.LayoutParams.
3609 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003610 // Ensure policy decor includes status bar
3611 dcf.top = mStableTop;
3612 }
John Spurlockbd957402013-10-03 11:38:39 -04003613 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003614 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3615 && (fl & WindowManager.LayoutParams.
3616 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003617 // Ensure policy decor includes navigation bar
3618 dcf.bottom = mStableBottom;
3619 dcf.right = mStableRight;
3620 }
3621 }
3622
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003623 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3624 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003625 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003626 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003627 // This is the case for a normal activity window: we want it
3628 // to cover all of the screen space, and it can take care of
3629 // moving its contents to account for screen decorations that
3630 // intrude into that space.
3631 if (attached != null) {
3632 // If this window is attached to another, our display
3633 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003634 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003635 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003636 if (attrs.type == TYPE_STATUS_BAR_PANEL
3637 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003638 // Status bar panels are the only windows who can go on top of
3639 // the status bar. They are protected by the STATUS_BAR_SERVICE
3640 // permission, so they have the same privileges as the status
3641 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003642 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003643 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003644
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003645 pf.left = df.left = of.left = hasNavBar
3646 ? mDockLeft : mUnrestrictedScreenLeft;
3647 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3648 pf.right = df.right = of.right = hasNavBar
3649 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3650 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3651 pf.bottom = df.bottom = of.bottom = hasNavBar
3652 ? mRestrictedScreenTop+mRestrictedScreenHeight
3653 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003654
Craig Mautnereda67292013-04-28 13:50:14 -07003655 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003656 "Laying out status bar window: (%d,%d - %d,%d)",
3657 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003658 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003659 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3660 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3661 // Asking to layout into the overscan region, so give it that pure
3662 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003663 pf.left = df.left = of.left = mOverscanScreenLeft;
3664 pf.top = df.top = of.top = mOverscanScreenTop;
3665 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3666 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3667 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003668 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003669 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003670 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3671 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003672 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003673 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003674 // only do this for application windows to ensure no window that
3675 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08003676 pf.left = df.left = mOverscanScreenLeft;
3677 pf.top = df.top = mOverscanScreenTop;
3678 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3679 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003680 // We need to tell the app about where the frame inside the overscan
3681 // is, so it can inset its content by that amount -- it didn't ask
3682 // to actually extend itself into the overscan region.
3683 of.left = mUnrestrictedScreenLeft;
3684 of.top = mUnrestrictedScreenTop;
3685 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3686 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003687 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08003688 pf.left = df.left = mRestrictedOverscanScreenLeft;
3689 pf.top = df.top = mRestrictedOverscanScreenTop;
3690 pf.right = df.right = mRestrictedOverscanScreenLeft
3691 + mRestrictedOverscanScreenWidth;
3692 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
3693 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003694 // We need to tell the app about where the frame inside the overscan
3695 // is, so it can inset its content by that amount -- it didn't ask
3696 // to actually extend itself into the overscan region.
3697 of.left = mUnrestrictedScreenLeft;
3698 of.top = mUnrestrictedScreenTop;
3699 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3700 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003701 }
Craig Mautner69b08182012-09-05 13:07:13 -07003702
John Spurlock46646232013-09-30 22:32:42 -04003703 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003704 if (win.isVoiceInteraction()) {
3705 cf.left = mVoiceContentLeft;
3706 cf.top = mVoiceContentTop;
3707 cf.right = mVoiceContentRight;
3708 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003709 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003710 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
3711 cf.left = mDockLeft;
3712 cf.top = mDockTop;
3713 cf.right = mDockRight;
3714 cf.bottom = mDockBottom;
3715 } else {
3716 cf.left = mContentLeft;
3717 cf.top = mContentTop;
3718 cf.right = mContentRight;
3719 cf.bottom = mContentBottom;
3720 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003721 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003722 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003723 // Full screen windows are always given a layout that is as if the
3724 // status bar and other transient decors are gone. This is to avoid
3725 // bad states when moving from a window that is not hding the
3726 // status bar to one that is.
3727 cf.left = mRestrictedScreenLeft;
3728 cf.top = mRestrictedScreenTop;
3729 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
3730 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003731 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003732 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003733 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3734 vf.left = mCurLeft;
3735 vf.top = mCurTop;
3736 vf.right = mCurRight;
3737 vf.bottom = mCurBottom;
3738 } else {
3739 vf.set(cf);
3740 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003741 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003742 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
3743 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
3744 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07003745 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3746 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003747 // A window that has requested to fill the entire screen just
3748 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003749 if (attrs.type == TYPE_STATUS_BAR_PANEL
3750 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003751 pf.left = df.left = of.left = cf.left = hasNavBar
3752 ? mDockLeft : mUnrestrictedScreenLeft;
3753 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3754 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003755 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08003756 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003757 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003758 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003759 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003760 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04003761 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
3762 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07003763 } else if (attrs.type == TYPE_NAVIGATION_BAR
3764 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003765 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003766 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3767 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3768 pf.right = df.right = of.right = mUnrestrictedScreenLeft
3769 + mUnrestrictedScreenWidth;
3770 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
3771 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003772 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003773 "Laying out navigation bar window: (%d,%d - %d,%d)",
3774 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08003775 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
3776 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07003777 && ((fl & FLAG_FULLSCREEN) != 0)) {
3778 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003779 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3780 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3781 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3782 + mOverscanScreenWidth;
3783 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3784 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08003785 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08003786 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003787 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3788 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3789 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3790 + mOverscanScreenWidth;
3791 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3792 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04003793 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003794 // The wallpaper also has Real Ultimate Power, but we want to tell
3795 // it about the overscan area.
3796 pf.left = df.left = mOverscanScreenLeft;
3797 pf.top = df.top = mOverscanScreenTop;
3798 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3799 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
3800 of.left = cf.left = mUnrestrictedScreenLeft;
3801 of.top = cf.top = mUnrestrictedScreenTop;
3802 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3803 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04003804 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003805 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3806 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3807 // Asking to layout into the overscan region, so give it that pure
3808 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003809 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3810 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3811 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003812 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003813 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003814 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003815 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003816 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07003817 && (attrs.type == TYPE_STATUS_BAR
3818 || attrs.type == TYPE_TOAST
John Spurlock34e13d92013-08-10 06:52:28 -04003819 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3820 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003821 // Asking for layout as if the nav bar is hidden, lets the
3822 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04003823 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003824 // can be above the nav bar can do this.
3825 // XXX This assumes that an app asking for this will also
3826 // ask for layout in only content. We can't currently figure out
3827 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003828 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
3829 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3830 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
3831 + mUnrestrictedScreenWidth;
3832 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
3833 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003834 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003835 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3836 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3837 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3838 + mRestrictedScreenWidth;
3839 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3840 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003841 }
Craig Mautner69b08182012-09-05 13:07:13 -07003842
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003843 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07003844
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003845 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3846 vf.left = mCurLeft;
3847 vf.top = mCurTop;
3848 vf.right = mCurRight;
3849 vf.bottom = mCurBottom;
3850 } else {
3851 vf.set(cf);
3852 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003853 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07003854 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3855 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003856 // A child window should be placed inside of the same visible
3857 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003858 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003859 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07003860 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3861 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003862 // Otherwise, a normal window must be placed inside the content
3863 // of all screen decorations.
Dianne Hackborna239c842011-06-01 12:28:20 -07003864 if (attrs.type == TYPE_STATUS_BAR_PANEL) {
3865 // Status bar panels are the only windows who can go on top of
3866 // the status bar. They are protected by the STATUS_BAR_SERVICE
3867 // permission, so they have the same privileges as the status
3868 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003869 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3870 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3871 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3872 + mRestrictedScreenWidth;
3873 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3874 + mRestrictedScreenHeight;
John Spurlock414c1f02013-12-04 13:47:36 -05003875 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT
3876 || attrs.type == TYPE_VOLUME_OVERLAY) {
3877 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04003878 pf.left = df.left = of.left = cf.left = mStableLeft;
3879 pf.top = df.top = of.top = cf.top = mStableTop;
3880 pf.right = df.right = of.right = cf.right = mStableRight;
3881 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003882 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07003883 pf.left = mContentLeft;
3884 pf.top = mContentTop;
3885 pf.right = mContentRight;
3886 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07003887 if (win.isVoiceInteraction()) {
3888 df.left = of.left = cf.left = mVoiceContentLeft;
3889 df.top = of.top = cf.top = mVoiceContentTop;
3890 df.right = of.right = cf.right = mVoiceContentRight;
3891 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
3892 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003893 df.left = of.left = cf.left = mDockLeft;
3894 df.top = of.top = cf.top = mDockTop;
3895 df.right = of.right = cf.right = mDockRight;
3896 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07003897 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003898 df.left = of.left = cf.left = mContentLeft;
3899 df.top = of.top = cf.top = mContentTop;
3900 df.right = of.right = cf.right = mContentRight;
3901 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07003902 }
3903 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3904 vf.left = mCurLeft;
3905 vf.top = mCurTop;
3906 vf.right = mCurRight;
3907 vf.bottom = mCurBottom;
3908 } else {
3909 vf.set(cf);
3910 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003911 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003912 }
3913 }
Craig Mautner69b08182012-09-05 13:07:13 -07003914
Craig Mautnerb816bed2013-07-23 10:26:17 -07003915 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
3916 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003917 df.left = df.top = -10000;
3918 df.right = df.bottom = 10000;
3919 if (attrs.type != TYPE_WALLPAPER) {
3920 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
3921 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
3922 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003923 }
3924
Craig Mautnereda67292013-04-28 13:50:14 -07003925 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07003926 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07003927 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003928 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07003929 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003930 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04003931 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07003932 + " dcf=" + dcf.toShortString()
3933 + " sf=" + sf.toShortString());
Craig Mautner69b08182012-09-05 13:07:13 -07003934
Adrian Roosfa104232014-06-20 16:10:14 -07003935 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf);
Craig Mautner69b08182012-09-05 13:07:13 -07003936
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003937 // Dock windows carve out the bottom of the screen, so normal windows
3938 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07003939 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
3940 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09003941 setLastInputMethodWindowLw(null, null);
3942 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003943 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003944 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
3945 && !win.getGivenInsetsPendingLw()) {
3946 offsetVoiceInputWindowLw(win);
3947 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003948 }
3949
satok1bc0a492012-04-25 22:47:12 +09003950 private void offsetInputMethodWindowLw(WindowState win) {
Dianne Hackbornae6688b2015-02-11 17:02:41 -08003951 int top = win.getDisplayFrameLw().top;
satok1bc0a492012-04-25 22:47:12 +09003952 top += win.getGivenContentInsetsLw().top;
3953 if (mContentBottom > top) {
3954 mContentBottom = top;
3955 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003956 if (mVoiceContentBottom > top) {
3957 mVoiceContentBottom = top;
3958 }
satok1bc0a492012-04-25 22:47:12 +09003959 top = win.getVisibleFrameLw().top;
3960 top += win.getGivenVisibleInsetsLw().top;
3961 if (mCurBottom > top) {
3962 mCurBottom = top;
3963 }
Craig Mautnereda67292013-04-28 13:50:14 -07003964 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09003965 + mDockBottom + " mContentBottom="
3966 + mContentBottom + " mCurBottom=" + mCurBottom);
3967 }
3968
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003969 private void offsetVoiceInputWindowLw(WindowState win) {
Dianne Hackbornae6688b2015-02-11 17:02:41 -08003970 int top = win.getDisplayFrameLw().top;
3971 top += win.getGivenContentInsetsLw().top;
3972 if (mVoiceContentBottom > top) {
3973 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003974 }
3975 }
3976
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003977 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08003978 @Override
3979 public void finishLayoutLw() {
3980 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08003981 }
3982
3983 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07003984 @Override
Craig Mautner39834192012-09-02 07:47:24 -07003985 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08003986 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01003987 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07003988 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02003989 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08003990 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07003991 mForceStatusBarFromKeyguard = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08003992 mForcingShowNavBar = false;
3993 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07003994
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08003995 mHideLockScreen = false;
3996 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07003997 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07003998 mShowingLockscreen = false;
3999 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004000 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004001 mKeyguardSecure = isKeyguardSecure();
4002 mKeyguardSecureIncludingHidden = mKeyguardSecure
4003 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004004 }
4005
4006 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004007 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004008 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004009 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4010 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004011 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004012 if (mTopFullscreenOpaqueWindowState == null
4013 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4014 mForcingShowNavBar = true;
4015 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004016 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004017 if (attrs.type == TYPE_STATUS_BAR && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004018 mForceStatusBarFromKeyguard = true;
4019 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004020 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004021 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004022 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004023 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004024 mForceStatusBarFromKeyguard = true;
4025 } else {
4026 mForceStatusBar = true;
4027 }
4028 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004029 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004030 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004031 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004032 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
Craig Mautner7d7808f2014-09-11 18:02:38 -07004033 && attrs.type < FIRST_SYSTEM_WINDOW;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004034 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004035 // If the lockscreen was showing when the dream started then wait
4036 // for the dream to draw before hiding the lockscreen.
4037 if (!mDreamingLockscreen
4038 || (win.isVisibleLw() && win.hasDrawnLw())) {
4039 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004040 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004041 }
4042 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004043
Craig Mautner00156ec2014-03-06 22:29:02 -08004044 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
Craig Mautner74ee9382014-04-01 15:20:16 -07004045 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
Craig Mautnerab55e522014-03-03 13:26:03 -08004046 if (appWindow) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004047 final IApplicationToken appToken = win.getAppToken();
4048 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004049 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004050 mAppsToBeHidden.remove(appToken);
4051 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004052 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004053 if (dismissKeyguard && !mKeyguardSecure) {
4054 mAppsThatDismissKeyguard.add(appToken);
4055 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004056 mWinShowWhenLocked = win;
4057 mHideLockScreen = true;
4058 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004059 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004060 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004061 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004062 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004063 mAppsToBeHidden.add(appToken);
4064 } else {
4065 mAppsToBeHidden.remove(appToken);
4066 }
4067 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004068 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004069 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004070 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004071 if (attrs.x == 0 && attrs.y == 0
4072 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4073 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4074 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4075 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004076 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4077 mTopFullscreenOpaqueOrDimmingWindowState = win;
4078 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004079 if (!mAppsThatDismissKeyguard.isEmpty() &&
4080 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4081 if (DEBUG_LAYOUT) Slog.v(TAG,
4082 "Setting mDismissKeyguard true by win " + win);
4083 mDismissKeyguard = mWinDismissingKeyguard == win ?
4084 DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
4085 mWinDismissingKeyguard = win;
Jim Millerab954542014-10-10 18:21:49 -07004086 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004087 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4088 if (DEBUG_LAYOUT) Slog.v(TAG,
4089 "Setting mHideLockScreen to true by win " + win);
4090 mHideLockScreen = true;
4091 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004092 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004093 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004094 mAllowLockscreenWhenOn = true;
4095 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004096 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004097
4098 if (mWinShowWhenLocked != null &&
4099 mWinShowWhenLocked.getAppToken() != win.getAppToken()) {
4100 win.hideLw(false);
4101 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004102 }
4103 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004104 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4105 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4106 && win.isDimming()) {
4107 mTopFullscreenOpaqueOrDimmingWindowState = win;
4108 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004109 }
4110
4111 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004112 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004113 public int finishPostLayoutPolicyLw() {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004114 if (mWinShowWhenLocked != null &&
4115 mWinShowWhenLocked != mTopFullscreenOpaqueWindowState) {
4116 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4117 // fullscreen window.
4118 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4119 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4120 mTopFullscreenOpaqueWindowState.hideLw(false);
4121 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4122 }
4123
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004124 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004125 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004126
4127 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4128 ? mTopFullscreenOpaqueWindowState.getAttrs()
4129 : null;
4130
Jeff Brownc8018eb2012-10-29 21:33:27 -07004131 // If we are not currently showing a dream then remember the current
4132 // lockscreen state. We will use this to determine whether the dream
4133 // started while the lockscreen was showing and remember this state
4134 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004135 if (!mShowingDream) {
4136 mDreamingLockscreen = mShowingLockscreen;
4137 }
4138
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004139 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004140 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004141 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004142 + " top=" + mTopFullscreenOpaqueWindowState);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004143 if (mForceStatusBar || mForceStatusBarFromKeyguard) {
Craig Mautnereda67292013-04-28 13:50:14 -07004144 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004145 if (mStatusBarController.setBarShowingLw(true)) {
4146 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4147 }
Craig Mautner81defc72013-10-29 11:10:42 -07004148 // Maintain fullscreen layout until incoming animation is complete.
4149 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004150 // Transient status bar on the lockscreen is not allowed
4151 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4152 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4153 mLastSystemUiFlags, mLastSystemUiFlags);
4154 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004155 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004156 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004157 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004158 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004159 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004160 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004161 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004162 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004163 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004164 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004165 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004166 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004167 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4168 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004169 if (mStatusBarController.isTransientShowing()) {
4170 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004171 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4172 }
4173 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004174 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004175 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004176 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004177 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004178 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004179 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004180 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004181 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004182 if (mStatusBarController.setBarShowingLw(true)) {
4183 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4184 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004185 }
4186 }
4187 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004188
Craig Mautner81defc72013-10-29 11:10:42 -07004189 if (mTopIsFullscreen != topIsFullscreen) {
4190 if (!topIsFullscreen) {
4191 // Force another layout when status bar becomes fully shown.
4192 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4193 }
4194 mTopIsFullscreen = topIsFullscreen;
4195 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004196
Craig Mautner39834192012-09-02 07:47:24 -07004197 // Hide the key guard if a visible window explicitly specifies that it wants to be
4198 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004199 if (mKeyguardDelegate != null && mStatusBar != null) {
4200 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4201 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004202 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004203 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004204 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004205 changes |= FINISH_LAYOUT_REDO_LAYOUT
4206 | FINISH_LAYOUT_REDO_CONFIG
4207 | FINISH_LAYOUT_REDO_WALLPAPER;
4208 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004209 if (mKeyguardDelegate.isShowing()) {
4210 mHandler.post(new Runnable() {
4211 @Override
4212 public void run() {
4213 mKeyguardDelegate.keyguardDone(false, false);
4214 }
4215 });
4216 }
4217 } else if (mHideLockScreen) {
4218 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004219 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004220 changes |= FINISH_LAYOUT_REDO_LAYOUT
4221 | FINISH_LAYOUT_REDO_CONFIG
4222 | FINISH_LAYOUT_REDO_WALLPAPER;
4223 }
4224 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
4225 // This is the case of keyguard isSecure() and not mHideLockScreen.
4226 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4227 // Only launch the next keyguard unlock window once per window.
4228 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004229 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004230 changes |= FINISH_LAYOUT_REDO_LAYOUT
4231 | FINISH_LAYOUT_REDO_CONFIG
4232 | FINISH_LAYOUT_REDO_WALLPAPER;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004233 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004234 mHandler.post(new Runnable() {
4235 @Override
4236 public void run() {
4237 mKeyguardDelegate.dismiss();
4238 }
4239 });
4240 }
4241 } else {
4242 mWinDismissingKeyguard = null;
4243 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004244 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004245 changes |= FINISH_LAYOUT_REDO_LAYOUT
4246 | FINISH_LAYOUT_REDO_CONFIG
4247 | FINISH_LAYOUT_REDO_WALLPAPER;
4248 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004249 }
4250 }
Joe Onorato664644d2011-01-23 17:53:23 -08004251
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004252 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004253 // If the navigation bar has been hidden or shown, we need to do another
4254 // layout pass to update that window.
4255 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4256 }
Joe Onorato664644d2011-01-23 17:53:23 -08004257
Mike Lockwood28569302010-01-28 11:54:40 -05004258 // update since mAllowLockscreenWhenOn might have changed
4259 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004260 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004261 }
4262
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004263 /**
Jim Millerab954542014-10-10 18:21:49 -07004264 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004265 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004266 * @return Whether the flags have changed and we have to redo the layout.
4267 */
Jim Millerab954542014-10-10 18:21:49 -07004268 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4269 boolean wasOccluded = mKeyguardOccluded;
4270 boolean showing = mKeyguardDelegate.isShowing();
4271 if (wasOccluded && !isOccluded && showing) {
4272 mKeyguardOccluded = false;
4273 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004274 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4275 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4276 return true;
Jim Millerab954542014-10-10 18:21:49 -07004277 } else if (!wasOccluded && isOccluded && showing) {
4278 mKeyguardOccluded = true;
4279 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004280 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4281 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4282 return true;
4283 } else {
4284 return false;
4285 }
4286 }
4287
4288 private boolean isStatusBarKeyguard() {
4289 return mStatusBar != null
4290 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4291 }
4292
Jose Lima9546b202014-07-02 17:21:51 -07004293 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004294 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004295 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004296 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004297 return false;
4298 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004299 return true;
4300 }
4301
Jose Lima9546b202014-07-02 17:21:51 -07004302 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004303 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004304 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004305 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004306 // If the navigation bar has been hidden or shown, we need to do another
4307 // layout pass to update that window.
4308 return FINISH_LAYOUT_REDO_LAYOUT;
4309 }
4310 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004311 }
4312
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004313 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004314 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004315 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4316 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004317 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4318 if (newLidState == mLidState) {
4319 return;
4320 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004321
Jeff Brownc458ce92012-04-30 14:58:40 -07004322 mLidState = newLidState;
4323 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004324 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004325
4326 if (lidOpen) {
Bryce Lee584a4452014-10-21 15:55:55 -07004327 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch);
Jeff Brownc458ce92012-04-30 14:58:40 -07004328 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004329 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004330 }
4331 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004332
Michael Wright3818c922014-09-02 13:59:07 -07004333 @Override
4334 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4335 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4336 if (mCameraLensCoverState == lensCoverState) {
4337 return;
4338 }
4339 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4340 lensCoverState == CAMERA_LENS_UNCOVERED) {
4341 Intent intent;
4342 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4343 mKeyguardDelegate.isShowing();
4344 if (keyguardActive) {
4345 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4346 } else {
4347 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4348 }
Bryce Lee584a4452014-10-21 15:55:55 -07004349 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens);
Michael Wright3818c922014-09-02 13:59:07 -07004350 mContext.startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
4351 }
4352 mCameraLensCoverState = lensCoverState;
4353 }
4354
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004355 void setHdmiPlugged(boolean plugged) {
4356 if (mHdmiPlugged != plugged) {
4357 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004358 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004359 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004360 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004361 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004362 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004363 }
4364 }
4365
Joe Onoratoea495d42011-04-06 11:41:11 -07004366 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004367 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004368 // watch for HDMI plug messages if the hdmi switch exists
4369 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4370 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4371
Joe Onoratoea495d42011-04-06 11:41:11 -07004372 final String filename = "/sys/class/switch/hdmi/state";
4373 FileReader reader = null;
4374 try {
4375 reader = new FileReader(filename);
4376 char[] buf = new char[15];
4377 int n = reader.read(buf);
4378 if (n > 1) {
4379 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4380 }
4381 } catch (IOException ex) {
4382 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4383 } catch (NumberFormatException ex) {
4384 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4385 } finally {
4386 if (reader != null) {
4387 try {
4388 reader.close();
4389 } catch (IOException ex) {
4390 }
Joe Onoratodc100302011-01-11 17:07:41 -08004391 }
4392 }
4393 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004394 // This dance forces the code in setHdmiPlugged to run.
4395 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4396 mHdmiPlugged = !plugged;
4397 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004398 }
4399
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004400 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004401 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004402
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004403 final Runnable mScreenshotTimeout = new Runnable() {
4404 @Override public void run() {
4405 synchronized (mScreenshotLock) {
4406 if (mScreenshotConnection != null) {
4407 mContext.unbindService(mScreenshotConnection);
4408 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004409 }
Winson Chung9112ec32011-06-27 13:15:32 -07004410 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004411 }
4412 };
4413
4414 // Assume this is called from the Handler thread.
4415 private void takeScreenshot() {
4416 synchronized (mScreenshotLock) {
4417 if (mScreenshotConnection != null) {
4418 return;
4419 }
4420 ComponentName cn = new ComponentName("com.android.systemui",
4421 "com.android.systemui.screenshot.TakeScreenshotService");
4422 Intent intent = new Intent();
4423 intent.setComponent(cn);
4424 ServiceConnection conn = new ServiceConnection() {
4425 @Override
4426 public void onServiceConnected(ComponentName name, IBinder service) {
4427 synchronized (mScreenshotLock) {
4428 if (mScreenshotConnection != this) {
4429 return;
4430 }
4431 Messenger messenger = new Messenger(service);
4432 Message msg = Message.obtain(null, 1);
4433 final ServiceConnection myConn = this;
4434 Handler h = new Handler(mHandler.getLooper()) {
4435 @Override
4436 public void handleMessage(Message msg) {
4437 synchronized (mScreenshotLock) {
4438 if (mScreenshotConnection == myConn) {
4439 mContext.unbindService(mScreenshotConnection);
4440 mScreenshotConnection = null;
4441 mHandler.removeCallbacks(mScreenshotTimeout);
4442 }
4443 }
4444 }
4445 };
4446 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004447 msg.arg1 = msg.arg2 = 0;
4448 if (mStatusBar != null && mStatusBar.isVisibleLw())
4449 msg.arg1 = 1;
4450 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4451 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004452 try {
4453 messenger.send(msg);
4454 } catch (RemoteException e) {
4455 }
4456 }
4457 }
4458 @Override
4459 public void onServiceDisconnected(ComponentName name) {}
4460 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004461 if (mContext.bindServiceAsUser(
4462 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004463 mScreenshotConnection = conn;
4464 mHandler.postDelayed(mScreenshotTimeout, 10000);
4465 }
4466 }
Winson Chung9112ec32011-06-27 13:15:32 -07004467 }
4468
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004469 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004470 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004471 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004472 if (!mSystemBooted) {
4473 // If we have not yet booted, don't let key events do anything.
4474 return 0;
4475 }
4476
Jeff Brown037c33e2014-04-09 00:31:55 -07004477 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004478 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4479 final boolean canceled = event.isCanceled();
4480 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004481
Jeff Brown3122e442010-10-11 23:32:49 -07004482 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004483
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004484 // If screen is off then we treat the case where the keyguard is open but hidden
4485 // the same as if it were open and in front.
4486 // This will prevent any keys other than the power button from waking the screen
4487 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004488 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004489 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004490 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004491 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004492
Jeff Brown40013652012-05-16 21:22:36 -07004493 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004494 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004495 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004496 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004497 }
4498
Jeff Brown037c33e2014-04-09 00:31:55 -07004499 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004500 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004501 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4502 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004503 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004504 // When the device is interactive or the key is injected pass the
4505 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004506 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004507 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004508 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4509 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4510 // to the application but preserve its wake key status to make sure we still move
4511 // from dozing to fully interactive if we would normally go from off to fully
4512 // interactive.
4513 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004514 } else {
4515 // When the screen is off and the key is not injected, determine whether
4516 // to wake the device but don't pass the key to the application.
4517 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004518 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4519 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004520 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004521 }
4522
Justin Kohd378ad72013-04-01 12:18:26 -07004523 // If the key would be handled globally, just return the result, don't worry about special
4524 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004525 if (isValidGlobalKey(keyCode)
4526 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004527 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004528 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Michael Wright85b1af62014-06-04 14:51:58 -07004529 }
Justin Kohd378ad72013-04-01 12:18:26 -07004530 return result;
4531 }
4532
Jeff Brownbae8e772014-06-12 19:59:45 -07004533 boolean useHapticFeedback = down
4534 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4535 && event.getRepeatCount() == 0;
4536
Jeff Brown4d396052010-10-29 21:50:21 -07004537 // Handle special keys.
4538 switch (keyCode) {
4539 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004540 case KeyEvent.KEYCODE_VOLUME_UP:
4541 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004542 if (mUseTvRouting) {
4543 // On TVs volume keys never go to the foreground app
4544 result &= ~ACTION_PASS_TO_USER;
4545 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004546 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4547 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004548 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004549 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004550 mScreenshotChordVolumeDownKeyTriggered = true;
4551 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4552 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004553 cancelPendingPowerKeyAction();
4554 interceptScreenshotChord();
4555 }
4556 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004557 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004558 cancelPendingScreenshotChordAction();
4559 }
4560 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4561 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004562 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004563 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004564 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004565 cancelPendingPowerKeyAction();
4566 cancelPendingScreenshotChordAction();
4567 }
4568 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004569 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004570 cancelPendingScreenshotChordAction();
4571 }
4572 }
Jeff Brown4d396052010-10-29 21:50:21 -07004573 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004574 TelecomManager telecomManager = getTelecommService();
4575 if (telecomManager != null) {
4576 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004577 // If an incoming call is ringing, either VOLUME key means
4578 // "silence ringer". We handle these keys here, rather than
4579 // in the InCallScreen, to make sure we'll respond to them
4580 // even if the InCallScreen hasn't come to the foreground yet.
4581 // Look for the DOWN event here, to agree with the "fallback"
4582 // behavior in the InCallScreen.
4583 Log.i(TAG, "interceptKeyBeforeQueueing:"
4584 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004585
Santos Cordon6848f722014-05-21 15:22:12 -07004586 // Silence the ringer. (It's safe to call this
4587 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004588 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004589
Santos Cordon6848f722014-05-21 15:22:12 -07004590 // And *don't* pass this key thru to the current activity
4591 // (which is probably the InCallScreen.)
4592 result &= ~ACTION_PASS_TO_USER;
4593 break;
4594 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004595 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004596 && (result & ACTION_PASS_TO_USER) == 0) {
4597 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004598 // the application, just pass it to the session service.
4599
4600 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004601 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07004602 break;
Jeff Brown4d396052010-10-29 21:50:21 -07004603 }
4604 }
4605
RoboErik430fc482014-06-12 15:49:20 -07004606 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08004607 if (mUseTvRouting) {
4608 dispatchDirectAudioEvent(event);
4609 } else {
4610 // If we aren't passing to the user and no one else
4611 // handled it send it to the session manager to
4612 // figure out.
4613 MediaSessionLegacyHelper.getHelper(mContext)
4614 .sendVolumeKeyEvent(event, true);
4615 }
Jeff Brown4d396052010-10-29 21:50:21 -07004616 break;
4617 }
4618 }
4619 break;
4620 }
4621
4622 case KeyEvent.KEYCODE_ENDCALL: {
4623 result &= ~ACTION_PASS_TO_USER;
4624 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004625 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07004626 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004627 if (telecomManager != null) {
4628 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07004629 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004630 if (interactive && !hungUp) {
4631 mEndCallKeyHandled = false;
4632 mHandler.postDelayed(mEndCallLongPress,
4633 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
4634 } else {
4635 mEndCallKeyHandled = true;
4636 }
Jeff Brown4d396052010-10-29 21:50:21 -07004637 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004638 if (!mEndCallKeyHandled) {
4639 mHandler.removeCallbacks(mEndCallLongPress);
4640 if (!canceled) {
4641 if ((mEndcallBehavior
4642 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
4643 if (goHome()) {
4644 break;
4645 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07004646 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004647 if ((mEndcallBehavior
4648 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
4649 mPowerManager.goToSleep(event.getEventTime(),
4650 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
4651 isWakeKey = false;
4652 }
Jeff Brown4d396052010-10-29 21:50:21 -07004653 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004654 }
Jeff Brown4d396052010-10-29 21:50:21 -07004655 }
4656 break;
4657 }
4658
4659 case KeyEvent.KEYCODE_POWER: {
4660 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07004661 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07004662 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004663 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004664 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004665 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07004666 }
4667 break;
4668 }
4669
Jeff Brown6212a492014-03-07 13:58:47 -08004670 case KeyEvent.KEYCODE_SLEEP: {
4671 result &= ~ACTION_PASS_TO_USER;
Jeff Brownbae8e772014-06-12 19:59:45 -07004672 if (!mPowerManager.isInteractive()) {
4673 useHapticFeedback = false; // suppress feedback if already non-interactive
4674 }
Jeff Brownc12035c2014-08-13 18:52:25 -07004675 mPowerManager.goToSleep(event.getEventTime(),
4676 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
Jeff Brown6212a492014-03-07 13:58:47 -08004677 isWakeKey = false;
4678 break;
4679 }
4680
4681 case KeyEvent.KEYCODE_WAKEUP: {
4682 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004683 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08004684 break;
4685 }
4686
Jeff Brown4d396052010-10-29 21:50:21 -07004687 case KeyEvent.KEYCODE_MEDIA_PLAY:
4688 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4689 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07004690 case KeyEvent.KEYCODE_HEADSETHOOK:
4691 case KeyEvent.KEYCODE_MUTE:
4692 case KeyEvent.KEYCODE_MEDIA_STOP:
4693 case KeyEvent.KEYCODE_MEDIA_NEXT:
4694 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4695 case KeyEvent.KEYCODE_MEDIA_REWIND:
4696 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004697 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
4698 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07004699 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
4700 // If the global session is active pass all media keys to it
4701 // instead of the active window.
4702 result &= ~ACTION_PASS_TO_USER;
4703 }
Jeff Brown4d396052010-10-29 21:50:21 -07004704 if ((result & ACTION_PASS_TO_USER) == 0) {
4705 // Only do this if we would otherwise not pass it to the user. In that
4706 // case, the PhoneWindow class will do the same thing, except it will
4707 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07004708 // Note that we need to make a copy of the key event here because the
4709 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07004710 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07004711 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
4712 new KeyEvent(event));
4713 msg.setAsynchronous(true);
4714 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07004715 }
4716 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004717 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004718
Jeff Brown4d396052010-10-29 21:50:21 -07004719 case KeyEvent.KEYCODE_CALL: {
4720 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004721 TelecomManager telecomManager = getTelecommService();
4722 if (telecomManager != null) {
4723 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004724 Log.i(TAG, "interceptKeyBeforeQueueing:"
4725 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004726 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004727
Santos Cordon6848f722014-05-21 15:22:12 -07004728 // And *don't* pass this key thru to the current activity
4729 // (which is presumably the InCallScreen.)
4730 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004731 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004732 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004733 }
Jeff Brown4d396052010-10-29 21:50:21 -07004734 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004735 }
Michael Wright869a67c2014-08-26 19:33:06 -07004736 case KeyEvent.KEYCODE_VOICE_ASSIST: {
4737 // Only do this if we would otherwise not pass it to the user. In that case,
4738 // interceptKeyBeforeDispatching would apply a similar but different policy in
4739 // order to invoke voice assist actions. Note that we need to make a copy of the
4740 // key event here because the original key event will be recycled when we return.
4741 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
4742 mBroadcastWakeLock.acquire();
4743 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
4744 keyguardActive ? 1 : 0, 0);
4745 msg.setAsynchronous(true);
4746 msg.sendToTarget();
4747 }
4748 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004749 }
Jeff Brown26875502014-01-30 21:47:47 -08004750
Jeff Brownbae8e772014-06-12 19:59:45 -07004751 if (useHapticFeedback) {
4752 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
4753 }
4754
Jeff Brown26875502014-01-30 21:47:47 -08004755 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004756 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Jeff Brown26875502014-01-30 21:47:47 -08004757 }
Bryce Lee584a4452014-10-21 15:55:55 -07004758
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004759 return result;
4760 }
4761
Jeff Brown1c2e4942012-11-06 16:32:01 -08004762 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07004763 * Returns true if the key can have global actions attached to it.
4764 * We reserve all power management keys for the system since they require
4765 * very careful handling.
4766 */
4767 private static boolean isValidGlobalKey(int keyCode) {
4768 switch (keyCode) {
4769 case KeyEvent.KEYCODE_POWER:
4770 case KeyEvent.KEYCODE_WAKEUP:
4771 case KeyEvent.KEYCODE_SLEEP:
4772 return false;
4773 default:
4774 return true;
4775 }
4776 }
4777
4778 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08004779 * When the screen is off we ignore some keys that might otherwise typically
4780 * be considered wake keys. We filter them out here.
4781 *
4782 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
4783 * is always considered a wake key.
4784 */
4785 private boolean isWakeKeyWhenScreenOff(int keyCode) {
4786 switch (keyCode) {
4787 // ignore volume keys unless docked
4788 case KeyEvent.KEYCODE_VOLUME_UP:
4789 case KeyEvent.KEYCODE_VOLUME_DOWN:
4790 case KeyEvent.KEYCODE_VOLUME_MUTE:
4791 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
4792
4793 // ignore media and camera keys
4794 case KeyEvent.KEYCODE_MUTE:
4795 case KeyEvent.KEYCODE_HEADSETHOOK:
4796 case KeyEvent.KEYCODE_MEDIA_PLAY:
4797 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4798 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
4799 case KeyEvent.KEYCODE_MEDIA_STOP:
4800 case KeyEvent.KEYCODE_MEDIA_NEXT:
4801 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4802 case KeyEvent.KEYCODE_MEDIA_REWIND:
4803 case KeyEvent.KEYCODE_MEDIA_RECORD:
4804 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004805 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08004806 case KeyEvent.KEYCODE_CAMERA:
4807 return false;
4808 }
4809 return true;
4810 }
4811
4812
Jeff Brown56194eb2011-03-02 19:23:13 -08004813 /** {@inheritDoc} */
4814 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07004815 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
4816 if ((policyFlags & FLAG_WAKE) != 0) {
Bryce Lee5c138322014-11-03 08:26:09 -08004817 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion)) {
4818 return 0;
4819 }
Michael Wright70af00a2014-09-03 19:30:20 -07004820 }
Bryce Lee5c138322014-11-03 08:26:09 -08004821
Michael Wright70af00a2014-09-03 19:30:20 -07004822 if (shouldDispatchInputWhenNonInteractive()) {
4823 return ACTION_PASS_TO_USER;
4824 }
Bryce Lee5c138322014-11-03 08:26:09 -08004825
Bryce Lee812d7022014-11-10 13:33:28 -08004826 // If we have not passed the action up and we are in theater mode without dreaming,
4827 // there will be no dream to intercept the touch and wake into ambient. The device should
4828 // wake up in this case.
4829 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
4830 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming);
4831 }
4832
Jeff Brown037c33e2014-04-09 00:31:55 -07004833 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08004834 }
4835
Michael Wright70af00a2014-09-03 19:30:20 -07004836 private boolean shouldDispatchInputWhenNonInteractive() {
Bryce Lee5c138322014-11-03 08:26:09 -08004837 // Send events to keyguard while the screen is on.
Jim Millerab954542014-10-10 18:21:49 -07004838 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
4839 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08004840 return true;
4841 }
4842
4843 // Send events to a dozing dream even if the screen is off since the dream
4844 // is in control of the state of the screen.
4845 IDreamManager dreamManager = getDreamManager();
4846
4847 try {
4848 if (dreamManager != null && dreamManager.isDreaming()) {
4849 return true;
4850 }
4851 } catch (RemoteException e) {
4852 Slog.e(TAG, "RemoteException when checking if dreaming", e);
4853 }
4854
4855 // Otherwise, consume events since the user can't see what is being
4856 // interacted with.
4857 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07004858 }
4859
RoboErik001c59c2015-01-26 15:53:51 -08004860 private void dispatchDirectAudioEvent(KeyEvent event) {
4861 if (event.getAction() != KeyEvent.ACTION_DOWN) {
4862 return;
4863 }
4864 int keyCode = event.getKeyCode();
4865 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND;
4866 String pkgName = mContext.getOpPackageName();
4867 switch (keyCode) {
4868 case KeyEvent.KEYCODE_VOLUME_UP:
4869 try {
4870 if (mUseMasterVolume) {
4871 getAudioService().adjustMasterVolume(AudioManager.ADJUST_RAISE, flags,
4872 pkgName);
4873 } else {
4874 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
4875 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4876 }
4877 } catch (RemoteException e) {
4878 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
4879 }
4880 break;
4881 case KeyEvent.KEYCODE_VOLUME_DOWN:
4882 try {
4883 if (mUseMasterVolume) {
4884 getAudioService().adjustMasterVolume(AudioManager.ADJUST_LOWER, flags,
4885 pkgName);
4886 } else {
4887 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
4888 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4889 }
4890 } catch (RemoteException e) {
4891 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
4892 }
4893 break;
4894 case KeyEvent.KEYCODE_VOLUME_MUTE:
4895 try {
4896 if (event.getRepeatCount() == 0) {
4897 if (mUseMasterVolume) {
4898 getAudioService().adjustMasterVolume(AudioManager.ADJUST_TOGGLE_MUTE,
4899 flags, pkgName);
4900 } else {
4901 getAudioService().adjustSuggestedStreamVolume(
4902 AudioManager.ADJUST_TOGGLE_MUTE,
4903 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4904 }
4905 }
4906 } catch (RemoteException e) {
4907 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
4908 }
4909 break;
4910 }
4911 }
4912
Jeff Brown40013652012-05-16 21:22:36 -07004913 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
4914 if (DEBUG_INPUT) {
4915 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004916 }
4917
Jeff Brown40013652012-05-16 21:22:36 -07004918 if (mHavePendingMediaKeyRepeatWithWakeLock) {
4919 if (DEBUG_INPUT) {
4920 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
4921 }
4922
4923 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
4924 mHavePendingMediaKeyRepeatWithWakeLock = false;
4925 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
4926 }
4927
4928 dispatchMediaKeyWithWakeLockToAudioService(event);
4929
4930 if (event.getAction() == KeyEvent.ACTION_DOWN
4931 && event.getRepeatCount() == 0) {
4932 mHavePendingMediaKeyRepeatWithWakeLock = true;
4933
4934 Message msg = mHandler.obtainMessage(
4935 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
4936 msg.setAsynchronous(true);
4937 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
4938 } else {
4939 mBroadcastWakeLock.release();
4940 }
4941 }
4942
4943 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
4944 mHavePendingMediaKeyRepeatWithWakeLock = false;
4945
4946 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
4947 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
4948 if (DEBUG_INPUT) {
4949 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
4950 }
4951
4952 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
4953 mBroadcastWakeLock.release();
4954 }
4955
4956 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
4957 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07004958 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004959 }
4960 }
4961
Michael Wright869a67c2014-08-26 19:33:06 -07004962 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
4963 Intent voiceIntent =
4964 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
4965 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
4966 mContext.startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
4967 mBroadcastWakeLock.release();
4968 }
4969
Mike Lockwood1753f7f2009-08-24 14:49:07 -07004970 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08004971 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07004972 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07004973 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
4974 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
4975 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04004976 } else {
4977 try {
4978 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
4979 ServiceManager.getService(Context.UI_MODE_SERVICE));
4980 mUiMode = uiModeService.getCurrentModeType();
4981 } catch (RemoteException e) {
4982 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07004983 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004984 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08004985 synchronized (mLock) {
4986 updateOrientationListenerLp();
4987 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07004988 }
4989 };
4990
Jeff Brown6aaf2952012-10-05 16:01:08 -07004991 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
4992 @Override
4993 public void onReceive(Context context, Intent intent) {
4994 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08004995 if (mKeyguardDelegate != null) {
4996 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07004997 }
4998 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08004999 if (mKeyguardDelegate != null) {
5000 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005001 }
5002 }
5003 }
5004 };
5005
Christopher Tate5e08af02012-09-21 17:17:22 -07005006 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5007 @Override
5008 public void onReceive(Context context, Intent intent) {
5009 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5010 // tickle the settings observer: this first ensures that we're
5011 // observing the relevant settings for the newly-active user,
5012 // and then updates our own bookkeeping based on the now-
5013 // current user.
5014 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005015
5016 // force a re-application of focused window sysui visibility.
5017 // the window may never have been shown for this user
5018 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005019 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005020 mLastSystemUiFlags = 0;
5021 updateSystemUiVisibilityLw();
5022 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005023 }
5024 }
5025 };
5026
John Spurlockd9b70bd2014-02-06 17:02:44 -05005027 private final Runnable mRequestTransientNav = new Runnable() {
5028 @Override
5029 public void run() {
5030 requestTransientBars(mNavigationBar);
5031 }
5032 };
5033
John Spurlocke1f366f2013-08-05 12:22:40 -04005034 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005035 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005036 if (!isUserSetupComplete()) {
5037 // Swipe-up for navigation bar is disabled during setup
5038 return;
5039 }
John Spurlock27735a42013-08-14 17:57:38 -04005040 boolean sb = mStatusBarController.checkShowTransientBarLw();
5041 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005042 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005043 // Don't show status bar when swiping on already visible navigation bar
5044 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005045 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005046 return;
5047 }
John Spurlock27735a42013-08-14 17:57:38 -04005048 if (sb) mStatusBarController.showTransient();
5049 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005050 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005051 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005052 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005053 }
5054 }
5055
Jeff Brown3ee549c2014-09-22 20:14:39 -07005056 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005057 @Override
Jeff Brown140ffc72014-05-01 15:18:00 -07005058 public void goingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005059 EventLog.writeEvent(70000, 0);
Jeff Brown36c4db82014-09-19 12:05:31 -07005060 if (DEBUG_WAKEUP) Slog.i(TAG, "Going to sleep...");
Jeff Brown3ee549c2014-09-22 20:14:39 -07005061
5062 // We must get this work done here because the power manager will drop
5063 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005064 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005065 mAwake = false;
5066 mKeyguardDrawComplete = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005067 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005068 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005069 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005070 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005071
5072 if (mKeyguardDelegate != null) {
5073 mKeyguardDelegate.onScreenTurnedOff(why);
5074 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005075 }
5076
Jeff Brown13f00f02014-10-31 14:45:50 -07005077 private void wakeUpFromPowerKey(long eventTime) {
5078 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey);
5079 }
5080
Bryce Lee5c138322014-11-03 08:26:09 -08005081 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode) {
Bryce Lee584a4452014-10-21 15:55:55 -07005082 if (!wakeInTheaterMode && isTheaterModeEnabled()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005083 return false;
Bryce Lee584a4452014-10-21 15:55:55 -07005084 }
5085
5086 mPowerManager.wakeUp(wakeTime);
Bryce Lee5c138322014-11-03 08:26:09 -08005087 return true;
Bryce Lee584a4452014-10-21 15:55:55 -07005088 }
5089
Jeff Brown3ee549c2014-09-22 20:14:39 -07005090 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005091 @Override
Jeff Brown36c4db82014-09-19 12:05:31 -07005092 public void wakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005093 EventLog.writeEvent(70000, 1);
Jeff Brown36c4db82014-09-19 12:05:31 -07005094 if (DEBUG_WAKEUP) Slog.i(TAG, "Waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005095
Jeff Brown3ee549c2014-09-22 20:14:39 -07005096 // Since goToSleep performs these functions synchronously, we must
5097 // do the same here. We cannot post this work to a handler because
5098 // that might cause it to become reordered with respect to what
5099 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005100 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005101 mAwake = true;
5102 mKeyguardDrawComplete = false;
5103 if (mKeyguardDelegate != null) {
5104 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5105 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
5106 }
5107
Jeff Browna20dda42014-05-27 20:57:24 -07005108 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005109 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005110 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005111 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005112
Jim Miller5ecd8112013-01-09 18:50:26 -08005113 if (mKeyguardDelegate != null) {
Craig Mautner8a0da012014-05-31 15:13:37 -07005114 mKeyguardDelegate.onScreenTurnedOn(mKeyguardDelegateCallback);
Jeff Brown36c4db82014-09-19 12:05:31 -07005115 // ... eventually calls finishKeyguardDrawn
Jeff Brownc38c9be2012-10-04 13:16:19 -07005116 } else {
Craig Mautner8a0da012014-05-31 15:13:37 -07005117 if (DEBUG_WAKEUP) Slog.d(TAG, "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
Jeff Brown36c4db82014-09-19 12:05:31 -07005118 finishKeyguardDrawn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005119 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005120 }
5121
Jeff Brown36c4db82014-09-19 12:05:31 -07005122 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005123 synchronized (mLock) {
5124 if (!mAwake || mKeyguardDrawComplete) {
5125 return; // spurious
5126 }
5127
Jeff Brown36c4db82014-09-19 12:05:31 -07005128 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005129 if (mKeyguardDelegate != null) {
5130 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5131 }
5132 }
5133
5134 finishScreenTurningOn();
5135 }
5136
5137 // Called on the DisplayManager's DisplayPowerController thread.
5138 @Override
5139 public void screenTurnedOff() {
5140 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5141
5142 synchronized (mLock) {
5143 mScreenOnEarly = false;
5144 mScreenOnFully = false;
5145 mWindowManagerDrawComplete = false;
5146 mScreenOnListener = null;
5147 updateOrientationListenerLp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005148 }
5149 }
5150
Jeff Brown3ee549c2014-09-22 20:14:39 -07005151 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005152 @Override
5153 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005154 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005155
Jeff Brown3ee549c2014-09-22 20:14:39 -07005156 synchronized (mLock) {
5157 mScreenOnEarly = true;
5158 mScreenOnFully = false;
5159 mWindowManagerDrawComplete = false;
5160 mScreenOnListener = screenOnListener;
5161 updateOrientationListenerLp();
5162 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005163
Craig Mautnerc3daedd2014-09-13 11:17:23 -07005164 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5165 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown36c4db82014-09-19 12:05:31 -07005166 // ... eventually calls finishWindowsDrawn
5167 }
5168
Jeff Brown36c4db82014-09-19 12:05:31 -07005169 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005170 synchronized (mLock) {
5171 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
5172 return; // spurious
5173 }
5174
Jeff Brown36c4db82014-09-19 12:05:31 -07005175 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005176 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005177
5178 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005179 }
5180
Craig Mautner8a0da012014-05-31 15:13:37 -07005181 private void finishScreenTurningOn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005182 final ScreenOnListener listener;
5183 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005184 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005185 if (DEBUG_WAKEUP) Slog.d(TAG,
5186 "finishScreenTurningOn: mAwake=" + mAwake
5187 + ", mScreenOnEarly=" + mScreenOnEarly
5188 + ", mScreenOnFully=" + mScreenOnFully
5189 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5190 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5191
5192 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5193 || (mAwake && !mKeyguardDrawComplete)) {
5194 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005195 }
5196
Jeff Brown3ee549c2014-09-22 20:14:39 -07005197 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5198 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005199 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005200 mScreenOnFully = true;
5201
5202 // Remember the first time we draw the keyguard so we know when we're done with
5203 // the main part of booting and can enable the screen and hide boot messages.
5204 if (!mKeyguardDrawnOnce && mAwake) {
5205 mKeyguardDrawnOnce = true;
5206 enableScreen = true;
5207 if (mBootMessageNeedsHiding) {
5208 mBootMessageNeedsHiding = false;
5209 hideBootMessages();
5210 }
5211 } else {
5212 enableScreen = false;
5213 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005214 }
5215
Jeff Brown3ee549c2014-09-22 20:14:39 -07005216 if (listener != null) {
5217 listener.onScreenOn();
5218 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005219
Jeff Brown3ee549c2014-09-22 20:14:39 -07005220 if (enableScreen) {
5221 try {
5222 mWindowManager.enableScreenIfNeeded();
5223 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005224 }
Craig Mautnera631d492014-08-05 15:16:01 -07005225 }
5226 }
5227
5228 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005229 synchronized (mLock) {
5230 if (!mKeyguardDrawnOnce) {
5231 mBootMessageNeedsHiding = true;
5232 return; // keyguard hasn't drawn the first time yet, not done booting
5233 }
Craig Mautnera631d492014-08-05 15:16:01 -07005234 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005235
5236 if (mBootMsgDialog != null) {
5237 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5238 mBootMsgDialog.dismiss();
5239 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005240 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005241 }
5242
5243 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005244 public boolean isScreenOn() {
5245 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005246 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005247
Dianne Hackborn08743722009-12-21 12:16:51 -08005248 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005249 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005250 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005251 if (mKeyguardDelegate != null) {
5252 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005253 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005254 }
5255
5256 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005257 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005258 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005259 if (mKeyguardDelegate != null) {
5260 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005261 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005262 }
5263
Jim Millerab954542014-10-10 18:21:49 -07005264 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005265 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005266 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005267 }
5268
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005269 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005270 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005271 public boolean isKeyguardLocked() {
5272 return keyguardOn();
5273 }
5274
5275 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005276 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005277 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005278 if (mKeyguardDelegate == null) return false;
5279 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005280 }
5281
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005282 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005283 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005284 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005285 if (mKeyguardDelegate == null) return false;
5286 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005287 }
5288
Jose Lima9546b202014-07-02 17:21:51 -07005289 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005290 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005291 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005292 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005293 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005294 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005295 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005296 // ask the keyguard to prompt the user to authenticate if necessary
5297 mKeyguardDelegate.dismiss();
5298 }
5299 });
5300 }
5301 }
5302
5303 public void notifyActivityDrawnForKeyguardLw() {
5304 if (mKeyguardDelegate != null) {
5305 mHandler.post(new Runnable() {
5306 @Override
5307 public void run() {
5308 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005309 }
5310 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005311 }
5312 }
5313
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005314 @Override
5315 public boolean isKeyguardDrawnLw() {
5316 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005317 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005318 }
5319 }
5320
Jorim Jaggi0d674622014-05-21 01:34:15 +02005321 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005322 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005323 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005324 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005325 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005326 }
5327 }
5328
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005329 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005330 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005331 }
5332
5333 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005334 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005335 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005336
Jeff Brown01a98dd2011-09-20 15:08:29 -07005337 @Override
5338 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005339 if (false) {
5340 Slog.v(TAG, "rotationForOrientationLw(orient="
5341 + orientation + ", last=" + lastRotation
5342 + "); user=" + mUserRotation + " "
5343 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5344 ? "USER_ROTATION_LOCKED" : "")
5345 );
5346 }
5347
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005348 if (mForceDefaultOrientation) {
5349 return Surface.ROTATION_0;
5350 }
5351
The Android Open Source Project0727d222009-03-11 12:11:58 -07005352 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005353 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5354 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005355 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005356 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005357
Jeff Browndec6cf42011-11-15 14:08:20 -08005358 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005359 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005360 // Ignore sensor when lid switch is open and rotation is forced.
5361 preferredRotation = mLidOpenRotation;
5362 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005363 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005364 // Ignore sensor when in car dock unless explicitly enabled.
5365 // This case can override the behavior of NOSENSOR, and can also
5366 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005367 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005368 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005369 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5370 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5371 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005372 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005373 // Ignore sensor when in desk dock unless explicitly enabled.
5374 // This case can override the behavior of NOSENSOR, and can also
5375 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005376 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005377 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005378 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5379 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005380 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005381 preferredRotation = mDemoHdmiRotation;
5382 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5383 && mUndockedHdmiRotation >= 0) {
5384 // Ignore sensor when plugged into HDMI and an undocked orientation has
5385 // been specified in the configuration (only for legacy devices without
5386 // full multi-display support).
5387 // Note that the dock orientation overrides the HDMI orientation.
5388 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005389 } else if (mDemoRotationLock) {
5390 // Ignore sensor when demo rotation lock is enabled.
5391 // Note that the dock orientation and HDMI rotation lock override this.
5392 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005393 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5394 // Application just wants to remain locked in the last rotation.
5395 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005396 } else if (!mSupportAutoRotation) {
5397 // If we don't support auto-rotation then bail out here and ignore
5398 // the sensor and any rotation lock settings.
5399 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005400 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005401 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005402 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5403 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5404 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5405 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005406 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5407 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5408 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5409 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5410 // Otherwise, use sensor only if requested by the application or enabled
5411 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005412 if (mAllowAllRotations < 0) {
5413 // Can't read this during init() because the context doesn't
5414 // have display metrics at that time so we cannot determine
5415 // tablet vs. phone then.
5416 mAllowAllRotations = mContext.getResources().getBoolean(
5417 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5418 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005419 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005420 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005421 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5422 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005423 preferredRotation = sensorRotation;
5424 } else {
5425 preferredRotation = lastRotation;
5426 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005427 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5428 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5429 // Apply rotation lock. Does not apply to NOSENSOR.
5430 // The idea is that the user rotation expresses a weak preference for the direction
5431 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5432 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005433 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005434 } else {
5435 // No overriding preference.
5436 // We will do exactly what the application asked us to do.
5437 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005438 }
5439
Dianne Hackborne5439f22010-10-02 16:53:50 -07005440 switch (orientation) {
5441 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005442 // Return portrait unless overridden.
5443 if (isAnyPortrait(preferredRotation)) {
5444 return preferredRotation;
5445 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005446 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005447
Jeff Brown01a98dd2011-09-20 15:08:29 -07005448 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005449 // Return landscape unless overridden.
5450 if (isLandscapeOrSeascape(preferredRotation)) {
5451 return preferredRotation;
5452 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005453 return mLandscapeRotation;
5454
5455 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005456 // Return reverse portrait unless overridden.
5457 if (isAnyPortrait(preferredRotation)) {
5458 return preferredRotation;
5459 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005460 return mUpsideDownRotation;
5461
5462 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005463 // Return seascape unless overridden.
5464 if (isLandscapeOrSeascape(preferredRotation)) {
5465 return preferredRotation;
5466 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005467 return mSeascapeRotation;
5468
5469 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005470 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005471 // Return either landscape rotation.
5472 if (isLandscapeOrSeascape(preferredRotation)) {
5473 return preferredRotation;
5474 }
5475 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005476 return lastRotation;
5477 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005478 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005479
Jeff Brown01a98dd2011-09-20 15:08:29 -07005480 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005481 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005482 // Return either portrait rotation.
5483 if (isAnyPortrait(preferredRotation)) {
5484 return preferredRotation;
5485 }
5486 if (isAnyPortrait(lastRotation)) {
5487 return lastRotation;
5488 }
5489 return mPortraitRotation;
5490
5491 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005492 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5493 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005494 if (preferredRotation >= 0) {
5495 return preferredRotation;
5496 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005497 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005498 }
5499 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005500 }
5501
Jeff Brown01a98dd2011-09-20 15:08:29 -07005502 @Override
5503 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5504 switch (orientation) {
5505 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5506 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5507 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5508 return isAnyPortrait(rotation);
5509
5510 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5511 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5512 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5513 return isLandscapeOrSeascape(rotation);
5514
5515 default:
5516 return true;
5517 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005518 }
5519
Jeff Brownc0347aa2011-09-23 17:26:09 -07005520 @Override
5521 public void setRotationLw(int rotation) {
5522 mOrientationListener.setCurrentRotation(rotation);
5523 }
5524
Jeff Brown01a98dd2011-09-20 15:08:29 -07005525 private boolean isLandscapeOrSeascape(int rotation) {
5526 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005527 }
5528
Jeff Brown01a98dd2011-09-20 15:08:29 -07005529 private boolean isAnyPortrait(int rotation) {
5530 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005531 }
5532
Jose Lima9546b202014-07-02 17:21:51 -07005533 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005534 public int getUserRotationMode() {
5535 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005536 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5537 WindowManagerPolicy.USER_ROTATION_FREE :
5538 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005539 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005540
5541 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005542 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005543 public void setUserRotationMode(int mode, int rot) {
5544 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005545
5546 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005547 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07005548 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005549 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005550 rot,
5551 UserHandle.USER_CURRENT);
5552 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005553 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005554 0,
5555 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005556 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07005557 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005558 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005559 1,
5560 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005561 }
5562 }
5563
Jose Lima9546b202014-07-02 17:21:51 -07005564 @Override
Jeff Brownac143512012-04-05 18:57:33 -07005565 public void setSafeMode(boolean safeMode) {
5566 mSafeMode = safeMode;
5567 performHapticFeedbackLw(null, safeMode
5568 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
5569 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005570 }
Craig Mautnereda67292013-04-28 13:50:14 -07005571
Dianne Hackborn181ceb52009-08-27 22:16:40 -07005572 static long[] getLongIntArray(Resources r, int resid) {
5573 int[] ar = r.getIntArray(resid);
5574 if (ar == null) {
5575 return null;
5576 }
5577 long[] out = new long[ar.length];
5578 for (int i=0; i<ar.length; i++) {
5579 out[i] = ar[i];
5580 }
5581 return out;
5582 }
Craig Mautnereda67292013-04-28 13:50:14 -07005583
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005584 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005585 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005586 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07005587 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08005588 mKeyguardDelegate.onSystemReady();
5589
Michael Wright3818c922014-09-02 13:59:07 -07005590 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07005591 updateUiMode();
Dianne Hackbornb1a79802009-09-29 15:18:31 -07005592 synchronized (mLock) {
5593 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08005594 mSystemReady = true;
5595 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07005596 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08005597 public void run() {
5598 updateSettings();
5599 }
5600 });
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005601 }
5602 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005603
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005604 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005605 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005606 public void systemBooted() {
Jim Millere5f910a2013-10-16 18:15:46 -07005607 if (mKeyguardDelegate != null) {
Jason Monk5eeebf52014-09-26 12:36:51 -04005608 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07005609 mKeyguardDelegate.onBootCompleted();
5610 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005611 synchronized (mLock) {
5612 mSystemBooted = true;
5613 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005614 wakingUp();
5615 screenTurningOn(null);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005616 }
5617
Dianne Hackborn661cd522011-08-22 00:26:20 -07005618 ProgressDialog mBootMsgDialog = null;
5619
5620 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005621 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005622 public void showBootMessage(final CharSequence msg, final boolean always) {
5623 mHandler.post(new Runnable() {
5624 @Override public void run() {
5625 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07005626 int theme;
5627 if (mContext.getPackageManager().hasSystemFeature(
5628 PackageManager.FEATURE_WATCH)) {
5629 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
5630 } else if (mContext.getPackageManager().hasSystemFeature(
5631 PackageManager.FEATURE_TELEVISION)) {
5632 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
5633 } else {
5634 theme = 0;
5635 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07005636
5637 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07005638 // This dialog will consume all events coming in to
5639 // it, to avoid it trying to do things too early in boot.
5640 @Override public boolean dispatchKeyEvent(KeyEvent event) {
5641 return true;
5642 }
5643 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
5644 return true;
5645 }
5646 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
5647 return true;
5648 }
5649 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
5650 return true;
5651 }
5652 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
5653 return true;
5654 }
5655 @Override public boolean dispatchPopulateAccessibilityEvent(
5656 AccessibilityEvent event) {
5657 return true;
5658 }
5659 };
Jeff Hao9f60c082014-10-28 18:51:07 -07005660 if (mContext.getPackageManager().isUpgrade()) {
5661 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
5662 } else {
5663 mBootMsgDialog.setTitle(R.string.android_start_title);
5664 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005665 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
5666 mBootMsgDialog.setIndeterminate(true);
5667 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07005668 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005669 mBootMsgDialog.getWindow().addFlags(
5670 WindowManager.LayoutParams.FLAG_DIM_BEHIND
5671 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
5672 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08005673 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
5674 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
5675 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005676 mBootMsgDialog.setCancelable(false);
5677 mBootMsgDialog.show();
5678 }
5679 mBootMsgDialog.setMessage(msg);
5680 }
5681 });
5682 }
5683
5684 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005685 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005686 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07005687 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005688 }
5689
Mike Lockwood28569302010-01-28 11:54:40 -05005690 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005691 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005692 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07005693 // ***************************************
5694 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
5695 // ***************************************
5696 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
5697 // WITH ITS LOCKS HELD.
5698 //
5699 // This code must be VERY careful about the locks
5700 // it acquires.
5701 // In fact, the current code acquires way too many,
5702 // and probably has lurking deadlocks.
5703
Mike Lockwood28569302010-01-28 11:54:40 -05005704 synchronized (mScreenLockTimeout) {
5705 if (mLockScreenTimerActive) {
5706 // reset the timer
5707 mHandler.removeCallbacks(mScreenLockTimeout);
5708 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5709 }
5710 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04005711 }
5712
Adam Cohenf7522022012-10-03 20:03:18 -07005713 class ScreenLockTimeout implements Runnable {
5714 Bundle options;
5715
5716 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005717 public void run() {
5718 synchronized (this) {
5719 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08005720 if (mKeyguardDelegate != null) {
5721 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005722 }
Mike Lockwood28569302010-01-28 11:54:40 -05005723 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07005724 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05005725 }
5726 }
Mike Lockwood28569302010-01-28 11:54:40 -05005727
Adam Cohenf7522022012-10-03 20:03:18 -07005728 public void setLockOptions(Bundle options) {
5729 this.options = options;
5730 }
5731 }
5732
5733 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
5734
Jose Lima9546b202014-07-02 17:21:51 -07005735 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07005736 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08005737 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
5738 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07005739 if (options != null) {
5740 // In case multiple calls are made to lockNow, we don't wipe out the options
5741 // until the runnable actually executes.
5742 mScreenLockTimeout.setLockOptions(options);
5743 }
Jim Miller93c518e2012-01-17 15:55:31 -08005744 mHandler.post(mScreenLockTimeout);
5745 }
5746
Mike Lockwood28569302010-01-28 11:54:40 -05005747 private void updateLockScreenTimeout() {
5748 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005749 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08005750 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05005751 if (mLockScreenTimerActive != enable) {
5752 if (enable) {
5753 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
5754 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5755 } else {
5756 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
5757 mHandler.removeCallbacks(mScreenLockTimeout);
5758 }
5759 mLockScreenTimerActive = enable;
5760 }
5761 }
5762 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005763
5764 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005765 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005766 public void enableScreenAfterBoot() {
5767 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07005768 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07005769 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005770 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07005771
Jeff Brownc458ce92012-04-30 14:58:40 -07005772 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07005773 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07005774 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07005775 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07005776 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07005777 }
Jeff Browna20dda42014-05-27 20:57:24 -07005778
5779 synchronized (mLock) {
5780 updateWakeGestureListenerLp();
5781 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005782 }
5783
Jeff Brown4f5fa282014-06-12 19:19:15 -07005784 void updateUiMode() {
5785 if (mUiModeManager == null) {
5786 mUiModeManager = IUiModeManager.Stub.asInterface(
5787 ServiceManager.getService(Context.UI_MODE_SERVICE));
5788 }
5789 try {
5790 mUiMode = mUiModeManager.getCurrentModeType();
5791 } catch (RemoteException e) {
5792 }
5793 }
5794
Jeff Brown01a98dd2011-09-20 15:08:29 -07005795 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005796 try {
5797 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07005798 mWindowManager.updateRotation(alwaysSendConfiguration, false);
5799 } catch (RemoteException e) {
5800 // Ignore
5801 }
5802 }
5803
5804 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
5805 try {
5806 //set orientation on WindowManager
5807 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005808 } catch (RemoteException e) {
5809 // Ignore
5810 }
5811 }
5812
Daniel Sandler6396c722013-04-16 20:19:09 -04005813 /**
5814 * Return an Intent to launch the currently active dock app as home. Returns
5815 * null if the standard home should be launched, which is the case if any of the following is
5816 * true:
5817 * <ul>
5818 * <li>The device is not in either car mode or desk mode
5819 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
5820 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
5821 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
5822 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
5823 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07005824 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04005825 */
5826 Intent createHomeDockIntent() {
5827 Intent intent = null;
5828
5829 // What home does is based on the mode, not the dock state. That
5830 // is, when in car mode you should be taken to car home regardless
5831 // of whether we are actually in a car dock.
5832 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
5833 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
5834 intent = mCarDockIntent;
5835 }
5836 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
5837 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
5838 intent = mDeskDockIntent;
5839 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07005840 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
5841 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5842 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
5843 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
5844 // Always launch dock home from home when watch is docked, if it exists.
5845 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04005846 }
5847
5848 if (intent == null) {
5849 return null;
5850 }
5851
5852 ActivityInfo ai = null;
5853 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
5854 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04005855 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07005856 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04005857 if (info != null) {
5858 ai = info.activityInfo;
5859 }
5860 if (ai != null
5861 && ai.metaData != null
5862 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
5863 intent = new Intent(intent);
5864 intent.setClassName(ai.packageName, ai.name);
5865 return intent;
5866 }
5867
5868 return null;
5869 }
5870
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005871 void startDockOrHome(boolean fromHomeKey) {
John Spurlockc8b46ca2013-04-08 12:59:26 -04005872 awakenDreams();
Daniel Sandler6396c722013-04-16 20:19:09 -04005873
5874 Intent dock = createHomeDockIntent();
5875 if (dock != null) {
5876 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005877 if (fromHomeKey) {
5878 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
5879 }
Daniel Sandler6396c722013-04-16 20:19:09 -04005880 mContext.startActivityAsUser(dock, UserHandle.CURRENT);
5881 return;
5882 } catch (ActivityNotFoundException e) {
5883 }
5884 }
5885
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005886 Intent intent;
5887
5888 if (fromHomeKey) {
5889 intent = new Intent(mHomeIntent);
5890 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
5891 } else {
5892 intent = mHomeIntent;
5893 }
5894
5895 mContext.startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005896 }
Craig Mautnereda67292013-04-28 13:50:14 -07005897
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005898 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005899 * goes to the home screen
5900 * @return whether it did anything
5901 */
5902 boolean goHome() {
5903 if (false) {
5904 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07005905 try {
5906 ActivityManagerNative.getDefault().stopAppSwitches();
5907 } catch (RemoteException e) {
5908 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07005909 sendCloseSystemWindows();
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005910 startDockOrHome(false /*fromHomeKey*/);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005911 } else {
5912 // This code brings home to the front or, if it is already
5913 // at the front, puts the device to sleep.
5914 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08005915 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
5916 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
5917 Log.d(TAG, "UTS-TEST-MODE");
5918 } else {
5919 ActivityManagerNative.getDefault().stopAppSwitches();
5920 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04005921 Intent dock = createHomeDockIntent();
5922 if (dock != null) {
5923 int result = ActivityManagerNative.getDefault()
5924 .startActivityAsUser(null, null, dock,
5925 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
5926 null, null, 0,
5927 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07005928 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04005929 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
5930 return false;
5931 }
5932 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005933 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005934 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08005935 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005936 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07005937 null, null, 0,
5938 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07005939 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07005940 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005941 return false;
5942 }
5943 } catch (RemoteException ex) {
5944 // bummer, the activity manager, which is in this process, is dead
5945 }
5946 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005947 return true;
5948 }
Craig Mautnereda67292013-04-28 13:50:14 -07005949
5950 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07005951 public void setCurrentOrientationLw(int newOrientation) {
5952 synchronized (mLock) {
5953 if (newOrientation != mCurrentAppOrientation) {
5954 mCurrentAppOrientation = newOrientation;
5955 updateOrientationListenerLp();
5956 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005957 }
5958 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08005959
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07005960 private void performAuditoryFeedbackForAccessibilityIfNeed() {
5961 if (!isGlobalAccessibilityGestureEnabled()) {
5962 return;
5963 }
5964 AudioManager audioManager = (AudioManager) mContext.getSystemService(
5965 Context.AUDIO_SERVICE);
5966 if (audioManager.isSilentMode()) {
5967 return;
5968 }
5969 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
5970 Settings.System.DEFAULT_NOTIFICATION_URI);
5971 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
5972 ringTone.play();
5973 }
Craig Mautnereda67292013-04-28 13:50:14 -07005974
Bryce Lee584a4452014-10-21 15:55:55 -07005975 private boolean isTheaterModeEnabled() {
5976 return Settings.Global.getInt(mContext.getContentResolver(),
5977 Settings.Global.THEATER_MODE_ON, 0) == 1;
5978 }
5979
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07005980 private boolean isGlobalAccessibilityGestureEnabled() {
5981 return Settings.Global.getInt(mContext.getContentResolver(),
5982 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
5983 }
5984
Craig Mautnereda67292013-04-28 13:50:14 -07005985 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07005986 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07005987 if (!mVibrator.hasVibrator()) {
5988 return false;
5989 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005990 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
5991 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07005992 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005993 return false;
5994 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08005995 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005996 switch (effectId) {
5997 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08005998 pattern = mLongPressVibePattern;
5999 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006000 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006001 pattern = mVirtualKeyVibePattern;
6002 break;
6003 case HapticFeedbackConstants.KEYBOARD_TAP:
6004 pattern = mKeyboardTapVibePattern;
6005 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006006 case HapticFeedbackConstants.CLOCK_TICK:
6007 pattern = mClockTickVibePattern;
6008 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006009 case HapticFeedbackConstants.CALENDAR_DATE:
6010 pattern = mCalendarDateVibePattern;
6011 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006012 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006013 pattern = mSafeModeDisabledVibePattern;
6014 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006015 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006016 pattern = mSafeModeEnabledVibePattern;
6017 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006018 default:
6019 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006020 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006021 int owningUid;
6022 String owningPackage;
6023 if (win != null) {
6024 owningUid = win.getOwningUid();
6025 owningPackage = win.getOwningPackage();
6026 } else {
6027 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006028 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006029 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006030 if (pattern.length == 1) {
6031 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006032 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006033 } else {
6034 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006035 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006036 }
6037 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006038 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006039
6040 @Override
6041 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006042 }
6043
Jeff Brownc38c9be2012-10-04 13:16:19 -07006044 @Override
6045 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006046 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006047 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006048 }
6049 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006050
Dianne Hackborndf89e652011-10-06 22:35:11 -07006051 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006052 // If there is no window focused, there will be nobody to handle the events
6053 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006054 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6055 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006056 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006057 return 0;
6058 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006059 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006060 // We are updating at a point where the keyguard has gotten
6061 // focus, but we were last in a state where the top window is
6062 // hiding it. This is probably because the keyguard as been
6063 // shown while the top window was displayed, so we want to ignore
6064 // it here because this is just a very transient change and it
6065 // will quickly lose focus once it correctly gets hidden.
6066 return 0;
6067 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006068
John Spurlock1db8b682014-02-18 11:18:59 -05006069 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006070 & ~mResettingSystemUiFlags
6071 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006072 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006073 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006074 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006075 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006076 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006077 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006078 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006079 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006080 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006081 return 0;
6082 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006083 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006084 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006085 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006086 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006087 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006088 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006089 try {
6090 IStatusBarService statusbar = getStatusBarService();
6091 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006092 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006093 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006094 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006095 } catch (RemoteException e) {
6096 // re-acquire status bar service next time it is needed.
6097 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006098 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006099 }
6100 });
6101 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006102 }
6103
Adrian Rooscd3884d2015-02-18 17:25:23 +01006104 private int updateLightStatusBarLw(int vis) {
6105 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6106 ? mStatusBar
6107 : mTopFullscreenOpaqueOrDimmingWindowState;
6108
6109 if (statusColorWin != null) {
6110 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6111 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6112 // its light flag.
6113 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6114 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6115 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6116 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6117 // Otherwise if it's dimming, clear the light flag.
6118 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6119 }
6120 }
6121 return vis;
6122 }
6123
John Spurlock79da8332013-09-20 12:04:47 -04006124 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006125 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006126 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6127 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006128 : mTopFullscreenOpaqueWindowState;
6129 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6130 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6131
John Spurlock27735a42013-08-14 17:57:38 -04006132 // prevent status bar interaction from clearing certain flags
John Spurlock79da8332013-09-20 12:04:47 -04006133 boolean statusBarHasFocus = win.getAttrs().type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006134 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006135 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6136 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006137 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006138 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6139 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006140 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006141 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6142 }
John Spurlockbd957402013-10-03 11:38:39 -04006143 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006144 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006145
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006146 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006147 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6148 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006149 }
6150
John Spurlock27735a42013-08-14 17:57:38 -04006151 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006152 boolean immersiveSticky =
6153 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006154 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006155 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006156 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006157 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6158 boolean hideStatusBarSysui =
6159 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006160 boolean hideNavBarSysui =
6161 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006162
John Spurlock27735a42013-08-14 17:57:38 -04006163 boolean transientStatusBarAllowed =
6164 mStatusBar != null && (
6165 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006166 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006167 || statusBarHasFocus);
6168
John Spurlockf1a36642013-10-12 17:50:42 -04006169 boolean transientNavBarAllowed =
6170 mNavigationBar != null &&
6171 hideNavBarSysui && immersiveSticky;
6172
John Spurlockf25706f2013-11-07 18:02:43 -05006173 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006174 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006175 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006176 && !transientNavBarAllowed;
6177 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006178 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006179 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006180 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006181 }
John Spurlock27735a42013-08-14 17:57:38 -04006182
6183 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6184
6185 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006186 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6187 boolean newImmersiveMode = isImmersiveMode(vis);
6188 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006189 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006190 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6191 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006192 }
John Spurlock27735a42013-08-14 17:57:38 -04006193
John Spurlockf1a36642013-10-12 17:50:42 -04006194 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6195
John Spurlocke1f366f2013-08-05 12:22:40 -04006196 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006197 }
6198
John Spurlockf1a36642013-10-12 17:50:42 -04006199 private void clearClearableFlagsLw() {
6200 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6201 if (newVal != mResettingSystemUiFlags) {
6202 mResettingSystemUiFlags = newVal;
6203 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6204 }
6205 }
6206
6207 private boolean isImmersiveMode(int vis) {
6208 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006209 return mNavigationBar != null
6210 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006211 && (vis & flags) != 0
6212 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006213 }
6214
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006215 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006216 * @return whether the navigation or status bar can be made translucent
6217 *
6218 * This should return true unless touch exploration is not enabled or
6219 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006220 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006221 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006222 return mTranslucentDecorEnabled
6223 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006224 }
6225
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006226 // Use this instead of checking config_showNavigationBar so that it can be consistently
6227 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006228 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006229 public boolean hasNavigationBar() {
6230 return mHasNavigationBar;
6231 }
6232
satok1bc0a492012-04-25 22:47:12 +09006233 @Override
6234 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6235 mLastInputMethodWindow = ime;
6236 mLastInputMethodTargetWindow = target;
6237 }
6238
Craig Mautnerf1b67412012-09-19 13:18:29 -07006239 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006240 public int getInputMethodWindowVisibleHeightLw() {
6241 return mDockBottom - mCurBottom;
6242 }
6243
6244 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006245 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006246 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006247 if (mKeyguardDelegate != null) {
6248 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006249 }
John Spurlock13451a22012-09-28 14:40:41 -04006250 if (mStatusBarService != null) {
6251 try {
6252 mStatusBarService.setCurrentUser(newUserId);
6253 } catch (RemoteException e) {
6254 // oh well
6255 }
6256 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006257 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006258 }
6259
6260 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006261 public boolean canMagnifyWindow(int windowType) {
6262 switch (windowType) {
6263 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6264 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6265 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6266 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6267 return false;
6268 }
6269 }
6270 return true;
6271 }
6272
6273 @Override
6274 public boolean isTopLevelWindow(int windowType) {
6275 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6276 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6277 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6278 }
6279 return true;
6280 }
6281
Jim Miller4eeb4f62012-11-08 00:04:29 -08006282 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006283 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006284 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006285 pw.print(" mSystemReady="); pw.print(mSystemReady);
6286 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006287 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006288 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006289 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006290 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006291 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6292 || mForceClearedSystemUiFlags != 0) {
6293 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6294 pw.print(Integer.toHexString(mLastSystemUiFlags));
6295 pw.print(" mResettingSystemUiFlags=0x");
6296 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6297 pw.print(" mForceClearedSystemUiFlags=0x");
6298 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006299 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006300 if (mLastFocusNeedsMenu) {
6301 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6302 pw.println(mLastFocusNeedsMenu);
6303 }
Jeff Browna20dda42014-05-27 20:57:24 -07006304 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6305 pw.println(mWakeGestureEnabledSetting);
6306
Jeff Brownbcdfc622014-03-06 19:13:04 -08006307 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006308 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6309 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006310 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6311 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6312 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6313 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006314 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006315 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006316 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6317 pw.print(mCarDockEnablesAccelerometer);
6318 pw.print(" mDeskDockEnablesAccelerometer=");
6319 pw.println(mDeskDockEnablesAccelerometer);
6320 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6321 pw.print(mLidKeyboardAccessibility);
6322 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006323 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006324 pw.print(prefix);
6325 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6326 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006327 pw.print(prefix);
6328 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6329 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006330 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006331 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6332 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6333 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6334 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6335 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6336 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6337 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006338 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6339 pw.print(","); pw.print(mOverscanScreenTop);
6340 pw.print(") "); pw.print(mOverscanScreenWidth);
6341 pw.print("x"); pw.println(mOverscanScreenHeight);
6342 if (mOverscanLeft != 0 || mOverscanTop != 0
6343 || mOverscanRight != 0 || mOverscanBottom != 0) {
6344 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6345 pw.print(" top="); pw.print(mOverscanTop);
6346 pw.print(" right="); pw.print(mOverscanRight);
6347 pw.print(" bottom="); pw.println(mOverscanBottom);
6348 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006349 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6350 pw.print(mRestrictedOverscanScreenLeft);
6351 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6352 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6353 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006354 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6355 pw.print(","); pw.print(mUnrestrictedScreenTop);
6356 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6357 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6358 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6359 pw.print(","); pw.print(mRestrictedScreenTop);
6360 pw.print(") "); pw.print(mRestrictedScreenWidth);
6361 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006362 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6363 pw.print(","); pw.print(mStableFullscreenTop);
6364 pw.print(")-("); pw.print(mStableFullscreenRight);
6365 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006366 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6367 pw.print(","); pw.print(mStableTop);
6368 pw.print(")-("); pw.print(mStableRight);
6369 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006370 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6371 pw.print(","); pw.print(mSystemTop);
6372 pw.print(")-("); pw.print(mSystemRight);
6373 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006374 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6375 pw.print(","); pw.print(mCurTop);
6376 pw.print(")-("); pw.print(mCurRight);
6377 pw.print(","); pw.print(mCurBottom); pw.println(")");
6378 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6379 pw.print(","); pw.print(mContentTop);
6380 pw.print(")-("); pw.print(mContentRight);
6381 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006382 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6383 pw.print(","); pw.print(mVoiceContentTop);
6384 pw.print(")-("); pw.print(mVoiceContentRight);
6385 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006386 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6387 pw.print(","); pw.print(mDockTop);
6388 pw.print(")-("); pw.print(mDockRight);
6389 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006390 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6391 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006392 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6393 pw.print(" mShowingDream="); pw.print(mShowingDream);
6394 pw.print(" mDreamingLockscreen="); pw.println(mDreamingLockscreen);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006395 if (mLastInputMethodWindow != null) {
6396 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6397 pw.println(mLastInputMethodWindow);
6398 }
6399 if (mLastInputMethodTargetWindow != null) {
6400 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6401 pw.println(mLastInputMethodTargetWindow);
6402 }
6403 if (mStatusBar != null) {
6404 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006405 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6406 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006407 }
6408 if (mNavigationBar != null) {
6409 pw.print(prefix); pw.print("mNavigationBar=");
6410 pw.println(mNavigationBar);
6411 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006412 if (mFocusedWindow != null) {
6413 pw.print(prefix); pw.print("mFocusedWindow=");
6414 pw.println(mFocusedWindow);
6415 }
6416 if (mFocusedApp != null) {
6417 pw.print(prefix); pw.print("mFocusedApp=");
6418 pw.println(mFocusedApp);
6419 }
6420 if (mWinDismissingKeyguard != null) {
6421 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6422 pw.println(mWinDismissingKeyguard);
6423 }
6424 if (mTopFullscreenOpaqueWindowState != null) {
6425 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6426 pw.println(mTopFullscreenOpaqueWindowState);
6427 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006428 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6429 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6430 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6431 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006432 if (mForcingShowNavBar) {
6433 pw.print(prefix); pw.print("mForcingShowNavBar=");
6434 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6435 pw.println(mForcingShowNavBarLayer);
6436 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006437 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006438 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006439 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6440 pw.print(" mForceStatusBarFromKeyguard=");
6441 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006442 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006443 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006444 pw.print(" mHomePressed="); pw.println(mHomePressed);
6445 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6446 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6447 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6448 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6449 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6450 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6451 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6452 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6453 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6454 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006455 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6456 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6457 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006458
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006459 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006460 mStatusBarController.dump(pw, prefix);
6461 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05006462 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07006463
Jeff Browna20dda42014-05-27 20:57:24 -07006464 if (mWakeGestureListener != null) {
6465 mWakeGestureListener.dump(pw, prefix);
6466 }
Jeff Brown600f0032014-05-22 17:06:00 -07006467 if (mOrientationListener != null) {
6468 mOrientationListener.dump(pw, prefix);
6469 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00006470 if (mBurnInProtectionHelper != null) {
6471 mBurnInProtectionHelper.dump(prefix, pw);
6472 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006473 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006474}