blob: d8cb2409de49eccca8a71fb3477ffa6c419057d6 [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;
Mark Renoufc1256912015-03-11 14:38:23 -040052import android.os.Build;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070053import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080054import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070055import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080056import android.os.Handler;
57import android.os.IBinder;
Jeff Brown32cbc38552011-12-01 14:01:49 -080058import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070059import android.os.Message;
60import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080061import android.os.PowerManager;
62import android.os.RemoteException;
63import android.os.ServiceManager;
64import android.os.SystemClock;
65import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080066import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070067import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080068import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070069import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080070import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070071import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040072import android.service.dreams.DreamService;
73import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070074import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070075import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070076import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080077import android.util.EventLog;
78import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070079import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080080import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070081import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080082import android.view.Gravity;
83import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080084import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080085import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070086import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070087import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080088import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080089import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080090import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080091import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080092import android.view.KeyEvent;
93import android.view.MotionEvent;
Jorim Jaggib10e33f2015-02-04 21:57:40 +010094import android.view.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080095import android.view.Surface;
96import android.view.View;
97import android.view.ViewConfiguration;
Mark Renoufc1256912015-03-11 14:38:23 -040098import android.view.ViewRootImpl;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080099import android.view.Window;
100import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800101import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700102import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800103import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800104import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800105import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800106import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200107import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800108import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800109import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800110import com.android.internal.statusbar.IStatusBarService;
Craig Mautnerae446592012-12-06 19:05:05 -0800111import com.android.internal.widget.PointerLocationView;
Craig Mautner8a0da012014-05-31 15:13:37 -0700112import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100113import com.android.server.policy.keyguard.KeyguardServiceDelegate;
114import com.android.server.policy.keyguard.KeyguardServiceDelegate.ShowListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800115
116import java.io.File;
117import java.io.FileReader;
118import java.io.IOException;
119import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700120import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800121import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800122
Dianne Hackbornc652de82013-02-15 16:32:56 -0800123import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700124import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
125import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
126import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700127import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
128import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
129import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800130
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800131/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700132 * WindowManagerPolicy implementation for the Android phone UI. This
133 * introduces a new method suffix, Lp, for an internal lock of the
134 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400135 * 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 -0700136 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800137 */
138public class PhoneWindowManager implements WindowManagerPolicy {
139 static final String TAG = "WindowManager";
140 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700141 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700142 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700143 static final boolean DEBUG_KEYGUARD = false;
144 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700145 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700146 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800147 static final boolean SHOW_STARTING_ANIMATIONS = true;
148 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400149
Daniel Sandler6396c722013-04-16 20:19:09 -0400150 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
151 // No longer recommended for desk docks; still useful in car docks.
152 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
153 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
154
Jeff Brown6d8fd272014-05-20 21:24:38 -0700155 static final int SHORT_PRESS_POWER_NOTHING = 0;
156 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
157 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
158 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800159 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700160
Joe Onoratod208e702010-10-08 16:22:43 -0400161 static final int LONG_PRESS_POWER_NOTHING = 0;
162 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
163 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700164 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700165
Jeff Brown13f00f02014-10-31 14:45:50 -0700166 static final int MULTI_PRESS_POWER_NOTHING = 0;
167 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
168 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
169
Michael Jurka3b1fc472011-06-13 10:54:40 -0700170 // These need to match the documentation/constant in
171 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800172 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800173 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700174 static final int LONG_PRESS_HOME_ASSIST = 2;
175
176 static final int DOUBLE_TAP_HOME_NOTHING = 0;
177 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800178
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000179 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
180 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
181
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700182 static final int APPLICATION_MEDIA_SUBLAYER = -2;
183 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800184 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800185 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Craig Mautner88400d32012-09-30 12:35:45 -0700186
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800187 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
188 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
189 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500190 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700191 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800192
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700193 /**
194 * These are the system UI flags that, when changing, can cause the layout
195 * of the screen to change.
196 */
197 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400198 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400199 | View.SYSTEM_UI_FLAG_FULLSCREEN
200 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200201 | View.NAVIGATION_BAR_TRANSLUCENT
202 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700203
John Spurlock7b414672014-07-18 13:02:39 -0400204 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
205 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
206 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
207 .build();
208
Jim Miller5ecd8112013-01-09 18:50:26 -0800209 /**
210 * Keyguard stuff
211 */
212 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100213 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700214 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800215
Jeff Brown6651a632011-11-28 12:59:11 -0800216 /* Table of Application Launch keys. Maps from key codes to intent categories.
217 *
218 * These are special keys that are used to launch particular kinds of applications,
219 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
220 * usage page. We don't support quite that many yet...
221 */
222 static SparseArray<String> sApplicationLaunchKeyCategories;
223 static {
224 sApplicationLaunchKeyCategories = new SparseArray<String>();
225 sApplicationLaunchKeyCategories.append(
226 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
227 sApplicationLaunchKeyCategories.append(
228 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
229 sApplicationLaunchKeyCategories.append(
230 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
231 sApplicationLaunchKeyCategories.append(
232 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
233 sApplicationLaunchKeyCategories.append(
234 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
235 sApplicationLaunchKeyCategories.append(
236 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
237 }
238
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700239 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
240 static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
241
Dianne Hackborndf89e652011-10-06 22:35:11 -0700242 /**
243 * Lock protecting internal state. Must not call out into window
244 * manager with lock held. (This lock will be acquired in places
245 * where the window manager is calling in with its own lock held.)
246 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800247 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700248
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800249 Context mContext;
250 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700251 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700252 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700253 PowerManager mPowerManager;
Jose Lima9546b202014-07-02 17:21:51 -0700254 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400255 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700256 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700257 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800258 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700259 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800260 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000261 BurnInProtectionHelper mBurnInProtectionHelper;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800262
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700263 // Vibrator pattern for haptic feedback of a long press.
264 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700265
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700266 // Vibrator pattern for haptic feedback of virtual key press.
267 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700268
Amith Yamasanic33cb712010-02-10 15:21:49 -0800269 // Vibrator pattern for a short vibration.
270 long[] mKeyboardTapVibePattern;
271
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700272 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
273 long[] mClockTickVibePattern;
274
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700275 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
276 long[] mCalendarDateVibePattern;
277
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700278 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
279 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700280
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700281 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
282 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700283
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800284 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
285 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400286
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800287 boolean mSafeMode;
288 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700289 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400290 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400291 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700292 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400293 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
294 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
295 int[] mNavigationBarHeightForRotation = new int[4];
296 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400297
Craig Mautnera631d492014-08-05 15:16:01 -0700298 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800299 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700300 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700301 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700302 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700303 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
304 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
305 }
306 };
307 final ShowListener mKeyguardDelegateCallback = new ShowListener() {
308 @Override
309 public void onShown(IBinder windowToken) {
310 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onShown.");
311 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
312 }
313 };
314
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800315 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800316 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900317 WindowState mLastInputMethodWindow = null;
318 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800319
Jeff Brown13f00f02014-10-31 14:45:50 -0700320 // FIXME This state is shared between the input reader and handler thread.
321 // Technically it's broken and buggy but it has been like this for many years
322 // and we have not yet seen any problems. Someday we'll rewrite this logic
323 // so that only one thread is involved in handling input policy. Unfortunately
324 // it's on a critical path for power management so we can't just post the work to the
325 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
326 // to hold wakelocks during dispatch and eliminating the critical path.
327 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800328 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700329 volatile int mPowerKeyPressCounter;
330 volatile boolean mEndCallKeyHandled;
331
Winson Chungd42a6cf2014-06-03 16:24:04 -0700332 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700333 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700334 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800335
Jeff Brown2e7760e2012-04-11 15:14:55 -0700336 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700337 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700338 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800339
Dianne Hackbornc777e072010-02-12 13:07:59 -0800340 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700341 boolean mSystemBooted;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800342 boolean mHdmiPlugged;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700343 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400344 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700345 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700346 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400347 int mCarDockRotation;
348 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700349 int mUndockedHdmiRotation;
350 int mDemoHdmiRotation;
351 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800352 int mDemoRotation;
353 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400354
Jeff Browna20dda42014-05-27 20:57:24 -0700355 boolean mWakeGestureEnabledSetting;
356 MyWakeGestureListener mWakeGestureListener;
357
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700358 // Default display does not rotate, apps that require non-default orientation will have to
359 // have the orientation emulated.
360 private boolean mForceDefaultOrientation = false;
361
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400362 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
363 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700364 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400365
Jeff Brownbcdfc622014-03-06 19:13:04 -0800366 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700367 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400368 boolean mCarDockEnablesAccelerometer;
369 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700370 int mLidKeyboardAccessibility;
371 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700372 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700373 int mShortPressOnPowerBehavior;
374 int mLongPressOnPowerBehavior;
375 int mDoublePressOnPowerBehavior;
376 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000377 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700378 boolean mAwake;
379 boolean mScreenOnEarly;
380 boolean mScreenOnFully;
381 ScreenOnListener mScreenOnListener;
382 boolean mKeyguardDrawComplete;
383 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800384 boolean mOrientationSensorEnabled = false;
385 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800386 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400387 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800388 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700389
Jeff Brown70825162012-03-28 17:27:48 -0700390 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800391
392 // The last window we were told about in focusChanged.
393 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800394 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800395
Jeff Brown70825162012-03-28 17:27:48 -0700396 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800397
Dianne Hackbornc652de82013-02-15 16:32:56 -0800398 // The current size of the screen; really; extends into the overscan area of
399 // the screen and doesn't account for any system elements like the status bar.
400 int mOverscanScreenLeft, mOverscanScreenTop;
401 int mOverscanScreenWidth, mOverscanScreenHeight;
402 // The current visible size of the screen; really; (ir)regardless of whether the status
403 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800404 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
405 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800406 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
407 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
408 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700409 // The current size of the screen; these may be different than (0,0)-(dw,dh)
410 // if the status bar can't be hidden; in that case it effectively carves out
411 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800412 int mRestrictedScreenLeft, mRestrictedScreenTop;
413 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700414 // During layout, the current screen borders accounting for any currently
415 // visible system UI elements.
416 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700417 // For applications requesting stable content insets, these are them.
418 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700419 // For applications requesting stable content insets but have also set the
420 // fullscreen window flag, these are the stable dimensions without the status bar.
421 int mStableFullscreenLeft, mStableFullscreenTop;
422 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800423 // During layout, the current screen borders with all outer decoration
424 // (status bar, input method dock) accounted for.
425 int mCurLeft, mCurTop, mCurRight, mCurBottom;
426 // During layout, the frame in which content should be displayed
427 // to the user, accounting for all screen decoration except for any
428 // space they deem as available for other content. This is usually
429 // the same as mCur*, but may be larger if the screen decor has supplied
430 // content insets.
431 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700432 // During layout, the frame in which voice content should be displayed
433 // to the user, accounting for all screen decoration except for any
434 // space they deem as available for other content.
435 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800436 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800437 // windows are placed.
438 int mDockLeft, mDockTop, mDockRight, mDockBottom;
439 // During layout, the layer at which the doc window is placed.
440 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700441 // During layout, this is the layer of the status bar.
442 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700443 int mLastSystemUiFlags;
444 // Bits that we are in the process of clearing, so we want to prevent
445 // them from being set by applications until everything has been updated
446 // to have them clear.
447 int mResettingSystemUiFlags = 0;
448 // Bits that we are currently always keeping cleared.
449 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800450 // What we last reported to system UI about whether the compatibility
451 // menu needs to be displayed.
452 boolean mLastFocusNeedsMenu = false;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700453
454 FakeWindow mHideNavFakeWindow = null;
455
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800456 static final Rect mTmpParentFrame = new Rect();
457 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800458 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800459 static final Rect mTmpContentFrame = new Rect();
460 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400461 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700462 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700463 static final Rect mTmpNavigationFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700464
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800465 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100466 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700467 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200468 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400469 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800470 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700471 boolean mForceStatusBarFromKeyguard;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700472 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800473 boolean mForcingShowNavBar;
474 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700475
476 // States of keyguard dismiss.
477 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
478 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
479 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
480 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
481
482 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
483 * be done once per window. */
484 private WindowState mWinDismissingKeyguard;
485
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700486 /** The window that is currently showing "over" the keyguard. If there is an app window
487 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
488 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
489 * the wallpaper. */
490 private WindowState mWinShowWhenLocked;
491
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700492 boolean mShowingLockscreen;
493 boolean mShowingDream;
494 boolean mDreamingLockscreen;
Jim Millerab954542014-10-10 18:21:49 -0700495 boolean mKeyguardSecure;
496 boolean mKeyguardSecureIncludingHidden;
497 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800498 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700499 boolean mHomeConsumed;
500 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800501 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700502 Intent mCarDockIntent;
503 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700504 boolean mSearchKeyShortcutPending;
505 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700506 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700507 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800508
Mike Lockwood28569302010-01-28 11:54:40 -0500509 // support for activating the lock screen while the screen is on
510 boolean mAllowLockscreenWhenOn;
511 int mLockScreenTimeout;
512 boolean mLockScreenTimerActive;
513
David Brownbaf8d092010-03-08 21:52:59 -0800514 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800515 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800516
517 // Behavior of POWER button while in-call and screen on.
518 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
519 int mIncallPowerBehavior;
520
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700521 Display mDisplay;
522
Dianne Hackborn9d132642011-04-21 17:26:39 -0700523 int mLandscapeRotation = 0; // default landscape rotation
524 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
525 int mPortraitRotation = 0; // default portrait rotation
526 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700527
Dianne Hackbornc652de82013-02-15 16:32:56 -0800528 int mOverscanLeft = 0;
529 int mOverscanTop = 0;
530 int mOverscanRight = 0;
531 int mOverscanBottom = 0;
532
Joe Onorato46b0d682010-11-22 17:37:27 -0800533 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700534 private int mLongPressOnHomeBehavior;
535
536 // What we do when the user double-taps on home
537 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800538
Bryce Lee584a4452014-10-21 15:55:55 -0700539 // Allowed theater mode wake actions
540 private boolean mAllowTheaterModeWakeFromKey;
541 private boolean mAllowTheaterModeWakeFromPowerKey;
542 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800543 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700544 private boolean mAllowTheaterModeWakeFromCameraLens;
545 private boolean mAllowTheaterModeWakeFromLidSwitch;
546 private boolean mAllowTheaterModeWakeFromWakeGesture;
547
Bryce Leed3b28402015-03-09 15:49:13 +0000548 // Whether to support long press from power button in non-interactive mode
549 private boolean mSupportLongPressPowerWhenNonInteractive;
550
Bryce Lee55e846d2014-11-04 12:43:44 -0800551 // Whether to go to sleep entering theater mode from power button
552 private boolean mGoToSleepOnButtonPressTheaterMode;
553
Winson Chung9112ec32011-06-27 13:15:32 -0700554 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700555 // Time to volume and power must be pressed within this interval of each other.
556 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700557 // Increase the chord delay when taking a screenshot from the keyguard
558 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800559 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700560 private boolean mScreenshotChordVolumeDownKeyTriggered;
561 private long mScreenshotChordVolumeDownKeyTime;
562 private boolean mScreenshotChordVolumeDownKeyConsumed;
563 private boolean mScreenshotChordVolumeUpKeyTriggered;
564 private boolean mScreenshotChordPowerKeyTriggered;
565 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700566
Michael Wrightb854e242013-02-05 17:54:02 -0800567 /* The number of steps between min and max brightness */
568 private static final int BRIGHTNESS_STEPS = 10;
569
Christopher Tate5e08af02012-09-21 17:17:22 -0700570 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800571 ShortcutManager mShortcutManager;
572 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700573 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700574 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800575
Craig Mautnerd625ab22013-09-06 13:40:31 -0700576 private int mCurrentUserId;
577
Justin Kohd378ad72013-04-01 12:18:26 -0700578 // Maps global key codes to the components that will handle them.
579 private GlobalKeyManager mGlobalKeyManager;
580
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700581 // Fallback actions by key code.
582 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
583 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800584
Jorim Jaggi76a16232014-08-08 17:00:47 +0200585 private final LogDecelerateInterpolator mLogDecelerateInterpolator
586 = new LogDecelerateInterpolator(100, 0);
587
Jeff Brown70825162012-03-28 17:27:48 -0700588 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
589 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700590 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
591 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700592 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
593 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
594 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700595 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700596 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700597 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700598 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700599 private static final int MSG_POWER_DELAYED_PRESS = 13;
600 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown70825162012-03-28 17:27:48 -0700601
602 private class PolicyHandler extends Handler {
603 @Override
604 public void handleMessage(Message msg) {
605 switch (msg.what) {
606 case MSG_ENABLE_POINTER_LOCATION:
607 enablePointerLocation();
608 break;
609 case MSG_DISABLE_POINTER_LOCATION:
610 disablePointerLocation();
611 break;
Jeff Brown40013652012-05-16 21:22:36 -0700612 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
613 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
614 break;
615 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
616 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
617 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700618 case MSG_DISPATCH_SHOW_RECENTS:
619 showRecentApps(false);
620 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700621 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
622 showGlobalActionsInternal();
623 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700624 case MSG_KEYGUARD_DRAWN_COMPLETE:
625 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700626 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700627 break;
628 case MSG_KEYGUARD_DRAWN_TIMEOUT:
629 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700630 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700631 break;
632 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
633 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700634 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700635 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700636 case MSG_HIDE_BOOT_MESSAGE:
637 handleHideBootMessage();
638 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700639 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
640 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
641 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700642 case MSG_POWER_DELAYED_PRESS:
643 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
644 finishPowerKeyPress();
645 break;
646 case MSG_POWER_LONG_PRESS:
647 powerLongPress();
648 break;
Jeff Brown70825162012-03-28 17:27:48 -0700649 }
650 }
651 }
652
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800653 private UEventObserver mHDMIObserver = new UEventObserver() {
654 @Override
655 public void onUEvent(UEventObserver.UEvent event) {
656 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
657 }
658 };
659
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800660 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800661 SettingsObserver(Handler handler) {
662 super(handler);
663 }
David Brownbaf8d092010-03-08 21:52:59 -0800664
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800665 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700666 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800667 ContentResolver resolver = mContext.getContentResolver();
668 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700669 Settings.System.END_BUTTON_BEHAVIOR), false, this,
670 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800671 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700672 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
673 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700674 resolver.registerContentObserver(Settings.Secure.getUriFor(
675 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
676 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800677 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700678 Settings.System.ACCELEROMETER_ROTATION), false, this,
679 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500680 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700681 Settings.System.USER_ROTATION), false, this,
682 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400683 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700684 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
685 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800686 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700687 Settings.System.POINTER_LOCATION), false, this,
688 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800689 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700690 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
691 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500692 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400693 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700694 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500695 resolver.registerContentObserver(Settings.Global.getUriFor(
696 Settings.Global.POLICY_CONTROL), false, this,
697 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800698 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800699 }
700
701 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800702 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700703 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800704 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800705 }
Craig Mautner967212c2013-04-13 21:10:58 -0700706
Jeff Browna20dda42014-05-27 20:57:24 -0700707 class MyWakeGestureListener extends WakeGestureListener {
708 MyWakeGestureListener(Context context, Handler handler) {
709 super(context, handler);
710 }
711
712 @Override
713 public void onWakeUp() {
714 synchronized (mLock) {
715 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700716 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Bryce Lee584a4452014-10-21 15:55:55 -0700717 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture);
Jeff Browna20dda42014-05-27 20:57:24 -0700718 }
719 }
720 }
721 }
722
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800723 class MyOrientationListener extends WindowOrientationListener {
Craig Mautnereee29c42013-01-17 14:44:34 -0800724 MyOrientationListener(Context context, Handler handler) {
725 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800726 }
Craig Mautner967212c2013-04-13 21:10:58 -0700727
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800728 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700729 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700730 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700731 updateRotation(false);
732 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800733 }
734 MyOrientationListener mOrientationListener;
735
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100736 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400737
John Spurlock27735a42013-08-14 17:57:38 -0400738 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400739 View.NAVIGATION_BAR_TRANSIENT,
740 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400741 View.NAVIGATION_BAR_TRANSLUCENT,
742 StatusBarManager.WINDOW_NAVIGATION_BAR,
743 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400744
John Spurlockf1a36642013-10-12 17:50:42 -0400745 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400746
Craig Mautner037aa8d2013-06-07 10:35:44 -0700747 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400748
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700749 IStatusBarService getStatusBarService() {
750 synchronized (mServiceAquireLock) {
751 if (mStatusBarService == null) {
752 mStatusBarService = IStatusBarService.Stub.asInterface(
753 ServiceManager.getService("statusbar"));
754 }
755 return mStatusBarService;
756 }
757 }
758
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700759 /*
760 * We always let the sensor be switched on by default except when
761 * the user has explicitly disabled sensor based rotation or when the
762 * screen is switched off.
763 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700764 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800765 if (mSupportAutoRotation) {
766 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
767 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
768 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
769 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
770 // If the application has explicitly requested to follow the
771 // orientation, then we need to turn the sensor on.
772 return true;
773 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800774 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700775 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800776 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
777 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
778 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400779 // enable accelerometer if we are docked in a dock that enables accelerometer
780 // orientation management,
781 return true;
782 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700783 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800784 // If the setting for using the sensor by default is enabled, then
785 // we will always leave it on. Note that the user could go to
786 // a window that forces an orientation that does not use the
787 // sensor and in theory we could turn it off... however, when next
788 // turning it on we won't have a good value for the current
789 // orientation for a little bit, which can cause orientation
790 // changes to lag, so we'd like to keep it always on. (It will
791 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700792 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800793 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800794 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800795 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700796
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800797 /*
798 * Various use cases for invoking this function
799 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700800 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800801 * if not already enabled
802 * screen turned on and current app does not have sensor orientation, disable listeners if
803 * already enabled
804 * screen turning on and current app has sensor based orientation, enable listeners if needed
805 * screen turning on and current app has nosensor based orientation, do nothing
806 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700807 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800808 if (!mOrientationListener.canDetectOrientation()) {
809 // If sensor is turned off or nonexistent for some reason
810 return;
811 }
812 //Could have been invoked due to screen turning on or off or
813 //change of the currently visible window's orientation
Jeff Brown3ee549c2014-09-22 20:14:39 -0700814 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
815 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
816 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800817 boolean disable = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700818 if (mScreenOnEarly && mAwake) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700819 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800820 disable = false;
821 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700822 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800823 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700824 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800825 mOrientationSensorEnabled = true;
826 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700827 }
828 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800829 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700830 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800831 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700832 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800833 mOrientationSensorEnabled = false;
834 }
835 }
836
Jeff Brown13f00f02014-10-31 14:45:50 -0700837 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
838 // Hold a wake lock until the power key is released.
839 if (!mPowerKeyWakeLock.isHeld()) {
840 mPowerKeyWakeLock.acquire();
841 }
842
843 // Cancel multi-press detection timeout.
844 if (mPowerKeyPressCounter != 0) {
845 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
846 }
847
848 // Detect user pressing the power button in panic when an application has
849 // taken over the whole screen.
850 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800851 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700852 if (panic) {
853 mHandler.post(mRequestTransientNav);
854 }
855
856 // Latch power key state to detect screenshot chord.
857 if (interactive && !mScreenshotChordPowerKeyTriggered
858 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
859 mScreenshotChordPowerKeyTriggered = true;
860 mScreenshotChordPowerKeyTime = event.getDownTime();
861 interceptScreenshotChord();
862 }
863
864 // Stop ringing or end call if configured to do so when power is pressed.
865 TelecomManager telecomManager = getTelecommService();
866 boolean hungUp = false;
867 if (telecomManager != null) {
868 if (telecomManager.isRinging()) {
869 // Pressing Power while there's a ringing incoming
870 // call should silence the ringer.
871 telecomManager.silenceRinger();
872 } else if ((mIncallPowerBehavior
873 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
874 && telecomManager.isInCall() && interactive) {
875 // Otherwise, if "Power button ends call" is enabled,
876 // the Power button will hang up any current active call.
877 hungUp = telecomManager.endCall();
878 }
879 }
880
881 // If the power key has still not yet been handled, then detect short
882 // press, long press, or multi press and decide what to do.
883 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
884 || mScreenshotChordVolumeUpKeyTriggered;
885 if (!mPowerKeyHandled) {
886 if (interactive) {
887 // When interactive, we're already awake.
888 // Wait for a long press or for the button to be released to decide what to do.
889 if (hasLongPressOnPowerBehavior()) {
890 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
891 msg.setAsynchronous(true);
892 mHandler.sendMessageDelayed(msg,
893 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
894 }
895 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800896 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800897
Bryce Leed3b28402015-03-09 15:49:13 +0000898 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
899 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
900 msg.setAsynchronous(true);
901 mHandler.sendMessageDelayed(msg,
902 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800903 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000904 } else {
905 final int maxCount = getMaxMultiPressPowerCount();
906
907 if (maxCount <= 1) {
908 mPowerKeyHandled = true;
909 } else {
910 mBeganFromNonInteractive = true;
911 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700912 }
913 }
Jeff Brown4d396052010-10-29 21:50:21 -0700914 }
915 }
916
Jeff Brown13f00f02014-10-31 14:45:50 -0700917 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
918 final boolean handled = canceled || mPowerKeyHandled;
919 mScreenshotChordPowerKeyTriggered = false;
920 cancelPendingScreenshotChordAction();
921 cancelPendingPowerKeyAction();
922
923 if (!handled) {
924 // Figure out how to handle the key now that it has been released.
925 mPowerKeyPressCounter += 1;
926
927 final int maxCount = getMaxMultiPressPowerCount();
928 final long eventTime = event.getDownTime();
929 if (mPowerKeyPressCounter < maxCount) {
930 // This could be a multi-press. Wait a little bit longer to confirm.
931 // Continue holding the wake lock.
932 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
933 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
934 msg.setAsynchronous(true);
935 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
936 return;
937 }
938
939 // No other actions. Handle it immediately.
940 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700941 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700942
943 // Done. Reset our state.
944 finishPowerKeyPress();
945 }
946
947 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -0800948 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -0700949 mPowerKeyPressCounter = 0;
950 if (mPowerKeyWakeLock.isHeld()) {
951 mPowerKeyWakeLock.release();
952 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700953 }
954
955 private void cancelPendingPowerKeyAction() {
956 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700957 mPowerKeyHandled = true;
958 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700959 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700960 }
961
962 private void powerPress(long eventTime, boolean interactive, int count) {
963 if (mScreenOnEarly && !mScreenOnFully) {
964 Slog.i(TAG, "Suppressed redundant power key press while "
965 + "already in the process of turning the screen on.");
966 return;
Jeff Brownff204712011-10-25 21:27:54 -0700967 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700968
969 if (count == 2) {
970 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
971 } else if (count == 3) {
972 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -0800973 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -0700974 switch (mShortPressOnPowerBehavior) {
975 case SHORT_PRESS_POWER_NOTHING:
976 break;
977 case SHORT_PRESS_POWER_GO_TO_SLEEP:
978 mPowerManager.goToSleep(eventTime,
979 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
980 break;
981 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
982 mPowerManager.goToSleep(eventTime,
983 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
984 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
985 break;
986 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
987 mPowerManager.goToSleep(eventTime,
988 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
989 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
990 launchHomeFromHotKey();
991 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800992 case SHORT_PRESS_POWER_GO_HOME:
993 launchHomeFromHotKey();
994 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700995 }
996 }
997 }
998
999 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1000 switch (behavior) {
1001 case MULTI_PRESS_POWER_NOTHING:
1002 break;
1003 case MULTI_PRESS_POWER_THEATER_MODE:
1004 if (isTheaterModeEnabled()) {
1005 Slog.i(TAG, "Toggling theater mode off.");
1006 Settings.Global.putInt(mContext.getContentResolver(),
1007 Settings.Global.THEATER_MODE_ON, 0);
1008 if (!interactive) {
1009 wakeUpFromPowerKey(eventTime);
1010 }
1011 } else {
1012 Slog.i(TAG, "Toggling theater mode on.");
1013 Settings.Global.putInt(mContext.getContentResolver(),
1014 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001015
1016 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001017 mPowerManager.goToSleep(eventTime,
1018 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1019 }
1020 }
1021 break;
1022 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001023 Slog.i(TAG, "Starting brightness boost.");
1024 if (!interactive) {
1025 wakeUpFromPowerKey(eventTime);
1026 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001027 mPowerManager.boostScreenBrightness(eventTime);
1028 break;
1029 }
1030 }
1031
1032 private int getMaxMultiPressPowerCount() {
1033 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1034 return 3;
1035 }
1036 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1037 return 2;
1038 }
1039 return 1;
1040 }
1041
1042 private void powerLongPress() {
1043 final int behavior = getResolvedLongPressOnPowerBehavior();
1044 switch (behavior) {
1045 case LONG_PRESS_POWER_NOTHING:
1046 break;
1047 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1048 mPowerKeyHandled = true;
1049 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1050 performAuditoryFeedbackForAccessibilityIfNeed();
1051 }
1052 showGlobalActionsInternal();
1053 break;
1054 case LONG_PRESS_POWER_SHUT_OFF:
1055 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1056 mPowerKeyHandled = true;
1057 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1058 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1059 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1060 break;
1061 }
1062 }
1063
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001064 private void sleepPress(KeyEvent event) {
1065 switch (mShortPressOnSleepBehavior) {
1066 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
1067 mPowerManager.goToSleep(event.getEventTime(),
1068 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
1069 break;
1070 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
1071 launchHomeFromHotKey(false /* awakenDreams */);
1072 mPowerManager.goToSleep(event.getEventTime(),
1073 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
1074 break;
1075 }
1076 }
1077
Jeff Brown13f00f02014-10-31 14:45:50 -07001078 private int getResolvedLongPressOnPowerBehavior() {
1079 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1080 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1081 }
1082 return mLongPressOnPowerBehavior;
1083 }
1084
1085 private boolean hasLongPressOnPowerBehavior() {
1086 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001087 }
1088
1089 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001090 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001091 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1092 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001093 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001094 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1095 && now <= mScreenshotChordPowerKeyTime
1096 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1097 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001098 cancelPendingPowerKeyAction();
1099
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001100 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001101 }
1102 }
1103 }
1104
Winson Chung1cea2f32012-10-08 20:42:01 -07001105 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001106 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001107 // Double the time it takes to take a screenshot from the keyguard
1108 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001109 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001110 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001111 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001112 }
1113
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001114 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001115 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001116 }
1117
Jeff Brown13f00f02014-10-31 14:45:50 -07001118 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001119 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001120 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001121 mEndCallKeyHandled = true;
1122 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1123 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001124 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001125 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001126 }
1127 };
1128
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001129 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001130 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001131 public void run() {
1132 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001133 }
1134 };
1135
Alan Viverettee34560b22014-07-10 14:50:06 -07001136 @Override
1137 public void showGlobalActions() {
1138 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1139 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1140 }
1141
1142 void showGlobalActionsInternal() {
1143 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001144 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001145 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001146 }
Jim Millerab954542014-10-10 18:21:49 -07001147 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001148 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1149 if (keyguardShowing) {
1150 // since it took two seconds of long press to bring this up,
1151 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001152 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001153 }
1154 }
1155
1156 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001157 return Settings.Global.getInt(
1158 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001159 }
1160
Maurice Lam99c6e072014-04-28 18:24:28 -07001161 boolean isUserSetupComplete() {
1162 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1163 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1164 }
1165
Jeff Brown13f00f02014-10-31 14:45:50 -07001166 private void handleShortPressOnHome() {
1167 // If there's a dream running then use home to escape the dream
1168 // but don't actually go home.
1169 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1170 mDreamManagerInternal.stopDream(false /*immediate*/);
1171 return;
1172 }
1173
1174 // Go home!
1175 launchHomeFromHotKey();
1176 }
1177
Patrick Dubroyece94522011-02-23 18:35:01 -08001178 private void handleLongPressOnHome() {
Joe Onorato46b0d682010-11-22 17:37:27 -08001179 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001180 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001181 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001182
Jeff Browncaca8812013-05-09 13:34:33 -07001183 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1184 toggleRecentApps();
1185 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
1186 launchAssistAction();
Jim Millere6ad1a82010-08-20 19:25:39 -07001187 }
1188 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001189 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001190
Jeff Browncaca8812013-05-09 13:34:33 -07001191 private void handleDoubleTapOnHome() {
1192 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1193 mHomeConsumed = true;
1194 toggleRecentApps();
1195 }
1196 }
1197
1198 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1199 @Override
1200 public void run() {
1201 if (mHomeDoubleTapPending) {
1202 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001203 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001204 }
1205 }
1206 };
1207
Mark Renoufc1256912015-03-11 14:38:23 -04001208 private boolean isRoundWindow() {
1209 return mContext.getResources().getBoolean(com.android.internal.R.bool.config_windowIsRound)
1210 || (Build.HARDWARE.contains("goldfish")
1211 && SystemProperties.getBoolean(ViewRootImpl.PROPERTY_EMULATOR_CIRCULAR, false));
1212 }
1213
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001214 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001215 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001216 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001217 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001218 mContext = context;
1219 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001220 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001221 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001222 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Mark Renoufc1256912015-03-11 14:38:23 -04001223
1224 // Init display burn-in protection
1225 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1226 com.android.internal.R.bool.config_enableBurnInProtection);
1227 // Allow a system property to override this. Used by developer settings.
1228 boolean burnInProtectionDevMode =
1229 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1230 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1231 final int minHorizontal;
1232 final int maxHorizontal;
1233 final int minVertical;
1234 final int maxVertical;
1235 final int maxRadius;
1236 if (burnInProtectionDevMode) {
1237 minHorizontal = -8;
1238 maxHorizontal = 8;
1239 minVertical = -8;
1240 maxVertical = -4;
1241 maxRadius = (isRoundWindow()) ? 6 : -1;
1242 } else {
1243 Resources resources = context.getResources();
1244 minHorizontal = resources.getInteger(
1245 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1246 maxHorizontal = resources.getInteger(
1247 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1248 minVertical = resources.getInteger(
1249 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1250 maxVertical = resources.getInteger(
1251 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1252 maxRadius = resources.getInteger(
1253 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1254 }
1255 mBurnInProtectionHelper = new BurnInProtectionHelper(
1256 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001257 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001258
Jeff Brown70825162012-03-28 17:27:48 -07001259 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001260 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001261 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001262 try {
1263 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1264 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001265 mSettingsObserver = new SettingsObserver(mHandler);
1266 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001267 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001268 mUiMode = context.getResources().getInteger(
1269 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001270 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1271 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1272 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1273 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001274 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1275 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1276 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1277 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1278 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1279 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1280 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1281 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001282
Jeff Brown96307042012-07-27 15:51:34 -07001283 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1284 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001285 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001286 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1287 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001288 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001289 mSupportAutoRotation = mContext.getResources().getBoolean(
1290 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001291 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001292 com.android.internal.R.integer.config_lidOpenRotation);
1293 mCarDockRotation = readRotation(
1294 com.android.internal.R.integer.config_carDockRotation);
1295 mDeskDockRotation = readRotation(
1296 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001297 mUndockedHdmiRotation = readRotation(
1298 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001299 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1300 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1301 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1302 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001303 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1304 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1305 mLidNavigationAccessibility = mContext.getResources().getInteger(
1306 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001307 mLidControlsSleep = mContext.getResources().getBoolean(
1308 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001309 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1310 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001311
1312 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1313 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1314 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1315 || mContext.getResources().getBoolean(
1316 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1317 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1318 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001319 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1320 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001321 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1322 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1323 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1324 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1325 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1326 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1327
Bryce Lee55e846d2014-11-04 12:43:44 -08001328 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1329 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1330
Bryce Leed3b28402015-03-09 15:49:13 +00001331 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1332 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1333
Jeff Brown13f00f02014-10-31 14:45:50 -07001334 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1335 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1336 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1337 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1338 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1339 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1340 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1341 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001342 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1343 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001344
John Spurlock61560172015-02-06 19:46:04 -05001345 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001346
Jeff Brownf71343d2013-05-31 17:59:11 -07001347 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001348
Svetoslav8e3feb12014-02-24 13:46:47 -08001349 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1350 Context.ACCESSIBILITY_SERVICE);
1351
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001352 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001353 IntentFilter filter = new IntentFilter();
1354 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1355 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1356 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1357 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001358 filter.addAction(Intent.ACTION_DOCK_EVENT);
1359 Intent intent = context.registerReceiver(mDockReceiver, filter);
1360 if (intent != null) {
1361 // Retrieve current sticky dock event broadcast.
1362 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1363 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1364 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001365
Jeff Brown6aaf2952012-10-05 16:01:08 -07001366 // register for dream-related broadcasts
1367 filter = new IntentFilter();
1368 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1369 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1370 context.registerReceiver(mDreamReceiver, filter);
1371
Christopher Tate5e08af02012-09-21 17:17:22 -07001372 // register for multiuser-relevant broadcasts
1373 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1374 context.registerReceiver(mMultiuserReceiver, filter);
1375
John Spurlock57306e62013-04-22 09:48:49 -04001376 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001377 mSystemGestures = new SystemGesturesPointerEventListener(context,
1378 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001379 @Override
1380 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001381 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001382 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001383 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001384 }
1385 @Override
1386 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001387 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001388 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001389 }
1390 }
1391 @Override
1392 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001393 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001394 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001395 }
1396 }
1397 @Override
1398 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001399 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001400 }
1401 });
John Spurlockf1a36642013-10-12 17:50:42 -04001402 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001403 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001404
Jeff Brownc2346132012-04-13 01:55:38 -07001405 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001406 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1407 com.android.internal.R.array.config_longPressVibePattern);
1408 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1409 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001410 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1411 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001412 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1413 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001414 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1415 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001416 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1417 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1418 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1419 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001420
Christopher Tatee90585f2012-03-05 18:56:25 -08001421 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1422 com.android.internal.R.bool.config_enableScreenshotChord);
1423
Justin Kohd378ad72013-04-01 12:18:26 -07001424 mGlobalKeyManager = new GlobalKeyManager(mContext);
1425
Joe Onoratoea495d42011-04-06 11:41:11 -07001426 // Controls rotation and the like.
1427 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001428
1429 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001430 if (!mPowerManager.isInteractive()) {
Jeff Brown140ffc72014-05-01 15:18:00 -07001431 goingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001432 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001433
1434 mWindowManagerInternal.registerAppTransitionListener(
1435 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001436 }
1437
Jeff Brownf71343d2013-05-31 17:59:11 -07001438 /**
1439 * Read values from config.xml that may be overridden depending on
1440 * the configuration of the device.
1441 * eg. Disable long press on home goes to recents on sw600dp.
1442 */
1443 private void readConfigurationDependentBehaviors() {
1444 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1445 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1446 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1447 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1448 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1449 }
1450
1451 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1452 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1453 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1454 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1455 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1456 }
1457 }
1458
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001459 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001460 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001461 // This method might be called before the policy has been fully initialized
1462 // or for other displays we don't care about.
1463 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1464 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001465 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001466 mDisplay = display;
1467
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001468 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001469 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001470 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001471 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001472 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001473 mLandscapeRotation = Surface.ROTATION_0;
1474 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001475 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001476 mPortraitRotation = Surface.ROTATION_90;
1477 mUpsideDownRotation = Surface.ROTATION_270;
1478 } else {
1479 mPortraitRotation = Surface.ROTATION_270;
1480 mUpsideDownRotation = Surface.ROTATION_90;
1481 }
1482 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001483 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001484 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001485 mPortraitRotation = Surface.ROTATION_0;
1486 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001487 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001488 mLandscapeRotation = Surface.ROTATION_270;
1489 mSeascapeRotation = Surface.ROTATION_90;
1490 } else {
1491 mLandscapeRotation = Surface.ROTATION_90;
1492 mSeascapeRotation = Surface.ROTATION_270;
1493 }
1494 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001495
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001496 mStatusBarHeight =
1497 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001498
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001499 // Height of the navigation bar when presented horizontally at bottom
1500 mNavigationBarHeightForRotation[mPortraitRotation] =
1501 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001502 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001503 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001504 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1505 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001506
1507 // Width of the navigation bar when presented vertically along one side
1508 mNavigationBarWidthForRotation[mPortraitRotation] =
1509 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1510 mNavigationBarWidthForRotation[mLandscapeRotation] =
1511 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001512 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001513
1514 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001515 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001516 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001517
Devin Kimd7b12b42014-05-05 14:34:58 -07001518 // Allow the navigation bar to move on non-square small devices (phones).
1519 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001520
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001521 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001522 // Allow a system property to override this. Used by the emulator.
1523 // See also hasNavigationBar().
1524 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1525 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001526 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001527 } else if ("0".equals(navBarOverride)) {
1528 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001529 }
1530
Jeff Brown27f1d672012-10-17 18:32:34 -07001531 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1532 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001533 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001534 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001535 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001536 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001537 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001538 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001539
Chong Zhangae6119ff2014-11-11 18:54:39 -08001540 // For demo purposes, allow the rotation of the remote display to be controlled.
1541 // By default, remote display locks rotation to landscape.
1542 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1543 mDemoRotation = mPortraitRotation;
1544 } else {
1545 mDemoRotation = mLandscapeRotation;
1546 }
1547 mDemoRotationLock = SystemProperties.getBoolean(
1548 "persist.demo.rotationlock", false);
1549
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001550 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1551 // http://developer.android.com/guide/practices/screens_support.html#range
1552 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1553 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1554 // For debug purposes the next line turns this feature off with:
1555 // $ adb shell setprop config.override_forced_orient true
1556 // $ adb shell wm size reset
1557 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1558 }
1559
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001560 /**
1561 * @return whether the navigation bar can be hidden, e.g. the device has a
1562 * navigation bar and touch exploration is not enabled
1563 */
1564 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001565 return mHasNavigationBar
1566 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001567 }
1568
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001569 @Override
1570 public boolean isDefaultOrientationForced() {
1571 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001572 }
1573
Dianne Hackbornc652de82013-02-15 16:32:56 -08001574 @Override
1575 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1576 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1577 mOverscanLeft = left;
1578 mOverscanTop = top;
1579 mOverscanRight = right;
1580 mOverscanBottom = bottom;
1581 }
1582 }
1583
Dianne Hackbornc777e072010-02-12 13:07:59 -08001584 public void updateSettings() {
1585 ContentResolver resolver = mContext.getContentResolver();
1586 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001587 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001588 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001589 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001590 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1591 UserHandle.USER_CURRENT);
1592 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001593 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001594 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1595 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001596
Jeff Browna20dda42014-05-27 20:57:24 -07001597 // Configure wake gesture.
1598 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1599 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1600 UserHandle.USER_CURRENT) != 0;
1601 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1602 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1603 updateWakeGestureListenerLp();
1604 }
1605
Jeff Brown207673cd2012-06-05 17:47:11 -07001606 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001607 int userRotation = Settings.System.getIntForUser(resolver,
1608 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1609 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001610 if (mUserRotation != userRotation) {
1611 mUserRotation = userRotation;
1612 updateRotation = true;
1613 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001614 int userRotationMode = Settings.System.getIntForUser(resolver,
1615 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001616 WindowManagerPolicy.USER_ROTATION_FREE :
1617 WindowManagerPolicy.USER_ROTATION_LOCKED;
1618 if (mUserRotationMode != userRotationMode) {
1619 mUserRotationMode = userRotationMode;
1620 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001621 updateOrientationListenerLp();
1622 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001623
Dianne Hackbornc777e072010-02-12 13:07:59 -08001624 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001625 int pointerLocation = Settings.System.getIntForUser(resolver,
1626 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001627 if (mPointerLocationMode != pointerLocation) {
1628 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001629 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1630 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001631 }
1632 }
1633 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001634 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1635 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1636 String imId = Settings.Secure.getStringForUser(resolver,
1637 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001638 boolean hasSoftInput = imId != null && imId.length() > 0;
1639 if (mHasSoftInput != hasSoftInput) {
1640 mHasSoftInput = hasSoftInput;
1641 updateRotation = true;
1642 }
John Spurlockf1a36642013-10-12 17:50:42 -04001643 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001644 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001645 }
John Spurlockc6d1c602014-01-17 15:22:06 -05001646 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001647 }
1648 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001649 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001650 }
Jeff Brown70825162012-03-28 17:27:48 -07001651 }
1652
Jeff Browna20dda42014-05-27 20:57:24 -07001653 private void updateWakeGestureListenerLp() {
1654 if (shouldEnableWakeGestureLp()) {
1655 mWakeGestureListener.requestWakeUpTrigger();
1656 } else {
1657 mWakeGestureListener.cancelWakeUpTrigger();
1658 }
1659 }
1660
1661 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001662 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001663 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1664 && mWakeGestureListener.isSupported();
1665 }
1666
Jeff Brown70825162012-03-28 17:27:48 -07001667 private void enablePointerLocation() {
1668 if (mPointerLocationView == null) {
1669 mPointerLocationView = new PointerLocationView(mContext);
1670 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001671 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1672 WindowManager.LayoutParams.MATCH_PARENT,
1673 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001674 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001675 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1676 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1677 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1678 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001679 if (ActivityManager.isHighEndGfx()) {
1680 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1681 lp.privateFlags |=
1682 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1683 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001684 lp.format = PixelFormat.TRANSLUCENT;
1685 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001686 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001687 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001688 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001689 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001690 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001691 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001692 }
Jeff Brown70825162012-03-28 17:27:48 -07001693
1694 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001695 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001696 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1697 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001698 wm.removeView(mPointerLocationView);
1699 mPointerLocationView = null;
1700 }
1701 }
1702
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001703 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001704 try {
1705 int rotation = mContext.getResources().getInteger(resID);
1706 switch (rotation) {
1707 case 0:
1708 return Surface.ROTATION_0;
1709 case 90:
1710 return Surface.ROTATION_90;
1711 case 180:
1712 return Surface.ROTATION_180;
1713 case 270:
1714 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001715 }
1716 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001717 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001718 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001719 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001720 }
1721
1722 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001723 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001724 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001725 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001726
1727 outAppOp[0] = AppOpsManager.OP_NONE;
1728
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001729 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1730 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1731 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1732 return WindowManagerGlobal.ADD_INVALID_TYPE;
1733 }
1734
1735 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1736 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001737 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001738 }
1739 String permission = null;
1740 switch (type) {
1741 case TYPE_TOAST:
1742 // XXX right now the app process has complete control over
1743 // this... should introduce a token to let the system
1744 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001745 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001746 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001747 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001748 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001749 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001750 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001751 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001752 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001753 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001754 break;
1755 case TYPE_PHONE:
1756 case TYPE_PRIORITY_PHONE:
1757 case TYPE_SYSTEM_ALERT:
1758 case TYPE_SYSTEM_ERROR:
1759 case TYPE_SYSTEM_OVERLAY:
1760 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001761 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001762 break;
1763 default:
1764 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1765 }
1766 if (permission != null) {
1767 if (mContext.checkCallingOrSelfPermission(permission)
1768 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001769 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001770 }
1771 }
Jeff Brown98365d72012-08-19 20:30:52 -07001772 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001773 }
Craig Mautner88400d32012-09-30 12:35:45 -07001774
1775 @Override
1776 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1777
1778 // If this switch statement is modified, modify the comment in the declarations of
1779 // the type in {@link WindowManager.LayoutParams} as well.
1780 switch (attrs.type) {
1781 default:
1782 // These are the windows that by default are shown only to the user that created
1783 // them. If this needs to be overridden, set
1784 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1785 // {@link WindowManager.LayoutParams}. Note that permission
1786 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1787 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1788 return true;
1789 }
1790 break;
1791
1792 // These are the windows that by default are shown to all users. However, to
1793 // protect against spoofing, check permissions below.
1794 case TYPE_APPLICATION_STARTING:
1795 case TYPE_BOOT_PROGRESS:
1796 case TYPE_DISPLAY_OVERLAY:
1797 case TYPE_HIDDEN_NAV_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001798 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001799 case TYPE_KEYGUARD_DIALOG:
1800 case TYPE_MAGNIFICATION_OVERLAY:
1801 case TYPE_NAVIGATION_BAR:
1802 case TYPE_NAVIGATION_BAR_PANEL:
1803 case TYPE_PHONE:
1804 case TYPE_POINTER:
1805 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001806 case TYPE_SEARCH_BAR:
1807 case TYPE_STATUS_BAR:
1808 case TYPE_STATUS_BAR_PANEL:
1809 case TYPE_STATUS_BAR_SUB_PANEL:
1810 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001811 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001812 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001813 break;
1814 }
1815
1816 // Check if third party app has set window to system window type.
1817 return mContext.checkCallingOrSelfPermission(
1818 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1819 != PackageManager.PERMISSION_GRANTED;
1820 }
1821
Craig Mautner967212c2013-04-13 21:10:58 -07001822 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001823 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1824 switch (attrs.type) {
1825 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001826 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001827 // These types of windows can't receive input events.
1828 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1829 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001830 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001831 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001832 case TYPE_STATUS_BAR:
1833
1834 // If the Keyguard is in a hidden state (occluded by another window), we force to
1835 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1836 // the keyguard as occluded wouldn't set these flags again.
1837 // See {@link #processKeyguardSetHiddenResultLw}.
1838 if (mKeyguardHidden) {
1839 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1840 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1841 }
1842 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001843 }
Adrian Roos38502112014-04-09 21:04:11 +02001844
1845 if (attrs.type != TYPE_STATUS_BAR) {
1846 // The status bar is the only window allowed to exhibit keyguard behavior.
1847 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1848 }
Adrian Roosea562512014-05-05 13:33:03 +02001849
1850 if (ActivityManager.isHighEndGfx()
1851 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02001852 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02001853 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1854 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001855 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001856
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001857 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07001858 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001859 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001860
Michael Wright3818c922014-09-02 13:59:07 -07001861 private void readCameraLensCoverState() {
1862 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
1863 }
1864
Jeff Browndaa37532012-05-01 15:54:03 -07001865 private boolean isHidden(int accessibilityMode) {
1866 switch (accessibilityMode) {
1867 case 1:
1868 return mLidState == LID_CLOSED;
1869 case 2:
1870 return mLidState == LID_OPEN;
1871 default:
1872 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001873 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001874 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001875
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001876 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001877 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07001878 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
1879 int navigationPresence) {
1880 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
1881
Jeff Brownf71343d2013-05-31 17:59:11 -07001882 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001883 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07001884 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08001885
Jeff Browndaa37532012-05-01 15:54:03 -07001886 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
1887 || (keyboardPresence == PRESENCE_INTERNAL
1888 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001889 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07001890 if (!mHasSoftInput) {
1891 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
1892 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001893 }
1894
Jeff Browndaa37532012-05-01 15:54:03 -07001895 if (config.navigation == Configuration.NAVIGATION_NONAV
1896 || (navigationPresence == PRESENCE_INTERNAL
1897 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08001898 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08001899 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001900 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08001901
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001902 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07001903 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001904 public int windowTypeToLayerLw(int type) {
1905 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001906 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001907 }
1908 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07001909 case TYPE_PRIVATE_PRESENTATION:
1910 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001911 case TYPE_WALLPAPER:
1912 // wallpaper is at the bottom, though the window manager may move it.
1913 return 2;
1914 case TYPE_PHONE:
1915 return 3;
1916 case TYPE_SEARCH_BAR:
1917 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001918 case TYPE_VOICE_INTERACTION:
1919 // voice interaction layer is almost immediately above apps.
1920 return 5;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001921 case TYPE_SYSTEM_DIALOG:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001922 return 6;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001923 case TYPE_TOAST:
1924 // toasts and the plugged-in battery thing
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001925 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001926 case TYPE_PRIORITY_PHONE:
1927 // SIM errors and unlock. Not sure if this really should be in a high layer.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001928 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001929 case TYPE_DREAM:
1930 // used for Dreams (screensavers with TYPE_DREAM windows)
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001931 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001932 case TYPE_SYSTEM_ALERT:
1933 // like the ANR / app crashed dialogs
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001934 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001935 case TYPE_INPUT_METHOD:
1936 // on-screen keyboards and other such input method user interfaces go here.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001937 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001938 case TYPE_INPUT_METHOD_DIALOG:
1939 // on-screen keyboards and other such input method user interfaces go here.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001940 return 12;
Jim Miller5ecd8112013-01-09 18:50:26 -08001941 case TYPE_KEYGUARD_SCRIM:
1942 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001943 return 13;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001944 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001945 return 14;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001946 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001947 return 15;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001948 case TYPE_STATUS_BAR_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001949 return 16;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001950 case TYPE_KEYGUARD_DIALOG:
1951 return 17;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001952 case TYPE_VOLUME_OVERLAY:
1953 // the on-screen volume indicator and controller shown when the user
1954 // changes the device volume
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001955 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001956 case TYPE_SYSTEM_OVERLAY:
1957 // the on-screen volume indicator and controller shown when the user
1958 // changes the device volume
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001959 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001960 case TYPE_NAVIGATION_BAR:
1961 // the navigation bar, if available, shows atop most things
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001962 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001963 case TYPE_NAVIGATION_BAR_PANEL:
1964 // some panels (e.g. search) need to show on top of the navigation bar
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001965 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001966 case TYPE_SYSTEM_ERROR:
1967 // system-level error dialogs
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001968 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001969 case TYPE_MAGNIFICATION_OVERLAY:
1970 // used to highlight the magnified portion of a display
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001971 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001972 case TYPE_DISPLAY_OVERLAY:
1973 // used to simulate secondary display devices
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001974 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001975 case TYPE_DRAG:
1976 // the drag layer: input for drag-and-drop is associated with this window,
1977 // which sits above all other focusable windows
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001978 return 25;
Svetoslav3a5c7212014-10-14 09:54:26 -07001979 case TYPE_ACCESSIBILITY_OVERLAY:
1980 // overlay put by accessibility services to intercept user interaction
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001981 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07001982 case TYPE_SECURE_SYSTEM_OVERLAY:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001983 return 27;
Svetoslav3a5c7212014-10-14 09:54:26 -07001984 case TYPE_BOOT_PROGRESS:
1985 return 28;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001986 case TYPE_POINTER:
1987 // the (mouse) pointer layer
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001988 return 29;
Svetoslav3a5c7212014-10-14 09:54:26 -07001989 case TYPE_HIDDEN_NAV_CONSUMER:
1990 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001991 }
1992 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07001993 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001994 }
1995
1996 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001997 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001998 public int subWindowTypeToLayerLw(int type) {
1999 switch (type) {
2000 case TYPE_APPLICATION_PANEL:
2001 case TYPE_APPLICATION_ATTACHED_DIALOG:
2002 return APPLICATION_PANEL_SUBLAYER;
2003 case TYPE_APPLICATION_MEDIA:
2004 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002005 case TYPE_APPLICATION_MEDIA_OVERLAY:
2006 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002007 case TYPE_APPLICATION_SUB_PANEL:
2008 return APPLICATION_SUB_PANEL_SUBLAYER;
2009 }
2010 Log.e(TAG, "Unknown sub-window type: " + type);
2011 return 0;
2012 }
2013
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002014 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002015 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002016 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002017 }
2018
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002019 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002020 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002021 if (mHasNavigationBar) {
2022 // For a basic navigation bar, when we are in landscape mode we place
2023 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002024 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2025 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002026 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002027 }
2028 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002029 }
2030
Jose Lima9546b202014-07-02 17:21:51 -07002031 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002032 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002033 if (mHasNavigationBar) {
2034 // For a basic navigation bar, when we are in portrait mode we place
2035 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002036 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2037 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002038 }
2039 }
2040 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002041 }
2042
Jose Lima9546b202014-07-02 17:21:51 -07002043 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002044 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2045 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002046 }
2047
Jose Lima9546b202014-07-02 17:21:51 -07002048 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002049 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002050 // There is a separate status bar at the top of the display. We don't count that as part
2051 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002052 // we do want to exclude it since applications can't generally use that part
2053 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002054 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002055 }
2056
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002057 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002058 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2059 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002060 (isKeyguardHostWindow(attrs) &&
2061 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002062 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002063 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002064
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002065 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002066 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2067 return attrs.type == TYPE_STATUS_BAR;
2068 }
2069
2070 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002071 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002072 switch (attrs.type) {
2073 case TYPE_STATUS_BAR:
2074 case TYPE_NAVIGATION_BAR:
2075 case TYPE_WALLPAPER:
2076 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002077 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002078 return false;
2079 default:
2080 return true;
2081 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002082 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002083
Craig Mautner7d7808f2014-09-11 18:02:38 -07002084 @Override
2085 public WindowState getWinShowWhenLockedLw() {
2086 return mWinShowWhenLocked;
2087 }
2088
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002089 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002090 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002091 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2092 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002093 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002094 if (!SHOW_STARTING_ANIMATIONS) {
2095 return null;
2096 }
2097 if (packageName == null) {
2098 return null;
2099 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002100
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002101 WindowManager wm = null;
2102 View view = null;
2103
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002104 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002105 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002106 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2107 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2108 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002109 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002110 try {
2111 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002112 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002113 } catch (PackageManager.NameNotFoundException e) {
2114 // Ignore
2115 }
2116 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002117
Jorim Jaggib10e33f2015-02-04 21:57:40 +01002118 Window win = new PhoneWindow(context);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002119 final TypedArray ta = win.getWindowStyle();
2120 if (ta.getBoolean(
2121 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2122 || ta.getBoolean(
2123 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002124 return null;
2125 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002126
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002127 Resources r = context.getResources();
2128 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002129
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002130 win.setType(
2131 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
2132 // Force the window flags: this is a fake window, so it is not really
2133 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2134 // flag because we do know that the next window will take input
2135 // focus, so we want to get the IME window up on top of us right away.
2136 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002137 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002138 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2139 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2140 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002141 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002142 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2143 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2144 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002145
Adam Powell04fe6eb2013-05-31 14:39:48 -07002146 win.setDefaultIcon(icon);
2147 win.setDefaultLogo(logo);
2148
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002149 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002150 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002151
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002152 final WindowManager.LayoutParams params = win.getAttributes();
2153 params.token = appToken;
2154 params.packageName = packageName;
2155 params.windowAnimations = win.getWindowStyle().getResourceId(
2156 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002157 params.privateFlags |=
2158 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002159 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002160
2161 if (!compatInfo.supportsScreen()) {
2162 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2163 }
2164
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002165 params.setTitle("Starting " + packageName);
2166
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002167 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2168 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002169
2170 if (win.isFloating()) {
2171 // Whoops, there is no way to display an animation/preview
2172 // of such a thing! After all that work... let's skip it.
2173 // (Note that we must do this here because it is in
2174 // getDecorView() where the theme is evaluated... maybe
2175 // we should peek the floating attribute from the theme
2176 // earlier.)
2177 return null;
2178 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002179
Craig Mautner6fbda632012-07-03 09:26:39 -07002180 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002181 TAG, "Adding starting window for " + packageName
2182 + " / " + appToken + ": "
2183 + (view.getParent() != null ? view : null));
2184
2185 wm.addView(view, params);
2186
2187 // Only return the view if it was successfully added to the
2188 // window manager... which we can tell by it having a parent.
2189 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002190 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002191 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002192 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2193 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002194 } catch (RuntimeException e) {
2195 // don't crash if something else bad happens, for example a
2196 // failure loading resources because we are loading from an app
2197 // on external storage that has been unmounted.
2198 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002199 } finally {
2200 if (view != null && view.getParent() == null) {
2201 Log.w(TAG, "view not successfully added to wm, removing view");
2202 wm.removeViewImmediate(view);
2203 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002204 }
2205
2206 return null;
2207 }
2208
2209 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002210 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002211 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002212 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2213 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002214
2215 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002216 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002217 wm.removeView(window);
2218 }
2219 }
2220
2221 /**
2222 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002223 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002224 * Currently enforces that three window types are singletons:
2225 * <ul>
2226 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002227 * <li>KEYGUARD_TYPE</li>
2228 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002229 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002230 * @param win The window to be added
2231 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002232 *
Jeff Brown98365d72012-08-19 20:30:52 -07002233 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2234 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002235 */
Jose Lima9546b202014-07-02 17:21:51 -07002236 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002237 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2238 switch (attrs.type) {
2239 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002240 mContext.enforceCallingOrSelfPermission(
2241 android.Manifest.permission.STATUS_BAR_SERVICE,
2242 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002243 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002244 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002245 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002246 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002247 }
2248 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002249 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002250 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002251 case TYPE_NAVIGATION_BAR:
2252 mContext.enforceCallingOrSelfPermission(
2253 android.Manifest.permission.STATUS_BAR_SERVICE,
2254 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002255 if (mNavigationBar != null) {
2256 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002257 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002258 }
2259 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002260 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002261 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002262 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002263 break;
Jim Millere898ac52012-04-06 17:10:57 -07002264 case TYPE_NAVIGATION_BAR_PANEL:
2265 mContext.enforceCallingOrSelfPermission(
2266 android.Manifest.permission.STATUS_BAR_SERVICE,
2267 "PhoneWindowManager");
2268 break;
Dianne Hackborn08743722009-12-21 12:16:51 -08002269 case TYPE_STATUS_BAR_PANEL:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002270 mContext.enforceCallingOrSelfPermission(
2271 android.Manifest.permission.STATUS_BAR_SERVICE,
2272 "PhoneWindowManager");
Dianne Hackborn08743722009-12-21 12:16:51 -08002273 break;
Joe Onorato29fc2c92010-11-24 10:26:50 -08002274 case TYPE_STATUS_BAR_SUB_PANEL:
2275 mContext.enforceCallingOrSelfPermission(
2276 android.Manifest.permission.STATUS_BAR_SERVICE,
2277 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002278 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002279 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002280 if (mKeyguardScrim != null) {
2281 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2282 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002283 mKeyguardScrim = win;
2284 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002285 }
Jeff Brown98365d72012-08-19 20:30:52 -07002286 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002287 }
2288
2289 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002290 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002291 public void removeWindowLw(WindowState win) {
2292 if (mStatusBar == win) {
2293 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002294 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002295 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002296 } else if (mKeyguardScrim == win) {
2297 Log.v(TAG, "Removing keyguard scrim");
2298 mKeyguardScrim = null;
2299 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002300 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002301 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002302 }
2303 }
2304
2305 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002306
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002307 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002308 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002309 public int selectAnimationLw(WindowState win, int transit) {
2310 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2311 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002312 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002313 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002314 if (transit == TRANSIT_EXIT
2315 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002316 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002317 } else if (transit == TRANSIT_ENTER
2318 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002319 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002320 }
2321 } else if (win == mNavigationBar) {
2322 // This can be on either the bottom or the right.
2323 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002324 if (transit == TRANSIT_EXIT
2325 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002326 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002327 } else if (transit == TRANSIT_ENTER
2328 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002329 return R.anim.dock_bottom_enter;
2330 }
2331 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002332 if (transit == TRANSIT_EXIT
2333 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002334 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002335 } else if (transit == TRANSIT_ENTER
2336 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002337 return R.anim.dock_right_enter;
2338 }
2339 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002340 }
2341
2342 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002343 if (win.hasAppShownWindows()) {
2344 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2345 return com.android.internal.R.anim.app_starting_exit;
2346 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002347 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002348 && transit == TRANSIT_ENTER) {
2349 // Special case: we are animating in a dream, while the keyguard
2350 // is shown. We don't want an animation on the dream, because
2351 // we need it shown immediately with the keyguard animating away
2352 // to reveal it.
2353 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002354 }
2355
2356 return 0;
2357 }
2358
Craig Mautner3c174372013-02-21 17:54:37 -08002359 @Override
2360 public void selectRotationAnimationLw(int anim[]) {
2361 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2362 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2363 + (mTopFullscreenOpaqueWindowState == null ?
2364 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2365 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2366 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2367 case ROTATION_ANIMATION_CROSSFADE:
2368 anim[0] = R.anim.rotation_animation_xfade_exit;
2369 anim[1] = R.anim.rotation_animation_enter;
2370 break;
2371 case ROTATION_ANIMATION_JUMPCUT:
2372 anim[0] = R.anim.rotation_animation_jump_exit;
2373 anim[1] = R.anim.rotation_animation_enter;
2374 break;
2375 case ROTATION_ANIMATION_ROTATE:
2376 default:
2377 anim[0] = anim[1] = 0;
2378 break;
2379 }
2380 } else {
2381 anim[0] = anim[1] = 0;
2382 }
2383 }
2384
2385 @Override
2386 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2387 boolean forceDefault) {
2388 switch (exitAnimId) {
2389 case R.anim.rotation_animation_xfade_exit:
2390 case R.anim.rotation_animation_jump_exit:
2391 // These are the only cases that matter.
2392 if (forceDefault) {
2393 return false;
2394 }
2395 int anim[] = new int[2];
2396 selectRotationAnimationLw(anim);
2397 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2398 default:
2399 return true;
2400 }
2401 }
2402
2403 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002404 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2405 boolean goingToNotificationShade) {
2406 if (goingToNotificationShade) {
2407 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002408 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002409
2410 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2411 R.anim.lock_screen_behind_enter_wallpaper :
2412 R.anim.lock_screen_behind_enter);
2413
2414 // TODO: Use XML interpolators when we have log interpolators available in XML.
2415 final List<Animation> animations = set.getAnimations();
2416 for (int i = animations.size() - 1; i >= 0; --i) {
2417 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2418 }
2419
2420 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002421 }
2422
2423
2424 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002425 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2426 if (goingToNotificationShade) {
2427 return null;
2428 } else {
2429 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2430 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002431 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002432
2433 private static void awakenDreams() {
2434 IDreamManager dreamManager = getDreamManager();
2435 if (dreamManager != null) {
2436 try {
2437 dreamManager.awaken();
2438 } catch (RemoteException e) {
2439 // fine, stay asleep then
2440 }
2441 }
2442 }
2443
2444 static IDreamManager getDreamManager() {
2445 return IDreamManager.Stub.asInterface(
2446 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2447 }
2448
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002449 TelecomManager getTelecommService() {
2450 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002451 }
2452
Jeff Brown4d396052010-10-29 21:50:21 -07002453 static IAudioService getAudioService() {
2454 IAudioService audioService = IAudioService.Stub.asInterface(
2455 ServiceManager.checkService(Context.AUDIO_SERVICE));
2456 if (audioService == null) {
2457 Log.w(TAG, "Unable to find IAudioService interface.");
2458 }
2459 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002460 }
2461
2462 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002463 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002464 }
2465
2466 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2467 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2468 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2469 };
2470
2471 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002472 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002473 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002474 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002475 final int keyCode = event.getKeyCode();
2476 final int repeatCount = event.getRepeatCount();
2477 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002478 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002479 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2480 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002481
Jeff Brown40013652012-05-16 21:22:36 -07002482 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002483 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002484 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2485 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002486 }
2487
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002488 // If we think we might have a volume down & power key chord on the way
2489 // but we're not sure, then tell the dispatcher to wait a little while and
2490 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002491 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002492 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002493 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002494 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2495 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002496 if (now < timeoutTime) {
2497 return timeoutTime - now;
2498 }
2499 }
2500 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002501 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002502 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002503 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002504 }
2505 return -1;
2506 }
2507 }
2508
Michael Wright6a62e552014-06-03 19:19:48 -07002509 // Cancel any pending meta actions if we see any other keys being pressed between the down
2510 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002511 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002512 mPendingMetaAction = false;
2513 }
2514
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002515 // First we always handle the home key here, so applications
2516 // can never break it, although if keyguard is on, we do let
2517 // it handle it, because that gives us the correct 5 second
2518 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002519 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002520
Jeff Brown49ed71d2010-12-06 17:13:33 -08002521 // If we have released the home key, and didn't do anything else
2522 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002523 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002524 cancelPreloadRecentApps();
2525
Jeff Brown49ed71d2010-12-06 17:13:33 -08002526 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002527 if (mHomeConsumed) {
2528 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002529 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002530 }
Jeff Browncaca8812013-05-09 13:34:33 -07002531
2532 if (canceled) {
2533 Log.i(TAG, "Ignoring HOME; event canceled.");
2534 return -1;
2535 }
2536
Yorke Lee4f803242014-12-15 23:22:06 +00002537 // If an incoming call is ringing, HOME is totally disabled.
2538 // (The user is already on the InCallUI at this point,
2539 // and his ONLY options are to answer or reject the call.)
2540 TelecomManager telecomManager = getTelecommService();
2541 if (telecomManager != null && telecomManager.isRinging()) {
2542 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2543 return -1;
2544 }
2545
Jeff Browncaca8812013-05-09 13:34:33 -07002546 // Delay handling home if a double-tap is possible.
2547 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2548 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2549 mHomeDoubleTapPending = true;
2550 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2551 ViewConfiguration.getDoubleTapTimeout());
2552 return -1;
2553 }
2554
Jeff Brown13f00f02014-10-31 14:45:50 -07002555 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002556 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002557 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002558
2559 // If a system window has focus, then it doesn't make sense
2560 // right now to interact with applications.
2561 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2562 if (attrs != null) {
2563 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002564 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2565 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2566 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002567 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002568 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002569 }
2570 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2571 for (int i=0; i<typeCount; i++) {
2572 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2573 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002574 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002575 }
2576 }
2577 }
Jeff Browncaca8812013-05-09 13:34:33 -07002578
2579 // Remember that home is pressed and handle special actions.
2580 if (repeatCount == 0) {
2581 mHomePressed = true;
2582 if (mHomeDoubleTapPending) {
2583 mHomeDoubleTapPending = false;
2584 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2585 handleDoubleTapOnHome();
2586 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2587 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2588 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002589 }
Jeff Browncaca8812013-05-09 13:34:33 -07002590 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2591 if (!keyguardOn) {
2592 handleLongPressOnHome();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002593 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002594 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002595 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002596 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002597 // Hijack modified menu keys for debugging features
2598 final int chordBug = KeyEvent.META_SHIFT_ON;
2599
2600 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002601 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002602 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002603 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2604 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002605 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002606 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002607 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002608 Intent service = new Intent();
2609 service.setClassName(mContext, "com.android.server.LoadAverageService");
2610 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002611 boolean shown = Settings.Global.getInt(
2612 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002613 if (!shown) {
2614 mContext.startService(service);
2615 } else {
2616 mContext.stopService(service);
2617 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002618 Settings.Global.putInt(
2619 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002620 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002621 }
2622 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002623 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002624 if (down) {
2625 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002626 mSearchKeyShortcutPending = true;
2627 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002628 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002629 } else {
2630 mSearchKeyShortcutPending = false;
2631 if (mConsumeSearchKeyUp) {
2632 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002633 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002634 }
2635 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002636 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002637 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002638 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002639 if (down && repeatCount == 0) {
2640 preloadRecentApps();
2641 } else if (!down) {
2642 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002643 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002644 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002645 return -1;
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002646 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2647 if (down) {
2648 if (repeatCount == 0) {
2649 mAssistKeyLongPressed = false;
2650 } else if (repeatCount == 1) {
2651 mAssistKeyLongPressed = true;
2652 if (!keyguardOn) {
2653 launchAssistLongPressAction();
2654 }
2655 }
2656 } else {
2657 if (mAssistKeyLongPressed) {
2658 mAssistKeyLongPressed = false;
2659 } else {
2660 if (!keyguardOn) {
2661 launchAssistAction();
2662 }
2663 }
2664 }
2665 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002666 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2667 if (!down) {
2668 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002669 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002670 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2671 } else {
2672 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002673 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002674 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002675 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002676 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002677 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2678 if (down && repeatCount == 0) {
2679 mHandler.post(mScreenshotRunnable);
2680 }
2681 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002682 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2683 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2684 if (down) {
2685 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2686
2687 // Disable autobrightness if it's on
2688 int auto = Settings.System.getIntForUser(
2689 mContext.getContentResolver(),
2690 Settings.System.SCREEN_BRIGHTNESS_MODE,
2691 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2692 UserHandle.USER_CURRENT_OR_SELF);
2693 if (auto != 0) {
2694 Settings.System.putIntForUser(mContext.getContentResolver(),
2695 Settings.System.SCREEN_BRIGHTNESS_MODE,
2696 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2697 UserHandle.USER_CURRENT_OR_SELF);
2698 }
2699
2700 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2701 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2702 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2703 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2704 Settings.System.SCREEN_BRIGHTNESS,
2705 mPowerManager.getDefaultScreenBrightnessSetting(),
2706 UserHandle.USER_CURRENT_OR_SELF);
2707 brightness += step;
2708 // Make sure we don't go beyond the limits.
2709 brightness = Math.min(max, brightness);
2710 brightness = Math.max(min, brightness);
2711
2712 Settings.System.putIntForUser(mContext.getContentResolver(),
2713 Settings.System.SCREEN_BRIGHTNESS, brightness,
2714 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002715 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002716 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002717 }
2718 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002719 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002720 if (down) {
2721 mPendingMetaAction = true;
2722 } else if (mPendingMetaAction) {
Michael Wright8ab940a2014-09-01 11:01:27 -07002723 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD);
Michael Wright6a62e552014-06-03 19:19:48 -07002724 }
2725 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002726 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002727
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002728 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002729 // Any printing key that is chorded with Search should be consumed
2730 // even if no shortcut was invoked. This prevents text from being
2731 // inadvertently inserted when using a keyboard that has built-in macro
2732 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002733 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002734 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2735 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002736 mConsumeSearchKeyUp = true;
2737 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002738 if (down && repeatCount == 0 && !keyguardOn) {
2739 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2740 if (shortcutIntent != null) {
2741 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002742 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002743 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002744 } catch (ActivityNotFoundException ex) {
2745 Slog.w(TAG, "Dropping shortcut key combination because "
2746 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002747 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002748 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002749 } else {
2750 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002751 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002752 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002753 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002754 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002755 }
2756 }
2757
Jeff Brown68b909d2011-12-07 16:36:01 -08002758 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002759 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002760 && (metaState & KeyEvent.META_META_ON) != 0) {
2761 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002762 if (kcm.isPrintingKey(keyCode)) {
2763 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2764 metaState & ~(KeyEvent.META_META_ON
2765 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2766 if (shortcutIntent != null) {
2767 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2768 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002769 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002770 } catch (ActivityNotFoundException ex) {
2771 Slog.w(TAG, "Dropping shortcut key combination because "
2772 + "the activity to which it is registered was not found: "
2773 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2774 }
2775 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002776 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002777 }
2778 }
2779
Jeff Brown6651a632011-11-28 12:59:11 -08002780 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002781 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002782 String category = sApplicationLaunchKeyCategories.get(keyCode);
2783 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002784 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002785 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2786 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002787 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002788 } catch (ActivityNotFoundException ex) {
2789 Slog.w(TAG, "Dropping application launch key because "
2790 + "the activity to which it is registered was not found: "
2791 + "keyCode=" + keyCode + ", category=" + category, ex);
2792 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002793 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002794 }
2795 }
2796
Michael Wright61c46752014-08-21 16:57:33 -07002797 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002798 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002799 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002800 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002801 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002802 mRecentAppsHeldModifiers = shiftlessModifiers;
2803 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002804 return -1;
2805 }
2806 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002807 } else if (!down && mRecentAppsHeldModifiers != 0
2808 && (metaState & mRecentAppsHeldModifiers) == 0) {
2809 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002810 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002811 }
2812
Jeff Browncf39bdf2012-05-18 14:41:19 -07002813 // Handle keyboard language switching.
2814 if (down && repeatCount == 0
2815 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2816 || (keyCode == KeyEvent.KEYCODE_SPACE
2817 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2818 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2819 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2820 return -1;
2821 }
2822 if (mLanguageSwitchKeyPressed && !down
2823 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2824 || keyCode == KeyEvent.KEYCODE_SPACE)) {
2825 mLanguageSwitchKeyPressed = false;
2826 return -1;
2827 }
2828
Jeff Brown13f00f02014-10-31 14:45:50 -07002829 if (isValidGlobalKey(keyCode)
2830 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07002831 return -1;
2832 }
2833
Michael Wright6a62e552014-06-03 19:19:48 -07002834 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07002835 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07002836 return -1;
2837 }
2838
Jeff Brown68b909d2011-12-07 16:36:01 -08002839 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002840 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002841 }
2842
Jeff Brown3915bb82010-11-05 15:02:16 -07002843 /** {@inheritDoc} */
2844 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08002845 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07002846 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07002847 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08002848 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
2849 + ", flags=" + event.getFlags()
2850 + ", keyCode=" + event.getKeyCode()
2851 + ", scanCode=" + event.getScanCode()
2852 + ", metaState=" + event.getMetaState()
2853 + ", repeatCount=" + event.getRepeatCount()
2854 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07002855 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002856
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002857 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002858 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
2859 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002860 final int keyCode = event.getKeyCode();
2861 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002862 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
2863 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002864
Jeff Brown54875002011-04-06 15:33:01 -07002865 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002866 final FallbackAction fallbackAction;
2867 if (initialDown) {
2868 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
2869 } else {
2870 fallbackAction = mFallbackActions.get(keyCode);
2871 }
2872
2873 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07002874 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002875 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
2876 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002877 }
2878
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002879 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
2880 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08002881 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002882 event.getAction(), fallbackAction.keyCode,
2883 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08002884 event.getDeviceId(), event.getScanCode(),
2885 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002886
2887 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
2888 fallbackEvent.recycle();
2889 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002890 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002891
2892 if (initialDown) {
2893 mFallbackActions.put(keyCode, fallbackAction);
2894 } else if (event.getAction() == KeyEvent.ACTION_UP) {
2895 mFallbackActions.remove(keyCode);
2896 fallbackAction.recycle();
2897 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002898 }
2899 }
2900
Jeff Brown40013652012-05-16 21:22:36 -07002901 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002902 if (fallbackEvent == null) {
2903 Slog.d(TAG, "No fallback.");
2904 } else {
2905 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
2906 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002907 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002908 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07002909 }
2910
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002911 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002912 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002913 if ((actions & ACTION_PASS_TO_USER) != 0) {
2914 long delayMillis = interceptKeyBeforeDispatching(
2915 win, fallbackEvent, policyFlags);
2916 if (delayMillis == 0) {
2917 return true;
2918 }
2919 }
2920 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08002921 }
2922
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002923 private void launchAssistLongPressAction() {
2924 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
2925 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
2926
2927 // launch the search activity
2928 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
2929 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2930 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07002931 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07002932 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002933 SearchManager searchManager = getSearchManager();
2934 if (searchManager != null) {
2935 searchManager.stopSearch();
2936 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002937 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002938 } catch (ActivityNotFoundException e) {
2939 Slog.w(TAG, "No activity to handle assist long press action.", e);
2940 }
2941 }
2942
2943 private void launchAssistAction() {
Michael Wright8ab940a2014-09-01 11:01:27 -07002944 launchAssistAction(null);
2945 }
2946
2947 private void launchAssistAction(String hint) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002948 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Amith Yamasanic1d07a42012-08-14 09:32:02 -07002949 Intent intent = ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -08002950 .getAssistIntent(mContext, true, UserHandle.USER_CURRENT);
Jim Miller45308b12012-06-18 19:23:39 -07002951 if (intent != null) {
Michael Wright8ab940a2014-09-01 11:01:27 -07002952 if (hint != null) {
2953 intent.putExtra(hint, true);
2954 }
Jim Miller45308b12012-06-18 19:23:39 -07002955 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2956 | Intent.FLAG_ACTIVITY_SINGLE_TOP
2957 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
2958 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002959 startActivityAsUser(intent, UserHandle.CURRENT);
Jim Miller45308b12012-06-18 19:23:39 -07002960 } catch (ActivityNotFoundException e) {
2961 Slog.w(TAG, "No activity to handle assist action.", e);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002962 }
2963 }
2964 }
2965
Bart Sears8b1c27c2015-03-18 23:51:02 +00002966 private void startActivityAsUser(Intent intent, UserHandle handle) {
2967 if (isUserSetupComplete()) {
2968 mContext.startActivityAsUser(intent, handle);
2969 } else {
2970 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
2971 }
2972 }
2973
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002974 private SearchManager getSearchManager() {
2975 if (mSearchManager == null) {
2976 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
2977 }
2978 return mSearchManager;
2979 }
2980
Jeff Browncaca8812013-05-09 13:34:33 -07002981 private void preloadRecentApps() {
2982 mPreloadedRecentApps = true;
2983 try {
2984 IStatusBarService statusbar = getStatusBarService();
2985 if (statusbar != null) {
2986 statusbar.preloadRecentApps();
2987 }
2988 } catch (RemoteException e) {
2989 Slog.e(TAG, "RemoteException when preloading recent apps", e);
2990 // re-acquire status bar service next time it is needed.
2991 mStatusBarService = null;
2992 }
2993 }
2994
2995 private void cancelPreloadRecentApps() {
2996 if (mPreloadedRecentApps) {
2997 mPreloadedRecentApps = false;
2998 try {
2999 IStatusBarService statusbar = getStatusBarService();
3000 if (statusbar != null) {
3001 statusbar.cancelPreloadRecentApps();
3002 }
3003 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003004 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003005 // re-acquire status bar service next time it is needed.
3006 mStatusBarService = null;
3007 }
3008 }
3009 }
3010
3011 private void toggleRecentApps() {
3012 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003013 try {
3014 IStatusBarService statusbar = getStatusBarService();
3015 if (statusbar != null) {
3016 statusbar.toggleRecentApps();
3017 }
3018 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003019 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3020 // re-acquire status bar service next time it is needed.
3021 mStatusBarService = null;
3022 }
3023 }
3024
Craig Mautner84984fa2014-06-19 11:19:20 -07003025 @Override
3026 public void showRecentApps() {
3027 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3028 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3029 }
3030
Winson Chung1e8d71b2014-05-16 17:05:22 -07003031 private void showRecentApps(boolean triggeredFromAltTab) {
3032 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3033 try {
3034 IStatusBarService statusbar = getStatusBarService();
3035 if (statusbar != null) {
3036 statusbar.showRecentApps(triggeredFromAltTab);
3037 }
3038 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003039 Slog.e(TAG, "RemoteException when showing recent apps", e);
3040 // re-acquire status bar service next time it is needed.
3041 mStatusBarService = null;
3042 }
3043 }
3044
Winson Chungcdcd4872014-08-05 18:00:13 -07003045 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003046 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3047 try {
3048 IStatusBarService statusbar = getStatusBarService();
3049 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003050 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003051 }
3052 } catch (RemoteException e) {
3053 Slog.e(TAG, "RemoteException when closing recent apps", e);
3054 // re-acquire status bar service next time it is needed.
3055 mStatusBarService = null;
3056 }
3057 }
3058
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003059 void launchHomeFromHotKey() {
3060 launchHomeFromHotKey(true /* awakenFromDreams */);
3061 }
3062
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003063 /**
3064 * A home key -> launch home action was detected. Take the appropriate action
3065 * given the situation with the keyguard.
3066 */
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003067 void launchHomeFromHotKey(final boolean awakenFromDreams) {
Jim Millerab954542014-10-10 18:21:49 -07003068 if (isKeyguardShowingAndNotOccluded()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003069 // don't launch home if keyguard showing
Jim Miller5ecd8112013-01-09 18:50:26 -08003070 } else if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003071 // when in keyguard restricted mode, must first verify unlock
3072 // before launching home
Jim Miller5ecd8112013-01-09 18:50:26 -08003073 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
Jose Lima9546b202014-07-02 17:21:51 -07003074 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003075 public void onKeyguardExitResult(boolean success) {
3076 if (success) {
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003077 try {
3078 ActivityManagerNative.getDefault().stopAppSwitches();
3079 } catch (RemoteException e) {
3080 }
Joe Onoratof275f0c2009-11-24 16:11:13 -05003081 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003082 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003083 }
3084 }
3085 });
3086 } else {
3087 // no keyguard stuff to worry about, just launch home!
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003088 try {
3089 ActivityManagerNative.getDefault().stopAppSwitches();
3090 } catch (RemoteException e) {
3091 }
Winson Chungd543c1b2014-06-23 15:06:45 -07003092 if (mRecentsVisible) {
3093 // Hide Recents and notify it to launch Home
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003094 if (awakenFromDreams) {
3095 awakenDreams();
3096 }
Winson Chungd543c1b2014-06-23 15:06:45 -07003097 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Winson Chungcdcd4872014-08-05 18:00:13 -07003098 hideRecentApps(false, true);
Winson Chungd543c1b2014-06-23 15:06:45 -07003099 } else {
3100 // Otherwise, just launch Home
3101 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003102 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Winson Chungd543c1b2014-06-23 15:06:45 -07003103 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003104 }
3105 }
3106
John Spurlock04db1762013-05-13 12:46:41 -04003107 private final Runnable mClearHideNavigationFlag = new Runnable() {
3108 @Override
3109 public void run() {
3110 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3111 // Clear flags.
3112 mForceClearedSystemUiFlags &=
3113 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3114 }
3115 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003116 }
3117 };
3118
3119 /**
3120 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3121 * to determine when the nav bar should be shown and prevent applications from
3122 * receiving those touches.
3123 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003124 final class HideNavInputEventReceiver extends InputEventReceiver {
3125 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3126 super(inputChannel, looper);
3127 }
3128
Dianne Hackborndf89e652011-10-06 22:35:11 -07003129 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003130 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003131 boolean handled = false;
3132 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003133 if (event instanceof MotionEvent
3134 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3135 final MotionEvent motionEvent = (MotionEvent)event;
3136 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003137 // When the user taps down, we re-show the nav bar.
3138 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003139 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003140 // Any user activity always causes us to show the
3141 // navigation controls, if they had been hidden.
3142 // We also clear the low profile and only content
3143 // flags so that tapping on the screen will atomically
3144 // restore all currently hidden screen decorations.
3145 int newVal = mResettingSystemUiFlags |
3146 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3147 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3148 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003149 if (mResettingSystemUiFlags != newVal) {
3150 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003151 changed = true;
3152 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003153 // We don't allow the system's nav bar to be hidden
3154 // again for 1 second, to prevent applications from
3155 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003156 newVal = mForceClearedSystemUiFlags |
3157 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003158 if (mForceClearedSystemUiFlags != newVal) {
3159 mForceClearedSystemUiFlags = newVal;
3160 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003161 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003162 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003163 }
3164 if (changed) {
3165 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3166 }
3167 }
3168 }
3169 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003170 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003171 }
3172 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003173 }
3174 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3175 new InputEventReceiver.Factory() {
3176 @Override
3177 public InputEventReceiver createInputEventReceiver(
3178 InputChannel inputChannel, Looper looper) {
3179 return new HideNavInputEventReceiver(inputChannel, looper);
3180 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003181 };
3182
3183 @Override
3184 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003185 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3186 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003187 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003188
Dianne Hackborndf89e652011-10-06 22:35:11 -07003189 // Reset any bits in mForceClearingStatusBarVisibility that
3190 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003191 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003192 // Clear any bits in the new visibility that are currently being
3193 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003194 return visibility & ~mResettingSystemUiFlags
3195 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003196 }
3197
Craig Mautner69b08182012-09-05 13:07:13 -07003198 @Override
Adrian Roos37d7a682014-11-06 18:15:16 +01003199 public void getInsetHintLw(WindowManager.LayoutParams attrs, Rect outContentInsets,
3200 Rect outStableInsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003201 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003202 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3203 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003204
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003205 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003206 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003207 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003208 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003209 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003210 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3211 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3212 } else {
3213 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3214 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3215 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003216 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3217 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003218 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003219 availRight - mStableFullscreenRight,
3220 availBottom - mStableFullscreenBottom);
3221 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003222 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003223 availRight - mStableRight, availBottom - mStableBottom);
3224 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003225 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003226 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003227 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003228 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003229 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003230 availRight - mCurRight, availBottom - mCurBottom);
3231 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003232 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003233 availRight - mCurRight, availBottom - mCurBottom);
3234 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003235
3236 outStableInsets.set(mStableLeft, mStableTop,
3237 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003238 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003239 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003240 outContentInsets.setEmpty();
3241 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003242 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003243
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003244 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003245 @Override
3246 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3247 int displayRotation) {
Dianne Hackbornc652de82013-02-15 16:32:56 -08003248 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3249 if (isDefaultDisplay) {
3250 switch (displayRotation) {
3251 case Surface.ROTATION_90:
3252 overscanLeft = mOverscanTop;
3253 overscanTop = mOverscanRight;
3254 overscanRight = mOverscanBottom;
3255 overscanBottom = mOverscanLeft;
3256 break;
3257 case Surface.ROTATION_180:
3258 overscanLeft = mOverscanRight;
3259 overscanTop = mOverscanBottom;
3260 overscanRight = mOverscanLeft;
3261 overscanBottom = mOverscanTop;
3262 break;
3263 case Surface.ROTATION_270:
3264 overscanLeft = mOverscanBottom;
3265 overscanTop = mOverscanLeft;
3266 overscanRight = mOverscanTop;
3267 overscanBottom = mOverscanRight;
3268 break;
3269 default:
3270 overscanLeft = mOverscanLeft;
3271 overscanTop = mOverscanTop;
3272 overscanRight = mOverscanRight;
3273 overscanBottom = mOverscanBottom;
3274 break;
3275 }
3276 } else {
3277 overscanLeft = 0;
3278 overscanTop = 0;
3279 overscanRight = 0;
3280 overscanBottom = 0;
3281 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003282 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3283 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3284 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3285 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003286 mSystemLeft = 0;
3287 mSystemTop = 0;
3288 mSystemRight = displayWidth;
3289 mSystemBottom = displayHeight;
3290 mUnrestrictedScreenLeft = overscanLeft;
3291 mUnrestrictedScreenTop = overscanTop;
3292 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3293 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3294 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3295 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003296 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3297 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003298 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003299 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003300 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003301 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003302 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003303 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003304 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003305 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003306 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003307 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003308
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003309 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3310 final Rect pf = mTmpParentFrame;
3311 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003312 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003313 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003314 final Rect dcf = mTmpDecorFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003315 pf.left = df.left = of.left = vf.left = mDockLeft;
3316 pf.top = df.top = of.top = vf.top = mDockTop;
3317 pf.right = df.right = of.right = vf.right = mDockRight;
3318 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003319 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003320
Craig Mautner69b08182012-09-05 13:07:13 -07003321 if (isDefaultDisplay) {
3322 // For purposes of putting out fake window up to steal focus, we will
3323 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003324 final int sysui = mLastSystemUiFlags;
3325 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003326 boolean navTranslucent = (sysui
3327 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003328 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3329 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3330 boolean navAllowedHidden = immersive || immersiveSticky;
3331 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003332 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3333 if (!isKeyguardShowing) {
3334 navTranslucent &= areTranslucentBarsAllowed();
3335 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003336
Craig Mautner69b08182012-09-05 13:07:13 -07003337 // When the navigation bar isn't visible, we put up a fake
3338 // input window to catch all touch events. This way we can
3339 // detect when the user presses anywhere to bring back the nav
3340 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003341 if (navVisible || navAllowedHidden) {
Craig Mautner69b08182012-09-05 13:07:13 -07003342 if (mHideNavFakeWindow != null) {
3343 mHideNavFakeWindow.dismiss();
3344 mHideNavFakeWindow = null;
3345 }
3346 } else if (mHideNavFakeWindow == null) {
3347 mHideNavFakeWindow = mWindowManagerFuncs.addFakeWindow(
3348 mHandler.getLooper(), mHideNavInputEventReceiverFactory,
Adam Lesinski95c42972013-10-02 10:13:27 -07003349 "hidden nav", WindowManager.LayoutParams.TYPE_HIDDEN_NAV_CONSUMER, 0,
Craig Mautner69b08182012-09-05 13:07:13 -07003350 0, false, false, true);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003351 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003352
Craig Mautner69b08182012-09-05 13:07:13 -07003353 // For purposes of positioning and showing the nav bar, if we have
3354 // decided that it can't be hidden (because of the screen aspect ratio),
3355 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003356 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003357
John Spurlockad3e6cb2013-04-30 08:47:43 -04003358 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003359 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003360 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003361 // Force the navigation bar to its appropriate place and
3362 // size. We need to do this directly, instead of relying on
3363 // it to bubble up from the nav bar, because this needs to
3364 // change atomically with screen rotations.
3365 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3366 if (mNavigationBarOnBottom) {
3367 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003368 int top = displayHeight - overscanBottom
3369 - mNavigationBarHeightForRotation[displayRotation];
3370 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003371 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003372 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003373 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003374 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003375 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003376 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003377 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3378 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003379 } else {
3380 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003381 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003382 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003383 if (navVisible && !navTranslucent && !navAllowedHidden
3384 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003385 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003386 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003387 // and not in the process of animating on or off, then
3388 // we can tell the app that it is covered by it.
3389 mSystemBottom = mTmpNavigationFrame.top;
3390 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003391 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003392 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003393 int left = displayWidth - overscanRight
3394 - mNavigationBarWidthForRotation[displayRotation];
3395 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003396 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003397 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003398 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003399 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003400 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003401 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003402 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3403 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003404 } else {
3405 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003406 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003407 }
John Spurlockbd957402013-10-03 11:38:39 -04003408 if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3409 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003410 // If the nav bar is currently requested to be visible,
3411 // and not in the process of animating on or off, then
3412 // we can tell the app that it is covered by it.
3413 mSystemRight = mTmpNavigationFrame.left;
3414 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003415 }
Craig Mautner69b08182012-09-05 13:07:13 -07003416 // Make sure the content and current rectangles are updated to
3417 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003418 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3419 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3420 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3421 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003422 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3423 // And compute the final frame.
3424 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003425 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3426 mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003427 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003428 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003429 updateSysUiVisibility = true;
3430 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003431 }
Craig Mautnereda67292013-04-28 13:50:14 -07003432 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003433 mDockLeft, mDockTop, mDockRight, mDockBottom));
3434
3435 // decide where the status bar goes ahead of time
3436 if (mStatusBar != null) {
3437 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003438 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3439 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3440 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3441 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3442 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003443 vf.left = mStableLeft;
3444 vf.top = mStableTop;
3445 vf.right = mStableRight;
3446 vf.bottom = mStableBottom;
3447
3448 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3449
3450 // Let the status bar determine its size.
Adrian Roosfa104232014-06-20 16:10:14 -07003451 mStatusBar.computeFrameLw(pf, df, vf, vf, vf, dcf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003452
3453 // For layout, the status bar is always at the top with our fixed height.
3454 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3455
John Spurlocke1f366f2013-08-05 12:22:40 -04003456 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003457 boolean statusBarTranslucent = (sysui
3458 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003459 if (!isKeyguardShowing) {
3460 statusBarTranslucent &= areTranslucentBarsAllowed();
3461 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003462
Craig Mautner69b08182012-09-05 13:07:13 -07003463 // If the status bar is hidden, we don't want to cause
3464 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003465 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003466 // Status bar may go away, so the screen area it occupies
3467 // is available to apps but just covering them when the
3468 // status bar is visible.
3469 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3470
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003471 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3472 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3473 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3474 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003475
Craig Mautnereda67292013-04-28 13:50:14 -07003476 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003477 String.format(
3478 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3479 mDockLeft, mDockTop, mDockRight, mDockBottom,
3480 mContentLeft, mContentTop, mContentRight, mContentBottom,
3481 mCurLeft, mCurTop, mCurRight, mCurBottom));
3482 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003483 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003484 && !statusBarTransient && !statusBarTranslucent
3485 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003486 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003487 // and not in the process of animating on or off, then
3488 // we can tell the app that it is covered by it.
3489 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3490 }
John Spurlock27735a42013-08-14 17:57:38 -04003491 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003492 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003493 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003494 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003495 if (updateSysUiVisibility) {
3496 updateSystemUiVisibilityLw();
3497 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003498 }
3499 }
3500
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003501 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003502 @Override
John Spurlock46646232013-09-30 22:32:42 -04003503 public int getSystemDecorLayerLw() {
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003504 if (mStatusBar != null) return mStatusBar.getSurfaceLayer();
3505 if (mNavigationBar != null) return mNavigationBar.getSurfaceLayer();
3506 return 0;
3507 }
3508
Craig Mautner967212c2013-04-13 21:10:58 -07003509 @Override
3510 public void getContentRectLw(Rect r) {
3511 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3512 }
3513
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003514 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3515 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003516 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3517 // Here's a special case: if this attached window is a panel that is
3518 // above the dock window, and the window it is attached to is below
3519 // the dock window, then the frames we computed for the window it is
3520 // attached to can not be used because the dock is effectively part
3521 // of the underlying window and the attached window is floating on top
3522 // of the whole thing. So, we ignore the attached window and explicitly
3523 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003524 df.left = of.left = cf.left = vf.left = mDockLeft;
3525 df.top = of.top = cf.top = vf.top = mDockTop;
3526 df.right = of.right = cf.right = vf.right = mDockRight;
3527 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003528 } else {
3529 // The effective display frame of the attached window depends on
3530 // whether it is taking care of insetting its content. If not,
3531 // we need to use the parent's content frame so that the entire
3532 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003533 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003534 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003535 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003536 // Set the content frame of the attached window to the parent's decor frame
3537 // (same as content frame when IME isn't present) if specifically requested by
3538 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3539 // Otherwise, use the overscan frame.
3540 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3541 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003542 } else {
3543 // If the window is resizing, then we want to base the content
3544 // frame on our attached content frame to resize... however,
3545 // things can be tricky if the attached window is NOT in resize
3546 // mode, in which case its content frame will be larger.
3547 // Ungh. So to deal with that, make sure the content frame
3548 // we end up using is not covering the IM dock.
3549 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003550 if (attached.isVoiceInteraction()) {
3551 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3552 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3553 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3554 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3555 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003556 if (cf.left < mContentLeft) cf.left = mContentLeft;
3557 if (cf.top < mContentTop) cf.top = mContentTop;
3558 if (cf.right > mContentRight) cf.right = mContentRight;
3559 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3560 }
3561 }
3562 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003563 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003564 vf.set(attached.getVisibleFrameLw());
3565 }
3566 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3567 // window should be positioned relative to its parent or the entire
3568 // screen.
3569 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3570 ? attached.getFrameLw() : df);
3571 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003572
3573 private void applyStableConstraints(int sysui, int fl, Rect r) {
3574 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3575 // If app is requesting a stable layout, don't let the
3576 // content insets go below the stable values.
3577 if ((fl & FLAG_FULLSCREEN) != 0) {
3578 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3579 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3580 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3581 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3582 } else {
3583 if (r.left < mStableLeft) r.left = mStableLeft;
3584 if (r.top < mStableTop) r.top = mStableTop;
3585 if (r.right > mStableRight) r.right = mStableRight;
3586 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3587 }
3588 }
3589 }
3590
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003591 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003592 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003593 public void layoutWindowLw(WindowState win, WindowState attached) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003594 // we've already done the status bar
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003595 final WindowManager.LayoutParams attrs = win.getAttrs();
3596 if ((win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) == 0) ||
3597 win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003598 return;
3599 }
Craig Mautner69b08182012-09-05 13:07:13 -07003600 final boolean isDefaultDisplay = win.isDefaultDisplay();
3601 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003602 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3603 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003604 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003605 offsetInputMethodWindowLw(mLastInputMethodWindow);
3606 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003607
John Spurlockc6d1c602014-01-17 15:22:06 -05003608 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003609 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003610 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003611
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003612 final Rect pf = mTmpParentFrame;
3613 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003614 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003615 final Rect cf = mTmpContentFrame;
3616 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003617 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003618 final Rect sf = mTmpStableFrame;
John Spurlock46646232013-09-30 22:32:42 -04003619 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003620
3621 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003622 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003623
Craig Mautnerf683b562012-10-02 11:10:57 -07003624 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3625
Adrian Roosfa104232014-06-20 16:10:14 -07003626 if (isDefaultDisplay) {
3627 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3628 } else {
3629 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3630 }
3631
Craig Mautner69b08182012-09-05 13:07:13 -07003632 if (!isDefaultDisplay) {
3633 if (attached != null) {
3634 // If this window is attached to another, our display
3635 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003636 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003637 } else {
3638 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003639 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3640 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3641 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003642 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003643 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003644 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003645 }
Dianne Hackbornae6688b2015-02-11 17:02:41 -08003646 } else if (attrs.type == TYPE_INPUT_METHOD || attrs.type == TYPE_VOICE_INTERACTION) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003647 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3648 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3649 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003650 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003651 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003652 // ...with content insets above the nav bar
3653 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003654 // IM dock windows always go to the bottom of the screen.
3655 attrs.gravity = Gravity.BOTTOM;
3656 mDockLayer = win.getSurfaceLayer();
Jorim Jaggie0700182014-08-21 01:12:37 +02003657 } else if (win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
3658 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3659 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3660 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3661 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3662 cf.left = vf.left = mStableLeft;
3663 cf.top = vf.top = mStableTop;
3664 cf.right = vf.right = mStableRight;
3665 vf.bottom = mStableBottom;
3666 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003667 } else {
John Spurlock46646232013-09-30 22:32:42 -04003668
3669 // Default policy decor for the default display
3670 dcf.left = mSystemLeft;
3671 dcf.top = mSystemTop;
3672 dcf.right = mSystemRight;
3673 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003674 final boolean inheritTranslucentDecor = (attrs.privateFlags
3675 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003676 final boolean isAppWindow =
3677 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3678 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3679 final boolean topAtRest =
3680 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3681 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003682 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3683 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003684 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3685 && (fl & WindowManager.LayoutParams.
3686 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003687 // Ensure policy decor includes status bar
3688 dcf.top = mStableTop;
3689 }
John Spurlockbd957402013-10-03 11:38:39 -04003690 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003691 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3692 && (fl & WindowManager.LayoutParams.
3693 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003694 // Ensure policy decor includes navigation bar
3695 dcf.bottom = mStableBottom;
3696 dcf.right = mStableRight;
3697 }
3698 }
3699
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003700 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3701 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003702 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003703 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003704 // This is the case for a normal activity window: we want it
3705 // to cover all of the screen space, and it can take care of
3706 // moving its contents to account for screen decorations that
3707 // intrude into that space.
3708 if (attached != null) {
3709 // If this window is attached to another, our display
3710 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003711 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003712 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003713 if (attrs.type == TYPE_STATUS_BAR_PANEL
3714 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003715 // Status bar panels are the only windows who can go on top of
3716 // the status bar. They are protected by the STATUS_BAR_SERVICE
3717 // permission, so they have the same privileges as the status
3718 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003719 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003720 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003721
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003722 pf.left = df.left = of.left = hasNavBar
3723 ? mDockLeft : mUnrestrictedScreenLeft;
3724 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3725 pf.right = df.right = of.right = hasNavBar
3726 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3727 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3728 pf.bottom = df.bottom = of.bottom = hasNavBar
3729 ? mRestrictedScreenTop+mRestrictedScreenHeight
3730 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003731
Craig Mautnereda67292013-04-28 13:50:14 -07003732 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003733 "Laying out status bar window: (%d,%d - %d,%d)",
3734 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003735 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003736 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3737 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3738 // Asking to layout into the overscan region, so give it that pure
3739 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003740 pf.left = df.left = of.left = mOverscanScreenLeft;
3741 pf.top = df.top = of.top = mOverscanScreenTop;
3742 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3743 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3744 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003745 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003746 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003747 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3748 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003749 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003750 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003751 // only do this for application windows to ensure no window that
3752 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08003753 pf.left = df.left = mOverscanScreenLeft;
3754 pf.top = df.top = mOverscanScreenTop;
3755 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3756 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003757 // We need to tell the app about where the frame inside the overscan
3758 // is, so it can inset its content by that amount -- it didn't ask
3759 // to actually extend itself into the overscan region.
3760 of.left = mUnrestrictedScreenLeft;
3761 of.top = mUnrestrictedScreenTop;
3762 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3763 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003764 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08003765 pf.left = df.left = mRestrictedOverscanScreenLeft;
3766 pf.top = df.top = mRestrictedOverscanScreenTop;
3767 pf.right = df.right = mRestrictedOverscanScreenLeft
3768 + mRestrictedOverscanScreenWidth;
3769 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
3770 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003771 // We need to tell the app about where the frame inside the overscan
3772 // is, so it can inset its content by that amount -- it didn't ask
3773 // to actually extend itself into the overscan region.
3774 of.left = mUnrestrictedScreenLeft;
3775 of.top = mUnrestrictedScreenTop;
3776 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3777 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003778 }
Craig Mautner69b08182012-09-05 13:07:13 -07003779
John Spurlock46646232013-09-30 22:32:42 -04003780 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003781 if (win.isVoiceInteraction()) {
3782 cf.left = mVoiceContentLeft;
3783 cf.top = mVoiceContentTop;
3784 cf.right = mVoiceContentRight;
3785 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003786 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003787 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
3788 cf.left = mDockLeft;
3789 cf.top = mDockTop;
3790 cf.right = mDockRight;
3791 cf.bottom = mDockBottom;
3792 } else {
3793 cf.left = mContentLeft;
3794 cf.top = mContentTop;
3795 cf.right = mContentRight;
3796 cf.bottom = mContentBottom;
3797 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003798 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003799 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003800 // Full screen windows are always given a layout that is as if the
3801 // status bar and other transient decors are gone. This is to avoid
3802 // bad states when moving from a window that is not hding the
3803 // status bar to one that is.
3804 cf.left = mRestrictedScreenLeft;
3805 cf.top = mRestrictedScreenTop;
3806 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
3807 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003808 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003809 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003810 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3811 vf.left = mCurLeft;
3812 vf.top = mCurTop;
3813 vf.right = mCurRight;
3814 vf.bottom = mCurBottom;
3815 } else {
3816 vf.set(cf);
3817 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003818 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003819 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
3820 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
3821 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07003822 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3823 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003824 // A window that has requested to fill the entire screen just
3825 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003826 if (attrs.type == TYPE_STATUS_BAR_PANEL
3827 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003828 pf.left = df.left = of.left = cf.left = hasNavBar
3829 ? mDockLeft : mUnrestrictedScreenLeft;
3830 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3831 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003832 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08003833 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003834 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003835 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003836 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003837 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04003838 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
3839 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07003840 } else if (attrs.type == TYPE_NAVIGATION_BAR
3841 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003842 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003843 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3844 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3845 pf.right = df.right = of.right = mUnrestrictedScreenLeft
3846 + mUnrestrictedScreenWidth;
3847 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
3848 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07003849 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003850 "Laying out navigation bar window: (%d,%d - %d,%d)",
3851 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08003852 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
3853 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07003854 && ((fl & FLAG_FULLSCREEN) != 0)) {
3855 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003856 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3857 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3858 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3859 + mOverscanScreenWidth;
3860 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3861 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08003862 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08003863 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003864 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3865 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3866 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3867 + mOverscanScreenWidth;
3868 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3869 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04003870 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003871 // The wallpaper also has Real Ultimate Power, but we want to tell
3872 // it about the overscan area.
3873 pf.left = df.left = mOverscanScreenLeft;
3874 pf.top = df.top = mOverscanScreenTop;
3875 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3876 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
3877 of.left = cf.left = mUnrestrictedScreenLeft;
3878 of.top = cf.top = mUnrestrictedScreenTop;
3879 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3880 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04003881 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003882 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3883 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3884 // Asking to layout into the overscan region, so give it that pure
3885 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003886 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3887 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3888 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003889 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003890 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003891 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003892 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003893 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07003894 && (attrs.type == TYPE_STATUS_BAR
3895 || attrs.type == TYPE_TOAST
John Spurlock34e13d92013-08-10 06:52:28 -04003896 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3897 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003898 // Asking for layout as if the nav bar is hidden, lets the
3899 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04003900 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003901 // can be above the nav bar can do this.
3902 // XXX This assumes that an app asking for this will also
3903 // ask for layout in only content. We can't currently figure out
3904 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003905 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
3906 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3907 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
3908 + mUnrestrictedScreenWidth;
3909 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
3910 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003911 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003912 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3913 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3914 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3915 + mRestrictedScreenWidth;
3916 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3917 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003918 }
Craig Mautner69b08182012-09-05 13:07:13 -07003919
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003920 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07003921
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003922 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3923 vf.left = mCurLeft;
3924 vf.top = mCurTop;
3925 vf.right = mCurRight;
3926 vf.bottom = mCurBottom;
3927 } else {
3928 vf.set(cf);
3929 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003930 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07003931 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3932 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003933 // A child window should be placed inside of the same visible
3934 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003935 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003936 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07003937 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3938 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003939 // Otherwise, a normal window must be placed inside the content
3940 // of all screen decorations.
Dianne Hackborna239c842011-06-01 12:28:20 -07003941 if (attrs.type == TYPE_STATUS_BAR_PANEL) {
3942 // Status bar panels are the only windows who can go on top of
3943 // the status bar. They are protected by the STATUS_BAR_SERVICE
3944 // permission, so they have the same privileges as the status
3945 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003946 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3947 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3948 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3949 + mRestrictedScreenWidth;
3950 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3951 + mRestrictedScreenHeight;
John Spurlock414c1f02013-12-04 13:47:36 -05003952 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT
3953 || attrs.type == TYPE_VOLUME_OVERLAY) {
3954 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04003955 pf.left = df.left = of.left = cf.left = mStableLeft;
3956 pf.top = df.top = of.top = cf.top = mStableTop;
3957 pf.right = df.right = of.right = cf.right = mStableRight;
3958 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003959 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07003960 pf.left = mContentLeft;
3961 pf.top = mContentTop;
3962 pf.right = mContentRight;
3963 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07003964 if (win.isVoiceInteraction()) {
3965 df.left = of.left = cf.left = mVoiceContentLeft;
3966 df.top = of.top = cf.top = mVoiceContentTop;
3967 df.right = of.right = cf.right = mVoiceContentRight;
3968 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
3969 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003970 df.left = of.left = cf.left = mDockLeft;
3971 df.top = of.top = cf.top = mDockTop;
3972 df.right = of.right = cf.right = mDockRight;
3973 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07003974 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003975 df.left = of.left = cf.left = mContentLeft;
3976 df.top = of.top = cf.top = mContentTop;
3977 df.right = of.right = cf.right = mContentRight;
3978 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07003979 }
3980 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3981 vf.left = mCurLeft;
3982 vf.top = mCurTop;
3983 vf.right = mCurRight;
3984 vf.bottom = mCurBottom;
3985 } else {
3986 vf.set(cf);
3987 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003988 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003989 }
3990 }
Craig Mautner69b08182012-09-05 13:07:13 -07003991
Craig Mautnerb816bed2013-07-23 10:26:17 -07003992 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
3993 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07003994 df.left = df.top = -10000;
3995 df.right = df.bottom = 10000;
3996 if (attrs.type != TYPE_WALLPAPER) {
3997 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
3998 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
3999 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004000 }
4001
Craig Mautnereda67292013-04-28 13:50:14 -07004002 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004003 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004004 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004005 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004006 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004007 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004008 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004009 + " dcf=" + dcf.toShortString()
4010 + " sf=" + sf.toShortString());
Craig Mautner69b08182012-09-05 13:07:13 -07004011
Adrian Roosfa104232014-06-20 16:10:14 -07004012 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf);
Craig Mautner69b08182012-09-05 13:07:13 -07004013
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004014 // Dock windows carve out the bottom of the screen, so normal windows
4015 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004016 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4017 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004018 setLastInputMethodWindowLw(null, null);
4019 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004020 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004021 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4022 && !win.getGivenInsetsPendingLw()) {
4023 offsetVoiceInputWindowLw(win);
4024 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004025 }
4026
satok1bc0a492012-04-25 22:47:12 +09004027 private void offsetInputMethodWindowLw(WindowState win) {
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004028 int top = win.getDisplayFrameLw().top;
satok1bc0a492012-04-25 22:47:12 +09004029 top += win.getGivenContentInsetsLw().top;
4030 if (mContentBottom > top) {
4031 mContentBottom = top;
4032 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004033 if (mVoiceContentBottom > top) {
4034 mVoiceContentBottom = top;
4035 }
satok1bc0a492012-04-25 22:47:12 +09004036 top = win.getVisibleFrameLw().top;
4037 top += win.getGivenVisibleInsetsLw().top;
4038 if (mCurBottom > top) {
4039 mCurBottom = top;
4040 }
Craig Mautnereda67292013-04-28 13:50:14 -07004041 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004042 + mDockBottom + " mContentBottom="
4043 + mContentBottom + " mCurBottom=" + mCurBottom);
4044 }
4045
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004046 private void offsetVoiceInputWindowLw(WindowState win) {
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004047 int top = win.getDisplayFrameLw().top;
4048 top += win.getGivenContentInsetsLw().top;
4049 if (mVoiceContentBottom > top) {
4050 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004051 }
4052 }
4053
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004054 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004055 @Override
4056 public void finishLayoutLw() {
4057 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004058 }
4059
4060 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004061 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004062 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004063 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004064 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004065 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004066 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004067 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004068 mForceStatusBarFromKeyguard = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004069 mForcingShowNavBar = false;
4070 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004071
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004072 mHideLockScreen = false;
4073 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004074 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004075 mShowingLockscreen = false;
4076 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004077 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004078 mKeyguardSecure = isKeyguardSecure();
4079 mKeyguardSecureIncludingHidden = mKeyguardSecure
4080 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004081 }
4082
4083 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004084 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004085 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004086 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4087 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004088 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004089 if (mTopFullscreenOpaqueWindowState == null
4090 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4091 mForcingShowNavBar = true;
4092 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004093 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004094 if (attrs.type == TYPE_STATUS_BAR && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004095 mForceStatusBarFromKeyguard = true;
4096 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004097 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004098 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004099 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004100 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004101 mForceStatusBarFromKeyguard = true;
4102 } else {
4103 mForceStatusBar = true;
4104 }
4105 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004106 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004107 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004108 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004109 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
Craig Mautner7d7808f2014-09-11 18:02:38 -07004110 && attrs.type < FIRST_SYSTEM_WINDOW;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004111 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004112 // If the lockscreen was showing when the dream started then wait
4113 // for the dream to draw before hiding the lockscreen.
4114 if (!mDreamingLockscreen
4115 || (win.isVisibleLw() && win.hasDrawnLw())) {
4116 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004117 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004118 }
4119 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004120
Craig Mautner00156ec2014-03-06 22:29:02 -08004121 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
Craig Mautner74ee9382014-04-01 15:20:16 -07004122 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
Craig Mautnerab55e522014-03-03 13:26:03 -08004123 if (appWindow) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004124 final IApplicationToken appToken = win.getAppToken();
4125 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004126 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004127 mAppsToBeHidden.remove(appToken);
4128 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004129 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004130 if (dismissKeyguard && !mKeyguardSecure) {
4131 mAppsThatDismissKeyguard.add(appToken);
4132 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004133 mWinShowWhenLocked = win;
4134 mHideLockScreen = true;
4135 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004136 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004137 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004138 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004139 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004140 mAppsToBeHidden.add(appToken);
4141 } else {
4142 mAppsToBeHidden.remove(appToken);
4143 }
4144 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004145 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004146 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004147 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004148 if (attrs.x == 0 && attrs.y == 0
4149 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4150 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4151 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4152 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004153 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4154 mTopFullscreenOpaqueOrDimmingWindowState = win;
4155 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004156 if (!mAppsThatDismissKeyguard.isEmpty() &&
4157 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4158 if (DEBUG_LAYOUT) Slog.v(TAG,
4159 "Setting mDismissKeyguard true by win " + win);
4160 mDismissKeyguard = mWinDismissingKeyguard == win ?
4161 DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
4162 mWinDismissingKeyguard = win;
Jim Millerab954542014-10-10 18:21:49 -07004163 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004164 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4165 if (DEBUG_LAYOUT) Slog.v(TAG,
4166 "Setting mHideLockScreen to true by win " + win);
4167 mHideLockScreen = true;
4168 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004169 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004170 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004171 mAllowLockscreenWhenOn = true;
4172 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004173 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004174
4175 if (mWinShowWhenLocked != null &&
4176 mWinShowWhenLocked.getAppToken() != win.getAppToken()) {
4177 win.hideLw(false);
4178 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004179 }
4180 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004181 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4182 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4183 && win.isDimming()) {
4184 mTopFullscreenOpaqueOrDimmingWindowState = win;
4185 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004186 }
4187
4188 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004189 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004190 public int finishPostLayoutPolicyLw() {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004191 if (mWinShowWhenLocked != null &&
4192 mWinShowWhenLocked != mTopFullscreenOpaqueWindowState) {
4193 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4194 // fullscreen window.
4195 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4196 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4197 mTopFullscreenOpaqueWindowState.hideLw(false);
4198 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4199 }
4200
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004201 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004202 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004203
4204 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4205 ? mTopFullscreenOpaqueWindowState.getAttrs()
4206 : null;
4207
Jeff Brownc8018eb2012-10-29 21:33:27 -07004208 // If we are not currently showing a dream then remember the current
4209 // lockscreen state. We will use this to determine whether the dream
4210 // started while the lockscreen was showing and remember this state
4211 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004212 if (!mShowingDream) {
4213 mDreamingLockscreen = mShowingLockscreen;
4214 }
4215
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004216 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004217 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004218 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004219 + " top=" + mTopFullscreenOpaqueWindowState);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004220 if (mForceStatusBar || mForceStatusBarFromKeyguard) {
Craig Mautnereda67292013-04-28 13:50:14 -07004221 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004222 if (mStatusBarController.setBarShowingLw(true)) {
4223 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4224 }
Craig Mautner81defc72013-10-29 11:10:42 -07004225 // Maintain fullscreen layout until incoming animation is complete.
4226 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004227 // Transient status bar on the lockscreen is not allowed
4228 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4229 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4230 mLastSystemUiFlags, mLastSystemUiFlags);
4231 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004232 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004233 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004234 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004235 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004236 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004237 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004238 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004239 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004240 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004241 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004242 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004243 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004244 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4245 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004246 if (mStatusBarController.isTransientShowing()) {
4247 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004248 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4249 }
4250 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004251 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004252 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004253 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004254 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004255 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004256 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004257 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004258 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004259 if (mStatusBarController.setBarShowingLw(true)) {
4260 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4261 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004262 }
4263 }
4264 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004265
Craig Mautner81defc72013-10-29 11:10:42 -07004266 if (mTopIsFullscreen != topIsFullscreen) {
4267 if (!topIsFullscreen) {
4268 // Force another layout when status bar becomes fully shown.
4269 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4270 }
4271 mTopIsFullscreen = topIsFullscreen;
4272 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004273
Craig Mautner39834192012-09-02 07:47:24 -07004274 // Hide the key guard if a visible window explicitly specifies that it wants to be
4275 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004276 if (mKeyguardDelegate != null && mStatusBar != null) {
4277 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4278 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004279 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004280 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004281 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004282 changes |= FINISH_LAYOUT_REDO_LAYOUT
4283 | FINISH_LAYOUT_REDO_CONFIG
4284 | FINISH_LAYOUT_REDO_WALLPAPER;
4285 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004286 if (mKeyguardDelegate.isShowing()) {
4287 mHandler.post(new Runnable() {
4288 @Override
4289 public void run() {
4290 mKeyguardDelegate.keyguardDone(false, false);
4291 }
4292 });
4293 }
4294 } else if (mHideLockScreen) {
4295 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004296 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004297 changes |= FINISH_LAYOUT_REDO_LAYOUT
4298 | FINISH_LAYOUT_REDO_CONFIG
4299 | FINISH_LAYOUT_REDO_WALLPAPER;
4300 }
4301 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
4302 // This is the case of keyguard isSecure() and not mHideLockScreen.
4303 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4304 // Only launch the next keyguard unlock window once per window.
4305 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004306 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004307 changes |= FINISH_LAYOUT_REDO_LAYOUT
4308 | FINISH_LAYOUT_REDO_CONFIG
4309 | FINISH_LAYOUT_REDO_WALLPAPER;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004310 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004311 mHandler.post(new Runnable() {
4312 @Override
4313 public void run() {
4314 mKeyguardDelegate.dismiss();
4315 }
4316 });
4317 }
4318 } else {
4319 mWinDismissingKeyguard = null;
4320 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004321 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004322 changes |= FINISH_LAYOUT_REDO_LAYOUT
4323 | FINISH_LAYOUT_REDO_CONFIG
4324 | FINISH_LAYOUT_REDO_WALLPAPER;
4325 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004326 }
4327 }
Joe Onorato664644d2011-01-23 17:53:23 -08004328
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004329 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004330 // If the navigation bar has been hidden or shown, we need to do another
4331 // layout pass to update that window.
4332 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4333 }
Joe Onorato664644d2011-01-23 17:53:23 -08004334
Mike Lockwood28569302010-01-28 11:54:40 -05004335 // update since mAllowLockscreenWhenOn might have changed
4336 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004337 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004338 }
4339
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004340 /**
Jim Millerab954542014-10-10 18:21:49 -07004341 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004342 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004343 * @return Whether the flags have changed and we have to redo the layout.
4344 */
Jim Millerab954542014-10-10 18:21:49 -07004345 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4346 boolean wasOccluded = mKeyguardOccluded;
4347 boolean showing = mKeyguardDelegate.isShowing();
4348 if (wasOccluded && !isOccluded && showing) {
4349 mKeyguardOccluded = false;
4350 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004351 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4352 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4353 return true;
Jim Millerab954542014-10-10 18:21:49 -07004354 } else if (!wasOccluded && isOccluded && showing) {
4355 mKeyguardOccluded = true;
4356 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004357 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4358 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4359 return true;
4360 } else {
4361 return false;
4362 }
4363 }
4364
4365 private boolean isStatusBarKeyguard() {
4366 return mStatusBar != null
4367 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4368 }
4369
Jose Lima9546b202014-07-02 17:21:51 -07004370 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004371 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004372 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004373 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004374 return false;
4375 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004376 return true;
4377 }
4378
Jose Lima9546b202014-07-02 17:21:51 -07004379 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004380 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004381 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004382 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004383 // If the navigation bar has been hidden or shown, we need to do another
4384 // layout pass to update that window.
4385 return FINISH_LAYOUT_REDO_LAYOUT;
4386 }
4387 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004388 }
4389
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004390 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004391 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004392 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4393 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004394 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4395 if (newLidState == mLidState) {
4396 return;
4397 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004398
Jeff Brownc458ce92012-04-30 14:58:40 -07004399 mLidState = newLidState;
4400 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004401 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004402
4403 if (lidOpen) {
Bryce Lee584a4452014-10-21 15:55:55 -07004404 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch);
Jeff Brownc458ce92012-04-30 14:58:40 -07004405 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004406 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004407 }
4408 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004409
Michael Wright3818c922014-09-02 13:59:07 -07004410 @Override
4411 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4412 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4413 if (mCameraLensCoverState == lensCoverState) {
4414 return;
4415 }
4416 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4417 lensCoverState == CAMERA_LENS_UNCOVERED) {
4418 Intent intent;
4419 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4420 mKeyguardDelegate.isShowing();
4421 if (keyguardActive) {
4422 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4423 } else {
4424 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4425 }
Bryce Lee584a4452014-10-21 15:55:55 -07004426 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens);
Bart Sears8b1c27c2015-03-18 23:51:02 +00004427 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004428 }
4429 mCameraLensCoverState = lensCoverState;
4430 }
4431
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004432 void setHdmiPlugged(boolean plugged) {
4433 if (mHdmiPlugged != plugged) {
4434 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004435 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004436 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004437 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004438 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004439 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004440 }
4441 }
4442
Joe Onoratoea495d42011-04-06 11:41:11 -07004443 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004444 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004445 // watch for HDMI plug messages if the hdmi switch exists
4446 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4447 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4448
Joe Onoratoea495d42011-04-06 11:41:11 -07004449 final String filename = "/sys/class/switch/hdmi/state";
4450 FileReader reader = null;
4451 try {
4452 reader = new FileReader(filename);
4453 char[] buf = new char[15];
4454 int n = reader.read(buf);
4455 if (n > 1) {
4456 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4457 }
4458 } catch (IOException ex) {
4459 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4460 } catch (NumberFormatException ex) {
4461 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4462 } finally {
4463 if (reader != null) {
4464 try {
4465 reader.close();
4466 } catch (IOException ex) {
4467 }
Joe Onoratodc100302011-01-11 17:07:41 -08004468 }
4469 }
4470 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004471 // This dance forces the code in setHdmiPlugged to run.
4472 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4473 mHdmiPlugged = !plugged;
4474 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004475 }
4476
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004477 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004478 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004479
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004480 final Runnable mScreenshotTimeout = new Runnable() {
4481 @Override public void run() {
4482 synchronized (mScreenshotLock) {
4483 if (mScreenshotConnection != null) {
4484 mContext.unbindService(mScreenshotConnection);
4485 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004486 }
Winson Chung9112ec32011-06-27 13:15:32 -07004487 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004488 }
4489 };
4490
4491 // Assume this is called from the Handler thread.
4492 private void takeScreenshot() {
4493 synchronized (mScreenshotLock) {
4494 if (mScreenshotConnection != null) {
4495 return;
4496 }
4497 ComponentName cn = new ComponentName("com.android.systemui",
4498 "com.android.systemui.screenshot.TakeScreenshotService");
4499 Intent intent = new Intent();
4500 intent.setComponent(cn);
4501 ServiceConnection conn = new ServiceConnection() {
4502 @Override
4503 public void onServiceConnected(ComponentName name, IBinder service) {
4504 synchronized (mScreenshotLock) {
4505 if (mScreenshotConnection != this) {
4506 return;
4507 }
4508 Messenger messenger = new Messenger(service);
4509 Message msg = Message.obtain(null, 1);
4510 final ServiceConnection myConn = this;
4511 Handler h = new Handler(mHandler.getLooper()) {
4512 @Override
4513 public void handleMessage(Message msg) {
4514 synchronized (mScreenshotLock) {
4515 if (mScreenshotConnection == myConn) {
4516 mContext.unbindService(mScreenshotConnection);
4517 mScreenshotConnection = null;
4518 mHandler.removeCallbacks(mScreenshotTimeout);
4519 }
4520 }
4521 }
4522 };
4523 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004524 msg.arg1 = msg.arg2 = 0;
4525 if (mStatusBar != null && mStatusBar.isVisibleLw())
4526 msg.arg1 = 1;
4527 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4528 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004529 try {
4530 messenger.send(msg);
4531 } catch (RemoteException e) {
4532 }
4533 }
4534 }
4535 @Override
4536 public void onServiceDisconnected(ComponentName name) {}
4537 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004538 if (mContext.bindServiceAsUser(
4539 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004540 mScreenshotConnection = conn;
4541 mHandler.postDelayed(mScreenshotTimeout, 10000);
4542 }
4543 }
Winson Chung9112ec32011-06-27 13:15:32 -07004544 }
4545
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004546 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004547 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004548 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004549 if (!mSystemBooted) {
4550 // If we have not yet booted, don't let key events do anything.
4551 return 0;
4552 }
4553
Jeff Brown037c33e2014-04-09 00:31:55 -07004554 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004555 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4556 final boolean canceled = event.isCanceled();
4557 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004558
Jeff Brown3122e442010-10-11 23:32:49 -07004559 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004560
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004561 // If screen is off then we treat the case where the keyguard is open but hidden
4562 // the same as if it were open and in front.
4563 // This will prevent any keys other than the power button from waking the screen
4564 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004565 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004566 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004567 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004568 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004569
Jeff Brown40013652012-05-16 21:22:36 -07004570 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004571 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004572 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004573 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004574 }
4575
Jeff Brown037c33e2014-04-09 00:31:55 -07004576 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004577 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004578 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4579 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004580 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004581 // When the device is interactive or the key is injected pass the
4582 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004583 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004584 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004585 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4586 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4587 // to the application but preserve its wake key status to make sure we still move
4588 // from dozing to fully interactive if we would normally go from off to fully
4589 // interactive.
4590 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004591 } else {
4592 // When the screen is off and the key is not injected, determine whether
4593 // to wake the device but don't pass the key to the application.
4594 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004595 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4596 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004597 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004598 }
4599
Justin Kohd378ad72013-04-01 12:18:26 -07004600 // If the key would be handled globally, just return the result, don't worry about special
4601 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004602 if (isValidGlobalKey(keyCode)
4603 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004604 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004605 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Michael Wright85b1af62014-06-04 14:51:58 -07004606 }
Justin Kohd378ad72013-04-01 12:18:26 -07004607 return result;
4608 }
4609
Jeff Brownbae8e772014-06-12 19:59:45 -07004610 boolean useHapticFeedback = down
4611 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4612 && event.getRepeatCount() == 0;
4613
Jeff Brown4d396052010-10-29 21:50:21 -07004614 // Handle special keys.
4615 switch (keyCode) {
4616 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004617 case KeyEvent.KEYCODE_VOLUME_UP:
4618 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004619 if (mUseTvRouting) {
4620 // On TVs volume keys never go to the foreground app
4621 result &= ~ACTION_PASS_TO_USER;
4622 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004623 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4624 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004625 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004626 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004627 mScreenshotChordVolumeDownKeyTriggered = true;
4628 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4629 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004630 cancelPendingPowerKeyAction();
4631 interceptScreenshotChord();
4632 }
4633 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004634 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004635 cancelPendingScreenshotChordAction();
4636 }
4637 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4638 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004639 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004640 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004641 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004642 cancelPendingPowerKeyAction();
4643 cancelPendingScreenshotChordAction();
4644 }
4645 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004646 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004647 cancelPendingScreenshotChordAction();
4648 }
4649 }
Jeff Brown4d396052010-10-29 21:50:21 -07004650 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004651 TelecomManager telecomManager = getTelecommService();
4652 if (telecomManager != null) {
4653 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004654 // If an incoming call is ringing, either VOLUME key means
4655 // "silence ringer". We handle these keys here, rather than
4656 // in the InCallScreen, to make sure we'll respond to them
4657 // even if the InCallScreen hasn't come to the foreground yet.
4658 // Look for the DOWN event here, to agree with the "fallback"
4659 // behavior in the InCallScreen.
4660 Log.i(TAG, "interceptKeyBeforeQueueing:"
4661 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004662
Santos Cordon6848f722014-05-21 15:22:12 -07004663 // Silence the ringer. (It's safe to call this
4664 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004665 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004666
Santos Cordon6848f722014-05-21 15:22:12 -07004667 // And *don't* pass this key thru to the current activity
4668 // (which is probably the InCallScreen.)
4669 result &= ~ACTION_PASS_TO_USER;
4670 break;
4671 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004672 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004673 && (result & ACTION_PASS_TO_USER) == 0) {
4674 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004675 // the application, just pass it to the session service.
4676
4677 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004678 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07004679 break;
Jeff Brown4d396052010-10-29 21:50:21 -07004680 }
4681 }
4682
RoboErik430fc482014-06-12 15:49:20 -07004683 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08004684 if (mUseTvRouting) {
4685 dispatchDirectAudioEvent(event);
4686 } else {
4687 // If we aren't passing to the user and no one else
4688 // handled it send it to the session manager to
4689 // figure out.
4690 MediaSessionLegacyHelper.getHelper(mContext)
4691 .sendVolumeKeyEvent(event, true);
4692 }
Jeff Brown4d396052010-10-29 21:50:21 -07004693 break;
4694 }
4695 }
4696 break;
4697 }
4698
4699 case KeyEvent.KEYCODE_ENDCALL: {
4700 result &= ~ACTION_PASS_TO_USER;
4701 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004702 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07004703 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004704 if (telecomManager != null) {
4705 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07004706 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004707 if (interactive && !hungUp) {
4708 mEndCallKeyHandled = false;
4709 mHandler.postDelayed(mEndCallLongPress,
4710 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
4711 } else {
4712 mEndCallKeyHandled = true;
4713 }
Jeff Brown4d396052010-10-29 21:50:21 -07004714 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004715 if (!mEndCallKeyHandled) {
4716 mHandler.removeCallbacks(mEndCallLongPress);
4717 if (!canceled) {
4718 if ((mEndcallBehavior
4719 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
4720 if (goHome()) {
4721 break;
4722 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07004723 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004724 if ((mEndcallBehavior
4725 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
4726 mPowerManager.goToSleep(event.getEventTime(),
4727 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
4728 isWakeKey = false;
4729 }
Jeff Brown4d396052010-10-29 21:50:21 -07004730 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004731 }
Jeff Brown4d396052010-10-29 21:50:21 -07004732 }
4733 break;
4734 }
4735
4736 case KeyEvent.KEYCODE_POWER: {
4737 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07004738 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07004739 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004740 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004741 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004742 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07004743 }
4744 break;
4745 }
4746
Jeff Brown6212a492014-03-07 13:58:47 -08004747 case KeyEvent.KEYCODE_SLEEP: {
4748 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00004749 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07004750 if (!mPowerManager.isInteractive()) {
4751 useHapticFeedback = false; // suppress feedback if already non-interactive
4752 }
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00004753 sleepPress(event);
Jeff Brown6212a492014-03-07 13:58:47 -08004754 break;
4755 }
4756
4757 case KeyEvent.KEYCODE_WAKEUP: {
4758 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004759 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08004760 break;
4761 }
4762
Jeff Brown4d396052010-10-29 21:50:21 -07004763 case KeyEvent.KEYCODE_MEDIA_PLAY:
4764 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4765 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07004766 case KeyEvent.KEYCODE_HEADSETHOOK:
4767 case KeyEvent.KEYCODE_MUTE:
4768 case KeyEvent.KEYCODE_MEDIA_STOP:
4769 case KeyEvent.KEYCODE_MEDIA_NEXT:
4770 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4771 case KeyEvent.KEYCODE_MEDIA_REWIND:
4772 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004773 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
4774 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07004775 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
4776 // If the global session is active pass all media keys to it
4777 // instead of the active window.
4778 result &= ~ACTION_PASS_TO_USER;
4779 }
Jeff Brown4d396052010-10-29 21:50:21 -07004780 if ((result & ACTION_PASS_TO_USER) == 0) {
4781 // Only do this if we would otherwise not pass it to the user. In that
4782 // case, the PhoneWindow class will do the same thing, except it will
4783 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07004784 // Note that we need to make a copy of the key event here because the
4785 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07004786 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07004787 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
4788 new KeyEvent(event));
4789 msg.setAsynchronous(true);
4790 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07004791 }
4792 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004793 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004794
Jeff Brown4d396052010-10-29 21:50:21 -07004795 case KeyEvent.KEYCODE_CALL: {
4796 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004797 TelecomManager telecomManager = getTelecommService();
4798 if (telecomManager != null) {
4799 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004800 Log.i(TAG, "interceptKeyBeforeQueueing:"
4801 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004802 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004803
Santos Cordon6848f722014-05-21 15:22:12 -07004804 // And *don't* pass this key thru to the current activity
4805 // (which is presumably the InCallScreen.)
4806 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004807 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004808 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004809 }
Jeff Brown4d396052010-10-29 21:50:21 -07004810 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004811 }
Michael Wright869a67c2014-08-26 19:33:06 -07004812 case KeyEvent.KEYCODE_VOICE_ASSIST: {
4813 // Only do this if we would otherwise not pass it to the user. In that case,
4814 // interceptKeyBeforeDispatching would apply a similar but different policy in
4815 // order to invoke voice assist actions. Note that we need to make a copy of the
4816 // key event here because the original key event will be recycled when we return.
4817 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
4818 mBroadcastWakeLock.acquire();
4819 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
4820 keyguardActive ? 1 : 0, 0);
4821 msg.setAsynchronous(true);
4822 msg.sendToTarget();
4823 }
4824 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004825 }
Jeff Brown26875502014-01-30 21:47:47 -08004826
Jeff Brownbae8e772014-06-12 19:59:45 -07004827 if (useHapticFeedback) {
4828 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
4829 }
4830
Jeff Brown26875502014-01-30 21:47:47 -08004831 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004832 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Jeff Brown26875502014-01-30 21:47:47 -08004833 }
Bryce Lee584a4452014-10-21 15:55:55 -07004834
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004835 return result;
4836 }
4837
Jeff Brown1c2e4942012-11-06 16:32:01 -08004838 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07004839 * Returns true if the key can have global actions attached to it.
4840 * We reserve all power management keys for the system since they require
4841 * very careful handling.
4842 */
4843 private static boolean isValidGlobalKey(int keyCode) {
4844 switch (keyCode) {
4845 case KeyEvent.KEYCODE_POWER:
4846 case KeyEvent.KEYCODE_WAKEUP:
4847 case KeyEvent.KEYCODE_SLEEP:
4848 return false;
4849 default:
4850 return true;
4851 }
4852 }
4853
4854 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08004855 * When the screen is off we ignore some keys that might otherwise typically
4856 * be considered wake keys. We filter them out here.
4857 *
4858 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
4859 * is always considered a wake key.
4860 */
4861 private boolean isWakeKeyWhenScreenOff(int keyCode) {
4862 switch (keyCode) {
4863 // ignore volume keys unless docked
4864 case KeyEvent.KEYCODE_VOLUME_UP:
4865 case KeyEvent.KEYCODE_VOLUME_DOWN:
4866 case KeyEvent.KEYCODE_VOLUME_MUTE:
4867 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
4868
4869 // ignore media and camera keys
4870 case KeyEvent.KEYCODE_MUTE:
4871 case KeyEvent.KEYCODE_HEADSETHOOK:
4872 case KeyEvent.KEYCODE_MEDIA_PLAY:
4873 case KeyEvent.KEYCODE_MEDIA_PAUSE:
4874 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
4875 case KeyEvent.KEYCODE_MEDIA_STOP:
4876 case KeyEvent.KEYCODE_MEDIA_NEXT:
4877 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4878 case KeyEvent.KEYCODE_MEDIA_REWIND:
4879 case KeyEvent.KEYCODE_MEDIA_RECORD:
4880 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09004881 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08004882 case KeyEvent.KEYCODE_CAMERA:
4883 return false;
4884 }
4885 return true;
4886 }
4887
4888
Jeff Brown56194eb2011-03-02 19:23:13 -08004889 /** {@inheritDoc} */
4890 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07004891 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
4892 if ((policyFlags & FLAG_WAKE) != 0) {
Bryce Lee5c138322014-11-03 08:26:09 -08004893 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion)) {
4894 return 0;
4895 }
Michael Wright70af00a2014-09-03 19:30:20 -07004896 }
Bryce Lee5c138322014-11-03 08:26:09 -08004897
Michael Wright70af00a2014-09-03 19:30:20 -07004898 if (shouldDispatchInputWhenNonInteractive()) {
4899 return ACTION_PASS_TO_USER;
4900 }
Bryce Lee5c138322014-11-03 08:26:09 -08004901
Bryce Lee812d7022014-11-10 13:33:28 -08004902 // If we have not passed the action up and we are in theater mode without dreaming,
4903 // there will be no dream to intercept the touch and wake into ambient. The device should
4904 // wake up in this case.
4905 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
4906 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming);
4907 }
4908
Jeff Brown037c33e2014-04-09 00:31:55 -07004909 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08004910 }
4911
Michael Wright70af00a2014-09-03 19:30:20 -07004912 private boolean shouldDispatchInputWhenNonInteractive() {
Bryce Lee5c138322014-11-03 08:26:09 -08004913 // Send events to keyguard while the screen is on.
Jim Millerab954542014-10-10 18:21:49 -07004914 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
4915 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08004916 return true;
4917 }
4918
4919 // Send events to a dozing dream even if the screen is off since the dream
4920 // is in control of the state of the screen.
4921 IDreamManager dreamManager = getDreamManager();
4922
4923 try {
4924 if (dreamManager != null && dreamManager.isDreaming()) {
4925 return true;
4926 }
4927 } catch (RemoteException e) {
4928 Slog.e(TAG, "RemoteException when checking if dreaming", e);
4929 }
4930
4931 // Otherwise, consume events since the user can't see what is being
4932 // interacted with.
4933 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07004934 }
4935
RoboErik001c59c2015-01-26 15:53:51 -08004936 private void dispatchDirectAudioEvent(KeyEvent event) {
4937 if (event.getAction() != KeyEvent.ACTION_DOWN) {
4938 return;
4939 }
4940 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04004941 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
4942 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08004943 String pkgName = mContext.getOpPackageName();
4944 switch (keyCode) {
4945 case KeyEvent.KEYCODE_VOLUME_UP:
4946 try {
John Spurlockee5ad722015-03-03 16:17:21 -05004947 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04004948 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08004949 } catch (RemoteException e) {
4950 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
4951 }
4952 break;
4953 case KeyEvent.KEYCODE_VOLUME_DOWN:
4954 try {
John Spurlockee5ad722015-03-03 16:17:21 -05004955 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04004956 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08004957 } catch (RemoteException e) {
4958 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
4959 }
4960 break;
4961 case KeyEvent.KEYCODE_VOLUME_MUTE:
4962 try {
4963 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05004964 getAudioService().adjustSuggestedStreamVolume(
4965 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04004966 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08004967 }
4968 } catch (RemoteException e) {
4969 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
4970 }
4971 break;
4972 }
4973 }
4974
Jeff Brown40013652012-05-16 21:22:36 -07004975 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
4976 if (DEBUG_INPUT) {
4977 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004978 }
4979
Jeff Brown40013652012-05-16 21:22:36 -07004980 if (mHavePendingMediaKeyRepeatWithWakeLock) {
4981 if (DEBUG_INPUT) {
4982 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
4983 }
4984
4985 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
4986 mHavePendingMediaKeyRepeatWithWakeLock = false;
4987 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
4988 }
4989
4990 dispatchMediaKeyWithWakeLockToAudioService(event);
4991
4992 if (event.getAction() == KeyEvent.ACTION_DOWN
4993 && event.getRepeatCount() == 0) {
4994 mHavePendingMediaKeyRepeatWithWakeLock = true;
4995
4996 Message msg = mHandler.obtainMessage(
4997 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
4998 msg.setAsynchronous(true);
4999 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5000 } else {
5001 mBroadcastWakeLock.release();
5002 }
5003 }
5004
5005 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5006 mHavePendingMediaKeyRepeatWithWakeLock = false;
5007
5008 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5009 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5010 if (DEBUG_INPUT) {
5011 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5012 }
5013
5014 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5015 mBroadcastWakeLock.release();
5016 }
5017
5018 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5019 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005020 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005021 }
5022 }
5023
Michael Wright869a67c2014-08-26 19:33:06 -07005024 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
5025 Intent voiceIntent =
5026 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5027 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005028 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005029 mBroadcastWakeLock.release();
5030 }
5031
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005032 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005033 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005034 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005035 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5036 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5037 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005038 } else {
5039 try {
5040 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5041 ServiceManager.getService(Context.UI_MODE_SERVICE));
5042 mUiMode = uiModeService.getCurrentModeType();
5043 } catch (RemoteException e) {
5044 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005045 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005046 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005047 synchronized (mLock) {
5048 updateOrientationListenerLp();
5049 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005050 }
5051 };
5052
Jeff Brown6aaf2952012-10-05 16:01:08 -07005053 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5054 @Override
5055 public void onReceive(Context context, Intent intent) {
5056 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005057 if (mKeyguardDelegate != null) {
5058 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005059 }
5060 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005061 if (mKeyguardDelegate != null) {
5062 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005063 }
5064 }
5065 }
5066 };
5067
Christopher Tate5e08af02012-09-21 17:17:22 -07005068 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5069 @Override
5070 public void onReceive(Context context, Intent intent) {
5071 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5072 // tickle the settings observer: this first ensures that we're
5073 // observing the relevant settings for the newly-active user,
5074 // and then updates our own bookkeeping based on the now-
5075 // current user.
5076 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005077
5078 // force a re-application of focused window sysui visibility.
5079 // the window may never have been shown for this user
5080 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005081 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005082 mLastSystemUiFlags = 0;
5083 updateSystemUiVisibilityLw();
5084 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005085 }
5086 }
5087 };
5088
John Spurlockd9b70bd2014-02-06 17:02:44 -05005089 private final Runnable mRequestTransientNav = new Runnable() {
5090 @Override
5091 public void run() {
5092 requestTransientBars(mNavigationBar);
5093 }
5094 };
5095
John Spurlocke1f366f2013-08-05 12:22:40 -04005096 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005097 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005098 if (!isUserSetupComplete()) {
5099 // Swipe-up for navigation bar is disabled during setup
5100 return;
5101 }
John Spurlock27735a42013-08-14 17:57:38 -04005102 boolean sb = mStatusBarController.checkShowTransientBarLw();
5103 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005104 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005105 // Don't show status bar when swiping on already visible navigation bar
5106 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005107 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005108 return;
5109 }
John Spurlock27735a42013-08-14 17:57:38 -04005110 if (sb) mStatusBarController.showTransient();
5111 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005112 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005113 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005114 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005115 }
5116 }
5117
Jeff Brown3ee549c2014-09-22 20:14:39 -07005118 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005119 @Override
Jeff Brown140ffc72014-05-01 15:18:00 -07005120 public void goingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005121 EventLog.writeEvent(70000, 0);
Jeff Brown36c4db82014-09-19 12:05:31 -07005122 if (DEBUG_WAKEUP) Slog.i(TAG, "Going to sleep...");
Jeff Brown3ee549c2014-09-22 20:14:39 -07005123
5124 // We must get this work done here because the power manager will drop
5125 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005126 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005127 mAwake = false;
5128 mKeyguardDrawComplete = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005129 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005130 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005131 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005132 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005133
5134 if (mKeyguardDelegate != null) {
5135 mKeyguardDelegate.onScreenTurnedOff(why);
5136 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005137 }
5138
Jeff Brown13f00f02014-10-31 14:45:50 -07005139 private void wakeUpFromPowerKey(long eventTime) {
5140 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey);
5141 }
5142
Bryce Lee5c138322014-11-03 08:26:09 -08005143 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode) {
Bryce Lee584a4452014-10-21 15:55:55 -07005144 if (!wakeInTheaterMode && isTheaterModeEnabled()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005145 return false;
Bryce Lee584a4452014-10-21 15:55:55 -07005146 }
5147
5148 mPowerManager.wakeUp(wakeTime);
Bryce Lee5c138322014-11-03 08:26:09 -08005149 return true;
Bryce Lee584a4452014-10-21 15:55:55 -07005150 }
5151
Jeff Brown3ee549c2014-09-22 20:14:39 -07005152 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005153 @Override
Jeff Brown36c4db82014-09-19 12:05:31 -07005154 public void wakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005155 EventLog.writeEvent(70000, 1);
Jeff Brown36c4db82014-09-19 12:05:31 -07005156 if (DEBUG_WAKEUP) Slog.i(TAG, "Waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005157
Jeff Brown3ee549c2014-09-22 20:14:39 -07005158 // Since goToSleep performs these functions synchronously, we must
5159 // do the same here. We cannot post this work to a handler because
5160 // that might cause it to become reordered with respect to what
5161 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005162 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005163 mAwake = true;
5164 mKeyguardDrawComplete = false;
5165 if (mKeyguardDelegate != null) {
5166 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5167 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
5168 }
5169
Jeff Browna20dda42014-05-27 20:57:24 -07005170 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005171 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005172 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005173 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005174
Jim Miller5ecd8112013-01-09 18:50:26 -08005175 if (mKeyguardDelegate != null) {
Craig Mautner8a0da012014-05-31 15:13:37 -07005176 mKeyguardDelegate.onScreenTurnedOn(mKeyguardDelegateCallback);
Jeff Brown36c4db82014-09-19 12:05:31 -07005177 // ... eventually calls finishKeyguardDrawn
Jeff Brownc38c9be2012-10-04 13:16:19 -07005178 } else {
Craig Mautner8a0da012014-05-31 15:13:37 -07005179 if (DEBUG_WAKEUP) Slog.d(TAG, "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
Jeff Brown36c4db82014-09-19 12:05:31 -07005180 finishKeyguardDrawn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005181 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005182 }
5183
Jeff Brown36c4db82014-09-19 12:05:31 -07005184 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005185 synchronized (mLock) {
5186 if (!mAwake || mKeyguardDrawComplete) {
5187 return; // spurious
5188 }
5189
Jeff Brown36c4db82014-09-19 12:05:31 -07005190 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005191 if (mKeyguardDelegate != null) {
5192 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5193 }
5194 }
5195
5196 finishScreenTurningOn();
5197 }
5198
5199 // Called on the DisplayManager's DisplayPowerController thread.
5200 @Override
5201 public void screenTurnedOff() {
5202 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5203
5204 synchronized (mLock) {
5205 mScreenOnEarly = false;
5206 mScreenOnFully = false;
5207 mWindowManagerDrawComplete = false;
5208 mScreenOnListener = null;
5209 updateOrientationListenerLp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005210 }
5211 }
5212
Jeff Brown3ee549c2014-09-22 20:14:39 -07005213 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005214 @Override
5215 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005216 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005217
Jeff Brown3ee549c2014-09-22 20:14:39 -07005218 synchronized (mLock) {
5219 mScreenOnEarly = true;
5220 mScreenOnFully = false;
5221 mWindowManagerDrawComplete = false;
5222 mScreenOnListener = screenOnListener;
5223 updateOrientationListenerLp();
5224 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005225
Craig Mautnerc3daedd2014-09-13 11:17:23 -07005226 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5227 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown36c4db82014-09-19 12:05:31 -07005228 // ... eventually calls finishWindowsDrawn
5229 }
5230
Jeff Brown36c4db82014-09-19 12:05:31 -07005231 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005232 synchronized (mLock) {
5233 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
5234 return; // spurious
5235 }
5236
Jeff Brown36c4db82014-09-19 12:05:31 -07005237 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005238 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005239
5240 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005241 }
5242
Craig Mautner8a0da012014-05-31 15:13:37 -07005243 private void finishScreenTurningOn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005244 final ScreenOnListener listener;
5245 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005246 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005247 if (DEBUG_WAKEUP) Slog.d(TAG,
5248 "finishScreenTurningOn: mAwake=" + mAwake
5249 + ", mScreenOnEarly=" + mScreenOnEarly
5250 + ", mScreenOnFully=" + mScreenOnFully
5251 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5252 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5253
5254 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5255 || (mAwake && !mKeyguardDrawComplete)) {
5256 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005257 }
5258
Jeff Brown3ee549c2014-09-22 20:14:39 -07005259 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5260 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005261 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005262 mScreenOnFully = true;
5263
5264 // Remember the first time we draw the keyguard so we know when we're done with
5265 // the main part of booting and can enable the screen and hide boot messages.
5266 if (!mKeyguardDrawnOnce && mAwake) {
5267 mKeyguardDrawnOnce = true;
5268 enableScreen = true;
5269 if (mBootMessageNeedsHiding) {
5270 mBootMessageNeedsHiding = false;
5271 hideBootMessages();
5272 }
5273 } else {
5274 enableScreen = false;
5275 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005276 }
5277
Jeff Brown3ee549c2014-09-22 20:14:39 -07005278 if (listener != null) {
5279 listener.onScreenOn();
5280 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005281
Jeff Brown3ee549c2014-09-22 20:14:39 -07005282 if (enableScreen) {
5283 try {
5284 mWindowManager.enableScreenIfNeeded();
5285 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005286 }
Craig Mautnera631d492014-08-05 15:16:01 -07005287 }
5288 }
5289
5290 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005291 synchronized (mLock) {
5292 if (!mKeyguardDrawnOnce) {
5293 mBootMessageNeedsHiding = true;
5294 return; // keyguard hasn't drawn the first time yet, not done booting
5295 }
Craig Mautnera631d492014-08-05 15:16:01 -07005296 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005297
5298 if (mBootMsgDialog != null) {
5299 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5300 mBootMsgDialog.dismiss();
5301 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005302 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005303 }
5304
5305 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005306 public boolean isScreenOn() {
5307 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005308 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005309
Dianne Hackborn08743722009-12-21 12:16:51 -08005310 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005311 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005312 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005313 if (mKeyguardDelegate != null) {
5314 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005315 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005316 }
5317
5318 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005319 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005320 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005321 if (mKeyguardDelegate != null) {
5322 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005323 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005324 }
5325
Jim Millerab954542014-10-10 18:21:49 -07005326 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005327 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005328 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005329 }
5330
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005331 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005332 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005333 public boolean isKeyguardLocked() {
5334 return keyguardOn();
5335 }
5336
5337 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005338 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005339 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005340 if (mKeyguardDelegate == null) return false;
5341 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005342 }
5343
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005344 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005345 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005346 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005347 if (mKeyguardDelegate == null) return false;
5348 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005349 }
5350
Jose Lima9546b202014-07-02 17:21:51 -07005351 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005352 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005353 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005354 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005355 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005356 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005357 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005358 // ask the keyguard to prompt the user to authenticate if necessary
5359 mKeyguardDelegate.dismiss();
5360 }
5361 });
5362 }
5363 }
5364
5365 public void notifyActivityDrawnForKeyguardLw() {
5366 if (mKeyguardDelegate != null) {
5367 mHandler.post(new Runnable() {
5368 @Override
5369 public void run() {
5370 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005371 }
5372 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005373 }
5374 }
5375
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005376 @Override
5377 public boolean isKeyguardDrawnLw() {
5378 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005379 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005380 }
5381 }
5382
Jorim Jaggi0d674622014-05-21 01:34:15 +02005383 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005384 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005385 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005386 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005387 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005388 }
5389 }
5390
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005391 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005392 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005393 }
5394
5395 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005396 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005397 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005398
Jeff Brown01a98dd2011-09-20 15:08:29 -07005399 @Override
5400 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005401 if (false) {
5402 Slog.v(TAG, "rotationForOrientationLw(orient="
5403 + orientation + ", last=" + lastRotation
5404 + "); user=" + mUserRotation + " "
5405 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5406 ? "USER_ROTATION_LOCKED" : "")
5407 );
5408 }
5409
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005410 if (mForceDefaultOrientation) {
5411 return Surface.ROTATION_0;
5412 }
5413
The Android Open Source Project0727d222009-03-11 12:11:58 -07005414 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005415 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5416 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005417 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005418 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005419
Jeff Browndec6cf42011-11-15 14:08:20 -08005420 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005421 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005422 // Ignore sensor when lid switch is open and rotation is forced.
5423 preferredRotation = mLidOpenRotation;
5424 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005425 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005426 // Ignore sensor when in car dock unless explicitly enabled.
5427 // This case can override the behavior of NOSENSOR, and can also
5428 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005429 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005430 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005431 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5432 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5433 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005434 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005435 // Ignore sensor when in desk dock unless explicitly enabled.
5436 // This case can override the behavior of NOSENSOR, and can also
5437 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005438 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005439 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005440 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5441 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005442 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005443 preferredRotation = mDemoHdmiRotation;
5444 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5445 && mUndockedHdmiRotation >= 0) {
5446 // Ignore sensor when plugged into HDMI and an undocked orientation has
5447 // been specified in the configuration (only for legacy devices without
5448 // full multi-display support).
5449 // Note that the dock orientation overrides the HDMI orientation.
5450 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005451 } else if (mDemoRotationLock) {
5452 // Ignore sensor when demo rotation lock is enabled.
5453 // Note that the dock orientation and HDMI rotation lock override this.
5454 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005455 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5456 // Application just wants to remain locked in the last rotation.
5457 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005458 } else if (!mSupportAutoRotation) {
5459 // If we don't support auto-rotation then bail out here and ignore
5460 // the sensor and any rotation lock settings.
5461 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005462 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005463 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005464 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5465 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5466 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5467 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005468 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5469 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5470 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5471 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5472 // Otherwise, use sensor only if requested by the application or enabled
5473 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005474 if (mAllowAllRotations < 0) {
5475 // Can't read this during init() because the context doesn't
5476 // have display metrics at that time so we cannot determine
5477 // tablet vs. phone then.
5478 mAllowAllRotations = mContext.getResources().getBoolean(
5479 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5480 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005481 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005482 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005483 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5484 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005485 preferredRotation = sensorRotation;
5486 } else {
5487 preferredRotation = lastRotation;
5488 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005489 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5490 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5491 // Apply rotation lock. Does not apply to NOSENSOR.
5492 // The idea is that the user rotation expresses a weak preference for the direction
5493 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5494 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005495 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005496 } else {
5497 // No overriding preference.
5498 // We will do exactly what the application asked us to do.
5499 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005500 }
5501
Dianne Hackborne5439f22010-10-02 16:53:50 -07005502 switch (orientation) {
5503 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005504 // Return portrait unless overridden.
5505 if (isAnyPortrait(preferredRotation)) {
5506 return preferredRotation;
5507 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005508 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005509
Jeff Brown01a98dd2011-09-20 15:08:29 -07005510 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005511 // Return landscape unless overridden.
5512 if (isLandscapeOrSeascape(preferredRotation)) {
5513 return preferredRotation;
5514 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005515 return mLandscapeRotation;
5516
5517 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005518 // Return reverse portrait unless overridden.
5519 if (isAnyPortrait(preferredRotation)) {
5520 return preferredRotation;
5521 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005522 return mUpsideDownRotation;
5523
5524 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005525 // Return seascape unless overridden.
5526 if (isLandscapeOrSeascape(preferredRotation)) {
5527 return preferredRotation;
5528 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005529 return mSeascapeRotation;
5530
5531 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005532 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005533 // Return either landscape rotation.
5534 if (isLandscapeOrSeascape(preferredRotation)) {
5535 return preferredRotation;
5536 }
5537 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005538 return lastRotation;
5539 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005540 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005541
Jeff Brown01a98dd2011-09-20 15:08:29 -07005542 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005543 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005544 // Return either portrait rotation.
5545 if (isAnyPortrait(preferredRotation)) {
5546 return preferredRotation;
5547 }
5548 if (isAnyPortrait(lastRotation)) {
5549 return lastRotation;
5550 }
5551 return mPortraitRotation;
5552
5553 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005554 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5555 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005556 if (preferredRotation >= 0) {
5557 return preferredRotation;
5558 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005559 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005560 }
5561 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005562 }
5563
Jeff Brown01a98dd2011-09-20 15:08:29 -07005564 @Override
5565 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5566 switch (orientation) {
5567 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5568 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5569 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5570 return isAnyPortrait(rotation);
5571
5572 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5573 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5574 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5575 return isLandscapeOrSeascape(rotation);
5576
5577 default:
5578 return true;
5579 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005580 }
5581
Jeff Brownc0347aa2011-09-23 17:26:09 -07005582 @Override
5583 public void setRotationLw(int rotation) {
5584 mOrientationListener.setCurrentRotation(rotation);
5585 }
5586
Jeff Brown01a98dd2011-09-20 15:08:29 -07005587 private boolean isLandscapeOrSeascape(int rotation) {
5588 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005589 }
5590
Jeff Brown01a98dd2011-09-20 15:08:29 -07005591 private boolean isAnyPortrait(int rotation) {
5592 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005593 }
5594
Jose Lima9546b202014-07-02 17:21:51 -07005595 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005596 public int getUserRotationMode() {
5597 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005598 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5599 WindowManagerPolicy.USER_ROTATION_FREE :
5600 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005601 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005602
5603 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005604 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005605 public void setUserRotationMode(int mode, int rot) {
5606 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005607
5608 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005609 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07005610 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005611 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005612 rot,
5613 UserHandle.USER_CURRENT);
5614 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005615 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005616 0,
5617 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005618 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07005619 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005620 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005621 1,
5622 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005623 }
5624 }
5625
Jose Lima9546b202014-07-02 17:21:51 -07005626 @Override
Jeff Brownac143512012-04-05 18:57:33 -07005627 public void setSafeMode(boolean safeMode) {
5628 mSafeMode = safeMode;
5629 performHapticFeedbackLw(null, safeMode
5630 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
5631 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005632 }
Craig Mautnereda67292013-04-28 13:50:14 -07005633
Dianne Hackborn181ceb52009-08-27 22:16:40 -07005634 static long[] getLongIntArray(Resources r, int resid) {
5635 int[] ar = r.getIntArray(resid);
5636 if (ar == null) {
5637 return null;
5638 }
5639 long[] out = new long[ar.length];
5640 for (int i=0; i<ar.length; i++) {
5641 out[i] = ar[i];
5642 }
5643 return out;
5644 }
Craig Mautnereda67292013-04-28 13:50:14 -07005645
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005646 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005647 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005648 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07005649 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08005650 mKeyguardDelegate.onSystemReady();
5651
Michael Wright3818c922014-09-02 13:59:07 -07005652 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07005653 updateUiMode();
Dianne Hackbornb1a79802009-09-29 15:18:31 -07005654 synchronized (mLock) {
5655 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08005656 mSystemReady = true;
5657 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07005658 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08005659 public void run() {
5660 updateSettings();
5661 }
5662 });
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005663 }
5664 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005665
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005666 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005667 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005668 public void systemBooted() {
Jim Millere5f910a2013-10-16 18:15:46 -07005669 if (mKeyguardDelegate != null) {
Jason Monk5eeebf52014-09-26 12:36:51 -04005670 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07005671 mKeyguardDelegate.onBootCompleted();
5672 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005673 synchronized (mLock) {
5674 mSystemBooted = true;
5675 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005676 wakingUp();
5677 screenTurningOn(null);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07005678 }
5679
Dianne Hackborn661cd522011-08-22 00:26:20 -07005680 ProgressDialog mBootMsgDialog = null;
5681
5682 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005683 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005684 public void showBootMessage(final CharSequence msg, final boolean always) {
5685 mHandler.post(new Runnable() {
5686 @Override public void run() {
5687 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07005688 int theme;
5689 if (mContext.getPackageManager().hasSystemFeature(
5690 PackageManager.FEATURE_WATCH)) {
5691 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
5692 } else if (mContext.getPackageManager().hasSystemFeature(
5693 PackageManager.FEATURE_TELEVISION)) {
5694 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
5695 } else {
5696 theme = 0;
5697 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07005698
5699 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07005700 // This dialog will consume all events coming in to
5701 // it, to avoid it trying to do things too early in boot.
5702 @Override public boolean dispatchKeyEvent(KeyEvent event) {
5703 return true;
5704 }
5705 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
5706 return true;
5707 }
5708 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
5709 return true;
5710 }
5711 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
5712 return true;
5713 }
5714 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
5715 return true;
5716 }
5717 @Override public boolean dispatchPopulateAccessibilityEvent(
5718 AccessibilityEvent event) {
5719 return true;
5720 }
5721 };
Jeff Hao9f60c082014-10-28 18:51:07 -07005722 if (mContext.getPackageManager().isUpgrade()) {
5723 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
5724 } else {
5725 mBootMsgDialog.setTitle(R.string.android_start_title);
5726 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07005727 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
5728 mBootMsgDialog.setIndeterminate(true);
5729 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07005730 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005731 mBootMsgDialog.getWindow().addFlags(
5732 WindowManager.LayoutParams.FLAG_DIM_BEHIND
5733 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
5734 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08005735 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
5736 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
5737 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005738 mBootMsgDialog.setCancelable(false);
5739 mBootMsgDialog.show();
5740 }
5741 mBootMsgDialog.setMessage(msg);
5742 }
5743 });
5744 }
5745
5746 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005747 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07005748 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07005749 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07005750 }
5751
Mike Lockwood28569302010-01-28 11:54:40 -05005752 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005753 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005754 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07005755 // ***************************************
5756 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
5757 // ***************************************
5758 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
5759 // WITH ITS LOCKS HELD.
5760 //
5761 // This code must be VERY careful about the locks
5762 // it acquires.
5763 // In fact, the current code acquires way too many,
5764 // and probably has lurking deadlocks.
5765
Mike Lockwood28569302010-01-28 11:54:40 -05005766 synchronized (mScreenLockTimeout) {
5767 if (mLockScreenTimerActive) {
5768 // reset the timer
5769 mHandler.removeCallbacks(mScreenLockTimeout);
5770 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5771 }
5772 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04005773 }
5774
Adam Cohenf7522022012-10-03 20:03:18 -07005775 class ScreenLockTimeout implements Runnable {
5776 Bundle options;
5777
5778 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05005779 public void run() {
5780 synchronized (this) {
5781 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08005782 if (mKeyguardDelegate != null) {
5783 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005784 }
Mike Lockwood28569302010-01-28 11:54:40 -05005785 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07005786 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05005787 }
5788 }
Mike Lockwood28569302010-01-28 11:54:40 -05005789
Adam Cohenf7522022012-10-03 20:03:18 -07005790 public void setLockOptions(Bundle options) {
5791 this.options = options;
5792 }
5793 }
5794
5795 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
5796
Jose Lima9546b202014-07-02 17:21:51 -07005797 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07005798 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08005799 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
5800 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07005801 if (options != null) {
5802 // In case multiple calls are made to lockNow, we don't wipe out the options
5803 // until the runnable actually executes.
5804 mScreenLockTimeout.setLockOptions(options);
5805 }
Jim Miller93c518e2012-01-17 15:55:31 -08005806 mHandler.post(mScreenLockTimeout);
5807 }
5808
Mike Lockwood28569302010-01-28 11:54:40 -05005809 private void updateLockScreenTimeout() {
5810 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005811 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08005812 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05005813 if (mLockScreenTimerActive != enable) {
5814 if (enable) {
5815 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
5816 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5817 } else {
5818 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
5819 mHandler.removeCallbacks(mScreenLockTimeout);
5820 }
5821 mLockScreenTimerActive = enable;
5822 }
5823 }
5824 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005825
5826 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005827 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005828 public void enableScreenAfterBoot() {
5829 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07005830 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07005831 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005832 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07005833
Jeff Brownc458ce92012-04-30 14:58:40 -07005834 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07005835 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07005836 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07005837 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07005838 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07005839 }
Jeff Browna20dda42014-05-27 20:57:24 -07005840
5841 synchronized (mLock) {
5842 updateWakeGestureListenerLp();
5843 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005844 }
5845
Jeff Brown4f5fa282014-06-12 19:19:15 -07005846 void updateUiMode() {
5847 if (mUiModeManager == null) {
5848 mUiModeManager = IUiModeManager.Stub.asInterface(
5849 ServiceManager.getService(Context.UI_MODE_SERVICE));
5850 }
5851 try {
5852 mUiMode = mUiModeManager.getCurrentModeType();
5853 } catch (RemoteException e) {
5854 }
5855 }
5856
Jeff Brown01a98dd2011-09-20 15:08:29 -07005857 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005858 try {
5859 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07005860 mWindowManager.updateRotation(alwaysSendConfiguration, false);
5861 } catch (RemoteException e) {
5862 // Ignore
5863 }
5864 }
5865
5866 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
5867 try {
5868 //set orientation on WindowManager
5869 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005870 } catch (RemoteException e) {
5871 // Ignore
5872 }
5873 }
5874
Daniel Sandler6396c722013-04-16 20:19:09 -04005875 /**
5876 * Return an Intent to launch the currently active dock app as home. Returns
5877 * null if the standard home should be launched, which is the case if any of the following is
5878 * true:
5879 * <ul>
5880 * <li>The device is not in either car mode or desk mode
5881 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
5882 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
5883 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
5884 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
5885 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07005886 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04005887 */
5888 Intent createHomeDockIntent() {
5889 Intent intent = null;
5890
5891 // What home does is based on the mode, not the dock state. That
5892 // is, when in car mode you should be taken to car home regardless
5893 // of whether we are actually in a car dock.
5894 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
5895 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
5896 intent = mCarDockIntent;
5897 }
5898 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
5899 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
5900 intent = mDeskDockIntent;
5901 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07005902 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
5903 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5904 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
5905 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
5906 // Always launch dock home from home when watch is docked, if it exists.
5907 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04005908 }
5909
5910 if (intent == null) {
5911 return null;
5912 }
5913
5914 ActivityInfo ai = null;
5915 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
5916 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04005917 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07005918 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04005919 if (info != null) {
5920 ai = info.activityInfo;
5921 }
5922 if (ai != null
5923 && ai.metaData != null
5924 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
5925 intent = new Intent(intent);
5926 intent.setClassName(ai.packageName, ai.name);
5927 return intent;
5928 }
5929
5930 return null;
5931 }
5932
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005933 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
5934 if (awakenFromDreams) {
5935 awakenDreams();
5936 }
Daniel Sandler6396c722013-04-16 20:19:09 -04005937
5938 Intent dock = createHomeDockIntent();
5939 if (dock != null) {
5940 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005941 if (fromHomeKey) {
5942 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
5943 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00005944 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04005945 return;
5946 } catch (ActivityNotFoundException e) {
5947 }
5948 }
5949
Bryce Lee01b0c5f2015-02-05 18:24:04 -08005950 Intent intent;
5951
5952 if (fromHomeKey) {
5953 intent = new Intent(mHomeIntent);
5954 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
5955 } else {
5956 intent = mHomeIntent;
5957 }
5958
Bart Sears8b1c27c2015-03-18 23:51:02 +00005959 startActivityAsUser(mHomeIntent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005960 }
Craig Mautnereda67292013-04-28 13:50:14 -07005961
Dianne Hackborn39c2d712009-09-22 11:41:31 -07005962 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005963 * goes to the home screen
5964 * @return whether it did anything
5965 */
5966 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00005967 if (!isUserSetupComplete()) {
5968 Slog.i(TAG, "Not going home because user setup is in progress.");
5969 return false;
5970 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005971 if (false) {
5972 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07005973 try {
5974 ActivityManagerNative.getDefault().stopAppSwitches();
5975 } catch (RemoteException e) {
5976 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07005977 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005978 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005979 } else {
5980 // This code brings home to the front or, if it is already
5981 // at the front, puts the device to sleep.
5982 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08005983 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
5984 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
5985 Log.d(TAG, "UTS-TEST-MODE");
5986 } else {
5987 ActivityManagerNative.getDefault().stopAppSwitches();
5988 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04005989 Intent dock = createHomeDockIntent();
5990 if (dock != null) {
5991 int result = ActivityManagerNative.getDefault()
5992 .startActivityAsUser(null, null, dock,
5993 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
5994 null, null, 0,
5995 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07005996 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04005997 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
5998 return false;
5999 }
6000 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006001 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006002 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006003 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006004 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006005 null, null, 0,
6006 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006007 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006008 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006009 return false;
6010 }
6011 } catch (RemoteException ex) {
6012 // bummer, the activity manager, which is in this process, is dead
6013 }
6014 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006015 return true;
6016 }
Craig Mautnereda67292013-04-28 13:50:14 -07006017
6018 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006019 public void setCurrentOrientationLw(int newOrientation) {
6020 synchronized (mLock) {
6021 if (newOrientation != mCurrentAppOrientation) {
6022 mCurrentAppOrientation = newOrientation;
6023 updateOrientationListenerLp();
6024 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006025 }
6026 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006027
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006028 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6029 if (!isGlobalAccessibilityGestureEnabled()) {
6030 return;
6031 }
6032 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6033 Context.AUDIO_SERVICE);
6034 if (audioManager.isSilentMode()) {
6035 return;
6036 }
6037 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6038 Settings.System.DEFAULT_NOTIFICATION_URI);
6039 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6040 ringTone.play();
6041 }
Craig Mautnereda67292013-04-28 13:50:14 -07006042
Bryce Lee584a4452014-10-21 15:55:55 -07006043 private boolean isTheaterModeEnabled() {
6044 return Settings.Global.getInt(mContext.getContentResolver(),
6045 Settings.Global.THEATER_MODE_ON, 0) == 1;
6046 }
6047
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006048 private boolean isGlobalAccessibilityGestureEnabled() {
6049 return Settings.Global.getInt(mContext.getContentResolver(),
6050 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6051 }
6052
Craig Mautnereda67292013-04-28 13:50:14 -07006053 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006054 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006055 if (!mVibrator.hasVibrator()) {
6056 return false;
6057 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006058 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6059 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006060 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006061 return false;
6062 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006063 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006064 switch (effectId) {
6065 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006066 pattern = mLongPressVibePattern;
6067 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006068 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006069 pattern = mVirtualKeyVibePattern;
6070 break;
6071 case HapticFeedbackConstants.KEYBOARD_TAP:
6072 pattern = mKeyboardTapVibePattern;
6073 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006074 case HapticFeedbackConstants.CLOCK_TICK:
6075 pattern = mClockTickVibePattern;
6076 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006077 case HapticFeedbackConstants.CALENDAR_DATE:
6078 pattern = mCalendarDateVibePattern;
6079 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006080 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006081 pattern = mSafeModeDisabledVibePattern;
6082 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006083 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006084 pattern = mSafeModeEnabledVibePattern;
6085 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006086 default:
6087 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006088 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006089 int owningUid;
6090 String owningPackage;
6091 if (win != null) {
6092 owningUid = win.getOwningUid();
6093 owningPackage = win.getOwningPackage();
6094 } else {
6095 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006096 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006097 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006098 if (pattern.length == 1) {
6099 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006100 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006101 } else {
6102 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006103 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006104 }
6105 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006106 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006107
6108 @Override
6109 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006110 }
6111
Jeff Brownc38c9be2012-10-04 13:16:19 -07006112 @Override
6113 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006114 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006115 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006116 }
6117 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006118
Dianne Hackborndf89e652011-10-06 22:35:11 -07006119 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006120 // If there is no window focused, there will be nobody to handle the events
6121 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006122 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6123 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006124 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006125 return 0;
6126 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006127 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006128 // We are updating at a point where the keyguard has gotten
6129 // focus, but we were last in a state where the top window is
6130 // hiding it. This is probably because the keyguard as been
6131 // shown while the top window was displayed, so we want to ignore
6132 // it here because this is just a very transient change and it
6133 // will quickly lose focus once it correctly gets hidden.
6134 return 0;
6135 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006136
John Spurlock1db8b682014-02-18 11:18:59 -05006137 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006138 & ~mResettingSystemUiFlags
6139 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006140 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006141 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006142 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006143 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006144 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006145 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006146 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006147 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006148 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006149 return 0;
6150 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006151 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006152 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006153 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006154 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006155 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006156 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006157 try {
6158 IStatusBarService statusbar = getStatusBarService();
6159 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006160 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006161 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006162 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006163 } catch (RemoteException e) {
6164 // re-acquire status bar service next time it is needed.
6165 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006166 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006167 }
6168 });
6169 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006170 }
6171
Adrian Rooscd3884d2015-02-18 17:25:23 +01006172 private int updateLightStatusBarLw(int vis) {
6173 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6174 ? mStatusBar
6175 : mTopFullscreenOpaqueOrDimmingWindowState;
6176
6177 if (statusColorWin != null) {
6178 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6179 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6180 // its light flag.
6181 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6182 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6183 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6184 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6185 // Otherwise if it's dimming, clear the light flag.
6186 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6187 }
6188 }
6189 return vis;
6190 }
6191
John Spurlock79da8332013-09-20 12:04:47 -04006192 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006193 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006194 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6195 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006196 : mTopFullscreenOpaqueWindowState;
6197 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6198 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6199
John Spurlock27735a42013-08-14 17:57:38 -04006200 // prevent status bar interaction from clearing certain flags
John Spurlock79da8332013-09-20 12:04:47 -04006201 boolean statusBarHasFocus = win.getAttrs().type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006202 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006203 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6204 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006205 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006206 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6207 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006208 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006209 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6210 }
John Spurlockbd957402013-10-03 11:38:39 -04006211 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006212 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006213
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006214 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006215 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6216 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006217 }
6218
John Spurlock27735a42013-08-14 17:57:38 -04006219 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006220 boolean immersiveSticky =
6221 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006222 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006223 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006224 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006225 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6226 boolean hideStatusBarSysui =
6227 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006228 boolean hideNavBarSysui =
6229 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006230
John Spurlock27735a42013-08-14 17:57:38 -04006231 boolean transientStatusBarAllowed =
6232 mStatusBar != null && (
6233 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006234 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006235 || statusBarHasFocus);
6236
John Spurlockf1a36642013-10-12 17:50:42 -04006237 boolean transientNavBarAllowed =
6238 mNavigationBar != null &&
6239 hideNavBarSysui && immersiveSticky;
6240
John Spurlockf25706f2013-11-07 18:02:43 -05006241 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006242 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006243 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006244 && !transientNavBarAllowed;
6245 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006246 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006247 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006248 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006249 }
John Spurlock27735a42013-08-14 17:57:38 -04006250
6251 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6252
6253 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006254 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6255 boolean newImmersiveMode = isImmersiveMode(vis);
6256 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006257 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006258 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6259 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006260 }
John Spurlock27735a42013-08-14 17:57:38 -04006261
John Spurlockf1a36642013-10-12 17:50:42 -04006262 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6263
John Spurlocke1f366f2013-08-05 12:22:40 -04006264 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006265 }
6266
John Spurlockf1a36642013-10-12 17:50:42 -04006267 private void clearClearableFlagsLw() {
6268 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6269 if (newVal != mResettingSystemUiFlags) {
6270 mResettingSystemUiFlags = newVal;
6271 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6272 }
6273 }
6274
6275 private boolean isImmersiveMode(int vis) {
6276 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006277 return mNavigationBar != null
6278 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006279 && (vis & flags) != 0
6280 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006281 }
6282
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006283 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006284 * @return whether the navigation or status bar can be made translucent
6285 *
6286 * This should return true unless touch exploration is not enabled or
6287 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006288 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006289 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006290 return mTranslucentDecorEnabled
6291 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006292 }
6293
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006294 // Use this instead of checking config_showNavigationBar so that it can be consistently
6295 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006296 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006297 public boolean hasNavigationBar() {
6298 return mHasNavigationBar;
6299 }
6300
satok1bc0a492012-04-25 22:47:12 +09006301 @Override
6302 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6303 mLastInputMethodWindow = ime;
6304 mLastInputMethodTargetWindow = target;
6305 }
6306
Craig Mautnerf1b67412012-09-19 13:18:29 -07006307 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006308 public int getInputMethodWindowVisibleHeightLw() {
6309 return mDockBottom - mCurBottom;
6310 }
6311
6312 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006313 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006314 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006315 if (mKeyguardDelegate != null) {
6316 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006317 }
John Spurlock13451a22012-09-28 14:40:41 -04006318 if (mStatusBarService != null) {
6319 try {
6320 mStatusBarService.setCurrentUser(newUserId);
6321 } catch (RemoteException e) {
6322 // oh well
6323 }
6324 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006325 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006326 }
6327
6328 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006329 public boolean canMagnifyWindow(int windowType) {
6330 switch (windowType) {
6331 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6332 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6333 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6334 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6335 return false;
6336 }
6337 }
6338 return true;
6339 }
6340
6341 @Override
6342 public boolean isTopLevelWindow(int windowType) {
6343 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6344 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6345 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6346 }
6347 return true;
6348 }
6349
Jim Miller4eeb4f62012-11-08 00:04:29 -08006350 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006351 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006352 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006353 pw.print(" mSystemReady="); pw.print(mSystemReady);
6354 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006355 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006356 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006357 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006358 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006359 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6360 || mForceClearedSystemUiFlags != 0) {
6361 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6362 pw.print(Integer.toHexString(mLastSystemUiFlags));
6363 pw.print(" mResettingSystemUiFlags=0x");
6364 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6365 pw.print(" mForceClearedSystemUiFlags=0x");
6366 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006367 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006368 if (mLastFocusNeedsMenu) {
6369 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6370 pw.println(mLastFocusNeedsMenu);
6371 }
Jeff Browna20dda42014-05-27 20:57:24 -07006372 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6373 pw.println(mWakeGestureEnabledSetting);
6374
Jeff Brownbcdfc622014-03-06 19:13:04 -08006375 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006376 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6377 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006378 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6379 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6380 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6381 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006382 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006383 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006384 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6385 pw.print(mCarDockEnablesAccelerometer);
6386 pw.print(" mDeskDockEnablesAccelerometer=");
6387 pw.println(mDeskDockEnablesAccelerometer);
6388 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6389 pw.print(mLidKeyboardAccessibility);
6390 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006391 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006392 pw.print(prefix);
6393 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6394 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006395 pw.print(prefix);
6396 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6397 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006398 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006399 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6400 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6401 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6402 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6403 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6404 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6405 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006406 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6407 pw.print(","); pw.print(mOverscanScreenTop);
6408 pw.print(") "); pw.print(mOverscanScreenWidth);
6409 pw.print("x"); pw.println(mOverscanScreenHeight);
6410 if (mOverscanLeft != 0 || mOverscanTop != 0
6411 || mOverscanRight != 0 || mOverscanBottom != 0) {
6412 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6413 pw.print(" top="); pw.print(mOverscanTop);
6414 pw.print(" right="); pw.print(mOverscanRight);
6415 pw.print(" bottom="); pw.println(mOverscanBottom);
6416 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006417 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6418 pw.print(mRestrictedOverscanScreenLeft);
6419 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6420 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6421 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006422 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6423 pw.print(","); pw.print(mUnrestrictedScreenTop);
6424 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6425 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6426 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6427 pw.print(","); pw.print(mRestrictedScreenTop);
6428 pw.print(") "); pw.print(mRestrictedScreenWidth);
6429 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006430 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6431 pw.print(","); pw.print(mStableFullscreenTop);
6432 pw.print(")-("); pw.print(mStableFullscreenRight);
6433 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006434 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6435 pw.print(","); pw.print(mStableTop);
6436 pw.print(")-("); pw.print(mStableRight);
6437 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006438 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6439 pw.print(","); pw.print(mSystemTop);
6440 pw.print(")-("); pw.print(mSystemRight);
6441 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006442 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6443 pw.print(","); pw.print(mCurTop);
6444 pw.print(")-("); pw.print(mCurRight);
6445 pw.print(","); pw.print(mCurBottom); pw.println(")");
6446 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6447 pw.print(","); pw.print(mContentTop);
6448 pw.print(")-("); pw.print(mContentRight);
6449 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006450 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6451 pw.print(","); pw.print(mVoiceContentTop);
6452 pw.print(")-("); pw.print(mVoiceContentRight);
6453 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006454 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6455 pw.print(","); pw.print(mDockTop);
6456 pw.print(")-("); pw.print(mDockRight);
6457 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006458 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6459 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006460 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6461 pw.print(" mShowingDream="); pw.print(mShowingDream);
6462 pw.print(" mDreamingLockscreen="); pw.println(mDreamingLockscreen);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006463 if (mLastInputMethodWindow != null) {
6464 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6465 pw.println(mLastInputMethodWindow);
6466 }
6467 if (mLastInputMethodTargetWindow != null) {
6468 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6469 pw.println(mLastInputMethodTargetWindow);
6470 }
6471 if (mStatusBar != null) {
6472 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006473 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6474 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006475 }
6476 if (mNavigationBar != null) {
6477 pw.print(prefix); pw.print("mNavigationBar=");
6478 pw.println(mNavigationBar);
6479 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006480 if (mFocusedWindow != null) {
6481 pw.print(prefix); pw.print("mFocusedWindow=");
6482 pw.println(mFocusedWindow);
6483 }
6484 if (mFocusedApp != null) {
6485 pw.print(prefix); pw.print("mFocusedApp=");
6486 pw.println(mFocusedApp);
6487 }
6488 if (mWinDismissingKeyguard != null) {
6489 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6490 pw.println(mWinDismissingKeyguard);
6491 }
6492 if (mTopFullscreenOpaqueWindowState != null) {
6493 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6494 pw.println(mTopFullscreenOpaqueWindowState);
6495 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006496 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6497 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6498 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6499 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006500 if (mForcingShowNavBar) {
6501 pw.print(prefix); pw.print("mForcingShowNavBar=");
6502 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6503 pw.println(mForcingShowNavBarLayer);
6504 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006505 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006506 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006507 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6508 pw.print(" mForceStatusBarFromKeyguard=");
6509 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006510 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006511 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006512 pw.print(" mHomePressed="); pw.println(mHomePressed);
6513 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6514 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6515 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6516 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6517 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6518 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6519 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6520 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6521 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6522 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006523 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6524 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6525 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006526
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006527 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006528 mStatusBarController.dump(pw, prefix);
6529 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05006530 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07006531
Jeff Browna20dda42014-05-27 20:57:24 -07006532 if (mWakeGestureListener != null) {
6533 mWakeGestureListener.dump(pw, prefix);
6534 }
Jeff Brown600f0032014-05-22 17:06:00 -07006535 if (mOrientationListener != null) {
6536 mOrientationListener.dump(pw, prefix);
6537 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00006538 if (mBurnInProtectionHelper != null) {
6539 mBurnInProtectionHelper.dump(prefix, pw);
6540 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006541 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006542}