blob: ff5875796b45fb46b546300df93521b8009f1c1f [file] [log] [blame]
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001/*
Jeff Brown37df39a92015-02-25 15:42:31 -08002 * Copyright (C) 2006 The Android Open Source Project
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jorim Jaggib10e33f2015-02-04 21:57:40 +010017package com.android.server.policy;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080018
Dianne Hackborna4972e92012-03-14 10:38:05 -070019import android.app.ActivityManager;
Jeff Brown061ea992015-04-17 19:55:47 -070020import android.app.ActivityManagerInternal;
21import android.app.ActivityManagerInternal.SleepToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080022import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080023import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040024import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070025import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070026import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040027import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080028import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070029import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080030import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040031import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080032import android.content.ContentResolver;
33import android.content.Context;
34import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070035import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070036import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080037import android.content.pm.ActivityInfo;
38import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040039import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070040import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080041import android.content.res.Configuration;
42import android.content.res.Resources;
Craig Mautner8e4df6c2012-05-23 16:57:23 -070043import android.content.res.TypedArray;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080044import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080045import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080046import android.graphics.Rect;
Jinsuk Kime601b712015-07-07 08:01:02 +090047import android.hardware.hdmi.HdmiControlManager;
48import android.hardware.hdmi.HdmiPlaybackClient;
49import android.hardware.hdmi.HdmiPlaybackClient.OneTouchPlayCallback;
John Spurlock7b414672014-07-18 13:02:39 -040050import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080051import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050052import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080053import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070054import android.media.Ringtone;
55import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070056import android.media.session.MediaSessionLegacyHelper;
Billy Laucbe540f2015-06-25 01:51:44 +010057import android.os.Binder;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070058import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080059import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070060import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080061import android.os.Handler;
62import android.os.IBinder;
Dianne Hackbornb6683c42015-06-18 17:40:33 -070063import android.os.IDeviceIdleController;
Jeff Brown32cbc38552011-12-01 14:01:49 -080064import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070065import android.os.Message;
66import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080067import android.os.PowerManager;
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -070068import android.os.PowerManagerInternal;
Billy Laucbe540f2015-06-25 01:51:44 +010069import android.os.Process;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080070import android.os.RemoteException;
71import android.os.ServiceManager;
72import android.os.SystemClock;
73import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080074import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070075import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080076import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070077import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080078import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070079import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040080import android.service.dreams.DreamService;
81import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070082import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070083import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070084import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080085import android.util.EventLog;
86import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070087import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080088import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070089import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080090import android.view.Gravity;
91import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080092import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080093import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070094import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070095import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080096import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080097import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080098import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080099import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800100import android.view.KeyEvent;
101import android.view.MotionEvent;
Chris Wren9bb290b2015-06-29 12:02:13 -0400102
103import com.android.internal.logging.MetricsLogger;
Adam Powell6711f3b2015-05-06 15:57:09 -0700104import com.android.internal.policy.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800105import android.view.Surface;
106import android.view.View;
107import android.view.ViewConfiguration;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800108import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800109import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700110import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800111import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800112import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800113import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800114import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200115import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800116import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800117import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800118import com.android.internal.statusbar.IStatusBarService;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700119import com.android.internal.util.ScreenShapeHelper;
Craig Mautnerae446592012-12-06 19:05:05 -0800120import com.android.internal.widget.PointerLocationView;
Adrian Roos5941c982015-09-03 15:59:49 -0700121import com.android.server.GestureLauncherService;
Craig Mautner8a0da012014-05-31 15:13:37 -0700122import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100123import com.android.server.policy.keyguard.KeyguardServiceDelegate;
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700124import com.android.server.policy.keyguard.KeyguardServiceDelegate.DrawnListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800125
126import java.io.File;
127import java.io.FileReader;
128import java.io.IOException;
129import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700130import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800131import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800132
Dianne Hackbornc652de82013-02-15 16:32:56 -0800133import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700134import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
135import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
136import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700137import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
138import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
139import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800140
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800141/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700142 * WindowManagerPolicy implementation for the Android phone UI. This
143 * introduces a new method suffix, Lp, for an internal lock of the
144 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400145 * 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 -0700146 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800147 */
148public class PhoneWindowManager implements WindowManagerPolicy {
149 static final String TAG = "WindowManager";
150 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700151 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700152 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700153 static final boolean DEBUG_KEYGUARD = false;
154 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700155 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700156 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800157 static final boolean SHOW_STARTING_ANIMATIONS = true;
158 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400159
Daniel Sandler6396c722013-04-16 20:19:09 -0400160 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
161 // No longer recommended for desk docks; still useful in car docks.
162 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
163 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
164
Jeff Brown6d8fd272014-05-20 21:24:38 -0700165 static final int SHORT_PRESS_POWER_NOTHING = 0;
166 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
167 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
168 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800169 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700170
Joe Onoratod208e702010-10-08 16:22:43 -0400171 static final int LONG_PRESS_POWER_NOTHING = 0;
172 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
173 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700174 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700175
Jeff Brown13f00f02014-10-31 14:45:50 -0700176 static final int MULTI_PRESS_POWER_NOTHING = 0;
177 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
178 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
179
Michael Jurka3b1fc472011-06-13 10:54:40 -0700180 // These need to match the documentation/constant in
181 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800182 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800183 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700184 static final int LONG_PRESS_HOME_ASSIST = 2;
185
186 static final int DOUBLE_TAP_HOME_NOTHING = 0;
187 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800188
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000189 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
190 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
191
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700192 static final int APPLICATION_MEDIA_SUBLAYER = -2;
193 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800194 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800195 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700196 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700197
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800198 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
199 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
200 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500201 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700202 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800203
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700204 /**
205 * These are the system UI flags that, when changing, can cause the layout
206 * of the screen to change.
207 */
208 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400209 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400210 | View.SYSTEM_UI_FLAG_FULLSCREEN
211 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200212 | View.NAVIGATION_BAR_TRANSLUCENT
213 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700214
John Spurlock7b414672014-07-18 13:02:39 -0400215 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
216 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
217 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
218 .build();
219
Adrian Roosddc8b272015-05-21 16:28:27 -0700220 // The panic gesture may become active only after the keyguard is dismissed and the immersive
221 // app shows again. If that doesn't happen for 30s we drop the gesture.
222 private static final long PANIC_GESTURE_EXPIRATION = 30000;
223
Jim Miller5ecd8112013-01-09 18:50:26 -0800224 /**
225 * Keyguard stuff
226 */
227 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100228 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700229 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800230
Jeff Brown6651a632011-11-28 12:59:11 -0800231 /* Table of Application Launch keys. Maps from key codes to intent categories.
232 *
233 * These are special keys that are used to launch particular kinds of applications,
234 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
235 * usage page. We don't support quite that many yet...
236 */
237 static SparseArray<String> sApplicationLaunchKeyCategories;
238 static {
239 sApplicationLaunchKeyCategories = new SparseArray<String>();
240 sApplicationLaunchKeyCategories.append(
241 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
242 sApplicationLaunchKeyCategories.append(
243 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
244 sApplicationLaunchKeyCategories.append(
245 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
246 sApplicationLaunchKeyCategories.append(
247 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
248 sApplicationLaunchKeyCategories.append(
249 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
250 sApplicationLaunchKeyCategories.append(
251 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
252 }
253
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700254 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
Jorim Jaggi0d210f62015-07-10 14:24:44 -0700255 static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700256
Dianne Hackborndf89e652011-10-06 22:35:11 -0700257 /**
258 * Lock protecting internal state. Must not call out into window
259 * manager with lock held. (This lock will be acquired in places
260 * where the window manager is calling in with its own lock held.)
261 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800262 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700263
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800264 Context mContext;
265 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700266 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700267 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700268 PowerManager mPowerManager;
Jeff Brown061ea992015-04-17 19:55:47 -0700269 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700270 DreamManagerInternal mDreamManagerInternal;
Michael Wrighta4d22d72015-09-16 23:19:26 +0100271 PowerManagerInternal mPowerManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400272 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700273 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700274 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800275 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700276 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800277 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000278 BurnInProtectionHelper mBurnInProtectionHelper;
Billy Laucbe540f2015-06-25 01:51:44 +0100279 AppOpsManager mAppOpsManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800280
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700281 // Vibrator pattern for haptic feedback of a long press.
282 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700283
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700284 // Vibrator pattern for haptic feedback of virtual key press.
285 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700286
Amith Yamasanic33cb712010-02-10 15:21:49 -0800287 // Vibrator pattern for a short vibration.
288 long[] mKeyboardTapVibePattern;
289
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700290 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
291 long[] mClockTickVibePattern;
292
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700293 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
294 long[] mCalendarDateVibePattern;
295
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700296 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
297 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700298
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700299 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
300 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700301
Mady Mellore8608912015-06-05 09:02:55 -0700302 // Vibrator pattern for haptic feedback of a context click.
303 long[] mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -0700304
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800305 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
306 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400307
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800308 boolean mSafeMode;
309 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700310 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400311 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400312 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700313 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400314 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
315 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
316 int[] mNavigationBarHeightForRotation = new int[4];
317 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400318
Craig Mautnera631d492014-08-05 15:16:01 -0700319 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800320 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700321 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700322 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700323 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700324 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
325 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
326 }
327 };
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700328 final DrawnListener mKeyguardDrawnCallback = new DrawnListener() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700329 @Override
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700330 public void onDrawn() {
331 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onDrawn.");
Craig Mautner8a0da012014-05-31 15:13:37 -0700332 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
333 }
334 };
335
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800336 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800337 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900338 WindowState mLastInputMethodWindow = null;
339 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800340
Jeff Brown13f00f02014-10-31 14:45:50 -0700341 // FIXME This state is shared between the input reader and handler thread.
342 // Technically it's broken and buggy but it has been like this for many years
343 // and we have not yet seen any problems. Someday we'll rewrite this logic
344 // so that only one thread is involved in handling input policy. Unfortunately
345 // it's on a critical path for power management so we can't just post the work to the
346 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
347 // to hold wakelocks during dispatch and eliminating the critical path.
348 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800349 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700350 volatile int mPowerKeyPressCounter;
351 volatile boolean mEndCallKeyHandled;
352
Winson Chungd42a6cf2014-06-03 16:24:04 -0700353 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700354 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700355 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800356
Jeff Brown2e7760e2012-04-11 15:14:55 -0700357 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700358 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700359 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800360
Dianne Hackbornc777e072010-02-12 13:07:59 -0800361 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700362 boolean mSystemBooted;
Adrian Roos3542f7d2015-07-13 15:57:53 -0700363 private boolean mDeferBindKeyguard;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800364 boolean mHdmiPlugged;
Jinsuk Kime601b712015-07-07 08:01:02 +0900365 HdmiControl mHdmiControl;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700366 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400367 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700368 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700369 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400370 int mCarDockRotation;
371 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700372 int mUndockedHdmiRotation;
373 int mDemoHdmiRotation;
374 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800375 int mDemoRotation;
376 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400377
Jeff Browna20dda42014-05-27 20:57:24 -0700378 boolean mWakeGestureEnabledSetting;
379 MyWakeGestureListener mWakeGestureListener;
380
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700381 // Default display does not rotate, apps that require non-default orientation will have to
382 // have the orientation emulated.
383 private boolean mForceDefaultOrientation = false;
384
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400385 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
386 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700387 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400388
Jeff Brownbcdfc622014-03-06 19:13:04 -0800389 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700390 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400391 boolean mCarDockEnablesAccelerometer;
392 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700393 int mLidKeyboardAccessibility;
394 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700395 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700396 int mShortPressOnPowerBehavior;
397 int mLongPressOnPowerBehavior;
398 int mDoublePressOnPowerBehavior;
399 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000400 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700401 boolean mAwake;
402 boolean mScreenOnEarly;
403 boolean mScreenOnFully;
404 ScreenOnListener mScreenOnListener;
405 boolean mKeyguardDrawComplete;
406 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800407 boolean mOrientationSensorEnabled = false;
408 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800409 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400410 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800411 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700412
Jeff Brown70825162012-03-28 17:27:48 -0700413 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800414
415 // The last window we were told about in focusChanged.
416 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800417 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800418
Jeff Brown70825162012-03-28 17:27:48 -0700419 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800420
Dianne Hackbornc652de82013-02-15 16:32:56 -0800421 // The current size of the screen; really; extends into the overscan area of
422 // the screen and doesn't account for any system elements like the status bar.
423 int mOverscanScreenLeft, mOverscanScreenTop;
424 int mOverscanScreenWidth, mOverscanScreenHeight;
425 // The current visible size of the screen; really; (ir)regardless of whether the status
426 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800427 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
428 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800429 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
430 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
431 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700432 // The current size of the screen; these may be different than (0,0)-(dw,dh)
433 // if the status bar can't be hidden; in that case it effectively carves out
434 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800435 int mRestrictedScreenLeft, mRestrictedScreenTop;
436 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700437 // During layout, the current screen borders accounting for any currently
438 // visible system UI elements.
439 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700440 // For applications requesting stable content insets, these are them.
441 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700442 // For applications requesting stable content insets but have also set the
443 // fullscreen window flag, these are the stable dimensions without the status bar.
444 int mStableFullscreenLeft, mStableFullscreenTop;
445 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800446 // During layout, the current screen borders with all outer decoration
447 // (status bar, input method dock) accounted for.
448 int mCurLeft, mCurTop, mCurRight, mCurBottom;
449 // During layout, the frame in which content should be displayed
450 // to the user, accounting for all screen decoration except for any
451 // space they deem as available for other content. This is usually
452 // the same as mCur*, but may be larger if the screen decor has supplied
453 // content insets.
454 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700455 // During layout, the frame in which voice content should be displayed
456 // to the user, accounting for all screen decoration except for any
457 // space they deem as available for other content.
458 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800459 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800460 // windows are placed.
461 int mDockLeft, mDockTop, mDockRight, mDockBottom;
462 // During layout, the layer at which the doc window is placed.
463 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700464 // During layout, this is the layer of the status bar.
465 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700466 int mLastSystemUiFlags;
467 // Bits that we are in the process of clearing, so we want to prevent
468 // them from being set by applications until everything has been updated
469 // to have them clear.
470 int mResettingSystemUiFlags = 0;
471 // Bits that we are currently always keeping cleared.
472 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800473 // What we last reported to system UI about whether the compatibility
474 // menu needs to be displayed.
475 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700476 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
477 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700478
Selim Cinekf83e8242015-05-19 18:08:14 -0700479 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700480
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800481 static final Rect mTmpParentFrame = new Rect();
482 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800483 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800484 static final Rect mTmpContentFrame = new Rect();
485 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400486 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700487 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700488 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700489 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700490
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800491 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100492 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700493 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200494 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400495 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800496 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700497 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700498 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700499 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800500 boolean mForcingShowNavBar;
501 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700502
503 // States of keyguard dismiss.
504 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
505 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
506 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
507 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
508
509 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
510 * be done once per window. */
511 private WindowState mWinDismissingKeyguard;
512
tingna_sunge785ffa2015-05-12 13:23:15 +0800513 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
514 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
515 * lock SIM card. This variable is used to record the previous keyguard secure state for
516 * monitoring secure state change on window dismissing keyguard. */
517 private boolean mSecureDismissingKeyguard;
518
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700519 /** The window that is currently showing "over" the keyguard. If there is an app window
520 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
521 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
522 * the wallpaper. */
523 private WindowState mWinShowWhenLocked;
524
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700525 boolean mShowingLockscreen;
526 boolean mShowingDream;
527 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700528 boolean mDreamingSleepTokenNeeded;
529 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700530 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700531 boolean mKeyguardSecure;
532 boolean mKeyguardSecureIncludingHidden;
533 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800534 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700535 boolean mHomeConsumed;
536 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800537 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700538 Intent mCarDockIntent;
539 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700540 boolean mSearchKeyShortcutPending;
541 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700542 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700543 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800544
Mike Lockwood28569302010-01-28 11:54:40 -0500545 // support for activating the lock screen while the screen is on
546 boolean mAllowLockscreenWhenOn;
547 int mLockScreenTimeout;
548 boolean mLockScreenTimerActive;
549
David Brownbaf8d092010-03-08 21:52:59 -0800550 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800551 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800552
553 // Behavior of POWER button while in-call and screen on.
554 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
555 int mIncallPowerBehavior;
556
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700557 Display mDisplay;
558
Filip Gruszczynski2987f612015-06-30 15:03:30 -0700559 private int mDisplayRotation;
560
Dianne Hackborn9d132642011-04-21 17:26:39 -0700561 int mLandscapeRotation = 0; // default landscape rotation
562 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
563 int mPortraitRotation = 0; // default portrait rotation
564 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700565
Dianne Hackbornc652de82013-02-15 16:32:56 -0800566 int mOverscanLeft = 0;
567 int mOverscanTop = 0;
568 int mOverscanRight = 0;
569 int mOverscanBottom = 0;
570
Joe Onorato46b0d682010-11-22 17:37:27 -0800571 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700572 private int mLongPressOnHomeBehavior;
573
574 // What we do when the user double-taps on home
575 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800576
Bryce Lee584a4452014-10-21 15:55:55 -0700577 // Allowed theater mode wake actions
578 private boolean mAllowTheaterModeWakeFromKey;
579 private boolean mAllowTheaterModeWakeFromPowerKey;
580 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800581 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700582 private boolean mAllowTheaterModeWakeFromCameraLens;
583 private boolean mAllowTheaterModeWakeFromLidSwitch;
584 private boolean mAllowTheaterModeWakeFromWakeGesture;
585
Bryce Leed3b28402015-03-09 15:49:13 +0000586 // Whether to support long press from power button in non-interactive mode
587 private boolean mSupportLongPressPowerWhenNonInteractive;
588
Bryce Lee55e846d2014-11-04 12:43:44 -0800589 // Whether to go to sleep entering theater mode from power button
590 private boolean mGoToSleepOnButtonPressTheaterMode;
591
Winson Chung9112ec32011-06-27 13:15:32 -0700592 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700593 // Time to volume and power must be pressed within this interval of each other.
594 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700595 // Increase the chord delay when taking a screenshot from the keyguard
596 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800597 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700598 private boolean mScreenshotChordVolumeDownKeyTriggered;
599 private long mScreenshotChordVolumeDownKeyTime;
600 private boolean mScreenshotChordVolumeDownKeyConsumed;
601 private boolean mScreenshotChordVolumeUpKeyTriggered;
602 private boolean mScreenshotChordPowerKeyTriggered;
603 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700604
Michael Wrightb854e242013-02-05 17:54:02 -0800605 /* The number of steps between min and max brightness */
606 private static final int BRIGHTNESS_STEPS = 10;
607
Christopher Tate5e08af02012-09-21 17:17:22 -0700608 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800609 ShortcutManager mShortcutManager;
610 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700611 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700612 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800613
Craig Mautnerd625ab22013-09-06 13:40:31 -0700614 private int mCurrentUserId;
615
Justin Kohd378ad72013-04-01 12:18:26 -0700616 // Maps global key codes to the components that will handle them.
617 private GlobalKeyManager mGlobalKeyManager;
618
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700619 // Fallback actions by key code.
620 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
621 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800622
Jorim Jaggi76a16232014-08-08 17:00:47 +0200623 private final LogDecelerateInterpolator mLogDecelerateInterpolator
624 = new LogDecelerateInterpolator(100, 0);
625
Jeff Brown70825162012-03-28 17:27:48 -0700626 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
627 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700628 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
629 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700630 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
631 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
632 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700633 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700634 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700635 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700636 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700637 private static final int MSG_POWER_DELAYED_PRESS = 13;
638 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700639 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700640 private static final int MSG_REQUEST_TRANSIENT_BARS = 16;
641
642 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS = 0;
643 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION = 1;
Jeff Brown70825162012-03-28 17:27:48 -0700644
645 private class PolicyHandler extends Handler {
646 @Override
647 public void handleMessage(Message msg) {
648 switch (msg.what) {
649 case MSG_ENABLE_POINTER_LOCATION:
650 enablePointerLocation();
651 break;
652 case MSG_DISABLE_POINTER_LOCATION:
653 disablePointerLocation();
654 break;
Jeff Brown40013652012-05-16 21:22:36 -0700655 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
656 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
657 break;
658 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
659 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
660 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700661 case MSG_DISPATCH_SHOW_RECENTS:
662 showRecentApps(false);
663 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700664 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
665 showGlobalActionsInternal();
666 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700667 case MSG_KEYGUARD_DRAWN_COMPLETE:
668 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700669 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700670 break;
671 case MSG_KEYGUARD_DRAWN_TIMEOUT:
672 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700673 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700674 break;
675 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
676 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700677 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700678 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700679 case MSG_HIDE_BOOT_MESSAGE:
680 handleHideBootMessage();
681 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700682 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
683 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
684 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700685 case MSG_POWER_DELAYED_PRESS:
686 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
687 finishPowerKeyPress();
688 break;
689 case MSG_POWER_LONG_PRESS:
690 powerLongPress();
691 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700692 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
693 updateDreamingSleepToken(msg.arg1 != 0);
694 break;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700695 case MSG_REQUEST_TRANSIENT_BARS:
696 WindowState targetBar = (msg.arg1 == MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS) ?
697 mStatusBar : mNavigationBar;
698 if (targetBar != null) {
699 requestTransientBars(targetBar);
700 }
701 break;
Jeff Brown70825162012-03-28 17:27:48 -0700702 }
703 }
704 }
705
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800706 private UEventObserver mHDMIObserver = new UEventObserver() {
707 @Override
708 public void onUEvent(UEventObserver.UEvent event) {
709 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
710 }
711 };
712
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800713 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800714 SettingsObserver(Handler handler) {
715 super(handler);
716 }
David Brownbaf8d092010-03-08 21:52:59 -0800717
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800718 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700719 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800720 ContentResolver resolver = mContext.getContentResolver();
721 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700722 Settings.System.END_BUTTON_BEHAVIOR), false, this,
723 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800724 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700725 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
726 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700727 resolver.registerContentObserver(Settings.Secure.getUriFor(
728 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
729 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800730 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700731 Settings.System.ACCELEROMETER_ROTATION), false, this,
732 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500733 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700734 Settings.System.USER_ROTATION), false, this,
735 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400736 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700737 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
738 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800739 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700740 Settings.System.POINTER_LOCATION), false, this,
741 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800742 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700743 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
744 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500745 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400746 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700747 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500748 resolver.registerContentObserver(Settings.Global.getUriFor(
749 Settings.Global.POLICY_CONTROL), false, this,
750 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800751 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800752 }
753
754 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800755 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700756 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800757 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800758 }
Craig Mautner967212c2013-04-13 21:10:58 -0700759
Jeff Browna20dda42014-05-27 20:57:24 -0700760 class MyWakeGestureListener extends WakeGestureListener {
761 MyWakeGestureListener(Context context, Handler handler) {
762 super(context, handler);
763 }
764
765 @Override
766 public void onWakeUp() {
767 synchronized (mLock) {
768 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700769 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700770 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture,
771 "android.policy:GESTURE");
Jeff Browna20dda42014-05-27 20:57:24 -0700772 }
773 }
774 }
775 }
776
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800777 class MyOrientationListener extends WindowOrientationListener {
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700778 private final Runnable mUpdateRotationRunnable = new Runnable() {
779 @Override
780 public void run() {
781 updateRotation(false);
782 }
783 };
784
Craig Mautnereee29c42013-01-17 14:44:34 -0800785 MyOrientationListener(Context context, Handler handler) {
786 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800787 }
Craig Mautner967212c2013-04-13 21:10:58 -0700788
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800789 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700790 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700791 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700792 mHandler.post(mUpdateRotationRunnable);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700793 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800794 }
795 MyOrientationListener mOrientationListener;
796
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100797 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400798
John Spurlock27735a42013-08-14 17:57:38 -0400799 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400800 View.NAVIGATION_BAR_TRANSIENT,
801 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400802 View.NAVIGATION_BAR_TRANSLUCENT,
803 StatusBarManager.WINDOW_NAVIGATION_BAR,
804 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400805
John Spurlockf1a36642013-10-12 17:50:42 -0400806 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400807
Craig Mautner037aa8d2013-06-07 10:35:44 -0700808 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400809
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700810 IStatusBarService getStatusBarService() {
811 synchronized (mServiceAquireLock) {
812 if (mStatusBarService == null) {
813 mStatusBarService = IStatusBarService.Stub.asInterface(
814 ServiceManager.getService("statusbar"));
815 }
816 return mStatusBarService;
817 }
818 }
819
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700820 /*
821 * We always let the sensor be switched on by default except when
822 * the user has explicitly disabled sensor based rotation or when the
823 * screen is switched off.
824 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700825 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800826 if (mSupportAutoRotation) {
827 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
828 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
829 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
830 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
831 // If the application has explicitly requested to follow the
832 // orientation, then we need to turn the sensor on.
833 return true;
834 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800835 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700836 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800837 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
838 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
839 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400840 // enable accelerometer if we are docked in a dock that enables accelerometer
841 // orientation management,
842 return true;
843 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700844 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800845 // If the setting for using the sensor by default is enabled, then
846 // we will always leave it on. Note that the user could go to
847 // a window that forces an orientation that does not use the
848 // sensor and in theory we could turn it off... however, when next
849 // turning it on we won't have a good value for the current
850 // orientation for a little bit, which can cause orientation
851 // changes to lag, so we'd like to keep it always on. (It will
852 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700853 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800854 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800855 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800856 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700857
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800858 /*
859 * Various use cases for invoking this function
860 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700861 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800862 * if not already enabled
863 * screen turned on and current app does not have sensor orientation, disable listeners if
864 * already enabled
865 * screen turning on and current app has sensor based orientation, enable listeners if needed
866 * screen turning on and current app has nosensor based orientation, do nothing
867 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700868 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800869 if (!mOrientationListener.canDetectOrientation()) {
870 // If sensor is turned off or nonexistent for some reason
871 return;
872 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000873 // Could have been invoked due to screen turning on or off or
874 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700875 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
876 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000877 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
878 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
879 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800880 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000881 // Note: We postpone the rotating of the screen until the keyguard as well as the
882 // window manager have reported a draw complete.
883 if (mScreenOnEarly && mAwake &&
884 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700885 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800886 disable = false;
887 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700888 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800889 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700890 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800891 mOrientationSensorEnabled = true;
892 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700893 }
894 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800895 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700896 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800897 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700898 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800899 mOrientationSensorEnabled = false;
900 }
901 }
902
Jeff Brown13f00f02014-10-31 14:45:50 -0700903 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
904 // Hold a wake lock until the power key is released.
905 if (!mPowerKeyWakeLock.isHeld()) {
906 mPowerKeyWakeLock.acquire();
907 }
908
909 // Cancel multi-press detection timeout.
910 if (mPowerKeyPressCounter != 0) {
911 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
912 }
913
914 // Detect user pressing the power button in panic when an application has
915 // taken over the whole screen.
916 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800917 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700918 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700919 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700920 }
921
922 // Latch power key state to detect screenshot chord.
923 if (interactive && !mScreenshotChordPowerKeyTriggered
924 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
925 mScreenshotChordPowerKeyTriggered = true;
926 mScreenshotChordPowerKeyTime = event.getDownTime();
927 interceptScreenshotChord();
928 }
929
930 // Stop ringing or end call if configured to do so when power is pressed.
931 TelecomManager telecomManager = getTelecommService();
932 boolean hungUp = false;
933 if (telecomManager != null) {
934 if (telecomManager.isRinging()) {
935 // Pressing Power while there's a ringing incoming
936 // call should silence the ringer.
937 telecomManager.silenceRinger();
938 } else if ((mIncallPowerBehavior
939 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
940 && telecomManager.isInCall() && interactive) {
941 // Otherwise, if "Power button ends call" is enabled,
942 // the Power button will hang up any current active call.
943 hungUp = telecomManager.endCall();
944 }
945 }
946
Adrian Roos5941c982015-09-03 15:59:49 -0700947 GestureLauncherService gestureService = LocalServices.getService(
948 GestureLauncherService.class);
949 boolean gesturedServiceIntercepted = false;
950 if (gestureService != null) {
951 gesturedServiceIntercepted = gestureService.interceptPowerKeyDown(event, interactive);
952 }
953
Jeff Brown13f00f02014-10-31 14:45:50 -0700954 // If the power key has still not yet been handled, then detect short
955 // press, long press, or multi press and decide what to do.
956 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
Adrian Roos5941c982015-09-03 15:59:49 -0700957 || mScreenshotChordVolumeUpKeyTriggered || gesturedServiceIntercepted;
Jeff Brown13f00f02014-10-31 14:45:50 -0700958 if (!mPowerKeyHandled) {
959 if (interactive) {
960 // When interactive, we're already awake.
961 // Wait for a long press or for the button to be released to decide what to do.
962 if (hasLongPressOnPowerBehavior()) {
963 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
964 msg.setAsynchronous(true);
965 mHandler.sendMessageDelayed(msg,
966 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
967 }
968 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800969 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800970
Bryce Leed3b28402015-03-09 15:49:13 +0000971 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
972 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
973 msg.setAsynchronous(true);
974 mHandler.sendMessageDelayed(msg,
975 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800976 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000977 } else {
978 final int maxCount = getMaxMultiPressPowerCount();
979
980 if (maxCount <= 1) {
981 mPowerKeyHandled = true;
982 } else {
983 mBeganFromNonInteractive = true;
984 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700985 }
986 }
Jeff Brown4d396052010-10-29 21:50:21 -0700987 }
988 }
989
Jeff Brown13f00f02014-10-31 14:45:50 -0700990 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
991 final boolean handled = canceled || mPowerKeyHandled;
992 mScreenshotChordPowerKeyTriggered = false;
993 cancelPendingScreenshotChordAction();
994 cancelPendingPowerKeyAction();
995
996 if (!handled) {
997 // Figure out how to handle the key now that it has been released.
998 mPowerKeyPressCounter += 1;
999
1000 final int maxCount = getMaxMultiPressPowerCount();
1001 final long eventTime = event.getDownTime();
1002 if (mPowerKeyPressCounter < maxCount) {
1003 // This could be a multi-press. Wait a little bit longer to confirm.
1004 // Continue holding the wake lock.
1005 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
1006 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
1007 msg.setAsynchronous(true);
1008 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
1009 return;
1010 }
1011
1012 // No other actions. Handle it immediately.
1013 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -07001014 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001015
1016 // Done. Reset our state.
1017 finishPowerKeyPress();
1018 }
1019
1020 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -08001021 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001022 mPowerKeyPressCounter = 0;
1023 if (mPowerKeyWakeLock.isHeld()) {
1024 mPowerKeyWakeLock.release();
1025 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001026 }
1027
1028 private void cancelPendingPowerKeyAction() {
1029 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001030 mPowerKeyHandled = true;
1031 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001032 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001033 }
1034
1035 private void powerPress(long eventTime, boolean interactive, int count) {
1036 if (mScreenOnEarly && !mScreenOnFully) {
1037 Slog.i(TAG, "Suppressed redundant power key press while "
1038 + "already in the process of turning the screen on.");
1039 return;
Jeff Brownff204712011-10-25 21:27:54 -07001040 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001041
1042 if (count == 2) {
1043 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1044 } else if (count == 3) {
1045 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001046 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001047 switch (mShortPressOnPowerBehavior) {
1048 case SHORT_PRESS_POWER_NOTHING:
1049 break;
1050 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1051 mPowerManager.goToSleep(eventTime,
1052 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1053 break;
1054 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1055 mPowerManager.goToSleep(eventTime,
1056 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1057 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1058 break;
1059 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1060 mPowerManager.goToSleep(eventTime,
1061 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1062 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1063 launchHomeFromHotKey();
1064 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001065 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001066 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001067 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001068 }
1069 }
1070 }
1071
1072 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1073 switch (behavior) {
1074 case MULTI_PRESS_POWER_NOTHING:
1075 break;
1076 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001077 if (!isUserSetupComplete()) {
1078 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1079 break;
1080 }
1081
Jeff Brown13f00f02014-10-31 14:45:50 -07001082 if (isTheaterModeEnabled()) {
1083 Slog.i(TAG, "Toggling theater mode off.");
1084 Settings.Global.putInt(mContext.getContentResolver(),
1085 Settings.Global.THEATER_MODE_ON, 0);
1086 if (!interactive) {
1087 wakeUpFromPowerKey(eventTime);
1088 }
1089 } else {
1090 Slog.i(TAG, "Toggling theater mode on.");
1091 Settings.Global.putInt(mContext.getContentResolver(),
1092 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001093
1094 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001095 mPowerManager.goToSleep(eventTime,
1096 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1097 }
1098 }
1099 break;
1100 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001101 Slog.i(TAG, "Starting brightness boost.");
1102 if (!interactive) {
1103 wakeUpFromPowerKey(eventTime);
1104 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001105 mPowerManager.boostScreenBrightness(eventTime);
1106 break;
1107 }
1108 }
1109
1110 private int getMaxMultiPressPowerCount() {
1111 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1112 return 3;
1113 }
1114 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1115 return 2;
1116 }
1117 return 1;
1118 }
1119
1120 private void powerLongPress() {
1121 final int behavior = getResolvedLongPressOnPowerBehavior();
1122 switch (behavior) {
1123 case LONG_PRESS_POWER_NOTHING:
1124 break;
1125 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1126 mPowerKeyHandled = true;
1127 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1128 performAuditoryFeedbackForAccessibilityIfNeed();
1129 }
1130 showGlobalActionsInternal();
1131 break;
1132 case LONG_PRESS_POWER_SHUT_OFF:
1133 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1134 mPowerKeyHandled = true;
1135 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1136 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1137 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1138 break;
1139 }
1140 }
1141
Nick Vaccarob593a812015-05-15 11:23:05 -07001142 private void sleepPress(long eventTime) {
1143 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1144 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1145 }
1146 }
1147
1148 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001149 switch (mShortPressOnSleepBehavior) {
1150 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001151 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001152 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1153 mPowerManager.goToSleep(eventTime,
1154 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001155 break;
1156 }
1157 }
1158
Jeff Brown13f00f02014-10-31 14:45:50 -07001159 private int getResolvedLongPressOnPowerBehavior() {
1160 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1161 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1162 }
1163 return mLongPressOnPowerBehavior;
1164 }
1165
1166 private boolean hasLongPressOnPowerBehavior() {
1167 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001168 }
1169
1170 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001171 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001172 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1173 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001174 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001175 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1176 && now <= mScreenshotChordPowerKeyTime
1177 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1178 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001179 cancelPendingPowerKeyAction();
1180
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001181 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001182 }
1183 }
1184 }
1185
Winson Chung1cea2f32012-10-08 20:42:01 -07001186 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001187 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001188 // Double the time it takes to take a screenshot from the keyguard
1189 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001190 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001191 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001192 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001193 }
1194
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001195 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001196 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001197 }
1198
Jeff Brown13f00f02014-10-31 14:45:50 -07001199 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001200 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001201 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001202 mEndCallKeyHandled = true;
1203 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1204 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001205 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001206 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001207 }
1208 };
1209
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001210 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001211 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001212 public void run() {
1213 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001214 }
1215 };
1216
Alan Viverettee34560b22014-07-10 14:50:06 -07001217 @Override
1218 public void showGlobalActions() {
1219 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1220 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1221 }
1222
1223 void showGlobalActionsInternal() {
1224 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001225 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001226 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001227 }
Jim Millerab954542014-10-10 18:21:49 -07001228 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001229 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1230 if (keyguardShowing) {
1231 // since it took two seconds of long press to bring this up,
1232 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001233 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001234 }
1235 }
1236
1237 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001238 return Settings.Global.getInt(
1239 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001240 }
1241
Maurice Lam99c6e072014-04-28 18:24:28 -07001242 boolean isUserSetupComplete() {
1243 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1244 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1245 }
1246
Jeff Brown13f00f02014-10-31 14:45:50 -07001247 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001248 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1249 getHdmiControl().turnOnTv();
1250
Jeff Brown13f00f02014-10-31 14:45:50 -07001251 // If there's a dream running then use home to escape the dream
1252 // but don't actually go home.
1253 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1254 mDreamManagerInternal.stopDream(false /*immediate*/);
1255 return;
1256 }
1257
1258 // Go home!
1259 launchHomeFromHotKey();
1260 }
1261
Jinsuk Kime601b712015-07-07 08:01:02 +09001262 /**
1263 * Creates an accessor to HDMI control service that performs the operation of
1264 * turning on TV (optional) and switching input to us. If HDMI control service
1265 * is not available or we're not a HDMI playback device, the operation is no-op.
1266 */
1267 private HdmiControl getHdmiControl() {
1268 if (null == mHdmiControl) {
1269 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1270 Context.HDMI_CONTROL_SERVICE);
1271 HdmiPlaybackClient client = null;
1272 if (manager != null) {
1273 client = manager.getPlaybackClient();
1274 }
1275 mHdmiControl = new HdmiControl(client);
1276 }
1277 return mHdmiControl;
1278 }
1279
1280 private static class HdmiControl {
1281 private final HdmiPlaybackClient mClient;
1282
1283 private HdmiControl(HdmiPlaybackClient client) {
1284 mClient = client;
1285 }
1286
1287 public void turnOnTv() {
1288 if (mClient == null) {
1289 return;
1290 }
1291 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1292 @Override
1293 public void onComplete(int result) {
1294 if (result != HdmiControlManager.RESULT_SUCCESS) {
1295 Log.w(TAG, "One touch play failed: " + result);
1296 }
1297 }
1298 });
1299 }
1300 }
1301
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001302 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001303 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001304 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001305 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001306
Jeff Browncaca8812013-05-09 13:34:33 -07001307 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1308 toggleRecentApps();
1309 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001310 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001311 }
1312 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001313 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001314
Jeff Browncaca8812013-05-09 13:34:33 -07001315 private void handleDoubleTapOnHome() {
1316 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1317 mHomeConsumed = true;
1318 toggleRecentApps();
1319 }
1320 }
1321
1322 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1323 @Override
1324 public void run() {
1325 if (mHomeDoubleTapPending) {
1326 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001327 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001328 }
1329 }
1330 };
1331
Mark Renoufc1256912015-03-11 14:38:23 -04001332 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001333 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001334 }
1335
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001336 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001337 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001338 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001339 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001340 mContext = context;
1341 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001342 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001343 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001344 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001345 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Michael Wrighta4d22d72015-09-16 23:19:26 +01001346 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001347 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -07001348 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
Mark Renoufc1256912015-03-11 14:38:23 -04001349
1350 // Init display burn-in protection
1351 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1352 com.android.internal.R.bool.config_enableBurnInProtection);
1353 // Allow a system property to override this. Used by developer settings.
1354 boolean burnInProtectionDevMode =
1355 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1356 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1357 final int minHorizontal;
1358 final int maxHorizontal;
1359 final int minVertical;
1360 final int maxVertical;
1361 final int maxRadius;
1362 if (burnInProtectionDevMode) {
1363 minHorizontal = -8;
1364 maxHorizontal = 8;
1365 minVertical = -8;
1366 maxVertical = -4;
1367 maxRadius = (isRoundWindow()) ? 6 : -1;
1368 } else {
1369 Resources resources = context.getResources();
1370 minHorizontal = resources.getInteger(
1371 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1372 maxHorizontal = resources.getInteger(
1373 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1374 minVertical = resources.getInteger(
1375 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1376 maxVertical = resources.getInteger(
1377 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1378 maxRadius = resources.getInteger(
1379 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1380 }
1381 mBurnInProtectionHelper = new BurnInProtectionHelper(
1382 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001383 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001384
Jeff Brown70825162012-03-28 17:27:48 -07001385 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001386 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001387 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001388 try {
1389 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1390 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001391 mSettingsObserver = new SettingsObserver(mHandler);
1392 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001393 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001394 mUiMode = context.getResources().getInteger(
1395 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001396 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1397 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1398 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1399 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001400 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1401 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1402 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1403 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1404 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1405 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1406 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1407 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001408
Jeff Brown96307042012-07-27 15:51:34 -07001409 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1410 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001411 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001412 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1413 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001414 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001415 mSupportAutoRotation = mContext.getResources().getBoolean(
1416 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001417 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001418 com.android.internal.R.integer.config_lidOpenRotation);
1419 mCarDockRotation = readRotation(
1420 com.android.internal.R.integer.config_carDockRotation);
1421 mDeskDockRotation = readRotation(
1422 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001423 mUndockedHdmiRotation = readRotation(
1424 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001425 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1426 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1427 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1428 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001429 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1430 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1431 mLidNavigationAccessibility = mContext.getResources().getInteger(
1432 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001433 mLidControlsSleep = mContext.getResources().getBoolean(
1434 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001435 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1436 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001437
1438 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1439 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1440 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1441 || mContext.getResources().getBoolean(
1442 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1443 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1444 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001445 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1446 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001447 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1448 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1449 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1450 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1451 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1452 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1453
Bryce Lee55e846d2014-11-04 12:43:44 -08001454 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1455 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1456
Bryce Leed3b28402015-03-09 15:49:13 +00001457 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1458 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1459
Jeff Brown13f00f02014-10-31 14:45:50 -07001460 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1461 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1462 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1463 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1464 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1465 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1466 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1467 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001468 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1469 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001470
John Spurlock61560172015-02-06 19:46:04 -05001471 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001472
Jeff Brownf71343d2013-05-31 17:59:11 -07001473 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001474
Svetoslav8e3feb12014-02-24 13:46:47 -08001475 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1476 Context.ACCESSIBILITY_SERVICE);
1477
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001478 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001479 IntentFilter filter = new IntentFilter();
1480 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1481 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1482 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1483 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001484 filter.addAction(Intent.ACTION_DOCK_EVENT);
1485 Intent intent = context.registerReceiver(mDockReceiver, filter);
1486 if (intent != null) {
1487 // Retrieve current sticky dock event broadcast.
1488 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1489 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1490 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001491
Jeff Brown6aaf2952012-10-05 16:01:08 -07001492 // register for dream-related broadcasts
1493 filter = new IntentFilter();
1494 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1495 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1496 context.registerReceiver(mDreamReceiver, filter);
1497
Christopher Tate5e08af02012-09-21 17:17:22 -07001498 // register for multiuser-relevant broadcasts
1499 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1500 context.registerReceiver(mMultiuserReceiver, filter);
1501
John Spurlock57306e62013-04-22 09:48:49 -04001502 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001503 mSystemGestures = new SystemGesturesPointerEventListener(context,
1504 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001505 @Override
1506 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001507 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001508 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001509 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001510 }
1511 @Override
1512 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001513 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001514 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001515 }
1516 }
1517 @Override
1518 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001519 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001520 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001521 }
1522 }
1523 @Override
Michael Wrighta4d22d72015-09-16 23:19:26 +01001524 public void onFling(int duration) {
1525 if (mPowerManagerInternal != null) {
1526 mPowerManagerInternal.powerHint(
1527 PowerManagerInternal.POWER_HINT_INTERACTION, duration);
1528 }
1529 }
1530 @Override
John Spurlockad3e6cb2013-04-30 08:47:43 -04001531 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001532 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001533 }
Adrian Roos3595be42015-03-05 16:31:15 +01001534 @Override
1535 public void onDown() {
1536 mOrientationListener.onTouchStart();
1537 }
1538 @Override
1539 public void onUpOrCancel() {
1540 mOrientationListener.onTouchEnd();
1541 }
Jun Mukaid2e7e352015-07-22 17:14:02 -07001542 @Override
1543 public void onMouseHoverAtTop() {
1544 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1545 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1546 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS;
1547 mHandler.sendMessageDelayed(msg, 500);
1548 }
1549 @Override
1550 public void onMouseHoverAtBottom() {
1551 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1552 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1553 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION;
1554 mHandler.sendMessageDelayed(msg, 500);
1555 }
1556 @Override
1557 public void onMouseLeaveFromEdge() {
1558 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1559 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001560 });
John Spurlockf1a36642013-10-12 17:50:42 -04001561 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001562 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001563
Jeff Brownc2346132012-04-13 01:55:38 -07001564 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001565 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1566 com.android.internal.R.array.config_longPressVibePattern);
1567 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1568 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001569 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1570 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001571 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1572 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001573 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1574 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001575 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1576 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1577 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1578 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001579 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1580 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001581
Christopher Tatee90585f2012-03-05 18:56:25 -08001582 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1583 com.android.internal.R.bool.config_enableScreenshotChord);
1584
Justin Kohd378ad72013-04-01 12:18:26 -07001585 mGlobalKeyManager = new GlobalKeyManager(mContext);
1586
Joe Onoratoea495d42011-04-06 11:41:11 -07001587 // Controls rotation and the like.
1588 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001589
1590 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001591 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001592 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1593 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001594 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001595
1596 mWindowManagerInternal.registerAppTransitionListener(
1597 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001598 }
1599
Jeff Brownf71343d2013-05-31 17:59:11 -07001600 /**
1601 * Read values from config.xml that may be overridden depending on
1602 * the configuration of the device.
1603 * eg. Disable long press on home goes to recents on sw600dp.
1604 */
1605 private void readConfigurationDependentBehaviors() {
1606 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1607 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1608 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1609 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1610 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1611 }
1612
1613 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1614 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1615 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1616 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1617 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1618 }
1619 }
1620
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001621 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001622 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001623 // This method might be called before the policy has been fully initialized
1624 // or for other displays we don't care about.
1625 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1626 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001627 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001628 mDisplay = display;
1629
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001630 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001631 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001632 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001633 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001634 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001635 mLandscapeRotation = Surface.ROTATION_0;
1636 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001637 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001638 mPortraitRotation = Surface.ROTATION_90;
1639 mUpsideDownRotation = Surface.ROTATION_270;
1640 } else {
1641 mPortraitRotation = Surface.ROTATION_270;
1642 mUpsideDownRotation = Surface.ROTATION_90;
1643 }
1644 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001645 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001646 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001647 mPortraitRotation = Surface.ROTATION_0;
1648 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001649 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001650 mLandscapeRotation = Surface.ROTATION_270;
1651 mSeascapeRotation = Surface.ROTATION_90;
1652 } else {
1653 mLandscapeRotation = Surface.ROTATION_90;
1654 mSeascapeRotation = Surface.ROTATION_270;
1655 }
1656 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001657
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001658 mStatusBarHeight =
1659 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001660
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001661 // Height of the navigation bar when presented horizontally at bottom
1662 mNavigationBarHeightForRotation[mPortraitRotation] =
1663 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001664 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001665 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001666 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1667 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001668
1669 // Width of the navigation bar when presented vertically along one side
1670 mNavigationBarWidthForRotation[mPortraitRotation] =
1671 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1672 mNavigationBarWidthForRotation[mLandscapeRotation] =
1673 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001674 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001675
1676 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001677 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001678 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001679
Devin Kimd7b12b42014-05-05 14:34:58 -07001680 // Allow the navigation bar to move on non-square small devices (phones).
1681 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001682
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001683 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001684 // Allow a system property to override this. Used by the emulator.
1685 // See also hasNavigationBar().
1686 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1687 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001688 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001689 } else if ("0".equals(navBarOverride)) {
1690 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001691 }
1692
Jeff Brown27f1d672012-10-17 18:32:34 -07001693 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1694 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001695 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001696 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001697 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001698 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001699 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001700 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001701
Chong Zhangae6119ff2014-11-11 18:54:39 -08001702 // For demo purposes, allow the rotation of the remote display to be controlled.
1703 // By default, remote display locks rotation to landscape.
1704 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1705 mDemoRotation = mPortraitRotation;
1706 } else {
1707 mDemoRotation = mLandscapeRotation;
1708 }
1709 mDemoRotationLock = SystemProperties.getBoolean(
1710 "persist.demo.rotationlock", false);
1711
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001712 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1713 // http://developer.android.com/guide/practices/screens_support.html#range
1714 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1715 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1716 // For debug purposes the next line turns this feature off with:
1717 // $ adb shell setprop config.override_forced_orient true
1718 // $ adb shell wm size reset
1719 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1720 }
1721
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001722 /**
1723 * @return whether the navigation bar can be hidden, e.g. the device has a
1724 * navigation bar and touch exploration is not enabled
1725 */
1726 private boolean canHideNavigationBar() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04001727 return mHasNavigationBar;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001728 }
1729
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001730 @Override
1731 public boolean isDefaultOrientationForced() {
1732 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001733 }
1734
Dianne Hackbornc652de82013-02-15 16:32:56 -08001735 @Override
1736 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1737 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1738 mOverscanLeft = left;
1739 mOverscanTop = top;
1740 mOverscanRight = right;
1741 mOverscanBottom = bottom;
1742 }
1743 }
1744
Dianne Hackbornc777e072010-02-12 13:07:59 -08001745 public void updateSettings() {
1746 ContentResolver resolver = mContext.getContentResolver();
1747 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001748 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001749 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001750 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001751 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1752 UserHandle.USER_CURRENT);
1753 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001754 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001755 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1756 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001757
Jeff Browna20dda42014-05-27 20:57:24 -07001758 // Configure wake gesture.
1759 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1760 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1761 UserHandle.USER_CURRENT) != 0;
1762 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1763 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1764 updateWakeGestureListenerLp();
1765 }
1766
Jeff Brown207673cd2012-06-05 17:47:11 -07001767 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001768 int userRotation = Settings.System.getIntForUser(resolver,
1769 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1770 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001771 if (mUserRotation != userRotation) {
1772 mUserRotation = userRotation;
1773 updateRotation = true;
1774 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001775 int userRotationMode = Settings.System.getIntForUser(resolver,
1776 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001777 WindowManagerPolicy.USER_ROTATION_FREE :
1778 WindowManagerPolicy.USER_ROTATION_LOCKED;
1779 if (mUserRotationMode != userRotationMode) {
1780 mUserRotationMode = userRotationMode;
1781 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001782 updateOrientationListenerLp();
1783 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001784
Dianne Hackbornc777e072010-02-12 13:07:59 -08001785 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001786 int pointerLocation = Settings.System.getIntForUser(resolver,
1787 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001788 if (mPointerLocationMode != pointerLocation) {
1789 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001790 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1791 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001792 }
1793 }
1794 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001795 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1796 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1797 String imId = Settings.Secure.getStringForUser(resolver,
1798 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001799 boolean hasSoftInput = imId != null && imId.length() > 0;
1800 if (mHasSoftInput != hasSoftInput) {
1801 mHasSoftInput = hasSoftInput;
1802 updateRotation = true;
1803 }
John Spurlockf1a36642013-10-12 17:50:42 -04001804 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001805 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001806 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001807 }
1808 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001809 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001810 }
1811 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001812 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001813 }
Jeff Brown70825162012-03-28 17:27:48 -07001814 }
1815
Jeff Browna20dda42014-05-27 20:57:24 -07001816 private void updateWakeGestureListenerLp() {
1817 if (shouldEnableWakeGestureLp()) {
1818 mWakeGestureListener.requestWakeUpTrigger();
1819 } else {
1820 mWakeGestureListener.cancelWakeUpTrigger();
1821 }
1822 }
1823
1824 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001825 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001826 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1827 && mWakeGestureListener.isSupported();
1828 }
1829
Jeff Brown70825162012-03-28 17:27:48 -07001830 private void enablePointerLocation() {
1831 if (mPointerLocationView == null) {
1832 mPointerLocationView = new PointerLocationView(mContext);
1833 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001834 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1835 WindowManager.LayoutParams.MATCH_PARENT,
1836 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001837 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001838 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1839 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1840 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1841 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001842 if (ActivityManager.isHighEndGfx()) {
1843 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1844 lp.privateFlags |=
1845 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1846 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001847 lp.format = PixelFormat.TRANSLUCENT;
1848 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001849 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001850 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001851 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001852 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001853 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001854 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001855 }
Jeff Brown70825162012-03-28 17:27:48 -07001856
1857 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001858 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001859 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1860 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001861 wm.removeView(mPointerLocationView);
1862 mPointerLocationView = null;
1863 }
1864 }
1865
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001866 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001867 try {
1868 int rotation = mContext.getResources().getInteger(resID);
1869 switch (rotation) {
1870 case 0:
1871 return Surface.ROTATION_0;
1872 case 90:
1873 return Surface.ROTATION_90;
1874 case 180:
1875 return Surface.ROTATION_180;
1876 case 270:
1877 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001878 }
1879 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001880 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001881 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001882 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001883 }
1884
1885 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001886 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001887 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001888 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001889
1890 outAppOp[0] = AppOpsManager.OP_NONE;
1891
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001892 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1893 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1894 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1895 return WindowManagerGlobal.ADD_INVALID_TYPE;
1896 }
1897
1898 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1899 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001900 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001901 }
1902 String permission = null;
1903 switch (type) {
1904 case TYPE_TOAST:
1905 // XXX right now the app process has complete control over
1906 // this... should introduce a token to let the system
1907 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001908 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001909 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001910 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001911 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001912 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001913 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001914 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001915 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001916 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001917 break;
1918 case TYPE_PHONE:
1919 case TYPE_PRIORITY_PHONE:
1920 case TYPE_SYSTEM_ALERT:
1921 case TYPE_SYSTEM_ERROR:
1922 case TYPE_SYSTEM_OVERLAY:
1923 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001924 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001925 break;
1926 default:
1927 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1928 }
1929 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001930 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1931 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01001932 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01001933 if (callingUid == Process.SYSTEM_UID) {
1934 return WindowManagerGlobal.ADD_OKAY;
1935 }
1936
Billy Lau060275f2015-07-15 22:29:19 +01001937 // check if user has enabled this operation. SecurityException will be thrown if
1938 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01001939 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1940 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01001941 switch (mode) {
1942 case AppOpsManager.MODE_ALLOWED:
1943 case AppOpsManager.MODE_IGNORED:
1944 // although we return ADD_OKAY for MODE_IGNORED, the added window will
1945 // actually be hidden in WindowManagerService
1946 return WindowManagerGlobal.ADD_OKAY;
1947 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01001948 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01001949 default:
1950 // in the default mode, we will make a decision here based on
1951 // checkCallingPermission()
1952 if (mContext.checkCallingPermission(permission) !=
1953 PackageManager.PERMISSION_GRANTED) {
1954 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1955 } else {
1956 return WindowManagerGlobal.ADD_OKAY;
1957 }
Billy Laucbe540f2015-06-25 01:51:44 +01001958 }
Billy Laucbe540f2015-06-25 01:51:44 +01001959 }
1960
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001961 if (mContext.checkCallingOrSelfPermission(permission)
1962 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001963 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001964 }
1965 }
Jeff Brown98365d72012-08-19 20:30:52 -07001966 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001967 }
Craig Mautner88400d32012-09-30 12:35:45 -07001968
1969 @Override
1970 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1971
1972 // If this switch statement is modified, modify the comment in the declarations of
1973 // the type in {@link WindowManager.LayoutParams} as well.
1974 switch (attrs.type) {
1975 default:
1976 // These are the windows that by default are shown only to the user that created
1977 // them. If this needs to be overridden, set
1978 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1979 // {@link WindowManager.LayoutParams}. Note that permission
1980 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1981 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1982 return true;
1983 }
1984 break;
1985
1986 // These are the windows that by default are shown to all users. However, to
1987 // protect against spoofing, check permissions below.
1988 case TYPE_APPLICATION_STARTING:
1989 case TYPE_BOOT_PROGRESS:
1990 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001991 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001992 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001993 case TYPE_KEYGUARD_DIALOG:
1994 case TYPE_MAGNIFICATION_OVERLAY:
1995 case TYPE_NAVIGATION_BAR:
1996 case TYPE_NAVIGATION_BAR_PANEL:
1997 case TYPE_PHONE:
1998 case TYPE_POINTER:
1999 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07002000 case TYPE_SEARCH_BAR:
2001 case TYPE_STATUS_BAR:
2002 case TYPE_STATUS_BAR_PANEL:
2003 case TYPE_STATUS_BAR_SUB_PANEL:
2004 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07002005 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07002006 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07002007 break;
2008 }
2009
2010 // Check if third party app has set window to system window type.
2011 return mContext.checkCallingOrSelfPermission(
2012 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
2013 != PackageManager.PERMISSION_GRANTED;
2014 }
2015
Craig Mautner967212c2013-04-13 21:10:58 -07002016 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002017 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
2018 switch (attrs.type) {
2019 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07002020 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002021 // These types of windows can't receive input events.
2022 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
2023 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07002024 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002025 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002026 case TYPE_STATUS_BAR:
2027
2028 // If the Keyguard is in a hidden state (occluded by another window), we force to
2029 // remove the wallpaper and keyguard flag so that any change in-flight after setting
2030 // the keyguard as occluded wouldn't set these flags again.
2031 // See {@link #processKeyguardSetHiddenResultLw}.
2032 if (mKeyguardHidden) {
2033 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2034 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2035 }
2036 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002037 }
Adrian Roos38502112014-04-09 21:04:11 +02002038
2039 if (attrs.type != TYPE_STATUS_BAR) {
2040 // The status bar is the only window allowed to exhibit keyguard behavior.
2041 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2042 }
Adrian Roosea562512014-05-05 13:33:03 +02002043
2044 if (ActivityManager.isHighEndGfx()
2045 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02002046 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02002047 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
2048 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002049 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002050
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002051 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07002052 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002053 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002054
Michael Wright3818c922014-09-02 13:59:07 -07002055 private void readCameraLensCoverState() {
2056 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2057 }
2058
Jeff Browndaa37532012-05-01 15:54:03 -07002059 private boolean isHidden(int accessibilityMode) {
2060 switch (accessibilityMode) {
2061 case 1:
2062 return mLidState == LID_CLOSED;
2063 case 2:
2064 return mLidState == LID_OPEN;
2065 default:
2066 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002067 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002068 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002069
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002070 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002071 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002072 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2073 int navigationPresence) {
2074 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2075
Jeff Brownf71343d2013-05-31 17:59:11 -07002076 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002077 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002078 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002079
Jeff Browndaa37532012-05-01 15:54:03 -07002080 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2081 || (keyboardPresence == PRESENCE_INTERNAL
2082 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002083 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002084 if (!mHasSoftInput) {
2085 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2086 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002087 }
2088
Jeff Browndaa37532012-05-01 15:54:03 -07002089 if (config.navigation == Configuration.NAVIGATION_NONAV
2090 || (navigationPresence == PRESENCE_INTERNAL
2091 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002092 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002093 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002094 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002095
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002096 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002097 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002098 public int windowTypeToLayerLw(int type) {
2099 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002100 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002101 }
2102 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002103 case TYPE_PRIVATE_PRESENTATION:
2104 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002105 case TYPE_WALLPAPER:
2106 // wallpaper is at the bottom, though the window manager may move it.
2107 return 2;
2108 case TYPE_PHONE:
2109 return 3;
2110 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002111 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002112 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002113 case TYPE_VOICE_INTERACTION:
2114 // voice interaction layer is almost immediately above apps.
2115 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002116 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002117 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002118 case TYPE_SYSTEM_DIALOG:
2119 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002120 case TYPE_TOAST:
2121 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002122 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002123 case TYPE_PRIORITY_PHONE:
2124 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002125 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002126 case TYPE_DREAM:
2127 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002128 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002129 case TYPE_SYSTEM_ALERT:
2130 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002131 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002132 case TYPE_INPUT_METHOD:
2133 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002134 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002135 case TYPE_INPUT_METHOD_DIALOG:
2136 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002137 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002138 case TYPE_KEYGUARD_SCRIM:
2139 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002140 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07002141 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002142 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07002143 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002144 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07002145 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002146 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002147 case TYPE_KEYGUARD_DIALOG:
2148 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002149 case TYPE_VOLUME_OVERLAY:
2150 // the on-screen volume indicator and controller shown when the user
2151 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002152 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002153 case TYPE_SYSTEM_OVERLAY:
2154 // the on-screen volume indicator and controller shown when the user
2155 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002156 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002157 case TYPE_NAVIGATION_BAR:
2158 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002159 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002160 case TYPE_NAVIGATION_BAR_PANEL:
2161 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002162 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002163 case TYPE_SYSTEM_ERROR:
2164 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002165 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002166 case TYPE_MAGNIFICATION_OVERLAY:
2167 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002168 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002169 case TYPE_DISPLAY_OVERLAY:
2170 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002171 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002172 case TYPE_DRAG:
2173 // the drag layer: input for drag-and-drop is associated with this window,
2174 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002175 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002176 case TYPE_ACCESSIBILITY_OVERLAY:
2177 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002178 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002179 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002180 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002181 case TYPE_BOOT_PROGRESS:
2182 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002183 case TYPE_POINTER:
2184 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002185 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002186 }
2187 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002188 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002189 }
2190
2191 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002192 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002193 public int subWindowTypeToLayerLw(int type) {
2194 switch (type) {
2195 case TYPE_APPLICATION_PANEL:
2196 case TYPE_APPLICATION_ATTACHED_DIALOG:
2197 return APPLICATION_PANEL_SUBLAYER;
2198 case TYPE_APPLICATION_MEDIA:
2199 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002200 case TYPE_APPLICATION_MEDIA_OVERLAY:
2201 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002202 case TYPE_APPLICATION_SUB_PANEL:
2203 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002204 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2205 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002206 }
2207 Log.e(TAG, "Unknown sub-window type: " + type);
2208 return 0;
2209 }
2210
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002211 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002212 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002213 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002214 }
2215
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002216 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002217 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002218 if (mHasNavigationBar) {
2219 // For a basic navigation bar, when we are in landscape mode we place
2220 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002221 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2222 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002223 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002224 }
2225 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002226 }
2227
Jose Lima9546b202014-07-02 17:21:51 -07002228 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002229 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002230 if (mHasNavigationBar) {
2231 // For a basic navigation bar, when we are in portrait mode we place
2232 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002233 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2234 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002235 }
2236 }
2237 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002238 }
2239
Jose Lima9546b202014-07-02 17:21:51 -07002240 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002241 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2242 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002243 }
2244
Jose Lima9546b202014-07-02 17:21:51 -07002245 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002246 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002247 // There is a separate status bar at the top of the display. We don't count that as part
2248 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002249 // we do want to exclude it since applications can't generally use that part
2250 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002251 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002252 }
2253
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002254 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002255 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2256 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002257 (isKeyguardHostWindow(attrs) &&
2258 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002259 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002260 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002261
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002262 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002263 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2264 return attrs.type == TYPE_STATUS_BAR;
2265 }
2266
2267 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002268 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002269 switch (attrs.type) {
2270 case TYPE_STATUS_BAR:
2271 case TYPE_NAVIGATION_BAR:
2272 case TYPE_WALLPAPER:
2273 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002274 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002275 return false;
2276 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002277 // Hide only windows below the keyguard host window.
2278 return windowTypeToLayerLw(win.getBaseType())
2279 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002280 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002281 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002282
Craig Mautner7d7808f2014-09-11 18:02:38 -07002283 @Override
2284 public WindowState getWinShowWhenLockedLw() {
2285 return mWinShowWhenLocked;
2286 }
2287
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002288 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002289 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002290 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2291 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002292 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002293 if (!SHOW_STARTING_ANIMATIONS) {
2294 return null;
2295 }
2296 if (packageName == null) {
2297 return null;
2298 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002299
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002300 WindowManager wm = null;
2301 View view = null;
2302
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002303 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002304 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002305 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2306 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2307 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002308 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002309 try {
2310 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002311 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002312 } catch (PackageManager.NameNotFoundException e) {
2313 // Ignore
2314 }
2315 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002316
Jorim Jaggia16cc152015-06-01 16:55:05 -07002317 PhoneWindow win = new PhoneWindow(context);
2318 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002319
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002320 Resources r = context.getResources();
2321 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002322
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002323 win.setType(
2324 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002325
2326 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2327 // Assumes it's safe to show starting windows of launched apps while
2328 // the keyguard is being hidden. This is okay because starting windows never show
2329 // secret information.
2330 if (mKeyguardHidden) {
2331 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2332 }
2333 }
2334
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002335 // Force the window flags: this is a fake window, so it is not really
2336 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2337 // flag because we do know that the next window will take input
2338 // focus, so we want to get the IME window up on top of us right away.
2339 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002340 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002341 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2342 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2343 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002344 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002345 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2346 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2347 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002348
Adam Powell04fe6eb2013-05-31 14:39:48 -07002349 win.setDefaultIcon(icon);
2350 win.setDefaultLogo(logo);
2351
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002352 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002353 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002354
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002355 final WindowManager.LayoutParams params = win.getAttributes();
2356 params.token = appToken;
2357 params.packageName = packageName;
2358 params.windowAnimations = win.getWindowStyle().getResourceId(
2359 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002360 params.privateFlags |=
2361 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002362 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002363
2364 if (!compatInfo.supportsScreen()) {
2365 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2366 }
2367
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002368 params.setTitle("Starting " + packageName);
2369
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002370 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2371 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002372
Craig Mautner6fbda632012-07-03 09:26:39 -07002373 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002374 TAG, "Adding starting window for " + packageName
2375 + " / " + appToken + ": "
2376 + (view.getParent() != null ? view : null));
2377
2378 wm.addView(view, params);
2379
2380 // Only return the view if it was successfully added to the
2381 // window manager... which we can tell by it having a parent.
2382 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002383 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002384 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002385 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2386 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002387 } catch (RuntimeException e) {
2388 // don't crash if something else bad happens, for example a
2389 // failure loading resources because we are loading from an app
2390 // on external storage that has been unmounted.
2391 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002392 } finally {
2393 if (view != null && view.getParent() == null) {
2394 Log.w(TAG, "view not successfully added to wm, removing view");
2395 wm.removeViewImmediate(view);
2396 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002397 }
2398
2399 return null;
2400 }
2401
2402 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002403 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002404 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002405 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2406 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002407
2408 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002409 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002410 wm.removeView(window);
2411 }
2412 }
2413
2414 /**
2415 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002416 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002417 * Currently enforces that three window types are singletons:
2418 * <ul>
2419 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002420 * <li>KEYGUARD_TYPE</li>
2421 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002422 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002423 * @param win The window to be added
2424 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002425 *
Jeff Brown98365d72012-08-19 20:30:52 -07002426 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2427 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002428 */
Jose Lima9546b202014-07-02 17:21:51 -07002429 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002430 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2431 switch (attrs.type) {
2432 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002433 mContext.enforceCallingOrSelfPermission(
2434 android.Manifest.permission.STATUS_BAR_SERVICE,
2435 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002436 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002437 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002438 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002439 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002440 }
2441 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002442 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002443 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002444 case TYPE_NAVIGATION_BAR:
2445 mContext.enforceCallingOrSelfPermission(
2446 android.Manifest.permission.STATUS_BAR_SERVICE,
2447 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002448 if (mNavigationBar != null) {
2449 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002450 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002451 }
2452 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002453 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002454 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002455 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002456 break;
Jim Millere898ac52012-04-06 17:10:57 -07002457 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002458 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002459 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002460 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002461 mContext.enforceCallingOrSelfPermission(
2462 android.Manifest.permission.STATUS_BAR_SERVICE,
2463 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002464 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002465 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002466 if (mKeyguardScrim != null) {
2467 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2468 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002469 mKeyguardScrim = win;
2470 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002471 }
Jeff Brown98365d72012-08-19 20:30:52 -07002472 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002473 }
2474
2475 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002476 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002477 public void removeWindowLw(WindowState win) {
2478 if (mStatusBar == win) {
2479 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002480 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002481 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002482 } else if (mKeyguardScrim == win) {
2483 Log.v(TAG, "Removing keyguard scrim");
2484 mKeyguardScrim = null;
2485 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002486 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002487 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002488 }
2489 }
2490
2491 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002492
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002493 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002494 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002495 public int selectAnimationLw(WindowState win, int transit) {
2496 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2497 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002498 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002499 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002500 if (transit == TRANSIT_EXIT
2501 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002502 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002503 } else if (transit == TRANSIT_ENTER
2504 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002505 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002506 }
2507 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002508 if (win.getAttrs().windowAnimations != 0) {
2509 return 0;
2510 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002511 // This can be on either the bottom or the right.
2512 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002513 if (transit == TRANSIT_EXIT
2514 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002515 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002516 } else if (transit == TRANSIT_ENTER
2517 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002518 return R.anim.dock_bottom_enter;
2519 }
2520 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002521 if (transit == TRANSIT_EXIT
2522 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002523 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002524 } else if (transit == TRANSIT_ENTER
2525 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002526 return R.anim.dock_right_enter;
2527 }
2528 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002529 }
2530
2531 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002532 if (win.hasAppShownWindows()) {
2533 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2534 return com.android.internal.R.anim.app_starting_exit;
2535 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002536 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002537 && transit == TRANSIT_ENTER) {
2538 // Special case: we are animating in a dream, while the keyguard
2539 // is shown. We don't want an animation on the dream, because
2540 // we need it shown immediately with the keyguard animating away
2541 // to reveal it.
2542 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002543 }
2544
2545 return 0;
2546 }
2547
Craig Mautner3c174372013-02-21 17:54:37 -08002548 @Override
2549 public void selectRotationAnimationLw(int anim[]) {
2550 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2551 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2552 + (mTopFullscreenOpaqueWindowState == null ?
2553 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2554 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2555 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2556 case ROTATION_ANIMATION_CROSSFADE:
2557 anim[0] = R.anim.rotation_animation_xfade_exit;
2558 anim[1] = R.anim.rotation_animation_enter;
2559 break;
2560 case ROTATION_ANIMATION_JUMPCUT:
2561 anim[0] = R.anim.rotation_animation_jump_exit;
2562 anim[1] = R.anim.rotation_animation_enter;
2563 break;
2564 case ROTATION_ANIMATION_ROTATE:
2565 default:
2566 anim[0] = anim[1] = 0;
2567 break;
2568 }
2569 } else {
2570 anim[0] = anim[1] = 0;
2571 }
2572 }
2573
2574 @Override
2575 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2576 boolean forceDefault) {
2577 switch (exitAnimId) {
2578 case R.anim.rotation_animation_xfade_exit:
2579 case R.anim.rotation_animation_jump_exit:
2580 // These are the only cases that matter.
2581 if (forceDefault) {
2582 return false;
2583 }
2584 int anim[] = new int[2];
2585 selectRotationAnimationLw(anim);
2586 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2587 default:
2588 return true;
2589 }
2590 }
2591
2592 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002593 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2594 boolean goingToNotificationShade) {
2595 if (goingToNotificationShade) {
2596 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002597 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002598
2599 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2600 R.anim.lock_screen_behind_enter_wallpaper :
2601 R.anim.lock_screen_behind_enter);
2602
2603 // TODO: Use XML interpolators when we have log interpolators available in XML.
2604 final List<Animation> animations = set.getAnimations();
2605 for (int i = animations.size() - 1; i >= 0; --i) {
2606 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2607 }
2608
2609 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002610 }
2611
2612
2613 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002614 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2615 if (goingToNotificationShade) {
2616 return null;
2617 } else {
2618 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2619 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002620 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002621
2622 private static void awakenDreams() {
2623 IDreamManager dreamManager = getDreamManager();
2624 if (dreamManager != null) {
2625 try {
2626 dreamManager.awaken();
2627 } catch (RemoteException e) {
2628 // fine, stay asleep then
2629 }
2630 }
2631 }
2632
2633 static IDreamManager getDreamManager() {
2634 return IDreamManager.Stub.asInterface(
2635 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2636 }
2637
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002638 TelecomManager getTelecommService() {
2639 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002640 }
2641
Jeff Brown4d396052010-10-29 21:50:21 -07002642 static IAudioService getAudioService() {
2643 IAudioService audioService = IAudioService.Stub.asInterface(
2644 ServiceManager.checkService(Context.AUDIO_SERVICE));
2645 if (audioService == null) {
2646 Log.w(TAG, "Unable to find IAudioService interface.");
2647 }
2648 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002649 }
2650
2651 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002652 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002653 }
2654
2655 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2656 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2657 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2658 };
2659
2660 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002661 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002662 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002663 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002664 final int keyCode = event.getKeyCode();
2665 final int repeatCount = event.getRepeatCount();
2666 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002667 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002668 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2669 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002670
Jeff Brown40013652012-05-16 21:22:36 -07002671 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002672 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002673 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2674 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002675 }
2676
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002677 // If we think we might have a volume down & power key chord on the way
2678 // but we're not sure, then tell the dispatcher to wait a little while and
2679 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002680 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002681 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002682 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002683 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2684 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002685 if (now < timeoutTime) {
2686 return timeoutTime - now;
2687 }
2688 }
2689 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002690 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002691 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002692 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002693 }
2694 return -1;
2695 }
2696 }
2697
Michael Wright6a62e552014-06-03 19:19:48 -07002698 // Cancel any pending meta actions if we see any other keys being pressed between the down
2699 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002700 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002701 mPendingMetaAction = false;
2702 }
2703
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002704 // First we always handle the home key here, so applications
2705 // can never break it, although if keyguard is on, we do let
2706 // it handle it, because that gives us the correct 5 second
2707 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002708 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002709
Jeff Brown49ed71d2010-12-06 17:13:33 -08002710 // If we have released the home key, and didn't do anything else
2711 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002712 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002713 cancelPreloadRecentApps();
2714
Jeff Brown49ed71d2010-12-06 17:13:33 -08002715 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002716 if (mHomeConsumed) {
2717 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002718 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002719 }
Jeff Browncaca8812013-05-09 13:34:33 -07002720
2721 if (canceled) {
2722 Log.i(TAG, "Ignoring HOME; event canceled.");
2723 return -1;
2724 }
2725
Yorke Lee4f803242014-12-15 23:22:06 +00002726 // If an incoming call is ringing, HOME is totally disabled.
2727 // (The user is already on the InCallUI at this point,
2728 // and his ONLY options are to answer or reject the call.)
2729 TelecomManager telecomManager = getTelecommService();
2730 if (telecomManager != null && telecomManager.isRinging()) {
2731 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2732 return -1;
2733 }
2734
Jeff Browncaca8812013-05-09 13:34:33 -07002735 // Delay handling home if a double-tap is possible.
2736 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2737 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2738 mHomeDoubleTapPending = true;
2739 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2740 ViewConfiguration.getDoubleTapTimeout());
2741 return -1;
2742 }
2743
Jeff Brown13f00f02014-10-31 14:45:50 -07002744 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002745 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002746 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002747
2748 // If a system window has focus, then it doesn't make sense
2749 // right now to interact with applications.
2750 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2751 if (attrs != null) {
2752 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002753 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2754 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2755 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002756 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002757 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002758 }
2759 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2760 for (int i=0; i<typeCount; i++) {
2761 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2762 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002763 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002764 }
2765 }
2766 }
Jeff Browncaca8812013-05-09 13:34:33 -07002767
2768 // Remember that home is pressed and handle special actions.
2769 if (repeatCount == 0) {
2770 mHomePressed = true;
2771 if (mHomeDoubleTapPending) {
2772 mHomeDoubleTapPending = false;
2773 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2774 handleDoubleTapOnHome();
2775 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2776 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2777 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002778 }
Jeff Browncaca8812013-05-09 13:34:33 -07002779 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2780 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002781 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002782 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002783 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002784 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002785 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002786 // Hijack modified menu keys for debugging features
2787 final int chordBug = KeyEvent.META_SHIFT_ON;
2788
2789 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002790 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002791 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002792 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2793 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002794 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002795 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002796 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002797 Intent service = new Intent();
2798 service.setClassName(mContext, "com.android.server.LoadAverageService");
2799 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002800 boolean shown = Settings.Global.getInt(
2801 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002802 if (!shown) {
2803 mContext.startService(service);
2804 } else {
2805 mContext.stopService(service);
2806 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002807 Settings.Global.putInt(
2808 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002809 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002810 }
2811 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002812 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002813 if (down) {
2814 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002815 mSearchKeyShortcutPending = true;
2816 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002817 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002818 } else {
2819 mSearchKeyShortcutPending = false;
2820 if (mConsumeSearchKeyUp) {
2821 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002822 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002823 }
2824 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002825 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002826 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002827 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002828 if (down && repeatCount == 0) {
2829 preloadRecentApps();
2830 } else if (!down) {
2831 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002832 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002833 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002834 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002835 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2836 if (down) {
2837 IStatusBarService service = getStatusBarService();
2838 if (service != null) {
2839 try {
2840 service.expandNotificationsPanel();
2841 } catch (RemoteException e) {
2842 // do nothing.
2843 }
2844 }
2845 }
Clara Bayarrif2debb12015-07-10 14:47:17 +01002846 } else if (keyCode == KeyEvent.KEYCODE_SLASH && event.isMetaPressed()) {
2847 if (down) {
2848 if (repeatCount == 0) {
2849 showKeyboardShortcutsMenu();
2850 }
2851 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002852 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2853 if (down) {
2854 if (repeatCount == 0) {
2855 mAssistKeyLongPressed = false;
2856 } else if (repeatCount == 1) {
2857 mAssistKeyLongPressed = true;
2858 if (!keyguardOn) {
2859 launchAssistLongPressAction();
2860 }
2861 }
2862 } else {
2863 if (mAssistKeyLongPressed) {
2864 mAssistKeyLongPressed = false;
2865 } else {
2866 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002867 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002868 }
2869 }
2870 }
2871 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002872 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2873 if (!down) {
2874 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002875 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002876 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2877 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002878 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2879 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2880 if (dic != null) {
2881 try {
2882 dic.exitIdle("voice-search");
2883 } catch (RemoteException e) {
2884 }
2885 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002886 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002887 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002888 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002889 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002890 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002891 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2892 if (down && repeatCount == 0) {
2893 mHandler.post(mScreenshotRunnable);
2894 }
2895 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002896 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2897 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2898 if (down) {
2899 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2900
2901 // Disable autobrightness if it's on
2902 int auto = Settings.System.getIntForUser(
2903 mContext.getContentResolver(),
2904 Settings.System.SCREEN_BRIGHTNESS_MODE,
2905 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2906 UserHandle.USER_CURRENT_OR_SELF);
2907 if (auto != 0) {
2908 Settings.System.putIntForUser(mContext.getContentResolver(),
2909 Settings.System.SCREEN_BRIGHTNESS_MODE,
2910 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2911 UserHandle.USER_CURRENT_OR_SELF);
2912 }
2913
2914 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2915 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2916 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2917 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2918 Settings.System.SCREEN_BRIGHTNESS,
2919 mPowerManager.getDefaultScreenBrightnessSetting(),
2920 UserHandle.USER_CURRENT_OR_SELF);
2921 brightness += step;
2922 // Make sure we don't go beyond the limits.
2923 brightness = Math.min(max, brightness);
2924 brightness = Math.max(min, brightness);
2925
2926 Settings.System.putIntForUser(mContext.getContentResolver(),
2927 Settings.System.SCREEN_BRIGHTNESS, brightness,
2928 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002929 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002930 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002931 }
2932 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002933 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002934 if (down) {
2935 mPendingMetaAction = true;
2936 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002937 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002938 }
2939 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002940 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002941
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002942 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002943 // Any printing key that is chorded with Search should be consumed
2944 // even if no shortcut was invoked. This prevents text from being
2945 // inadvertently inserted when using a keyboard that has built-in macro
2946 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002947 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002948 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2949 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002950 mConsumeSearchKeyUp = true;
2951 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002952 if (down && repeatCount == 0 && !keyguardOn) {
2953 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2954 if (shortcutIntent != null) {
2955 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002956 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002957 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002958 } catch (ActivityNotFoundException ex) {
2959 Slog.w(TAG, "Dropping shortcut key combination because "
2960 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002961 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002962 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002963 } else {
2964 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002965 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002966 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002967 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002968 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002969 }
2970 }
2971
Jeff Brown68b909d2011-12-07 16:36:01 -08002972 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002973 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002974 && (metaState & KeyEvent.META_META_ON) != 0) {
2975 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002976 if (kcm.isPrintingKey(keyCode)) {
2977 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2978 metaState & ~(KeyEvent.META_META_ON
2979 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2980 if (shortcutIntent != null) {
2981 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2982 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002983 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002984 } catch (ActivityNotFoundException ex) {
2985 Slog.w(TAG, "Dropping shortcut key combination because "
2986 + "the activity to which it is registered was not found: "
2987 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2988 }
2989 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002990 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002991 }
2992 }
2993
Jeff Brown6651a632011-11-28 12:59:11 -08002994 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002995 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002996 String category = sApplicationLaunchKeyCategories.get(keyCode);
2997 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002998 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002999 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3000 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00003001 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08003002 } catch (ActivityNotFoundException ex) {
3003 Slog.w(TAG, "Dropping application launch key because "
3004 + "the activity to which it is registered was not found: "
3005 + "keyCode=" + keyCode + ", category=" + category, ex);
3006 }
Jeff Brown68b909d2011-12-07 16:36:01 -08003007 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08003008 }
3009 }
3010
Michael Wright61c46752014-08-21 16:57:33 -07003011 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08003012 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003013 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08003014 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07003015 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003016 mRecentAppsHeldModifiers = shiftlessModifiers;
3017 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08003018 return -1;
3019 }
3020 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07003021 } else if (!down && mRecentAppsHeldModifiers != 0
3022 && (metaState & mRecentAppsHeldModifiers) == 0) {
3023 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07003024 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08003025 }
3026
Jeff Browncf39bdf2012-05-18 14:41:19 -07003027 // Handle keyboard language switching.
3028 if (down && repeatCount == 0
3029 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3030 || (keyCode == KeyEvent.KEYCODE_SPACE
3031 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
3032 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
3033 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
3034 return -1;
3035 }
3036 if (mLanguageSwitchKeyPressed && !down
3037 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3038 || keyCode == KeyEvent.KEYCODE_SPACE)) {
3039 mLanguageSwitchKeyPressed = false;
3040 return -1;
3041 }
3042
Jeff Brown13f00f02014-10-31 14:45:50 -07003043 if (isValidGlobalKey(keyCode)
3044 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003045 return -1;
3046 }
3047
Michael Wright6a62e552014-06-03 19:19:48 -07003048 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003049 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003050 return -1;
3051 }
3052
Jeff Brown68b909d2011-12-07 16:36:01 -08003053 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003054 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003055 }
3056
Jeff Brown3915bb82010-11-05 15:02:16 -07003057 /** {@inheritDoc} */
3058 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003059 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003060 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003061 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003062 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3063 + ", flags=" + event.getFlags()
3064 + ", keyCode=" + event.getKeyCode()
3065 + ", scanCode=" + event.getScanCode()
3066 + ", metaState=" + event.getMetaState()
3067 + ", repeatCount=" + event.getRepeatCount()
3068 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003069 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003070
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003071 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003072 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3073 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003074 final int keyCode = event.getKeyCode();
3075 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003076 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3077 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003078
Jeff Brown54875002011-04-06 15:33:01 -07003079 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003080 final FallbackAction fallbackAction;
3081 if (initialDown) {
3082 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3083 } else {
3084 fallbackAction = mFallbackActions.get(keyCode);
3085 }
3086
3087 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003088 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003089 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3090 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003091 }
3092
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003093 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3094 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003095 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003096 event.getAction(), fallbackAction.keyCode,
3097 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003098 event.getDeviceId(), event.getScanCode(),
3099 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003100
3101 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3102 fallbackEvent.recycle();
3103 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003104 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003105
3106 if (initialDown) {
3107 mFallbackActions.put(keyCode, fallbackAction);
3108 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3109 mFallbackActions.remove(keyCode);
3110 fallbackAction.recycle();
3111 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003112 }
3113 }
3114
Jeff Brown40013652012-05-16 21:22:36 -07003115 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003116 if (fallbackEvent == null) {
3117 Slog.d(TAG, "No fallback.");
3118 } else {
3119 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3120 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003121 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003122 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003123 }
3124
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003125 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003126 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003127 if ((actions & ACTION_PASS_TO_USER) != 0) {
3128 long delayMillis = interceptKeyBeforeDispatching(
3129 win, fallbackEvent, policyFlags);
3130 if (delayMillis == 0) {
3131 return true;
3132 }
3133 }
3134 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003135 }
3136
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003137 private void launchAssistLongPressAction() {
3138 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3139 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3140
3141 // launch the search activity
3142 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3143 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3144 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003145 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003146 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003147 SearchManager searchManager = getSearchManager();
3148 if (searchManager != null) {
3149 searchManager.stopSearch();
3150 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003151 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003152 } catch (ActivityNotFoundException e) {
3153 Slog.w(TAG, "No activity to handle assist long press action.", e);
3154 }
3155 }
3156
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003157 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003158 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003159 if (!isUserSetupComplete()) {
3160 // Disable opening assist window during setup
3161 return;
3162 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003163 Bundle args = null;
3164 if (deviceId > Integer.MIN_VALUE) {
3165 args = new Bundle();
3166 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003167 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003168 if ((mContext.getResources().getConfiguration().uiMode
3169 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3170 // On TV, use legacy handling until assistants are implemented in the proper way.
3171 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3172 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3173 } else {
3174 try {
3175 if (hint != null) {
3176 if (args == null) {
3177 args = new Bundle();
3178 }
3179 args.putBoolean(hint, true);
3180 }
3181 IStatusBarService statusbar = getStatusBarService();
3182 if (statusbar != null) {
3183 statusbar.startAssist(args);
3184 }
3185 } catch (RemoteException e) {
3186 Slog.e(TAG, "RemoteException when starting assist", e);
3187 // re-acquire status bar service next time it is needed.
3188 mStatusBarService = null;
3189 }
3190 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003191 }
3192
Bart Sears8b1c27c2015-03-18 23:51:02 +00003193 private void startActivityAsUser(Intent intent, UserHandle handle) {
3194 if (isUserSetupComplete()) {
3195 mContext.startActivityAsUser(intent, handle);
3196 } else {
3197 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3198 }
3199 }
3200
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003201 private SearchManager getSearchManager() {
3202 if (mSearchManager == null) {
3203 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3204 }
3205 return mSearchManager;
3206 }
3207
Jeff Browncaca8812013-05-09 13:34:33 -07003208 private void preloadRecentApps() {
3209 mPreloadedRecentApps = true;
3210 try {
3211 IStatusBarService statusbar = getStatusBarService();
3212 if (statusbar != null) {
3213 statusbar.preloadRecentApps();
3214 }
3215 } catch (RemoteException e) {
3216 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3217 // re-acquire status bar service next time it is needed.
3218 mStatusBarService = null;
3219 }
3220 }
3221
3222 private void cancelPreloadRecentApps() {
3223 if (mPreloadedRecentApps) {
3224 mPreloadedRecentApps = false;
3225 try {
3226 IStatusBarService statusbar = getStatusBarService();
3227 if (statusbar != null) {
3228 statusbar.cancelPreloadRecentApps();
3229 }
3230 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003231 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003232 // re-acquire status bar service next time it is needed.
3233 mStatusBarService = null;
3234 }
3235 }
3236 }
3237
3238 private void toggleRecentApps() {
3239 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003240 try {
3241 IStatusBarService statusbar = getStatusBarService();
3242 if (statusbar != null) {
3243 statusbar.toggleRecentApps();
3244 }
3245 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003246 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3247 // re-acquire status bar service next time it is needed.
3248 mStatusBarService = null;
3249 }
3250 }
3251
Craig Mautner84984fa2014-06-19 11:19:20 -07003252 @Override
3253 public void showRecentApps() {
3254 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3255 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3256 }
3257
Winson Chung1e8d71b2014-05-16 17:05:22 -07003258 private void showRecentApps(boolean triggeredFromAltTab) {
3259 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3260 try {
3261 IStatusBarService statusbar = getStatusBarService();
3262 if (statusbar != null) {
3263 statusbar.showRecentApps(triggeredFromAltTab);
3264 }
3265 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003266 Slog.e(TAG, "RemoteException when showing recent apps", e);
3267 // re-acquire status bar service next time it is needed.
3268 mStatusBarService = null;
3269 }
3270 }
3271
Clara Bayarrif2debb12015-07-10 14:47:17 +01003272 private void showKeyboardShortcutsMenu() {
3273 try {
3274 IStatusBarService statusbar = getStatusBarService();
3275 if (statusbar != null) {
3276 statusbar.showKeyboardShortcutsMenu();
3277 }
3278 } catch (RemoteException e) {
3279 Slog.e(TAG, "RemoteException when showing keyboard shortcuts menu", e);
3280 }
3281 }
3282
Winson Chungcdcd4872014-08-05 18:00:13 -07003283 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003284 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3285 try {
3286 IStatusBarService statusbar = getStatusBarService();
3287 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003288 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003289 }
3290 } catch (RemoteException e) {
3291 Slog.e(TAG, "RemoteException when closing recent apps", e);
3292 // re-acquire status bar service next time it is needed.
3293 mStatusBarService = null;
3294 }
3295 }
3296
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003297 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003298 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003299 }
3300
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003301 /**
3302 * A home key -> launch home action was detected. Take the appropriate action
3303 * given the situation with the keyguard.
3304 */
Bryce Lee662ed802015-04-10 20:11:39 +00003305 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3306 if (respectKeyguard) {
3307 if (isKeyguardShowingAndNotOccluded()) {
3308 // don't launch home if keyguard showing
3309 return;
3310 }
3311
3312 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3313 // when in keyguard restricted mode, must first verify unlock
3314 // before launching home
3315 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3316 @Override
3317 public void onKeyguardExitResult(boolean success) {
3318 if (success) {
3319 try {
3320 ActivityManagerNative.getDefault().stopAppSwitches();
3321 } catch (RemoteException e) {
3322 }
3323 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3324 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003325 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003326 }
Bryce Lee662ed802015-04-10 20:11:39 +00003327 });
3328 return;
3329 }
3330 }
3331
3332 // no keyguard stuff to worry about, just launch home!
3333 try {
3334 ActivityManagerNative.getDefault().stopAppSwitches();
3335 } catch (RemoteException e) {
3336 }
3337 if (mRecentsVisible) {
3338 // Hide Recents and notify it to launch Home
3339 if (awakenFromDreams) {
3340 awakenDreams();
3341 }
3342 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3343 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003344 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003345 // Otherwise, just launch Home
3346 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3347 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003348 }
3349 }
3350
John Spurlock04db1762013-05-13 12:46:41 -04003351 private final Runnable mClearHideNavigationFlag = new Runnable() {
3352 @Override
3353 public void run() {
3354 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3355 // Clear flags.
3356 mForceClearedSystemUiFlags &=
3357 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3358 }
3359 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003360 }
3361 };
3362
3363 /**
3364 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3365 * to determine when the nav bar should be shown and prevent applications from
3366 * receiving those touches.
3367 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003368 final class HideNavInputEventReceiver extends InputEventReceiver {
3369 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3370 super(inputChannel, looper);
3371 }
3372
Dianne Hackborndf89e652011-10-06 22:35:11 -07003373 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003374 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003375 boolean handled = false;
3376 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003377 if (event instanceof MotionEvent
3378 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3379 final MotionEvent motionEvent = (MotionEvent)event;
3380 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003381 // When the user taps down, we re-show the nav bar.
3382 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003383 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003384 // Any user activity always causes us to show the
3385 // navigation controls, if they had been hidden.
3386 // We also clear the low profile and only content
3387 // flags so that tapping on the screen will atomically
3388 // restore all currently hidden screen decorations.
3389 int newVal = mResettingSystemUiFlags |
3390 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3391 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3392 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003393 if (mResettingSystemUiFlags != newVal) {
3394 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003395 changed = true;
3396 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003397 // We don't allow the system's nav bar to be hidden
3398 // again for 1 second, to prevent applications from
3399 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003400 newVal = mForceClearedSystemUiFlags |
3401 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003402 if (mForceClearedSystemUiFlags != newVal) {
3403 mForceClearedSystemUiFlags = newVal;
3404 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003405 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003406 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003407 }
3408 if (changed) {
3409 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3410 }
3411 }
3412 }
3413 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003414 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003415 }
3416 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003417 }
3418 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3419 new InputEventReceiver.Factory() {
3420 @Override
3421 public InputEventReceiver createInputEventReceiver(
3422 InputChannel inputChannel, Looper looper) {
3423 return new HideNavInputEventReceiver(inputChannel, looper);
3424 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003425 };
3426
3427 @Override
3428 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003429 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3430 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003431 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003432
Dianne Hackborndf89e652011-10-06 22:35:11 -07003433 // Reset any bits in mForceClearingStatusBarVisibility that
3434 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003435 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003436 // Clear any bits in the new visibility that are currently being
3437 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003438 return visibility & ~mResettingSystemUiFlags
3439 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003440 }
3441
Craig Mautner69b08182012-09-05 13:07:13 -07003442 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003443 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3444 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003445 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003446 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3447 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003448
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003449 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3450 if (useOutsets) {
3451 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3452 if (outset > 0) {
3453 if (displayRotation == Surface.ROTATION_0) {
3454 outOutsets.bottom += outset;
3455 } else if (displayRotation == Surface.ROTATION_90) {
3456 outOutsets.right += outset;
3457 } else if (displayRotation == Surface.ROTATION_180) {
3458 outOutsets.top += outset;
3459 } else if (displayRotation == Surface.ROTATION_270) {
3460 outOutsets.left += outset;
3461 }
3462 }
3463 }
3464
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003465 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003466 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003467 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003468 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003469 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003470 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3471 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3472 } else {
3473 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3474 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3475 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003476 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3477 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003478 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003479 availRight - mStableFullscreenRight,
3480 availBottom - mStableFullscreenBottom);
3481 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003482 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003483 availRight - mStableRight, availBottom - mStableBottom);
3484 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003485 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003486 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003487 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003488 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003489 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003490 availRight - mCurRight, availBottom - mCurBottom);
3491 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003492 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003493 availRight - mCurRight, availBottom - mCurBottom);
3494 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003495
3496 outStableInsets.set(mStableLeft, mStableTop,
3497 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003498 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003499 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003500 outContentInsets.setEmpty();
3501 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003502 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003503
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003504 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3505 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3506 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3507 }
3508
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003509 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003510 @Override
3511 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3512 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003513 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003514 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3515 if (isDefaultDisplay) {
3516 switch (displayRotation) {
3517 case Surface.ROTATION_90:
3518 overscanLeft = mOverscanTop;
3519 overscanTop = mOverscanRight;
3520 overscanRight = mOverscanBottom;
3521 overscanBottom = mOverscanLeft;
3522 break;
3523 case Surface.ROTATION_180:
3524 overscanLeft = mOverscanRight;
3525 overscanTop = mOverscanBottom;
3526 overscanRight = mOverscanLeft;
3527 overscanBottom = mOverscanTop;
3528 break;
3529 case Surface.ROTATION_270:
3530 overscanLeft = mOverscanBottom;
3531 overscanTop = mOverscanLeft;
3532 overscanRight = mOverscanTop;
3533 overscanBottom = mOverscanRight;
3534 break;
3535 default:
3536 overscanLeft = mOverscanLeft;
3537 overscanTop = mOverscanTop;
3538 overscanRight = mOverscanRight;
3539 overscanBottom = mOverscanBottom;
3540 break;
3541 }
3542 } else {
3543 overscanLeft = 0;
3544 overscanTop = 0;
3545 overscanRight = 0;
3546 overscanBottom = 0;
3547 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003548 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3549 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3550 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3551 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003552 mSystemLeft = 0;
3553 mSystemTop = 0;
3554 mSystemRight = displayWidth;
3555 mSystemBottom = displayHeight;
3556 mUnrestrictedScreenLeft = overscanLeft;
3557 mUnrestrictedScreenTop = overscanTop;
3558 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3559 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3560 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3561 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003562 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3563 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003564 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003565 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003566 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003567 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003568 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003569 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003570 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003571 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003572 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003573 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003574
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003575 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3576 final Rect pf = mTmpParentFrame;
3577 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003578 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003579 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003580 final Rect dcf = mTmpDecorFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003581 pf.left = df.left = of.left = vf.left = mDockLeft;
3582 pf.top = df.top = of.top = vf.top = mDockTop;
3583 pf.right = df.right = of.right = vf.right = mDockRight;
3584 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003585 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003586
Craig Mautner69b08182012-09-05 13:07:13 -07003587 if (isDefaultDisplay) {
3588 // For purposes of putting out fake window up to steal focus, we will
3589 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003590 final int sysui = mLastSystemUiFlags;
3591 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003592 boolean navTranslucent = (sysui
3593 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003594 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3595 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3596 boolean navAllowedHidden = immersive || immersiveSticky;
3597 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003598 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3599 if (!isKeyguardShowing) {
3600 navTranslucent &= areTranslucentBarsAllowed();
3601 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003602
Craig Mautner69b08182012-09-05 13:07:13 -07003603 // When the navigation bar isn't visible, we put up a fake
3604 // input window to catch all touch events. This way we can
3605 // detect when the user presses anywhere to bring back the nav
3606 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003607 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003608 if (mInputConsumer != null) {
3609 mInputConsumer.dismiss();
3610 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003611 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003612 } else if (mInputConsumer == null) {
3613 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3614 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003615 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003616
Craig Mautner69b08182012-09-05 13:07:13 -07003617 // For purposes of positioning and showing the nav bar, if we have
3618 // decided that it can't be hidden (because of the screen aspect ratio),
3619 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003620 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003621
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003622 boolean updateSysUiVisibility = layoutNavigationBar(displayWidth, displayHeight,
3623 displayRotation, overscanRight, overscanBottom, dcf, navVisible, navTranslucent,
3624 navAllowedHidden);
Craig Mautnereda67292013-04-28 13:50:14 -07003625 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003626 mDockLeft, mDockTop, mDockRight, mDockBottom));
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003627 updateSysUiVisibility |= layoutStatusBar(pf, df, of, vf, dcf, sysui, isKeyguardShowing);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003628 if (updateSysUiVisibility) {
3629 updateSystemUiVisibilityLw();
3630 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003631 }
3632 }
3633
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003634 private boolean layoutStatusBar(Rect pf, Rect df, Rect of, Rect vf, Rect dcf, int sysui,
3635 boolean isKeyguardShowing) {
3636 // decide where the status bar goes ahead of time
3637 if (mStatusBar != null) {
3638 // apply any navigation bar insets
3639 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3640 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3641 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3642 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3643 + mUnrestrictedScreenTop;
3644 vf.left = mStableLeft;
3645 vf.top = mStableTop;
3646 vf.right = mStableRight;
3647 vf.bottom = mStableBottom;
3648
3649 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3650
3651 // Let the status bar determine its size.
3652 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3653 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3654 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
3655
3656 // For layout, the status bar is always at the top with our fixed height.
3657 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3658
3659 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
3660 boolean statusBarTranslucent = (sysui
3661 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
3662 if (!isKeyguardShowing) {
3663 statusBarTranslucent &= areTranslucentBarsAllowed();
3664 }
3665
3666 // If the status bar is hidden, we don't want to cause
3667 // windows behind it to scroll.
3668 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
3669 // Status bar may go away, so the screen area it occupies
3670 // is available to apps but just covering them when the
3671 // status bar is visible.
3672 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3673
3674 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3675 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3676 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3677 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3678
3679 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
3680 String.format(
3681 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3682 mDockLeft, mDockTop, mDockRight, mDockBottom,
3683 mContentLeft, mContentTop, mContentRight, mContentBottom,
3684 mCurLeft, mCurTop, mCurRight, mCurBottom));
3685 }
3686 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
3687 && !statusBarTransient && !statusBarTranslucent
3688 && !mStatusBarController.wasRecentlyTranslucent()) {
3689 // If the opaque status bar is currently requested to be visible,
3690 // and not in the process of animating on or off, then
3691 // we can tell the app that it is covered by it.
3692 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3693 }
3694 if (mStatusBarController.checkHiddenLw()) {
3695 return true;
3696 }
3697 }
3698 return false;
3699 }
3700
3701 private boolean layoutNavigationBar(int displayWidth, int displayHeight, int displayRotation,
3702 int overscanRight, int overscanBottom, Rect dcf, boolean navVisible,
3703 boolean navTranslucent, boolean navAllowedHidden) {
3704 if (mNavigationBar != null) {
3705 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
3706 // Force the navigation bar to its appropriate place and
3707 // size. We need to do this directly, instead of relying on
3708 // it to bubble up from the nav bar, because this needs to
3709 // change atomically with screen rotations.
3710 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3711 if (mNavigationBarOnBottom) {
3712 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
3713 int top = displayHeight - overscanBottom
3714 - mNavigationBarHeightForRotation[displayRotation];
3715 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
3716 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
3717 if (transientNavBarShowing) {
3718 mNavigationBarController.setBarShowingLw(true);
3719 } else if (navVisible) {
3720 mNavigationBarController.setBarShowingLw(true);
3721 mDockBottom = mTmpNavigationFrame.top;
3722 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3723 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
3724 } else {
3725 // We currently want to hide the navigation UI.
3726 mNavigationBarController.setBarShowingLw(false);
3727 }
3728 if (navVisible && !navTranslucent && !navAllowedHidden
3729 && !mNavigationBar.isAnimatingLw()
3730 && !mNavigationBarController.wasRecentlyTranslucent()) {
3731 // If the opaque nav bar is currently requested to be visible,
3732 // and not in the process of animating on or off, then
3733 // we can tell the app that it is covered by it.
3734 mSystemBottom = mTmpNavigationFrame.top;
3735 }
3736 } else {
3737 // Landscape screen; nav bar goes to the right.
3738 int left = displayWidth - overscanRight
3739 - mNavigationBarWidthForRotation[displayRotation];
3740 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
3741 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
3742 if (transientNavBarShowing) {
3743 mNavigationBarController.setBarShowingLw(true);
3744 } else if (navVisible) {
3745 mNavigationBarController.setBarShowingLw(true);
3746 mDockRight = mTmpNavigationFrame.left;
3747 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3748 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
3749 } else {
3750 // We currently want to hide the navigation UI.
3751 mNavigationBarController.setBarShowingLw(false);
3752 }
3753 if (navVisible && !navTranslucent && !navAllowedHidden
3754 && !mNavigationBar.isAnimatingLw()
3755 && !mNavigationBarController.wasRecentlyTranslucent()) {
3756 // If the nav bar is currently requested to be visible,
3757 // and not in the process of animating on or off, then
3758 // we can tell the app that it is covered by it.
3759 mSystemRight = mTmpNavigationFrame.left;
3760 }
3761 }
3762 // Make sure the content and current rectangles are updated to
3763 // account for the restrictions from the navigation bar.
3764 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3765 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3766 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3767 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3768 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3769 // And compute the final frame.
3770 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
3771 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3772 mTmpNavigationFrame, mTmpNavigationFrame);
3773 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
3774 if (mNavigationBarController.checkHiddenLw()) {
3775 return true;
3776 }
3777 }
3778 return false;
3779 }
3780
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003781 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003782 @Override
John Spurlock46646232013-09-30 22:32:42 -04003783 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003784 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3785 return mStatusBar.getSurfaceLayer();
3786 }
3787
3788 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3789 return mNavigationBar.getSurfaceLayer();
3790 }
3791
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003792 return 0;
3793 }
3794
Craig Mautner967212c2013-04-13 21:10:58 -07003795 @Override
3796 public void getContentRectLw(Rect r) {
3797 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3798 }
3799
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003800 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3801 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003802 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3803 // Here's a special case: if this attached window is a panel that is
3804 // above the dock window, and the window it is attached to is below
3805 // the dock window, then the frames we computed for the window it is
3806 // attached to can not be used because the dock is effectively part
3807 // of the underlying window and the attached window is floating on top
3808 // of the whole thing. So, we ignore the attached window and explicitly
3809 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003810 df.left = of.left = cf.left = vf.left = mDockLeft;
3811 df.top = of.top = cf.top = vf.top = mDockTop;
3812 df.right = of.right = cf.right = vf.right = mDockRight;
3813 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003814 } else {
3815 // The effective display frame of the attached window depends on
3816 // whether it is taking care of insetting its content. If not,
3817 // we need to use the parent's content frame so that the entire
3818 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003819 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003820 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003821 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003822 // Set the content frame of the attached window to the parent's decor frame
3823 // (same as content frame when IME isn't present) if specifically requested by
3824 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3825 // Otherwise, use the overscan frame.
3826 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3827 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003828 } else {
3829 // If the window is resizing, then we want to base the content
3830 // frame on our attached content frame to resize... however,
3831 // things can be tricky if the attached window is NOT in resize
3832 // mode, in which case its content frame will be larger.
3833 // Ungh. So to deal with that, make sure the content frame
3834 // we end up using is not covering the IM dock.
3835 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003836 if (attached.isVoiceInteraction()) {
3837 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3838 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3839 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3840 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3841 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003842 if (cf.left < mContentLeft) cf.left = mContentLeft;
3843 if (cf.top < mContentTop) cf.top = mContentTop;
3844 if (cf.right > mContentRight) cf.right = mContentRight;
3845 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3846 }
3847 }
3848 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003849 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003850 vf.set(attached.getVisibleFrameLw());
3851 }
3852 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3853 // window should be positioned relative to its parent or the entire
3854 // screen.
3855 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3856 ? attached.getFrameLw() : df);
3857 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003858
3859 private void applyStableConstraints(int sysui, int fl, Rect r) {
3860 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3861 // If app is requesting a stable layout, don't let the
3862 // content insets go below the stable values.
3863 if ((fl & FLAG_FULLSCREEN) != 0) {
3864 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3865 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3866 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3867 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3868 } else {
3869 if (r.left < mStableLeft) r.left = mStableLeft;
3870 if (r.top < mStableTop) r.top = mStableTop;
3871 if (r.right > mStableRight) r.right = mStableRight;
3872 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3873 }
3874 }
3875 }
3876
Jorim Jaggiaa806142015-05-20 18:04:16 -07003877 private boolean canReceiveInput(WindowState win) {
3878 boolean notFocusable =
3879 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3880 boolean altFocusableIm =
3881 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3882 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3883 return !notFocusableForIm;
3884 }
3885
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003886 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003887 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003888 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003889 // We've already done the navigation bar and status bar. If the status bar can receive
3890 // input, we need to layout it again to accomodate for the IME window.
3891 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003892 return;
3893 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003894 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003895 final boolean isDefaultDisplay = win.isDefaultDisplay();
3896 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003897 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3898 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003899 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003900 offsetInputMethodWindowLw(mLastInputMethodWindow);
3901 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003902
John Spurlockc6d1c602014-01-17 15:22:06 -05003903 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003904 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003905 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003906
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003907 final Rect pf = mTmpParentFrame;
3908 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003909 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003910 final Rect cf = mTmpContentFrame;
3911 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003912 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003913 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003914 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003915 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003916
3917 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003918 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003919
Craig Mautnerf683b562012-10-02 11:10:57 -07003920 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3921
Adrian Roosfa104232014-06-20 16:10:14 -07003922 if (isDefaultDisplay) {
3923 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3924 } else {
3925 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3926 }
3927
Craig Mautner69b08182012-09-05 13:07:13 -07003928 if (!isDefaultDisplay) {
3929 if (attached != null) {
3930 // If this window is attached to another, our display
3931 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003932 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003933 } else {
3934 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003935 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3936 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3937 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003938 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003939 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003940 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003941 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003942 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003943 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3944 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3945 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003946 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003947 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003948 // ...with content insets above the nav bar
3949 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003950 // IM dock windows always go to the bottom of the screen.
3951 attrs.gravity = Gravity.BOTTOM;
3952 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003953 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003954 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003955 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003956 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3957 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003958 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003959 // Note: In Phone landscape mode, the button bar should also be excluded.
3960 cf.right = vf.right = mStableRight;
3961 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003962 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003963 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003964 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3965 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3966 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3967 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3968 cf.left = vf.left = mStableLeft;
3969 cf.top = vf.top = mStableTop;
3970 cf.right = vf.right = mStableRight;
3971 vf.bottom = mStableBottom;
3972 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003973 } else {
John Spurlock46646232013-09-30 22:32:42 -04003974
3975 // Default policy decor for the default display
3976 dcf.left = mSystemLeft;
3977 dcf.top = mSystemTop;
3978 dcf.right = mSystemRight;
3979 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003980 final boolean inheritTranslucentDecor = (attrs.privateFlags
3981 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003982 final boolean isAppWindow =
3983 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3984 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3985 final boolean topAtRest =
3986 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3987 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003988 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3989 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003990 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3991 && (fl & WindowManager.LayoutParams.
3992 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003993 // Ensure policy decor includes status bar
3994 dcf.top = mStableTop;
3995 }
John Spurlockbd957402013-10-03 11:38:39 -04003996 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003997 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3998 && (fl & WindowManager.LayoutParams.
3999 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04004000 // Ensure policy decor includes navigation bar
4001 dcf.bottom = mStableBottom;
4002 dcf.right = mStableRight;
4003 }
4004 }
4005
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004006 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
4007 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07004008 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004009 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004010 // This is the case for a normal activity window: we want it
4011 // to cover all of the screen space, and it can take care of
4012 // moving its contents to account for screen decorations that
4013 // intrude into that space.
4014 if (attached != null) {
4015 // If this window is attached to another, our display
4016 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004017 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004018 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004019 if (attrs.type == TYPE_STATUS_BAR_PANEL
4020 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08004021 // Status bar panels are the only windows who can go on top of
4022 // the status bar. They are protected by the STATUS_BAR_SERVICE
4023 // permission, so they have the same privileges as the status
4024 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004025 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004026 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004027
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004028 pf.left = df.left = of.left = hasNavBar
4029 ? mDockLeft : mUnrestrictedScreenLeft;
4030 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4031 pf.right = df.right = of.right = hasNavBar
4032 ? mRestrictedScreenLeft+mRestrictedScreenWidth
4033 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4034 pf.bottom = df.bottom = of.bottom = hasNavBar
4035 ? mRestrictedScreenTop+mRestrictedScreenHeight
4036 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004037
Craig Mautnereda67292013-04-28 13:50:14 -07004038 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004039 "Laying out status bar window: (%d,%d - %d,%d)",
4040 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04004041 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004042 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4043 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4044 // Asking to layout into the overscan region, so give it that pure
4045 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004046 pf.left = df.left = of.left = mOverscanScreenLeft;
4047 pf.top = df.top = of.top = mOverscanScreenTop;
4048 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
4049 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
4050 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004051 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004052 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004053 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4054 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004055 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08004056 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004057 // only do this for application windows to ensure no window that
4058 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08004059 pf.left = df.left = mOverscanScreenLeft;
4060 pf.top = df.top = mOverscanScreenTop;
4061 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4062 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004063 // We need to tell the app about where the frame inside the overscan
4064 // is, so it can inset its content by that amount -- it didn't ask
4065 // to actually extend itself into the overscan region.
4066 of.left = mUnrestrictedScreenLeft;
4067 of.top = mUnrestrictedScreenTop;
4068 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4069 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004070 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004071 pf.left = df.left = mRestrictedOverscanScreenLeft;
4072 pf.top = df.top = mRestrictedOverscanScreenTop;
4073 pf.right = df.right = mRestrictedOverscanScreenLeft
4074 + mRestrictedOverscanScreenWidth;
4075 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4076 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004077 // We need to tell the app about where the frame inside the overscan
4078 // is, so it can inset its content by that amount -- it didn't ask
4079 // to actually extend itself into the overscan region.
4080 of.left = mUnrestrictedScreenLeft;
4081 of.top = mUnrestrictedScreenTop;
4082 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4083 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004084 }
Craig Mautner69b08182012-09-05 13:07:13 -07004085
John Spurlock46646232013-09-30 22:32:42 -04004086 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004087 if (win.isVoiceInteraction()) {
4088 cf.left = mVoiceContentLeft;
4089 cf.top = mVoiceContentTop;
4090 cf.right = mVoiceContentRight;
4091 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004092 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004093 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4094 cf.left = mDockLeft;
4095 cf.top = mDockTop;
4096 cf.right = mDockRight;
4097 cf.bottom = mDockBottom;
4098 } else {
4099 cf.left = mContentLeft;
4100 cf.top = mContentTop;
4101 cf.right = mContentRight;
4102 cf.bottom = mContentBottom;
4103 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004104 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004105 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004106 // Full screen windows are always given a layout that is as if the
4107 // status bar and other transient decors are gone. This is to avoid
4108 // bad states when moving from a window that is not hding the
4109 // status bar to one that is.
4110 cf.left = mRestrictedScreenLeft;
4111 cf.top = mRestrictedScreenTop;
4112 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4113 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004114 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004115 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004116 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4117 vf.left = mCurLeft;
4118 vf.top = mCurTop;
4119 vf.right = mCurRight;
4120 vf.bottom = mCurBottom;
4121 } else {
4122 vf.set(cf);
4123 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004124 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004125 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4126 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4127 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004128 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4129 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004130 // A window that has requested to fill the entire screen just
4131 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004132 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004133 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4134 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004135 pf.left = df.left = of.left = cf.left = hasNavBar
4136 ? mDockLeft : mUnrestrictedScreenLeft;
4137 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4138 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004139 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004140 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004141 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004142 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004143 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004144 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004145 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4146 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004147 } else if (attrs.type == TYPE_NAVIGATION_BAR
4148 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004149 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004150 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4151 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4152 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4153 + mUnrestrictedScreenWidth;
4154 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4155 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004156 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004157 "Laying out navigation bar window: (%d,%d - %d,%d)",
4158 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004159 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4160 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004161 && ((fl & FLAG_FULLSCREEN) != 0)) {
4162 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004163 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4164 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4165 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4166 + mOverscanScreenWidth;
4167 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4168 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004169 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004170 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004171 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4172 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4173 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4174 + mOverscanScreenWidth;
4175 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4176 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004177 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004178 // The wallpaper also has Real Ultimate Power, but we want to tell
4179 // it about the overscan area.
4180 pf.left = df.left = mOverscanScreenLeft;
4181 pf.top = df.top = mOverscanScreenTop;
4182 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4183 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4184 of.left = cf.left = mUnrestrictedScreenLeft;
4185 of.top = cf.top = mUnrestrictedScreenTop;
4186 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4187 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004188 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004189 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4190 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4191 // Asking to layout into the overscan region, so give it that pure
4192 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004193 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4194 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4195 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004196 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004197 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004198 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004199 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004200 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004201 && (attrs.type == TYPE_STATUS_BAR
4202 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004203 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004204 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4205 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004206 // Asking for layout as if the nav bar is hidden, lets the
4207 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004208 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004209 // can be above the nav bar can do this.
4210 // XXX This assumes that an app asking for this will also
4211 // ask for layout in only content. We can't currently figure out
4212 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004213 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4214 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4215 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4216 + mUnrestrictedScreenWidth;
4217 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4218 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004219 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004220 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4221 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4222 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4223 + mRestrictedScreenWidth;
4224 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4225 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004226 }
Craig Mautner69b08182012-09-05 13:07:13 -07004227
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004228 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004229
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004230 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4231 vf.left = mCurLeft;
4232 vf.top = mCurTop;
4233 vf.right = mCurRight;
4234 vf.bottom = mCurBottom;
4235 } else {
4236 vf.set(cf);
4237 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004238 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004239 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4240 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004241 // A child window should be placed inside of the same visible
4242 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004243 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004244 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004245 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4246 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004247 // Otherwise, a normal window must be placed inside the content
4248 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004249 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4250 // Status bar panels and the volume dialog are the only windows who can go on
4251 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004252 // permission, so they have the same privileges as the status
4253 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004254 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4255 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4256 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4257 + mRestrictedScreenWidth;
4258 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4259 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004260 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004261 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004262 pf.left = df.left = of.left = cf.left = mStableLeft;
4263 pf.top = df.top = of.top = cf.top = mStableTop;
4264 pf.right = df.right = of.right = cf.right = mStableRight;
4265 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004266 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004267 pf.left = mContentLeft;
4268 pf.top = mContentTop;
4269 pf.right = mContentRight;
4270 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004271 if (win.isVoiceInteraction()) {
4272 df.left = of.left = cf.left = mVoiceContentLeft;
4273 df.top = of.top = cf.top = mVoiceContentTop;
4274 df.right = of.right = cf.right = mVoiceContentRight;
4275 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4276 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004277 df.left = of.left = cf.left = mDockLeft;
4278 df.top = of.top = cf.top = mDockTop;
4279 df.right = of.right = cf.right = mDockRight;
4280 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004281 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004282 df.left = of.left = cf.left = mContentLeft;
4283 df.top = of.top = cf.top = mContentTop;
4284 df.right = of.right = cf.right = mContentRight;
4285 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004286 }
4287 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4288 vf.left = mCurLeft;
4289 vf.top = mCurTop;
4290 vf.right = mCurRight;
4291 vf.bottom = mCurBottom;
4292 } else {
4293 vf.set(cf);
4294 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004295 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004296 }
4297 }
Craig Mautner69b08182012-09-05 13:07:13 -07004298
Craig Mautnerb816bed2013-07-23 10:26:17 -07004299 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4300 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004301 df.left = df.top = -10000;
4302 df.right = df.bottom = 10000;
4303 if (attrs.type != TYPE_WALLPAPER) {
4304 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4305 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4306 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004307 }
4308
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004309 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4310 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004311 // We only want to apply outsets to certain types of windows. For example, we never want to
4312 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004313 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004314 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004315 osf = mTmpOutsetFrame;
4316 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4317 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4318 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004319 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004320 if (rotation == Surface.ROTATION_0) {
4321 osf.bottom += outset;
4322 } else if (rotation == Surface.ROTATION_90) {
4323 osf.right += outset;
4324 } else if (rotation == Surface.ROTATION_180) {
4325 osf.top -= outset;
4326 } else if (rotation == Surface.ROTATION_270) {
4327 osf.left -= outset;
4328 }
4329 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4330 + " with rotation " + rotation + ", result: " + osf);
4331 }
4332 }
4333
Craig Mautnereda67292013-04-28 13:50:14 -07004334 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004335 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004336 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004337 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004338 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004339 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004340 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004341 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004342 + " sf=" + sf.toShortString()
4343 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004344
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004345 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004346
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004347 // Dock windows carve out the bottom of the screen, so normal windows
4348 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004349 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4350 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004351 setLastInputMethodWindowLw(null, null);
4352 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004353 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004354 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4355 && !win.getGivenInsetsPendingLw()) {
4356 offsetVoiceInputWindowLw(win);
4357 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004358 }
4359
satok1bc0a492012-04-25 22:47:12 +09004360 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004361 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004362 top += win.getGivenContentInsetsLw().top;
4363 if (mContentBottom > top) {
4364 mContentBottom = top;
4365 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004366 if (mVoiceContentBottom > top) {
4367 mVoiceContentBottom = top;
4368 }
satok1bc0a492012-04-25 22:47:12 +09004369 top = win.getVisibleFrameLw().top;
4370 top += win.getGivenVisibleInsetsLw().top;
4371 if (mCurBottom > top) {
4372 mCurBottom = top;
4373 }
Craig Mautnereda67292013-04-28 13:50:14 -07004374 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004375 + mDockBottom + " mContentBottom="
4376 + mContentBottom + " mCurBottom=" + mCurBottom);
4377 }
4378
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004379 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004380 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004381 top += win.getGivenContentInsetsLw().top;
4382 if (mVoiceContentBottom > top) {
4383 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004384 }
4385 }
4386
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004387 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004388 @Override
4389 public void finishLayoutLw() {
4390 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004391 }
4392
4393 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004394 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004395 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004396 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004397 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004398 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004399 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004400 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004401 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004402 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004403 mForcingShowNavBar = false;
4404 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004405
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004406 mHideLockScreen = false;
4407 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004408 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004409 mShowingLockscreen = false;
4410 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004411 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004412 mKeyguardSecure = isKeyguardSecure();
4413 mKeyguardSecureIncludingHidden = mKeyguardSecure
4414 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004415 }
4416
4417 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004418 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004419 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4420 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004421 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4422 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004423 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004424 if (mTopFullscreenOpaqueWindowState == null
4425 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4426 mForcingShowNavBar = true;
4427 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004428 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004429 if (attrs.type == TYPE_STATUS_BAR) {
4430 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4431 mForceStatusBarFromKeyguard = true;
4432 }
4433 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4434 mForceStatusBarTransparent = true;
4435 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004436 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004437
4438 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4439 && attrs.type < FIRST_SYSTEM_WINDOW;
4440 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4441 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4442
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004443 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004444 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004445 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004446 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004447 mForceStatusBarFromKeyguard = true;
4448 } else {
4449 mForceStatusBar = true;
4450 }
4451 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004452 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004453 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004454 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004455 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004456 // If the lockscreen was showing when the dream started then wait
4457 // for the dream to draw before hiding the lockscreen.
4458 if (!mDreamingLockscreen
4459 || (win.isVisibleLw() && win.hasDrawnLw())) {
4460 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004461 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004462 }
4463 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004464
Yohei Yukawad1a09222015-06-30 16:22:05 -07004465 final IApplicationToken appToken = win.getAppToken();
4466
4467 // For app windows that are not attached, we decide if all windows in the app they
4468 // represent should be hidden or if we should hide the lockscreen. For attached app
4469 // windows we defer the decision to the window it is attached to.
4470 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004471 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004472 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004473 mAppsToBeHidden.remove(appToken);
4474 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004475 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004476 if (dismissKeyguard && !mKeyguardSecure) {
4477 mAppsThatDismissKeyguard.add(appToken);
Selim Cinek90b5e072015-08-28 17:05:56 -07004478 } else if (win.isDrawnLw() || win.hasAppShownWindows()) {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004479 mWinShowWhenLocked = win;
4480 mHideLockScreen = true;
4481 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004482 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004483 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004484 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004485 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004486 mAppsToBeHidden.add(appToken);
4487 } else {
4488 mAppsToBeHidden.remove(appToken);
4489 }
4490 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004491 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004492 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004493 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004494 if (attrs.x == 0 && attrs.y == 0
4495 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4496 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4497 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4498 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004499 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4500 mTopFullscreenOpaqueOrDimmingWindowState = win;
4501 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004502 if (!mAppsThatDismissKeyguard.isEmpty() &&
4503 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4504 if (DEBUG_LAYOUT) Slog.v(TAG,
4505 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004506 mDismissKeyguard = (mWinDismissingKeyguard == win
4507 && mSecureDismissingKeyguard == mKeyguardSecure)
4508 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004509 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004510 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004511 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Selim Cinek90b5e072015-08-28 17:05:56 -07004512 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked
4513 && (win.isDrawnLw() || win.hasAppShownWindows())) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004514 if (DEBUG_LAYOUT) Slog.v(TAG,
4515 "Setting mHideLockScreen to true by win " + win);
4516 mHideLockScreen = true;
4517 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004518 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004519 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004520 mAllowLockscreenWhenOn = true;
4521 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004522 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004523
4524 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004525 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4526 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004527 win.hideLw(false);
4528 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004529 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004530 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4531 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4532 // that is being hidden in an animation - keep the
4533 // keyguard hidden until the new window shows up and
4534 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004535 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004536 mHideLockScreen = true;
4537 mWinShowWhenLocked = win;
4538 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004539 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004540 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4541 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4542 && win.isDimming()) {
4543 mTopFullscreenOpaqueOrDimmingWindowState = win;
4544 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004545 }
4546
4547 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004548 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004549 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004550 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4551 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4552 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004553 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4554 // fullscreen window.
4555 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4556 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4557 mTopFullscreenOpaqueWindowState.hideLw(false);
4558 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4559 }
4560
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004561 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004562 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004563
4564 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4565 ? mTopFullscreenOpaqueWindowState.getAttrs()
4566 : null;
4567
Jeff Brownc8018eb2012-10-29 21:33:27 -07004568 // If we are not currently showing a dream then remember the current
4569 // lockscreen state. We will use this to determine whether the dream
4570 // started while the lockscreen was showing and remember this state
4571 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004572 if (!mShowingDream) {
4573 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004574 if (mDreamingSleepTokenNeeded) {
4575 mDreamingSleepTokenNeeded = false;
4576 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4577 }
4578 } else {
4579 if (!mDreamingSleepTokenNeeded) {
4580 mDreamingSleepTokenNeeded = true;
4581 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4582 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004583 }
4584
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004585 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004586 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004587 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004588 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004589 boolean shouldBeTransparent = mForceStatusBarTransparent
4590 && !mForceStatusBar
4591 && !mForceStatusBarFromKeyguard;
4592 if (!shouldBeTransparent) {
4593 mStatusBarController.setShowTransparent(false /* transparent */);
4594 } else if (!mStatusBar.isVisibleLw()) {
4595 mStatusBarController.setShowTransparent(true /* transparent */);
4596 }
4597 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004598 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004599 if (mStatusBarController.setBarShowingLw(true)) {
4600 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4601 }
Craig Mautner81defc72013-10-29 11:10:42 -07004602 // Maintain fullscreen layout until incoming animation is complete.
4603 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004604 // Transient status bar on the lockscreen is not allowed
4605 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4606 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4607 mLastSystemUiFlags, mLastSystemUiFlags);
4608 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004609 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004610 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004611 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004612 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004613 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004614 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004615 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004616 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004617 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004618 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004619 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004620 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004621 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4622 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004623 if (mStatusBarController.isTransientShowing()) {
4624 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004625 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4626 }
4627 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004628 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004629 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004630 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004631 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004632 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004633 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004634 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004635 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004636 if (mStatusBarController.setBarShowingLw(true)) {
4637 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4638 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004639 }
4640 }
4641 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004642
Craig Mautner81defc72013-10-29 11:10:42 -07004643 if (mTopIsFullscreen != topIsFullscreen) {
4644 if (!topIsFullscreen) {
4645 // Force another layout when status bar becomes fully shown.
4646 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4647 }
4648 mTopIsFullscreen = topIsFullscreen;
4649 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004650
Craig Mautner39834192012-09-02 07:47:24 -07004651 // Hide the key guard if a visible window explicitly specifies that it wants to be
4652 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004653 if (mKeyguardDelegate != null && mStatusBar != null) {
4654 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4655 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004656 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004657 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004658 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004659 changes |= FINISH_LAYOUT_REDO_LAYOUT
4660 | FINISH_LAYOUT_REDO_CONFIG
4661 | FINISH_LAYOUT_REDO_WALLPAPER;
4662 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004663 if (mKeyguardDelegate.isShowing()) {
4664 mHandler.post(new Runnable() {
4665 @Override
4666 public void run() {
4667 mKeyguardDelegate.keyguardDone(false, false);
4668 }
4669 });
4670 }
4671 } else if (mHideLockScreen) {
4672 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004673 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004674 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004675 changes |= FINISH_LAYOUT_REDO_LAYOUT
4676 | FINISH_LAYOUT_REDO_CONFIG
4677 | FINISH_LAYOUT_REDO_WALLPAPER;
4678 }
4679 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004680 mKeyguardHidden = false;
4681 if (setKeyguardOccludedLw(false)) {
4682 changes |= FINISH_LAYOUT_REDO_LAYOUT
4683 | FINISH_LAYOUT_REDO_CONFIG
4684 | FINISH_LAYOUT_REDO_WALLPAPER;
4685 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004686 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4687 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004688 mHandler.post(new Runnable() {
4689 @Override
4690 public void run() {
4691 mKeyguardDelegate.dismiss();
4692 }
4693 });
4694 }
4695 } else {
4696 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004697 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004698 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004699 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004700 changes |= FINISH_LAYOUT_REDO_LAYOUT
4701 | FINISH_LAYOUT_REDO_CONFIG
4702 | FINISH_LAYOUT_REDO_WALLPAPER;
4703 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004704 }
4705 }
Joe Onorato664644d2011-01-23 17:53:23 -08004706
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004707 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004708 // If the navigation bar has been hidden or shown, we need to do another
4709 // layout pass to update that window.
4710 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4711 }
Joe Onorato664644d2011-01-23 17:53:23 -08004712
Mike Lockwood28569302010-01-28 11:54:40 -05004713 // update since mAllowLockscreenWhenOn might have changed
4714 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004715 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004716 }
4717
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004718 /**
Jim Millerab954542014-10-10 18:21:49 -07004719 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004720 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004721 * @return Whether the flags have changed and we have to redo the layout.
4722 */
Jim Millerab954542014-10-10 18:21:49 -07004723 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4724 boolean wasOccluded = mKeyguardOccluded;
4725 boolean showing = mKeyguardDelegate.isShowing();
4726 if (wasOccluded && !isOccluded && showing) {
4727 mKeyguardOccluded = false;
4728 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004729 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4730 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4731 return true;
Jim Millerab954542014-10-10 18:21:49 -07004732 } else if (!wasOccluded && isOccluded && showing) {
4733 mKeyguardOccluded = true;
4734 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004735 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4736 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4737 return true;
4738 } else {
4739 return false;
4740 }
4741 }
4742
4743 private boolean isStatusBarKeyguard() {
4744 return mStatusBar != null
4745 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4746 }
4747
Jose Lima9546b202014-07-02 17:21:51 -07004748 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004749 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004750 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004751 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004752 return false;
4753 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004754 return true;
4755 }
4756
Jose Lima9546b202014-07-02 17:21:51 -07004757 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004758 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004759 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004760 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004761 // If the navigation bar has been hidden or shown, we need to do another
4762 // layout pass to update that window.
4763 return FINISH_LAYOUT_REDO_LAYOUT;
4764 }
4765 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004766 }
4767
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004768 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004769 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004770 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4771 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004772 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4773 if (newLidState == mLidState) {
4774 return;
4775 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004776
Jeff Brownc458ce92012-04-30 14:58:40 -07004777 mLidState = newLidState;
4778 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004779 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004780
4781 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004782 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4783 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004784 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004785 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004786 }
4787 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004788
Michael Wright3818c922014-09-02 13:59:07 -07004789 @Override
4790 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4791 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4792 if (mCameraLensCoverState == lensCoverState) {
4793 return;
4794 }
4795 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4796 lensCoverState == CAMERA_LENS_UNCOVERED) {
4797 Intent intent;
4798 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4799 mKeyguardDelegate.isShowing();
4800 if (keyguardActive) {
4801 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4802 } else {
4803 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4804 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004805 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4806 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004807 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004808 }
4809 mCameraLensCoverState = lensCoverState;
4810 }
4811
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004812 void setHdmiPlugged(boolean plugged) {
4813 if (mHdmiPlugged != plugged) {
4814 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004815 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004816 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004817 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004818 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004819 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004820 }
4821 }
4822
Joe Onoratoea495d42011-04-06 11:41:11 -07004823 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004824 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004825 // watch for HDMI plug messages if the hdmi switch exists
4826 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4827 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4828
Joe Onoratoea495d42011-04-06 11:41:11 -07004829 final String filename = "/sys/class/switch/hdmi/state";
4830 FileReader reader = null;
4831 try {
4832 reader = new FileReader(filename);
4833 char[] buf = new char[15];
4834 int n = reader.read(buf);
4835 if (n > 1) {
4836 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4837 }
4838 } catch (IOException ex) {
4839 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4840 } catch (NumberFormatException ex) {
4841 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4842 } finally {
4843 if (reader != null) {
4844 try {
4845 reader.close();
4846 } catch (IOException ex) {
4847 }
Joe Onoratodc100302011-01-11 17:07:41 -08004848 }
4849 }
4850 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004851 // This dance forces the code in setHdmiPlugged to run.
4852 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4853 mHdmiPlugged = !plugged;
4854 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004855 }
4856
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004857 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004858 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004859
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004860 final Runnable mScreenshotTimeout = new Runnable() {
4861 @Override public void run() {
4862 synchronized (mScreenshotLock) {
4863 if (mScreenshotConnection != null) {
4864 mContext.unbindService(mScreenshotConnection);
4865 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004866 }
Winson Chung9112ec32011-06-27 13:15:32 -07004867 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004868 }
4869 };
4870
4871 // Assume this is called from the Handler thread.
4872 private void takeScreenshot() {
4873 synchronized (mScreenshotLock) {
4874 if (mScreenshotConnection != null) {
4875 return;
4876 }
4877 ComponentName cn = new ComponentName("com.android.systemui",
4878 "com.android.systemui.screenshot.TakeScreenshotService");
4879 Intent intent = new Intent();
4880 intent.setComponent(cn);
4881 ServiceConnection conn = new ServiceConnection() {
4882 @Override
4883 public void onServiceConnected(ComponentName name, IBinder service) {
4884 synchronized (mScreenshotLock) {
4885 if (mScreenshotConnection != this) {
4886 return;
4887 }
4888 Messenger messenger = new Messenger(service);
4889 Message msg = Message.obtain(null, 1);
4890 final ServiceConnection myConn = this;
4891 Handler h = new Handler(mHandler.getLooper()) {
4892 @Override
4893 public void handleMessage(Message msg) {
4894 synchronized (mScreenshotLock) {
4895 if (mScreenshotConnection == myConn) {
4896 mContext.unbindService(mScreenshotConnection);
4897 mScreenshotConnection = null;
4898 mHandler.removeCallbacks(mScreenshotTimeout);
4899 }
4900 }
4901 }
4902 };
4903 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004904 msg.arg1 = msg.arg2 = 0;
4905 if (mStatusBar != null && mStatusBar.isVisibleLw())
4906 msg.arg1 = 1;
4907 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4908 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004909 try {
4910 messenger.send(msg);
4911 } catch (RemoteException e) {
4912 }
4913 }
4914 }
4915 @Override
4916 public void onServiceDisconnected(ComponentName name) {}
4917 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004918 if (mContext.bindServiceAsUser(
4919 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004920 mScreenshotConnection = conn;
4921 mHandler.postDelayed(mScreenshotTimeout, 10000);
4922 }
4923 }
Winson Chung9112ec32011-06-27 13:15:32 -07004924 }
4925
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004926 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004927 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004928 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004929 if (!mSystemBooted) {
4930 // If we have not yet booted, don't let key events do anything.
4931 return 0;
4932 }
4933
Jeff Brown037c33e2014-04-09 00:31:55 -07004934 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004935 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4936 final boolean canceled = event.isCanceled();
4937 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004938
Jeff Brown3122e442010-10-11 23:32:49 -07004939 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004940
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004941 // If screen is off then we treat the case where the keyguard is open but hidden
4942 // the same as if it were open and in front.
4943 // This will prevent any keys other than the power button from waking the screen
4944 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004945 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004946 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004947 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004948 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004949
Jeff Brown40013652012-05-16 21:22:36 -07004950 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004951 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004952 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004953 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004954 }
4955
Jeff Brown037c33e2014-04-09 00:31:55 -07004956 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004957 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004958 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4959 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004960 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004961 // When the device is interactive or the key is injected pass the
4962 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004963 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004964 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004965 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4966 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4967 // to the application but preserve its wake key status to make sure we still move
4968 // from dozing to fully interactive if we would normally go from off to fully
4969 // interactive.
4970 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004971 } else {
4972 // When the screen is off and the key is not injected, determine whether
4973 // to wake the device but don't pass the key to the application.
4974 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004975 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4976 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004977 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004978 }
4979
Justin Kohd378ad72013-04-01 12:18:26 -07004980 // If the key would be handled globally, just return the result, don't worry about special
4981 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004982 if (isValidGlobalKey(keyCode)
4983 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004984 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004985 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07004986 }
Justin Kohd378ad72013-04-01 12:18:26 -07004987 return result;
4988 }
4989
Jeff Brownbae8e772014-06-12 19:59:45 -07004990 boolean useHapticFeedback = down
4991 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4992 && event.getRepeatCount() == 0;
4993
Jeff Brown4d396052010-10-29 21:50:21 -07004994 // Handle special keys.
4995 switch (keyCode) {
4996 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004997 case KeyEvent.KEYCODE_VOLUME_UP:
4998 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004999 if (mUseTvRouting) {
5000 // On TVs volume keys never go to the foreground app
5001 result &= ~ACTION_PASS_TO_USER;
5002 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005003 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
5004 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005005 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005006 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005007 mScreenshotChordVolumeDownKeyTriggered = true;
5008 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
5009 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005010 cancelPendingPowerKeyAction();
5011 interceptScreenshotChord();
5012 }
5013 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005014 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005015 cancelPendingScreenshotChordAction();
5016 }
5017 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
5018 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005019 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005020 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005021 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005022 cancelPendingPowerKeyAction();
5023 cancelPendingScreenshotChordAction();
5024 }
5025 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005026 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005027 cancelPendingScreenshotChordAction();
5028 }
5029 }
Jeff Brown4d396052010-10-29 21:50:21 -07005030 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005031 TelecomManager telecomManager = getTelecommService();
5032 if (telecomManager != null) {
5033 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005034 // If an incoming call is ringing, either VOLUME key means
5035 // "silence ringer". We handle these keys here, rather than
5036 // in the InCallScreen, to make sure we'll respond to them
5037 // even if the InCallScreen hasn't come to the foreground yet.
5038 // Look for the DOWN event here, to agree with the "fallback"
5039 // behavior in the InCallScreen.
5040 Log.i(TAG, "interceptKeyBeforeQueueing:"
5041 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07005042
Santos Cordon6848f722014-05-21 15:22:12 -07005043 // Silence the ringer. (It's safe to call this
5044 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005045 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07005046
Santos Cordon6848f722014-05-21 15:22:12 -07005047 // And *don't* pass this key thru to the current activity
5048 // (which is probably the InCallScreen.)
5049 result &= ~ACTION_PASS_TO_USER;
5050 break;
5051 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005052 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07005053 && (result & ACTION_PASS_TO_USER) == 0) {
5054 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07005055 // the application, just pass it to the session service.
5056
5057 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07005058 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005059 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005060 }
5061 }
5062
RoboErik430fc482014-06-12 15:49:20 -07005063 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08005064 if (mUseTvRouting) {
5065 dispatchDirectAudioEvent(event);
5066 } else {
5067 // If we aren't passing to the user and no one else
5068 // handled it send it to the session manager to
5069 // figure out.
5070 MediaSessionLegacyHelper.getHelper(mContext)
5071 .sendVolumeKeyEvent(event, true);
5072 }
Jeff Brown4d396052010-10-29 21:50:21 -07005073 break;
5074 }
5075 }
5076 break;
5077 }
5078
5079 case KeyEvent.KEYCODE_ENDCALL: {
5080 result &= ~ACTION_PASS_TO_USER;
5081 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005082 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005083 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005084 if (telecomManager != null) {
5085 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005086 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005087 if (interactive && !hungUp) {
5088 mEndCallKeyHandled = false;
5089 mHandler.postDelayed(mEndCallLongPress,
5090 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5091 } else {
5092 mEndCallKeyHandled = true;
5093 }
Jeff Brown4d396052010-10-29 21:50:21 -07005094 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005095 if (!mEndCallKeyHandled) {
5096 mHandler.removeCallbacks(mEndCallLongPress);
5097 if (!canceled) {
5098 if ((mEndcallBehavior
5099 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5100 if (goHome()) {
5101 break;
5102 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005103 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005104 if ((mEndcallBehavior
5105 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5106 mPowerManager.goToSleep(event.getEventTime(),
5107 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5108 isWakeKey = false;
5109 }
Jeff Brown4d396052010-10-29 21:50:21 -07005110 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005111 }
Jeff Brown4d396052010-10-29 21:50:21 -07005112 }
5113 break;
5114 }
5115
5116 case KeyEvent.KEYCODE_POWER: {
5117 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005118 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005119 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005120 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005121 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005122 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005123 }
5124 break;
5125 }
5126
Jeff Brown6212a492014-03-07 13:58:47 -08005127 case KeyEvent.KEYCODE_SLEEP: {
5128 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005129 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005130 if (!mPowerManager.isInteractive()) {
5131 useHapticFeedback = false; // suppress feedback if already non-interactive
5132 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005133 if (down) {
5134 sleepPress(event.getEventTime());
5135 } else {
5136 sleepRelease(event.getEventTime());
5137 }
Jeff Brown6212a492014-03-07 13:58:47 -08005138 break;
5139 }
5140
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -07005141 case KeyEvent.KEYCODE_SOFT_SLEEP: {
5142 result &= ~ACTION_PASS_TO_USER;
5143 isWakeKey = false;
5144 if (!down) {
5145 mPowerManagerInternal.setUserInactiveOverrideFromWindowManager();
5146 }
5147 break;
5148 }
5149
Jeff Brown6212a492014-03-07 13:58:47 -08005150 case KeyEvent.KEYCODE_WAKEUP: {
5151 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005152 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005153 break;
5154 }
5155
Jeff Brown4d396052010-10-29 21:50:21 -07005156 case KeyEvent.KEYCODE_MEDIA_PLAY:
5157 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5158 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005159 case KeyEvent.KEYCODE_HEADSETHOOK:
5160 case KeyEvent.KEYCODE_MUTE:
5161 case KeyEvent.KEYCODE_MEDIA_STOP:
5162 case KeyEvent.KEYCODE_MEDIA_NEXT:
5163 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5164 case KeyEvent.KEYCODE_MEDIA_REWIND:
5165 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005166 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5167 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005168 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5169 // If the global session is active pass all media keys to it
5170 // instead of the active window.
5171 result &= ~ACTION_PASS_TO_USER;
5172 }
Jeff Brown4d396052010-10-29 21:50:21 -07005173 if ((result & ACTION_PASS_TO_USER) == 0) {
5174 // Only do this if we would otherwise not pass it to the user. In that
5175 // case, the PhoneWindow class will do the same thing, except it will
5176 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005177 // Note that we need to make a copy of the key event here because the
5178 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005179 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005180 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5181 new KeyEvent(event));
5182 msg.setAsynchronous(true);
5183 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005184 }
5185 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005186 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005187
Jeff Brown4d396052010-10-29 21:50:21 -07005188 case KeyEvent.KEYCODE_CALL: {
5189 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005190 TelecomManager telecomManager = getTelecommService();
5191 if (telecomManager != null) {
5192 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005193 Log.i(TAG, "interceptKeyBeforeQueueing:"
5194 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005195 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005196
Santos Cordon6848f722014-05-21 15:22:12 -07005197 // And *don't* pass this key thru to the current activity
5198 // (which is presumably the InCallScreen.)
5199 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005200 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005201 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005202 }
Jeff Brown4d396052010-10-29 21:50:21 -07005203 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005204 }
Michael Wright869a67c2014-08-26 19:33:06 -07005205 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5206 // Only do this if we would otherwise not pass it to the user. In that case,
5207 // interceptKeyBeforeDispatching would apply a similar but different policy in
5208 // order to invoke voice assist actions. Note that we need to make a copy of the
5209 // key event here because the original key event will be recycled when we return.
5210 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5211 mBroadcastWakeLock.acquire();
5212 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5213 keyguardActive ? 1 : 0, 0);
5214 msg.setAsynchronous(true);
5215 msg.sendToTarget();
5216 }
5217 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005218 }
Jeff Brown26875502014-01-30 21:47:47 -08005219
Jeff Brownbae8e772014-06-12 19:59:45 -07005220 if (useHapticFeedback) {
5221 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5222 }
5223
Jeff Brown26875502014-01-30 21:47:47 -08005224 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005225 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005226 }
Bryce Lee584a4452014-10-21 15:55:55 -07005227
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005228 return result;
5229 }
5230
Jeff Brown1c2e4942012-11-06 16:32:01 -08005231 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005232 * Returns true if the key can have global actions attached to it.
5233 * We reserve all power management keys for the system since they require
5234 * very careful handling.
5235 */
5236 private static boolean isValidGlobalKey(int keyCode) {
5237 switch (keyCode) {
5238 case KeyEvent.KEYCODE_POWER:
5239 case KeyEvent.KEYCODE_WAKEUP:
5240 case KeyEvent.KEYCODE_SLEEP:
5241 return false;
5242 default:
5243 return true;
5244 }
5245 }
5246
5247 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005248 * When the screen is off we ignore some keys that might otherwise typically
5249 * be considered wake keys. We filter them out here.
5250 *
5251 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5252 * is always considered a wake key.
5253 */
5254 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5255 switch (keyCode) {
5256 // ignore volume keys unless docked
5257 case KeyEvent.KEYCODE_VOLUME_UP:
5258 case KeyEvent.KEYCODE_VOLUME_DOWN:
5259 case KeyEvent.KEYCODE_VOLUME_MUTE:
5260 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5261
5262 // ignore media and camera keys
5263 case KeyEvent.KEYCODE_MUTE:
5264 case KeyEvent.KEYCODE_HEADSETHOOK:
5265 case KeyEvent.KEYCODE_MEDIA_PLAY:
5266 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5267 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5268 case KeyEvent.KEYCODE_MEDIA_STOP:
5269 case KeyEvent.KEYCODE_MEDIA_NEXT:
5270 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5271 case KeyEvent.KEYCODE_MEDIA_REWIND:
5272 case KeyEvent.KEYCODE_MEDIA_RECORD:
5273 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005274 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005275 case KeyEvent.KEYCODE_CAMERA:
5276 return false;
5277 }
5278 return true;
5279 }
5280
5281
Jeff Brown56194eb2011-03-02 19:23:13 -08005282 /** {@inheritDoc} */
5283 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005284 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5285 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005286 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5287 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005288 return 0;
5289 }
Michael Wright70af00a2014-09-03 19:30:20 -07005290 }
Bryce Lee5c138322014-11-03 08:26:09 -08005291
Michael Wright70af00a2014-09-03 19:30:20 -07005292 if (shouldDispatchInputWhenNonInteractive()) {
5293 return ACTION_PASS_TO_USER;
5294 }
Bryce Lee5c138322014-11-03 08:26:09 -08005295
Bryce Lee812d7022014-11-10 13:33:28 -08005296 // If we have not passed the action up and we are in theater mode without dreaming,
5297 // there will be no dream to intercept the touch and wake into ambient. The device should
5298 // wake up in this case.
5299 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005300 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5301 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005302 }
5303
Jeff Brown037c33e2014-04-09 00:31:55 -07005304 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005305 }
5306
Michael Wright70af00a2014-09-03 19:30:20 -07005307 private boolean shouldDispatchInputWhenNonInteractive() {
Michael Wright2ccf0c82015-08-04 23:03:03 +01005308 if (mDisplay == null || mDisplay.getState() == Display.STATE_OFF) {
5309 return false;
5310 }
5311 // Send events to keyguard while the screen is on and it's showing.
5312 if (isKeyguardShowingAndNotOccluded()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005313 return true;
5314 }
5315
5316 // Send events to a dozing dream even if the screen is off since the dream
5317 // is in control of the state of the screen.
5318 IDreamManager dreamManager = getDreamManager();
5319
5320 try {
5321 if (dreamManager != null && dreamManager.isDreaming()) {
5322 return true;
5323 }
5324 } catch (RemoteException e) {
5325 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5326 }
5327
5328 // Otherwise, consume events since the user can't see what is being
5329 // interacted with.
5330 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005331 }
5332
RoboErik001c59c2015-01-26 15:53:51 -08005333 private void dispatchDirectAudioEvent(KeyEvent event) {
5334 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5335 return;
5336 }
5337 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005338 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5339 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005340 String pkgName = mContext.getOpPackageName();
5341 switch (keyCode) {
5342 case KeyEvent.KEYCODE_VOLUME_UP:
5343 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005344 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005345 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005346 } catch (RemoteException e) {
5347 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5348 }
5349 break;
5350 case KeyEvent.KEYCODE_VOLUME_DOWN:
5351 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005352 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005353 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005354 } catch (RemoteException e) {
5355 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5356 }
5357 break;
5358 case KeyEvent.KEYCODE_VOLUME_MUTE:
5359 try {
5360 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005361 getAudioService().adjustSuggestedStreamVolume(
5362 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005363 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005364 }
5365 } catch (RemoteException e) {
5366 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5367 }
5368 break;
5369 }
5370 }
5371
Jeff Brown40013652012-05-16 21:22:36 -07005372 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5373 if (DEBUG_INPUT) {
5374 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005375 }
5376
Jeff Brown40013652012-05-16 21:22:36 -07005377 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5378 if (DEBUG_INPUT) {
5379 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5380 }
5381
5382 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5383 mHavePendingMediaKeyRepeatWithWakeLock = false;
5384 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5385 }
5386
5387 dispatchMediaKeyWithWakeLockToAudioService(event);
5388
5389 if (event.getAction() == KeyEvent.ACTION_DOWN
5390 && event.getRepeatCount() == 0) {
5391 mHavePendingMediaKeyRepeatWithWakeLock = true;
5392
5393 Message msg = mHandler.obtainMessage(
5394 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5395 msg.setAsynchronous(true);
5396 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5397 } else {
5398 mBroadcastWakeLock.release();
5399 }
5400 }
5401
5402 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5403 mHavePendingMediaKeyRepeatWithWakeLock = false;
5404
5405 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5406 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5407 if (DEBUG_INPUT) {
5408 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5409 }
5410
5411 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5412 mBroadcastWakeLock.release();
5413 }
5414
5415 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5416 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005417 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005418 }
5419 }
5420
Michael Wright869a67c2014-08-26 19:33:06 -07005421 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005422 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5423 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5424 if (dic != null) {
5425 try {
5426 dic.exitIdle("voice-search");
5427 } catch (RemoteException e) {
5428 }
5429 }
Michael Wright869a67c2014-08-26 19:33:06 -07005430 Intent voiceIntent =
5431 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5432 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005433 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005434 mBroadcastWakeLock.release();
5435 }
5436
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005437 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005438 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005439 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005440 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5441 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5442 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005443 } else {
5444 try {
5445 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5446 ServiceManager.getService(Context.UI_MODE_SERVICE));
5447 mUiMode = uiModeService.getCurrentModeType();
5448 } catch (RemoteException e) {
5449 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005450 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005451 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005452 synchronized (mLock) {
5453 updateOrientationListenerLp();
5454 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005455 }
5456 };
5457
Jeff Brown6aaf2952012-10-05 16:01:08 -07005458 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5459 @Override
5460 public void onReceive(Context context, Intent intent) {
5461 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005462 if (mKeyguardDelegate != null) {
5463 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005464 }
5465 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005466 if (mKeyguardDelegate != null) {
5467 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005468 }
5469 }
5470 }
5471 };
5472
Christopher Tate5e08af02012-09-21 17:17:22 -07005473 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5474 @Override
5475 public void onReceive(Context context, Intent intent) {
5476 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5477 // tickle the settings observer: this first ensures that we're
5478 // observing the relevant settings for the newly-active user,
5479 // and then updates our own bookkeeping based on the now-
5480 // current user.
5481 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005482
5483 // force a re-application of focused window sysui visibility.
5484 // the window may never have been shown for this user
5485 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005486 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005487 mLastSystemUiFlags = 0;
5488 updateSystemUiVisibilityLw();
5489 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005490 }
5491 }
5492 };
5493
Adrian Roosddc8b272015-05-21 16:28:27 -07005494 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005495 @Override
5496 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005497 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5498 if (!isUserSetupComplete()) {
5499 // Swipe-up for navigation bar is disabled during setup
5500 return;
5501 }
5502 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5503 mNavigationBarController.showTransient();
5504 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005505 }
5506 };
5507
John Spurlocke1f366f2013-08-05 12:22:40 -04005508 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005509 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005510 if (!isUserSetupComplete()) {
5511 // Swipe-up for navigation bar is disabled during setup
5512 return;
5513 }
John Spurlock27735a42013-08-14 17:57:38 -04005514 boolean sb = mStatusBarController.checkShowTransientBarLw();
5515 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005516 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005517 // Don't show status bar when swiping on already visible navigation bar
5518 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005519 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005520 return;
5521 }
John Spurlock27735a42013-08-14 17:57:38 -04005522 if (sb) mStatusBarController.showTransient();
5523 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005524 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005525 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005526 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005527 }
5528 }
5529
Jeff Brown3ee549c2014-09-22 20:14:39 -07005530 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005531 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005532 public void startedGoingToSleep(int why) {
5533 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005534 if (mKeyguardDelegate != null) {
5535 mKeyguardDelegate.onStartedGoingToSleep(why);
5536 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005537 }
5538
5539 // Called on the PowerManager's Notifier thread.
5540 @Override
5541 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005542 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005543 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005544 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005545
5546 // We must get this work done here because the power manager will drop
5547 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005548 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005549 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005550 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005551 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005552 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005553 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005554 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005555 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005556 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005557 }
5558
Jeff Brown3ee549c2014-09-22 20:14:39 -07005559 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005560 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005561 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005562 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005563 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005564
Jeff Brown3ee549c2014-09-22 20:14:39 -07005565 // Since goToSleep performs these functions synchronously, we must
5566 // do the same here. We cannot post this work to a handler because
5567 // that might cause it to become reordered with respect to what
5568 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005569 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005570 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005571
Jeff Browna20dda42014-05-27 20:57:24 -07005572 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005573 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005574 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005575 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005576
Jim Miller5ecd8112013-01-09 18:50:26 -08005577 if (mKeyguardDelegate != null) {
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005578 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005579 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005580 }
5581
Jeff Brown416c49c2015-05-26 19:50:18 -07005582 // Called on the PowerManager's Notifier thread.
5583 @Override
5584 public void finishedWakingUp() {
5585 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5586 }
5587
5588 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005589 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005590 }
5591
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005592 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005593 final boolean theaterModeEnabled = isTheaterModeEnabled();
5594 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005595 return false;
5596 }
5597
Bryce Leed3896842015-06-23 17:06:51 -07005598 if (theaterModeEnabled) {
5599 Settings.Global.putInt(mContext.getContentResolver(),
5600 Settings.Global.THEATER_MODE_ON, 0);
5601 }
5602
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005603 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005604 return true;
5605 }
5606
Jeff Brown36c4db82014-09-19 12:05:31 -07005607 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005608 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005609 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005610 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005611 }
5612
Jeff Brown36c4db82014-09-19 12:05:31 -07005613 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005614 if (mKeyguardDelegate != null) {
5615 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5616 }
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005617 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005618 }
5619
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005620 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5621 // as well as enabling the orientation change logic/sensor.
5622 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5623 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005624 }
5625
5626 // Called on the DisplayManager's DisplayPowerController thread.
5627 @Override
5628 public void screenTurnedOff() {
5629 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5630
Jeff Brown48d1b142015-06-10 16:36:03 -07005631 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005632 synchronized (mLock) {
5633 mScreenOnEarly = false;
5634 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005635 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005636 mWindowManagerDrawComplete = false;
5637 mScreenOnListener = null;
5638 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005639
5640 if (mKeyguardDelegate != null) {
5641 mKeyguardDelegate.onScreenTurnedOff();
5642 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005643 }
5644 }
5645
Jeff Brown3ee549c2014-09-22 20:14:39 -07005646 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005647 @Override
5648 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005649 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005650
Jeff Brown48d1b142015-06-10 16:36:03 -07005651 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005652 synchronized (mLock) {
5653 mScreenOnEarly = true;
5654 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005655 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005656 mWindowManagerDrawComplete = false;
5657 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005658
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005659 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005660 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5661 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005662 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5663 } else {
5664 if (DEBUG_WAKEUP) Slog.d(TAG,
5665 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5666 finishKeyguardDrawn();
5667 }
5668 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005669 }
5670
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005671 // Called on the DisplayManager's DisplayPowerController thread.
5672 @Override
5673 public void screenTurnedOn() {
5674 synchronized (mLock) {
5675 if (mKeyguardDelegate != null) {
5676 mKeyguardDelegate.onScreenTurnedOn();
5677 }
5678 }
5679 }
5680
Jeff Brown36c4db82014-09-19 12:05:31 -07005681 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005682 synchronized (mLock) {
5683 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005684 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005685 }
5686
Jeff Brown36c4db82014-09-19 12:05:31 -07005687 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005688 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005689
5690 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005691 }
5692
Craig Mautner8a0da012014-05-31 15:13:37 -07005693 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005694 synchronized (mLock) {
5695 // We have just finished drawing screen content. Since the orientation listener
5696 // gets only installed when all windows are drawn, we try to install it again.
5697 updateOrientationListenerLp();
5698 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005699 final ScreenOnListener listener;
5700 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005701 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005702 if (DEBUG_WAKEUP) Slog.d(TAG,
5703 "finishScreenTurningOn: mAwake=" + mAwake
5704 + ", mScreenOnEarly=" + mScreenOnEarly
5705 + ", mScreenOnFully=" + mScreenOnFully
5706 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5707 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5708
5709 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5710 || (mAwake && !mKeyguardDrawComplete)) {
5711 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005712 }
5713
Jeff Brown3ee549c2014-09-22 20:14:39 -07005714 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5715 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005716 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005717 mScreenOnFully = true;
5718
5719 // Remember the first time we draw the keyguard so we know when we're done with
5720 // the main part of booting and can enable the screen and hide boot messages.
5721 if (!mKeyguardDrawnOnce && mAwake) {
5722 mKeyguardDrawnOnce = true;
5723 enableScreen = true;
5724 if (mBootMessageNeedsHiding) {
5725 mBootMessageNeedsHiding = false;
5726 hideBootMessages();
5727 }
5728 } else {
5729 enableScreen = false;
5730 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005731 }
5732
Jeff Brown3ee549c2014-09-22 20:14:39 -07005733 if (listener != null) {
5734 listener.onScreenOn();
5735 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005736
Jeff Brown3ee549c2014-09-22 20:14:39 -07005737 if (enableScreen) {
5738 try {
5739 mWindowManager.enableScreenIfNeeded();
5740 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005741 }
Craig Mautnera631d492014-08-05 15:16:01 -07005742 }
5743 }
5744
5745 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005746 synchronized (mLock) {
5747 if (!mKeyguardDrawnOnce) {
5748 mBootMessageNeedsHiding = true;
5749 return; // keyguard hasn't drawn the first time yet, not done booting
5750 }
Craig Mautnera631d492014-08-05 15:16:01 -07005751 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005752
5753 if (mBootMsgDialog != null) {
5754 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5755 mBootMsgDialog.dismiss();
5756 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005757 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005758 }
5759
5760 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005761 public boolean isScreenOn() {
5762 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005763 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005764
Dianne Hackborn08743722009-12-21 12:16:51 -08005765 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005766 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005767 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005768 if (mKeyguardDelegate != null) {
5769 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005770 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005771 }
5772
5773 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005774 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005775 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005776 if (mKeyguardDelegate != null) {
5777 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005778 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005779 }
5780
Jim Millerab954542014-10-10 18:21:49 -07005781 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005782 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005783 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005784 }
5785
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005786 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005787 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005788 public boolean isKeyguardLocked() {
5789 return keyguardOn();
5790 }
5791
5792 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005793 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005794 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005795 if (mKeyguardDelegate == null) return false;
5796 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005797 }
5798
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005799 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005800 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005801 public boolean isKeyguardShowingOrOccluded() {
5802 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5803 }
5804
5805 /** {@inheritDoc} */
5806 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005807 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005808 if (mKeyguardDelegate == null) return false;
5809 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005810 }
5811
Jose Lima9546b202014-07-02 17:21:51 -07005812 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005813 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005814 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005815 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005816 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005817 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005818 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005819 // ask the keyguard to prompt the user to authenticate if necessary
5820 mKeyguardDelegate.dismiss();
5821 }
5822 });
5823 }
5824 }
5825
5826 public void notifyActivityDrawnForKeyguardLw() {
5827 if (mKeyguardDelegate != null) {
5828 mHandler.post(new Runnable() {
5829 @Override
5830 public void run() {
5831 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005832 }
5833 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005834 }
5835 }
5836
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005837 @Override
5838 public boolean isKeyguardDrawnLw() {
5839 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005840 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005841 }
5842 }
5843
Jorim Jaggi0d674622014-05-21 01:34:15 +02005844 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005845 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005846 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005847 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005848 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005849 }
5850 }
5851
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005852 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005853 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005854 }
5855
5856 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005857 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005858 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005859
Jeff Brown01a98dd2011-09-20 15:08:29 -07005860 @Override
5861 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005862 if (false) {
5863 Slog.v(TAG, "rotationForOrientationLw(orient="
5864 + orientation + ", last=" + lastRotation
5865 + "); user=" + mUserRotation + " "
5866 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5867 ? "USER_ROTATION_LOCKED" : "")
5868 );
5869 }
5870
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005871 if (mForceDefaultOrientation) {
5872 return Surface.ROTATION_0;
5873 }
5874
The Android Open Source Project0727d222009-03-11 12:11:58 -07005875 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005876 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5877 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005878 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005879 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005880
Jeff Browndec6cf42011-11-15 14:08:20 -08005881 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005882 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005883 // Ignore sensor when lid switch is open and rotation is forced.
5884 preferredRotation = mLidOpenRotation;
5885 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005886 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005887 // Ignore sensor when in car dock unless explicitly enabled.
5888 // This case can override the behavior of NOSENSOR, and can also
5889 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005890 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005891 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005892 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5893 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5894 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005895 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005896 // Ignore sensor when in desk dock unless explicitly enabled.
5897 // This case can override the behavior of NOSENSOR, and can also
5898 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005899 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005900 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005901 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5902 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005903 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005904 preferredRotation = mDemoHdmiRotation;
5905 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5906 && mUndockedHdmiRotation >= 0) {
5907 // Ignore sensor when plugged into HDMI and an undocked orientation has
5908 // been specified in the configuration (only for legacy devices without
5909 // full multi-display support).
5910 // Note that the dock orientation overrides the HDMI orientation.
5911 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005912 } else if (mDemoRotationLock) {
5913 // Ignore sensor when demo rotation lock is enabled.
5914 // Note that the dock orientation and HDMI rotation lock override this.
5915 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005916 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5917 // Application just wants to remain locked in the last rotation.
5918 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005919 } else if (!mSupportAutoRotation) {
5920 // If we don't support auto-rotation then bail out here and ignore
5921 // the sensor and any rotation lock settings.
5922 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005923 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005924 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005925 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5926 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5927 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5928 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005929 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5930 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5931 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5932 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5933 // Otherwise, use sensor only if requested by the application or enabled
5934 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005935 if (mAllowAllRotations < 0) {
5936 // Can't read this during init() because the context doesn't
5937 // have display metrics at that time so we cannot determine
5938 // tablet vs. phone then.
5939 mAllowAllRotations = mContext.getResources().getBoolean(
5940 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5941 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005942 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005943 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005944 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5945 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005946 preferredRotation = sensorRotation;
5947 } else {
5948 preferredRotation = lastRotation;
5949 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005950 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5951 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5952 // Apply rotation lock. Does not apply to NOSENSOR.
5953 // The idea is that the user rotation expresses a weak preference for the direction
5954 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5955 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005956 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005957 } else {
5958 // No overriding preference.
5959 // We will do exactly what the application asked us to do.
5960 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005961 }
5962
Dianne Hackborne5439f22010-10-02 16:53:50 -07005963 switch (orientation) {
5964 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005965 // Return portrait unless overridden.
5966 if (isAnyPortrait(preferredRotation)) {
5967 return preferredRotation;
5968 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005969 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005970
Jeff Brown01a98dd2011-09-20 15:08:29 -07005971 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005972 // Return landscape unless overridden.
5973 if (isLandscapeOrSeascape(preferredRotation)) {
5974 return preferredRotation;
5975 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005976 return mLandscapeRotation;
5977
5978 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005979 // Return reverse portrait unless overridden.
5980 if (isAnyPortrait(preferredRotation)) {
5981 return preferredRotation;
5982 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005983 return mUpsideDownRotation;
5984
5985 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005986 // Return seascape unless overridden.
5987 if (isLandscapeOrSeascape(preferredRotation)) {
5988 return preferredRotation;
5989 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005990 return mSeascapeRotation;
5991
5992 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005993 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005994 // Return either landscape rotation.
5995 if (isLandscapeOrSeascape(preferredRotation)) {
5996 return preferredRotation;
5997 }
5998 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005999 return lastRotation;
6000 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006001 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006002
Jeff Brown01a98dd2011-09-20 15:08:29 -07006003 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006004 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07006005 // Return either portrait rotation.
6006 if (isAnyPortrait(preferredRotation)) {
6007 return preferredRotation;
6008 }
6009 if (isAnyPortrait(lastRotation)) {
6010 return lastRotation;
6011 }
6012 return mPortraitRotation;
6013
6014 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07006015 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
6016 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07006017 if (preferredRotation >= 0) {
6018 return preferredRotation;
6019 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07006020 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05006021 }
6022 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006023 }
6024
Jeff Brown01a98dd2011-09-20 15:08:29 -07006025 @Override
6026 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
6027 switch (orientation) {
6028 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
6029 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
6030 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
6031 return isAnyPortrait(rotation);
6032
6033 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
6034 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
6035 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
6036 return isLandscapeOrSeascape(rotation);
6037
6038 default:
6039 return true;
6040 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006041 }
6042
Jeff Brownc0347aa2011-09-23 17:26:09 -07006043 @Override
6044 public void setRotationLw(int rotation) {
6045 mOrientationListener.setCurrentRotation(rotation);
6046 }
6047
Jeff Brown01a98dd2011-09-20 15:08:29 -07006048 private boolean isLandscapeOrSeascape(int rotation) {
6049 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006050 }
6051
Jeff Brown01a98dd2011-09-20 15:08:29 -07006052 private boolean isAnyPortrait(int rotation) {
6053 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006054 }
6055
Jose Lima9546b202014-07-02 17:21:51 -07006056 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006057 public int getUserRotationMode() {
6058 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07006059 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
6060 WindowManagerPolicy.USER_ROTATION_FREE :
6061 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006062 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006063
6064 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07006065 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006066 public void setUserRotationMode(int mode, int rot) {
6067 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006068
6069 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006070 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006071 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006072 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006073 rot,
6074 UserHandle.USER_CURRENT);
6075 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006076 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006077 0,
6078 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006079 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006080 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006081 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006082 1,
6083 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006084 }
6085 }
6086
Jose Lima9546b202014-07-02 17:21:51 -07006087 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006088 public void setSafeMode(boolean safeMode) {
6089 mSafeMode = safeMode;
6090 performHapticFeedbackLw(null, safeMode
6091 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6092 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006093 }
Craig Mautnereda67292013-04-28 13:50:14 -07006094
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006095 static long[] getLongIntArray(Resources r, int resid) {
6096 int[] ar = r.getIntArray(resid);
6097 if (ar == null) {
6098 return null;
6099 }
6100 long[] out = new long[ar.length];
6101 for (int i=0; i<ar.length; i++) {
6102 out[i] = ar[i];
6103 }
6104 return out;
6105 }
Craig Mautnereda67292013-04-28 13:50:14 -07006106
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006107 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006108 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006109 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006110 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006111 mKeyguardDelegate.onSystemReady();
6112
Michael Wright3818c922014-09-02 13:59:07 -07006113 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006114 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006115 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006116 synchronized (mLock) {
6117 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006118 mSystemReady = true;
6119 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006120 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006121 public void run() {
6122 updateSettings();
6123 }
6124 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006125
6126 bindKeyguardNow = mDeferBindKeyguard;
6127 if (bindKeyguardNow) {
6128 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6129 mDeferBindKeyguard = false;
6130 }
6131 }
6132
6133 if (bindKeyguardNow) {
6134 mKeyguardDelegate.bindService(mContext);
6135 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006136 }
Michael Wrighta4d22d72015-09-16 23:19:26 +01006137 mSystemGestures.systemReady();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006138 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006139
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006140 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006141 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006142 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006143 boolean bindKeyguardNow = false;
6144 synchronized (mLock) {
6145 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6146 // in systemReady if not.
6147 if (mKeyguardDelegate != null) {
6148 bindKeyguardNow = true;
6149 } else {
6150 // Because mKeyguardDelegate is null, we know that the synchronized block in
6151 // systemReady didn't run yet and setting this will actually have an effect.
6152 mDeferBindKeyguard = true;
6153 }
6154 }
6155 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006156 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006157 mKeyguardDelegate.onBootCompleted();
6158 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006159 synchronized (mLock) {
6160 mSystemBooted = true;
6161 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006162 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006163 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006164 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006165 }
6166
Dianne Hackborn661cd522011-08-22 00:26:20 -07006167 ProgressDialog mBootMsgDialog = null;
6168
6169 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006170 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006171 public void showBootMessage(final CharSequence msg, final boolean always) {
6172 mHandler.post(new Runnable() {
6173 @Override public void run() {
6174 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006175 int theme;
6176 if (mContext.getPackageManager().hasSystemFeature(
6177 PackageManager.FEATURE_WATCH)) {
6178 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6179 } else if (mContext.getPackageManager().hasSystemFeature(
6180 PackageManager.FEATURE_TELEVISION)) {
6181 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6182 } else {
6183 theme = 0;
6184 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006185
6186 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006187 // This dialog will consume all events coming in to
6188 // it, to avoid it trying to do things too early in boot.
6189 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6190 return true;
6191 }
6192 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6193 return true;
6194 }
6195 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6196 return true;
6197 }
6198 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6199 return true;
6200 }
6201 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6202 return true;
6203 }
6204 @Override public boolean dispatchPopulateAccessibilityEvent(
6205 AccessibilityEvent event) {
6206 return true;
6207 }
6208 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006209 if (mContext.getPackageManager().isUpgrade()) {
6210 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6211 } else {
6212 mBootMsgDialog.setTitle(R.string.android_start_title);
6213 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006214 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6215 mBootMsgDialog.setIndeterminate(true);
6216 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006217 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006218 mBootMsgDialog.getWindow().addFlags(
6219 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6220 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6221 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006222 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6223 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6224 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006225 mBootMsgDialog.setCancelable(false);
6226 mBootMsgDialog.show();
6227 }
6228 mBootMsgDialog.setMessage(msg);
6229 }
6230 });
6231 }
6232
6233 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006234 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006235 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006236 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006237 }
6238
Mike Lockwood28569302010-01-28 11:54:40 -05006239 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006240 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006241 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006242 // ***************************************
6243 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6244 // ***************************************
6245 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6246 // WITH ITS LOCKS HELD.
6247 //
6248 // This code must be VERY careful about the locks
6249 // it acquires.
6250 // In fact, the current code acquires way too many,
6251 // and probably has lurking deadlocks.
6252
Mike Lockwood28569302010-01-28 11:54:40 -05006253 synchronized (mScreenLockTimeout) {
6254 if (mLockScreenTimerActive) {
6255 // reset the timer
6256 mHandler.removeCallbacks(mScreenLockTimeout);
6257 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6258 }
6259 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006260 }
6261
Adam Cohenf7522022012-10-03 20:03:18 -07006262 class ScreenLockTimeout implements Runnable {
6263 Bundle options;
6264
6265 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006266 public void run() {
6267 synchronized (this) {
6268 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006269 if (mKeyguardDelegate != null) {
6270 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006271 }
Mike Lockwood28569302010-01-28 11:54:40 -05006272 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006273 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006274 }
6275 }
Mike Lockwood28569302010-01-28 11:54:40 -05006276
Adam Cohenf7522022012-10-03 20:03:18 -07006277 public void setLockOptions(Bundle options) {
6278 this.options = options;
6279 }
6280 }
6281
6282 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6283
Jose Lima9546b202014-07-02 17:21:51 -07006284 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006285 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006286 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6287 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006288 if (options != null) {
6289 // In case multiple calls are made to lockNow, we don't wipe out the options
6290 // until the runnable actually executes.
6291 mScreenLockTimeout.setLockOptions(options);
6292 }
Jim Miller93c518e2012-01-17 15:55:31 -08006293 mHandler.post(mScreenLockTimeout);
6294 }
6295
Mike Lockwood28569302010-01-28 11:54:40 -05006296 private void updateLockScreenTimeout() {
6297 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006298 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006299 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006300 if (mLockScreenTimerActive != enable) {
6301 if (enable) {
6302 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6303 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6304 } else {
6305 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6306 mHandler.removeCallbacks(mScreenLockTimeout);
6307 }
6308 mLockScreenTimerActive = enable;
6309 }
6310 }
6311 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006312
Jeff Brown061ea992015-04-17 19:55:47 -07006313 private void updateDreamingSleepToken(boolean acquire) {
6314 if (acquire) {
6315 if (mDreamingSleepToken == null) {
6316 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6317 }
6318 } else {
6319 if (mDreamingSleepToken != null) {
6320 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006321 mDreamingSleepToken = null;
6322 }
6323 }
6324 }
6325
6326 private void updateScreenOffSleepToken(boolean acquire) {
6327 if (acquire) {
6328 if (mScreenOffSleepToken == null) {
6329 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6330 }
6331 } else {
6332 if (mScreenOffSleepToken != null) {
6333 mScreenOffSleepToken.release();
6334 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006335 }
6336 }
6337 }
6338
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006339 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006340 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006341 public void enableScreenAfterBoot() {
6342 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006343 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006344 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006345 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006346
Jeff Brownc458ce92012-04-30 14:58:40 -07006347 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006348 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006349 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006350 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006351 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006352 }
Jeff Browna20dda42014-05-27 20:57:24 -07006353
6354 synchronized (mLock) {
6355 updateWakeGestureListenerLp();
6356 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006357 }
6358
Jeff Brown4f5fa282014-06-12 19:19:15 -07006359 void updateUiMode() {
6360 if (mUiModeManager == null) {
6361 mUiModeManager = IUiModeManager.Stub.asInterface(
6362 ServiceManager.getService(Context.UI_MODE_SERVICE));
6363 }
6364 try {
6365 mUiMode = mUiModeManager.getCurrentModeType();
6366 } catch (RemoteException e) {
6367 }
6368 }
6369
Jeff Brown01a98dd2011-09-20 15:08:29 -07006370 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006371 try {
6372 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006373 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6374 } catch (RemoteException e) {
6375 // Ignore
6376 }
6377 }
6378
6379 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6380 try {
6381 //set orientation on WindowManager
6382 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006383 } catch (RemoteException e) {
6384 // Ignore
6385 }
6386 }
6387
Daniel Sandler6396c722013-04-16 20:19:09 -04006388 /**
6389 * Return an Intent to launch the currently active dock app as home. Returns
6390 * null if the standard home should be launched, which is the case if any of the following is
6391 * true:
6392 * <ul>
6393 * <li>The device is not in either car mode or desk mode
6394 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6395 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6396 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6397 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6398 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006399 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006400 */
6401 Intent createHomeDockIntent() {
6402 Intent intent = null;
6403
6404 // What home does is based on the mode, not the dock state. That
6405 // is, when in car mode you should be taken to car home regardless
6406 // of whether we are actually in a car dock.
6407 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6408 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6409 intent = mCarDockIntent;
6410 }
6411 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6412 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6413 intent = mDeskDockIntent;
6414 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006415 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6416 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6417 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6418 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6419 // Always launch dock home from home when watch is docked, if it exists.
6420 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006421 }
6422
6423 if (intent == null) {
6424 return null;
6425 }
6426
6427 ActivityInfo ai = null;
6428 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6429 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006430 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006431 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006432 if (info != null) {
6433 ai = info.activityInfo;
6434 }
6435 if (ai != null
6436 && ai.metaData != null
6437 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6438 intent = new Intent(intent);
6439 intent.setClassName(ai.packageName, ai.name);
6440 return intent;
6441 }
6442
6443 return null;
6444 }
6445
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006446 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6447 if (awakenFromDreams) {
6448 awakenDreams();
6449 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006450
6451 Intent dock = createHomeDockIntent();
6452 if (dock != null) {
6453 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006454 if (fromHomeKey) {
6455 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6456 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006457 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006458 return;
6459 } catch (ActivityNotFoundException e) {
6460 }
6461 }
6462
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006463 Intent intent;
6464
6465 if (fromHomeKey) {
6466 intent = new Intent(mHomeIntent);
6467 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6468 } else {
6469 intent = mHomeIntent;
6470 }
6471
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006472 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006473 }
Craig Mautnereda67292013-04-28 13:50:14 -07006474
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006475 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006476 * goes to the home screen
6477 * @return whether it did anything
6478 */
6479 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006480 if (!isUserSetupComplete()) {
6481 Slog.i(TAG, "Not going home because user setup is in progress.");
6482 return false;
6483 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006484 if (false) {
6485 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006486 try {
6487 ActivityManagerNative.getDefault().stopAppSwitches();
6488 } catch (RemoteException e) {
6489 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006490 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006491 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006492 } else {
6493 // This code brings home to the front or, if it is already
6494 // at the front, puts the device to sleep.
6495 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006496 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6497 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6498 Log.d(TAG, "UTS-TEST-MODE");
6499 } else {
6500 ActivityManagerNative.getDefault().stopAppSwitches();
6501 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006502 Intent dock = createHomeDockIntent();
6503 if (dock != null) {
6504 int result = ActivityManagerNative.getDefault()
6505 .startActivityAsUser(null, null, dock,
6506 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6507 null, null, 0,
6508 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006509 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006510 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6511 return false;
6512 }
6513 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006514 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006515 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006516 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006517 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006518 null, null, 0,
6519 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006520 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006521 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006522 return false;
6523 }
6524 } catch (RemoteException ex) {
6525 // bummer, the activity manager, which is in this process, is dead
6526 }
6527 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006528 return true;
6529 }
Craig Mautnereda67292013-04-28 13:50:14 -07006530
6531 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006532 public void setCurrentOrientationLw(int newOrientation) {
6533 synchronized (mLock) {
6534 if (newOrientation != mCurrentAppOrientation) {
6535 mCurrentAppOrientation = newOrientation;
6536 updateOrientationListenerLp();
6537 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006538 }
6539 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006540
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006541 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6542 if (!isGlobalAccessibilityGestureEnabled()) {
6543 return;
6544 }
6545 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6546 Context.AUDIO_SERVICE);
6547 if (audioManager.isSilentMode()) {
6548 return;
6549 }
6550 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6551 Settings.System.DEFAULT_NOTIFICATION_URI);
6552 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6553 ringTone.play();
6554 }
Craig Mautnereda67292013-04-28 13:50:14 -07006555
Bryce Lee584a4452014-10-21 15:55:55 -07006556 private boolean isTheaterModeEnabled() {
6557 return Settings.Global.getInt(mContext.getContentResolver(),
6558 Settings.Global.THEATER_MODE_ON, 0) == 1;
6559 }
6560
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006561 private boolean isGlobalAccessibilityGestureEnabled() {
6562 return Settings.Global.getInt(mContext.getContentResolver(),
6563 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6564 }
6565
Craig Mautnereda67292013-04-28 13:50:14 -07006566 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006567 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006568 if (!mVibrator.hasVibrator()) {
6569 return false;
6570 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006571 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6572 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006573 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006574 return false;
6575 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006576 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006577 switch (effectId) {
6578 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006579 pattern = mLongPressVibePattern;
6580 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006581 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006582 pattern = mVirtualKeyVibePattern;
6583 break;
6584 case HapticFeedbackConstants.KEYBOARD_TAP:
6585 pattern = mKeyboardTapVibePattern;
6586 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006587 case HapticFeedbackConstants.CLOCK_TICK:
6588 pattern = mClockTickVibePattern;
6589 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006590 case HapticFeedbackConstants.CALENDAR_DATE:
6591 pattern = mCalendarDateVibePattern;
6592 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006593 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006594 pattern = mSafeModeDisabledVibePattern;
6595 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006596 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006597 pattern = mSafeModeEnabledVibePattern;
6598 break;
Mady Mellore8608912015-06-05 09:02:55 -07006599 case HapticFeedbackConstants.CONTEXT_CLICK:
6600 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006601 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006602 default:
6603 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006604 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006605 int owningUid;
6606 String owningPackage;
6607 if (win != null) {
6608 owningUid = win.getOwningUid();
6609 owningPackage = win.getOwningPackage();
6610 } else {
6611 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006612 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006613 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006614 if (pattern.length == 1) {
6615 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006616 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006617 } else {
6618 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006619 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006620 }
6621 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006622 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006623
6624 @Override
6625 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006626 }
6627
Jeff Brownc38c9be2012-10-04 13:16:19 -07006628 @Override
6629 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006630 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006631 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006632 }
6633 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006634
Dianne Hackborndf89e652011-10-06 22:35:11 -07006635 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006636 // If there is no window focused, there will be nobody to handle the events
6637 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006638 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6639 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006640 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006641 return 0;
6642 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006643 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006644 // We are updating at a point where the keyguard has gotten
6645 // focus, but we were last in a state where the top window is
6646 // hiding it. This is probably because the keyguard as been
6647 // shown while the top window was displayed, so we want to ignore
6648 // it here because this is just a very transient change and it
6649 // will quickly lose focus once it correctly gets hidden.
6650 return 0;
6651 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006652
John Spurlock1db8b682014-02-18 11:18:59 -05006653 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006654 & ~mResettingSystemUiFlags
6655 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006656 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006657 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006658 }
Thanh Hai Mai6c009f52015-09-01 16:27:32 -07006659
6660 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6661 tmpVisibility |= StatusBarManager.DISABLE_RECENT;
6662 }
6663
Adrian Rooscd3884d2015-02-18 17:25:23 +01006664 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006665 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006666 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006667 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006668 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006669 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006670 return 0;
6671 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006672 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006673 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006674 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006675 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006676 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006677 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006678 try {
6679 IStatusBarService statusbar = getStatusBarService();
6680 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006681 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006682 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006683 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006684 } catch (RemoteException e) {
6685 // re-acquire status bar service next time it is needed.
6686 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006687 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006688 }
6689 });
6690 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006691 }
6692
Adrian Rooscd3884d2015-02-18 17:25:23 +01006693 private int updateLightStatusBarLw(int vis) {
6694 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6695 ? mStatusBar
6696 : mTopFullscreenOpaqueOrDimmingWindowState;
6697
6698 if (statusColorWin != null) {
6699 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6700 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6701 // its light flag.
6702 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6703 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6704 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6705 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6706 // Otherwise if it's dimming, clear the light flag.
6707 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6708 }
6709 }
6710 return vis;
6711 }
6712
John Spurlock79da8332013-09-20 12:04:47 -04006713 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006714 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006715 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6716 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006717 : mTopFullscreenOpaqueWindowState;
6718 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6719 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6720
John Spurlock27735a42013-08-14 17:57:38 -04006721 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006722 int type = win.getAttrs().type;
6723 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006724 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006725 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6726 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006727 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006728 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6729 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006730 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006731 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6732 }
John Spurlockbd957402013-10-03 11:38:39 -04006733 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006734 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006735
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006736 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006737 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6738 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006739 }
6740
John Spurlock27735a42013-08-14 17:57:38 -04006741 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006742 boolean immersiveSticky =
6743 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006744 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006745 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006746 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006747 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6748 boolean hideStatusBarSysui =
6749 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006750 boolean hideNavBarSysui =
6751 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006752
John Spurlock27735a42013-08-14 17:57:38 -04006753 boolean transientStatusBarAllowed =
6754 mStatusBar != null && (
6755 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006756 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006757 || statusBarHasFocus);
6758
John Spurlockf1a36642013-10-12 17:50:42 -04006759 boolean transientNavBarAllowed =
6760 mNavigationBar != null &&
6761 hideNavBarSysui && immersiveSticky;
6762
Adrian Roosddc8b272015-05-21 16:28:27 -07006763 final long now = SystemClock.uptimeMillis();
6764 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6765 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6766 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6767 // The user performed the panic gesture recently, we're about to hide the bars,
6768 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6769 mPendingPanicGestureUptime = 0;
6770 mStatusBarController.showTransient();
6771 mNavigationBarController.showTransient();
6772 }
6773
John Spurlockf25706f2013-11-07 18:02:43 -05006774 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006775 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006776 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006777 && !transientNavBarAllowed;
6778 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006779 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006780 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006781 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006782 }
John Spurlock27735a42013-08-14 17:57:38 -04006783
Selim Cinekf98702e2015-05-20 22:48:40 -07006784 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6785 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6786 final boolean navAllowedHidden = immersive || immersiveSticky;
6787
Selim Cinekd6623612015-05-22 18:56:22 -07006788 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6789 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006790 // We can't hide the navbar from this window otherwise the input consumer would not get
6791 // the input events.
6792 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6793 }
6794
John Spurlock27735a42013-08-14 17:57:38 -04006795 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6796
6797 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006798 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6799 boolean newImmersiveMode = isImmersiveMode(vis);
6800 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006801 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006802 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6803 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006804 }
John Spurlock27735a42013-08-14 17:57:38 -04006805
John Spurlockf1a36642013-10-12 17:50:42 -04006806 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6807
John Spurlocke1f366f2013-08-05 12:22:40 -04006808 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006809 }
6810
John Spurlockf1a36642013-10-12 17:50:42 -04006811 private void clearClearableFlagsLw() {
6812 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6813 if (newVal != mResettingSystemUiFlags) {
6814 mResettingSystemUiFlags = newVal;
6815 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6816 }
6817 }
6818
6819 private boolean isImmersiveMode(int vis) {
6820 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006821 return mNavigationBar != null
6822 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006823 && (vis & flags) != 0
6824 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006825 }
6826
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006827 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006828 * @return whether the navigation or status bar can be made translucent
6829 *
6830 * This should return true unless touch exploration is not enabled or
6831 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006832 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006833 private boolean areTranslucentBarsAllowed() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04006834 return mTranslucentDecorEnabled;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006835 }
6836
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006837 // Use this instead of checking config_showNavigationBar so that it can be consistently
6838 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006839 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006840 public boolean hasNavigationBar() {
6841 return mHasNavigationBar;
6842 }
6843
satok1bc0a492012-04-25 22:47:12 +09006844 @Override
6845 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6846 mLastInputMethodWindow = ime;
6847 mLastInputMethodTargetWindow = target;
6848 }
6849
Craig Mautnerf1b67412012-09-19 13:18:29 -07006850 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006851 public int getInputMethodWindowVisibleHeightLw() {
6852 return mDockBottom - mCurBottom;
6853 }
6854
6855 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006856 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006857 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006858 if (mKeyguardDelegate != null) {
6859 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006860 }
John Spurlock13451a22012-09-28 14:40:41 -04006861 if (mStatusBarService != null) {
6862 try {
6863 mStatusBarService.setCurrentUser(newUserId);
6864 } catch (RemoteException e) {
6865 // oh well
6866 }
6867 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006868 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006869 }
6870
6871 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006872 public boolean canMagnifyWindow(int windowType) {
6873 switch (windowType) {
6874 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6875 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6876 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6877 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6878 return false;
6879 }
6880 }
6881 return true;
6882 }
6883
6884 @Override
6885 public boolean isTopLevelWindow(int windowType) {
6886 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6887 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6888 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6889 }
6890 return true;
6891 }
6892
Jim Miller4eeb4f62012-11-08 00:04:29 -08006893 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006894 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006895 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006896 pw.print(" mSystemReady="); pw.print(mSystemReady);
6897 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006898 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006899 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006900 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006901 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006902 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6903 || mForceClearedSystemUiFlags != 0) {
6904 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6905 pw.print(Integer.toHexString(mLastSystemUiFlags));
6906 pw.print(" mResettingSystemUiFlags=0x");
6907 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6908 pw.print(" mForceClearedSystemUiFlags=0x");
6909 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006910 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006911 if (mLastFocusNeedsMenu) {
6912 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6913 pw.println(mLastFocusNeedsMenu);
6914 }
Jeff Browna20dda42014-05-27 20:57:24 -07006915 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6916 pw.println(mWakeGestureEnabledSetting);
6917
Jeff Brownbcdfc622014-03-06 19:13:04 -08006918 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006919 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6920 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006921 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6922 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6923 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6924 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006925 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006926 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006927 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6928 pw.print(mCarDockEnablesAccelerometer);
6929 pw.print(" mDeskDockEnablesAccelerometer=");
6930 pw.println(mDeskDockEnablesAccelerometer);
6931 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6932 pw.print(mLidKeyboardAccessibility);
6933 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006934 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006935 pw.print(prefix);
6936 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6937 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006938 pw.print(prefix);
6939 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6940 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006941 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006942 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6943 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6944 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6945 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6946 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6947 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6948 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006949 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6950 pw.print(","); pw.print(mOverscanScreenTop);
6951 pw.print(") "); pw.print(mOverscanScreenWidth);
6952 pw.print("x"); pw.println(mOverscanScreenHeight);
6953 if (mOverscanLeft != 0 || mOverscanTop != 0
6954 || mOverscanRight != 0 || mOverscanBottom != 0) {
6955 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6956 pw.print(" top="); pw.print(mOverscanTop);
6957 pw.print(" right="); pw.print(mOverscanRight);
6958 pw.print(" bottom="); pw.println(mOverscanBottom);
6959 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006960 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6961 pw.print(mRestrictedOverscanScreenLeft);
6962 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6963 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6964 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006965 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6966 pw.print(","); pw.print(mUnrestrictedScreenTop);
6967 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6968 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6969 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6970 pw.print(","); pw.print(mRestrictedScreenTop);
6971 pw.print(") "); pw.print(mRestrictedScreenWidth);
6972 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006973 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6974 pw.print(","); pw.print(mStableFullscreenTop);
6975 pw.print(")-("); pw.print(mStableFullscreenRight);
6976 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006977 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6978 pw.print(","); pw.print(mStableTop);
6979 pw.print(")-("); pw.print(mStableRight);
6980 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006981 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6982 pw.print(","); pw.print(mSystemTop);
6983 pw.print(")-("); pw.print(mSystemRight);
6984 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006985 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6986 pw.print(","); pw.print(mCurTop);
6987 pw.print(")-("); pw.print(mCurRight);
6988 pw.print(","); pw.print(mCurBottom); pw.println(")");
6989 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6990 pw.print(","); pw.print(mContentTop);
6991 pw.print(")-("); pw.print(mContentRight);
6992 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006993 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6994 pw.print(","); pw.print(mVoiceContentTop);
6995 pw.print(")-("); pw.print(mVoiceContentRight);
6996 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006997 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6998 pw.print(","); pw.print(mDockTop);
6999 pw.print(")-("); pw.print(mDockRight);
7000 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07007001 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
7002 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007003 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
7004 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07007005 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
7006 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007007 if (mLastInputMethodWindow != null) {
7008 pw.print(prefix); pw.print("mLastInputMethodWindow=");
7009 pw.println(mLastInputMethodWindow);
7010 }
7011 if (mLastInputMethodTargetWindow != null) {
7012 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
7013 pw.println(mLastInputMethodTargetWindow);
7014 }
7015 if (mStatusBar != null) {
7016 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08007017 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
7018 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007019 }
7020 if (mNavigationBar != null) {
7021 pw.print(prefix); pw.print("mNavigationBar=");
7022 pw.println(mNavigationBar);
7023 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007024 if (mFocusedWindow != null) {
7025 pw.print(prefix); pw.print("mFocusedWindow=");
7026 pw.println(mFocusedWindow);
7027 }
7028 if (mFocusedApp != null) {
7029 pw.print(prefix); pw.print("mFocusedApp=");
7030 pw.println(mFocusedApp);
7031 }
7032 if (mWinDismissingKeyguard != null) {
7033 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
7034 pw.println(mWinDismissingKeyguard);
7035 }
7036 if (mTopFullscreenOpaqueWindowState != null) {
7037 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
7038 pw.println(mTopFullscreenOpaqueWindowState);
7039 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01007040 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
7041 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
7042 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
7043 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08007044 if (mForcingShowNavBar) {
7045 pw.print(prefix); pw.print("mForcingShowNavBar=");
7046 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
7047 pw.println(mForcingShowNavBarLayer);
7048 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007049 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007050 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07007051 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
7052 pw.print(" mForceStatusBarFromKeyguard=");
7053 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007054 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07007055 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007056 pw.print(" mHomePressed="); pw.println(mHomePressed);
7057 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
7058 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
7059 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
7060 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
7061 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
7062 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
7063 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
7064 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
7065 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
7066 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07007067 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
7068 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
7069 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07007070
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07007071 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04007072 mStatusBarController.dump(pw, prefix);
7073 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007074 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007075
Jeff Browna20dda42014-05-27 20:57:24 -07007076 if (mWakeGestureListener != null) {
7077 mWakeGestureListener.dump(pw, prefix);
7078 }
Jeff Brown600f0032014-05-22 17:06:00 -07007079 if (mOrientationListener != null) {
7080 mOrientationListener.dump(pw, prefix);
7081 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007082 if (mBurnInProtectionHelper != null) {
7083 mBurnInProtectionHelper.dump(prefix, pw);
7084 }
Jorim Jaggi84dc08a2015-09-11 17:45:22 -07007085 if (mKeyguardDelegate != null) {
7086 mKeyguardDelegate.dump(prefix, pw);
7087 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007088 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007089}