blob: fe427d36e36b11b04d716138bd0cfc95f5c778e1 [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
Wale Ogunwale3797c222015-10-27 14:21:58 -070019import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
20import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -070021import static android.view.WindowManager.LayoutParams.*;
22import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
23import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
24import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
25import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
26import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
27import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
28
Dianne Hackborna4972e92012-03-14 10:38:05 -070029import android.app.ActivityManager;
Jeff Brown061ea992015-04-17 19:55:47 -070030import android.app.ActivityManagerInternal;
31import android.app.ActivityManagerInternal.SleepToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080032import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080033import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040034import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070035import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070036import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040037import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080038import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070039import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080040import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040041import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080042import android.content.ContentResolver;
43import android.content.Context;
44import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070045import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070046import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080047import android.content.pm.ActivityInfo;
48import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040049import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070050import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080051import android.content.res.Configuration;
52import android.content.res.Resources;
53import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080054import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080055import android.graphics.Rect;
Jinsuk Kime601b712015-07-07 08:01:02 +090056import android.hardware.hdmi.HdmiControlManager;
57import android.hardware.hdmi.HdmiPlaybackClient;
58import android.hardware.hdmi.HdmiPlaybackClient.OneTouchPlayCallback;
John Spurlock7b414672014-07-18 13:02:39 -040059import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080060import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050061import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080062import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070063import android.media.Ringtone;
64import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070065import android.media.session.MediaSessionLegacyHelper;
Billy Laucbe540f2015-06-25 01:51:44 +010066import android.os.Binder;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070067import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080068import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070069import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080070import android.os.Handler;
71import android.os.IBinder;
Dianne Hackbornb6683c42015-06-18 17:40:33 -070072import android.os.IDeviceIdleController;
Jeff Brown32cbc38552011-12-01 14:01:49 -080073import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070074import android.os.Message;
75import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080076import android.os.PowerManager;
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -070077import android.os.PowerManagerInternal;
Billy Laucbe540f2015-06-25 01:51:44 +010078import android.os.Process;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080079import android.os.RemoteException;
80import android.os.ServiceManager;
81import android.os.SystemClock;
82import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080083import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070084import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080085import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070086import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080087import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070088import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040089import android.service.dreams.DreamService;
90import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070091import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070092import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070093import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080094import android.util.EventLog;
95import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070096import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080097import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070098import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080099import android.view.Gravity;
100import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800101import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800102import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -0700103import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -0700104import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -0800105import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800106import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -0800107import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -0800108import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800109import android.view.KeyEvent;
110import android.view.MotionEvent;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800111import android.view.Surface;
112import android.view.View;
113import android.view.ViewConfiguration;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800114import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800115import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700116import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800117import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800118import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800119import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800120import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200121import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800122import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800123import com.android.internal.R;
Jason Monk8f7f3182015-11-18 16:35:14 -0500124import com.android.internal.logging.MetricsLogger;
125import com.android.internal.policy.PhoneWindow;
Craig Mautnerae446592012-12-06 19:05:05 -0800126import com.android.internal.statusbar.IStatusBarService;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700127import com.android.internal.util.ScreenShapeHelper;
Craig Mautnerae446592012-12-06 19:05:05 -0800128import com.android.internal.widget.PointerLocationView;
Adrian Roos5941c982015-09-03 15:59:49 -0700129import com.android.server.GestureLauncherService;
Craig Mautner8a0da012014-05-31 15:13:37 -0700130import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100131import com.android.server.policy.keyguard.KeyguardServiceDelegate;
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700132import com.android.server.policy.keyguard.KeyguardServiceDelegate.DrawnListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800133
134import java.io.File;
135import java.io.FileReader;
136import java.io.IOException;
137import java.io.PrintWriter;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700138import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800139import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -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.
keunyounga7710492015-09-23 11:33:58 -0700161 // No longer recommended for desk docks;
Daniel Sandler6396c722013-04-16 20:19:09 -0400162 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
163
Jeff Brown6d8fd272014-05-20 21:24:38 -0700164 static final int SHORT_PRESS_POWER_NOTHING = 0;
165 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
166 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
167 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800168 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700169
Joe Onoratod208e702010-10-08 16:22:43 -0400170 static final int LONG_PRESS_POWER_NOTHING = 0;
171 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
172 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700173 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700174
Jeff Brown13f00f02014-10-31 14:45:50 -0700175 static final int MULTI_PRESS_POWER_NOTHING = 0;
176 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
177 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
178
Michael Jurka3b1fc472011-06-13 10:54:40 -0700179 // These need to match the documentation/constant in
180 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800181 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800182 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700183 static final int LONG_PRESS_HOME_ASSIST = 2;
184
185 static final int DOUBLE_TAP_HOME_NOTHING = 0;
186 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800187
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000188 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
189 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
190
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700191 static final int APPLICATION_MEDIA_SUBLAYER = -2;
192 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800193 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800194 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700195 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700196
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800197 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
198 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
199 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500200 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700201 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800202
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700203 /**
204 * These are the system UI flags that, when changing, can cause the layout
205 * of the screen to change.
206 */
207 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400208 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400209 | View.SYSTEM_UI_FLAG_FULLSCREEN
210 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200211 | View.NAVIGATION_BAR_TRANSLUCENT
Jorim Jaggi4fa78922015-11-30 17:13:56 -0800212 | View.STATUS_BAR_TRANSPARENT
213 | View.NAVIGATION_BAR_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
keunyounga7710492015-09-23 11:33:58 -0700319 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
320 // This is for car dock and this is updated from resource.
321 private boolean mEnableCarDockHomeCapture = true;
322
Craig Mautnera631d492014-08-05 15:16:01 -0700323 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800324 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700325 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700326 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700327 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700328 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
329 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
330 }
331 };
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700332 final DrawnListener mKeyguardDrawnCallback = new DrawnListener() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700333 @Override
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700334 public void onDrawn() {
335 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onDrawn.");
Craig Mautner8a0da012014-05-31 15:13:37 -0700336 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
337 }
338 };
339
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800340 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800341 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900342 WindowState mLastInputMethodWindow = null;
343 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800344
Jeff Brown13f00f02014-10-31 14:45:50 -0700345 // FIXME This state is shared between the input reader and handler thread.
346 // Technically it's broken and buggy but it has been like this for many years
347 // and we have not yet seen any problems. Someday we'll rewrite this logic
348 // so that only one thread is involved in handling input policy. Unfortunately
349 // it's on a critical path for power management so we can't just post the work to the
350 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
351 // to hold wakelocks during dispatch and eliminating the critical path.
352 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800353 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700354 volatile int mPowerKeyPressCounter;
355 volatile boolean mEndCallKeyHandled;
356
Winson Chungd42a6cf2014-06-03 16:24:04 -0700357 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700358 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700359 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800360
Jeff Brown2e7760e2012-04-11 15:14:55 -0700361 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700362 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700363 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800364
Dianne Hackbornc777e072010-02-12 13:07:59 -0800365 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700366 boolean mSystemBooted;
Adrian Roos3542f7d2015-07-13 15:57:53 -0700367 private boolean mDeferBindKeyguard;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800368 boolean mHdmiPlugged;
Jinsuk Kime601b712015-07-07 08:01:02 +0900369 HdmiControl mHdmiControl;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700370 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400371 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700372 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700373 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400374 int mCarDockRotation;
375 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700376 int mUndockedHdmiRotation;
377 int mDemoHdmiRotation;
378 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800379 int mDemoRotation;
380 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400381
Jeff Browna20dda42014-05-27 20:57:24 -0700382 boolean mWakeGestureEnabledSetting;
383 MyWakeGestureListener mWakeGestureListener;
384
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700385 // Default display does not rotate, apps that require non-default orientation will have to
386 // have the orientation emulated.
387 private boolean mForceDefaultOrientation = false;
388
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400389 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
390 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700391 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400392
Jeff Brownbcdfc622014-03-06 19:13:04 -0800393 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700394 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400395 boolean mCarDockEnablesAccelerometer;
396 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700397 int mLidKeyboardAccessibility;
398 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700399 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700400 int mShortPressOnPowerBehavior;
401 int mLongPressOnPowerBehavior;
402 int mDoublePressOnPowerBehavior;
403 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000404 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700405 boolean mAwake;
406 boolean mScreenOnEarly;
407 boolean mScreenOnFully;
408 ScreenOnListener mScreenOnListener;
409 boolean mKeyguardDrawComplete;
410 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800411 boolean mOrientationSensorEnabled = false;
412 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800413 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400414 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800415 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700416
Jeff Brown70825162012-03-28 17:27:48 -0700417 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800418
419 // The last window we were told about in focusChanged.
420 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800421 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800422
Jeff Brown70825162012-03-28 17:27:48 -0700423 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800424
Dianne Hackbornc652de82013-02-15 16:32:56 -0800425 // The current size of the screen; really; extends into the overscan area of
426 // the screen and doesn't account for any system elements like the status bar.
427 int mOverscanScreenLeft, mOverscanScreenTop;
428 int mOverscanScreenWidth, mOverscanScreenHeight;
429 // The current visible size of the screen; really; (ir)regardless of whether the status
430 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800431 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
432 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800433 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
434 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
435 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700436 // The current size of the screen; these may be different than (0,0)-(dw,dh)
437 // if the status bar can't be hidden; in that case it effectively carves out
438 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800439 int mRestrictedScreenLeft, mRestrictedScreenTop;
440 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700441 // During layout, the current screen borders accounting for any currently
442 // visible system UI elements.
443 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700444 // For applications requesting stable content insets, these are them.
445 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700446 // For applications requesting stable content insets but have also set the
447 // fullscreen window flag, these are the stable dimensions without the status bar.
448 int mStableFullscreenLeft, mStableFullscreenTop;
449 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800450 // During layout, the current screen borders with all outer decoration
451 // (status bar, input method dock) accounted for.
452 int mCurLeft, mCurTop, mCurRight, mCurBottom;
453 // During layout, the frame in which content should be displayed
454 // to the user, accounting for all screen decoration except for any
455 // space they deem as available for other content. This is usually
456 // the same as mCur*, but may be larger if the screen decor has supplied
457 // content insets.
458 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700459 // During layout, the frame in which voice content should be displayed
460 // to the user, accounting for all screen decoration except for any
461 // space they deem as available for other content.
462 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800463 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800464 // windows are placed.
465 int mDockLeft, mDockTop, mDockRight, mDockBottom;
466 // During layout, the layer at which the doc window is placed.
467 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700468 // During layout, this is the layer of the status bar.
469 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700470 int mLastSystemUiFlags;
471 // Bits that we are in the process of clearing, so we want to prevent
472 // them from being set by applications until everything has been updated
473 // to have them clear.
474 int mResettingSystemUiFlags = 0;
475 // Bits that we are currently always keeping cleared.
476 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800477 // What we last reported to system UI about whether the compatibility
478 // menu needs to be displayed.
479 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700480 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
481 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700482
Selim Cinekf83e8242015-05-19 18:08:14 -0700483 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700484
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800485 static final Rect mTmpParentFrame = new Rect();
486 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800487 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800488 static final Rect mTmpContentFrame = new Rect();
489 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400490 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700491 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700492 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700493 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700494
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800495 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100496 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700497 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200498 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400499 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800500 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700501 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700502 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700503 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800504 boolean mForcingShowNavBar;
505 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700506
507 // States of keyguard dismiss.
508 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
509 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
510 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
511 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
512
513 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
514 * be done once per window. */
515 private WindowState mWinDismissingKeyguard;
516
tingna_sunge785ffa2015-05-12 13:23:15 +0800517 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
518 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
519 * lock SIM card. This variable is used to record the previous keyguard secure state for
520 * monitoring secure state change on window dismissing keyguard. */
521 private boolean mSecureDismissingKeyguard;
522
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700523 /** The window that is currently showing "over" the keyguard. If there is an app window
524 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
525 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
526 * the wallpaper. */
527 private WindowState mWinShowWhenLocked;
528
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700529 boolean mShowingLockscreen;
530 boolean mShowingDream;
531 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700532 boolean mDreamingSleepTokenNeeded;
533 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700534 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700535 boolean mKeyguardSecure;
536 boolean mKeyguardSecureIncludingHidden;
537 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800538 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700539 boolean mHomeConsumed;
540 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800541 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700542 Intent mCarDockIntent;
543 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700544 boolean mSearchKeyShortcutPending;
545 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700546 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700547 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800548
Mike Lockwood28569302010-01-28 11:54:40 -0500549 // support for activating the lock screen while the screen is on
550 boolean mAllowLockscreenWhenOn;
551 int mLockScreenTimeout;
552 boolean mLockScreenTimerActive;
553
David Brownbaf8d092010-03-08 21:52:59 -0800554 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800555 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800556
557 // Behavior of POWER button while in-call and screen on.
558 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
559 int mIncallPowerBehavior;
560
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700561 Display mDisplay;
562
Filip Gruszczynski2987f612015-06-30 15:03:30 -0700563 private int mDisplayRotation;
564
Dianne Hackborn9d132642011-04-21 17:26:39 -0700565 int mLandscapeRotation = 0; // default landscape rotation
566 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
567 int mPortraitRotation = 0; // default portrait rotation
568 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700569
Dianne Hackbornc652de82013-02-15 16:32:56 -0800570 int mOverscanLeft = 0;
571 int mOverscanTop = 0;
572 int mOverscanRight = 0;
573 int mOverscanBottom = 0;
574
Joe Onorato46b0d682010-11-22 17:37:27 -0800575 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700576 private int mLongPressOnHomeBehavior;
577
578 // What we do when the user double-taps on home
579 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800580
Bryce Lee584a4452014-10-21 15:55:55 -0700581 // Allowed theater mode wake actions
582 private boolean mAllowTheaterModeWakeFromKey;
583 private boolean mAllowTheaterModeWakeFromPowerKey;
584 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800585 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700586 private boolean mAllowTheaterModeWakeFromCameraLens;
587 private boolean mAllowTheaterModeWakeFromLidSwitch;
588 private boolean mAllowTheaterModeWakeFromWakeGesture;
589
Bryce Leed3b28402015-03-09 15:49:13 +0000590 // Whether to support long press from power button in non-interactive mode
591 private boolean mSupportLongPressPowerWhenNonInteractive;
592
Bryce Lee55e846d2014-11-04 12:43:44 -0800593 // Whether to go to sleep entering theater mode from power button
594 private boolean mGoToSleepOnButtonPressTheaterMode;
595
Winson Chung9112ec32011-06-27 13:15:32 -0700596 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700597 // Time to volume and power must be pressed within this interval of each other.
598 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700599 // Increase the chord delay when taking a screenshot from the keyguard
600 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800601 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700602 private boolean mScreenshotChordVolumeDownKeyTriggered;
603 private long mScreenshotChordVolumeDownKeyTime;
604 private boolean mScreenshotChordVolumeDownKeyConsumed;
605 private boolean mScreenshotChordVolumeUpKeyTriggered;
606 private boolean mScreenshotChordPowerKeyTriggered;
607 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700608
Michael Wrightb854e242013-02-05 17:54:02 -0800609 /* The number of steps between min and max brightness */
610 private static final int BRIGHTNESS_STEPS = 10;
611
Christopher Tate5e08af02012-09-21 17:17:22 -0700612 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800613 ShortcutManager mShortcutManager;
614 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700615 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700616 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800617
Craig Mautnerd625ab22013-09-06 13:40:31 -0700618 private int mCurrentUserId;
619
Justin Kohd378ad72013-04-01 12:18:26 -0700620 // Maps global key codes to the components that will handle them.
621 private GlobalKeyManager mGlobalKeyManager;
622
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700623 // Fallback actions by key code.
624 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
625 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800626
Jorim Jaggi76a16232014-08-08 17:00:47 +0200627 private final LogDecelerateInterpolator mLogDecelerateInterpolator
628 = new LogDecelerateInterpolator(100, 0);
629
Jorim Jaggi4fa78922015-11-30 17:13:56 -0800630 private boolean mForceWindowDrawsStatusBarBackground;
631
Jeff Brown70825162012-03-28 17:27:48 -0700632 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
633 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700634 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
635 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700636 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
637 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
638 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700639 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700640 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700641 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700642 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700643 private static final int MSG_POWER_DELAYED_PRESS = 13;
644 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700645 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700646 private static final int MSG_REQUEST_TRANSIENT_BARS = 16;
647
648 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS = 0;
649 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION = 1;
Jeff Brown70825162012-03-28 17:27:48 -0700650
651 private class PolicyHandler extends Handler {
652 @Override
653 public void handleMessage(Message msg) {
654 switch (msg.what) {
655 case MSG_ENABLE_POINTER_LOCATION:
656 enablePointerLocation();
657 break;
658 case MSG_DISABLE_POINTER_LOCATION:
659 disablePointerLocation();
660 break;
Jeff Brown40013652012-05-16 21:22:36 -0700661 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
662 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
663 break;
664 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
665 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
666 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700667 case MSG_DISPATCH_SHOW_RECENTS:
668 showRecentApps(false);
669 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700670 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
671 showGlobalActionsInternal();
672 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700673 case MSG_KEYGUARD_DRAWN_COMPLETE:
674 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700675 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700676 break;
677 case MSG_KEYGUARD_DRAWN_TIMEOUT:
678 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700679 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700680 break;
681 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
682 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700683 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700684 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700685 case MSG_HIDE_BOOT_MESSAGE:
686 handleHideBootMessage();
687 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700688 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
689 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
690 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700691 case MSG_POWER_DELAYED_PRESS:
692 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
693 finishPowerKeyPress();
694 break;
695 case MSG_POWER_LONG_PRESS:
696 powerLongPress();
697 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700698 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
699 updateDreamingSleepToken(msg.arg1 != 0);
700 break;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700701 case MSG_REQUEST_TRANSIENT_BARS:
702 WindowState targetBar = (msg.arg1 == MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS) ?
703 mStatusBar : mNavigationBar;
704 if (targetBar != null) {
705 requestTransientBars(targetBar);
706 }
707 break;
Jeff Brown70825162012-03-28 17:27:48 -0700708 }
709 }
710 }
711
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800712 private UEventObserver mHDMIObserver = new UEventObserver() {
713 @Override
714 public void onUEvent(UEventObserver.UEvent event) {
715 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
716 }
717 };
718
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800719 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800720 SettingsObserver(Handler handler) {
721 super(handler);
722 }
David Brownbaf8d092010-03-08 21:52:59 -0800723
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800724 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700725 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800726 ContentResolver resolver = mContext.getContentResolver();
727 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700728 Settings.System.END_BUTTON_BEHAVIOR), false, this,
729 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800730 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700731 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
732 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700733 resolver.registerContentObserver(Settings.Secure.getUriFor(
734 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
735 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800736 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700737 Settings.System.ACCELEROMETER_ROTATION), false, this,
738 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500739 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700740 Settings.System.USER_ROTATION), false, this,
741 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400742 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700743 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
744 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800745 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700746 Settings.System.POINTER_LOCATION), false, this,
747 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800748 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700749 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
750 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500751 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400752 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700753 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500754 resolver.registerContentObserver(Settings.Global.getUriFor(
755 Settings.Global.POLICY_CONTROL), false, this,
756 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800757 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800758 }
759
760 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800761 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700762 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800763 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800764 }
Craig Mautner967212c2013-04-13 21:10:58 -0700765
Jeff Browna20dda42014-05-27 20:57:24 -0700766 class MyWakeGestureListener extends WakeGestureListener {
767 MyWakeGestureListener(Context context, Handler handler) {
768 super(context, handler);
769 }
770
771 @Override
772 public void onWakeUp() {
773 synchronized (mLock) {
774 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700775 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700776 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture,
777 "android.policy:GESTURE");
Jeff Browna20dda42014-05-27 20:57:24 -0700778 }
779 }
780 }
781 }
782
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800783 class MyOrientationListener extends WindowOrientationListener {
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700784 private final Runnable mUpdateRotationRunnable = new Runnable() {
785 @Override
786 public void run() {
Tim Murray1f407642015-10-01 17:07:12 -0700787 // send interaction hint to improve redraw performance
788 mPowerManagerInternal.powerHint(PowerManagerInternal.POWER_HINT_INTERACTION, 0);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700789 updateRotation(false);
790 }
791 };
792
Craig Mautnereee29c42013-01-17 14:44:34 -0800793 MyOrientationListener(Context context, Handler handler) {
794 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800795 }
Craig Mautner967212c2013-04-13 21:10:58 -0700796
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800797 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700798 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700799 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Chong Zhang5aaa0b32015-08-28 10:22:36 -0700800 mHandler.post(mUpdateRotationRunnable);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700801 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800802 }
803 MyOrientationListener mOrientationListener;
804
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100805 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400806
John Spurlock27735a42013-08-14 17:57:38 -0400807 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400808 View.NAVIGATION_BAR_TRANSIENT,
809 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400810 View.NAVIGATION_BAR_TRANSLUCENT,
811 StatusBarManager.WINDOW_NAVIGATION_BAR,
Jorim Jaggi4fa78922015-11-30 17:13:56 -0800812 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION,
813 View.NAVIGATION_BAR_TRANSPARENT);
John Spurlock5b9145b2013-08-20 15:13:47 -0400814
John Spurlockf1a36642013-10-12 17:50:42 -0400815 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400816
Craig Mautner037aa8d2013-06-07 10:35:44 -0700817 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400818
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700819 IStatusBarService getStatusBarService() {
820 synchronized (mServiceAquireLock) {
821 if (mStatusBarService == null) {
822 mStatusBarService = IStatusBarService.Stub.asInterface(
823 ServiceManager.getService("statusbar"));
824 }
825 return mStatusBarService;
826 }
827 }
828
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700829 /*
830 * We always let the sensor be switched on by default except when
831 * the user has explicitly disabled sensor based rotation or when the
832 * screen is switched off.
833 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700834 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800835 if (mSupportAutoRotation) {
836 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
837 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
838 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
839 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
840 // If the application has explicitly requested to follow the
841 // orientation, then we need to turn the sensor on.
842 return true;
843 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800844 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700845 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800846 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
847 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
848 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400849 // enable accelerometer if we are docked in a dock that enables accelerometer
850 // orientation management,
851 return true;
852 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700853 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800854 // If the setting for using the sensor by default is enabled, then
855 // we will always leave it on. Note that the user could go to
856 // a window that forces an orientation that does not use the
857 // sensor and in theory we could turn it off... however, when next
858 // turning it on we won't have a good value for the current
859 // orientation for a little bit, which can cause orientation
860 // changes to lag, so we'd like to keep it always on. (It will
861 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700862 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800863 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800864 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800865 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700866
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800867 /*
868 * Various use cases for invoking this function
869 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700870 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800871 * if not already enabled
872 * screen turned on and current app does not have sensor orientation, disable listeners if
873 * already enabled
874 * screen turning on and current app has sensor based orientation, enable listeners if needed
875 * screen turning on and current app has nosensor based orientation, do nothing
876 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700877 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800878 if (!mOrientationListener.canDetectOrientation()) {
879 // If sensor is turned off or nonexistent for some reason
880 return;
881 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000882 // Could have been invoked due to screen turning on or off or
883 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700884 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
885 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000886 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
887 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
888 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800889 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000890 // Note: We postpone the rotating of the screen until the keyguard as well as the
891 // window manager have reported a draw complete.
892 if (mScreenOnEarly && mAwake &&
893 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700894 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800895 disable = false;
896 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700897 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800898 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700899 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800900 mOrientationSensorEnabled = true;
901 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700902 }
903 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800904 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700905 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800906 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700907 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800908 mOrientationSensorEnabled = false;
909 }
910 }
911
Jeff Brown13f00f02014-10-31 14:45:50 -0700912 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
913 // Hold a wake lock until the power key is released.
914 if (!mPowerKeyWakeLock.isHeld()) {
915 mPowerKeyWakeLock.acquire();
916 }
917
918 // Cancel multi-press detection timeout.
919 if (mPowerKeyPressCounter != 0) {
920 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
921 }
922
923 // Detect user pressing the power button in panic when an application has
924 // taken over the whole screen.
925 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800926 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700927 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700928 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700929 }
930
931 // Latch power key state to detect screenshot chord.
932 if (interactive && !mScreenshotChordPowerKeyTriggered
933 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
934 mScreenshotChordPowerKeyTriggered = true;
935 mScreenshotChordPowerKeyTime = event.getDownTime();
936 interceptScreenshotChord();
937 }
938
939 // Stop ringing or end call if configured to do so when power is pressed.
940 TelecomManager telecomManager = getTelecommService();
941 boolean hungUp = false;
942 if (telecomManager != null) {
943 if (telecomManager.isRinging()) {
944 // Pressing Power while there's a ringing incoming
945 // call should silence the ringer.
946 telecomManager.silenceRinger();
947 } else if ((mIncallPowerBehavior
948 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
949 && telecomManager.isInCall() && interactive) {
950 // Otherwise, if "Power button ends call" is enabled,
951 // the Power button will hang up any current active call.
952 hungUp = telecomManager.endCall();
953 }
954 }
955
Adrian Roos5941c982015-09-03 15:59:49 -0700956 GestureLauncherService gestureService = LocalServices.getService(
957 GestureLauncherService.class);
958 boolean gesturedServiceIntercepted = false;
959 if (gestureService != null) {
960 gesturedServiceIntercepted = gestureService.interceptPowerKeyDown(event, interactive);
961 }
962
Jeff Brown13f00f02014-10-31 14:45:50 -0700963 // If the power key has still not yet been handled, then detect short
964 // press, long press, or multi press and decide what to do.
965 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
Adrian Roos5941c982015-09-03 15:59:49 -0700966 || mScreenshotChordVolumeUpKeyTriggered || gesturedServiceIntercepted;
Jeff Brown13f00f02014-10-31 14:45:50 -0700967 if (!mPowerKeyHandled) {
968 if (interactive) {
969 // When interactive, we're already awake.
970 // Wait for a long press or for the button to be released to decide what to do.
971 if (hasLongPressOnPowerBehavior()) {
972 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
973 msg.setAsynchronous(true);
974 mHandler.sendMessageDelayed(msg,
975 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
976 }
977 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800978 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800979
Bryce Leed3b28402015-03-09 15:49:13 +0000980 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
981 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
982 msg.setAsynchronous(true);
983 mHandler.sendMessageDelayed(msg,
984 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800985 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000986 } else {
987 final int maxCount = getMaxMultiPressPowerCount();
988
989 if (maxCount <= 1) {
990 mPowerKeyHandled = true;
991 } else {
992 mBeganFromNonInteractive = true;
993 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700994 }
995 }
Jeff Brown4d396052010-10-29 21:50:21 -0700996 }
997 }
998
Jeff Brown13f00f02014-10-31 14:45:50 -0700999 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
1000 final boolean handled = canceled || mPowerKeyHandled;
1001 mScreenshotChordPowerKeyTriggered = false;
1002 cancelPendingScreenshotChordAction();
1003 cancelPendingPowerKeyAction();
1004
1005 if (!handled) {
1006 // Figure out how to handle the key now that it has been released.
1007 mPowerKeyPressCounter += 1;
1008
1009 final int maxCount = getMaxMultiPressPowerCount();
1010 final long eventTime = event.getDownTime();
1011 if (mPowerKeyPressCounter < maxCount) {
1012 // This could be a multi-press. Wait a little bit longer to confirm.
1013 // Continue holding the wake lock.
1014 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
1015 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
1016 msg.setAsynchronous(true);
1017 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
1018 return;
1019 }
1020
1021 // No other actions. Handle it immediately.
1022 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -07001023 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001024
1025 // Done. Reset our state.
1026 finishPowerKeyPress();
1027 }
1028
1029 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -08001030 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001031 mPowerKeyPressCounter = 0;
1032 if (mPowerKeyWakeLock.isHeld()) {
1033 mPowerKeyWakeLock.release();
1034 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001035 }
1036
1037 private void cancelPendingPowerKeyAction() {
1038 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001039 mPowerKeyHandled = true;
1040 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001041 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001042 }
1043
1044 private void powerPress(long eventTime, boolean interactive, int count) {
1045 if (mScreenOnEarly && !mScreenOnFully) {
1046 Slog.i(TAG, "Suppressed redundant power key press while "
1047 + "already in the process of turning the screen on.");
1048 return;
Jeff Brownff204712011-10-25 21:27:54 -07001049 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001050
1051 if (count == 2) {
1052 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1053 } else if (count == 3) {
1054 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001055 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001056 switch (mShortPressOnPowerBehavior) {
1057 case SHORT_PRESS_POWER_NOTHING:
1058 break;
1059 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1060 mPowerManager.goToSleep(eventTime,
1061 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1062 break;
1063 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1064 mPowerManager.goToSleep(eventTime,
1065 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1066 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1067 break;
1068 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1069 mPowerManager.goToSleep(eventTime,
1070 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1071 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1072 launchHomeFromHotKey();
1073 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001074 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001075 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001076 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001077 }
1078 }
1079 }
1080
1081 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1082 switch (behavior) {
1083 case MULTI_PRESS_POWER_NOTHING:
1084 break;
1085 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001086 if (!isUserSetupComplete()) {
1087 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1088 break;
1089 }
1090
Jeff Brown13f00f02014-10-31 14:45:50 -07001091 if (isTheaterModeEnabled()) {
1092 Slog.i(TAG, "Toggling theater mode off.");
1093 Settings.Global.putInt(mContext.getContentResolver(),
1094 Settings.Global.THEATER_MODE_ON, 0);
1095 if (!interactive) {
1096 wakeUpFromPowerKey(eventTime);
1097 }
1098 } else {
1099 Slog.i(TAG, "Toggling theater mode on.");
1100 Settings.Global.putInt(mContext.getContentResolver(),
1101 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001102
1103 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001104 mPowerManager.goToSleep(eventTime,
1105 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1106 }
1107 }
1108 break;
1109 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001110 Slog.i(TAG, "Starting brightness boost.");
1111 if (!interactive) {
1112 wakeUpFromPowerKey(eventTime);
1113 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001114 mPowerManager.boostScreenBrightness(eventTime);
1115 break;
1116 }
1117 }
1118
1119 private int getMaxMultiPressPowerCount() {
1120 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1121 return 3;
1122 }
1123 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1124 return 2;
1125 }
1126 return 1;
1127 }
1128
1129 private void powerLongPress() {
1130 final int behavior = getResolvedLongPressOnPowerBehavior();
1131 switch (behavior) {
1132 case LONG_PRESS_POWER_NOTHING:
1133 break;
1134 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1135 mPowerKeyHandled = true;
1136 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1137 performAuditoryFeedbackForAccessibilityIfNeed();
1138 }
1139 showGlobalActionsInternal();
1140 break;
1141 case LONG_PRESS_POWER_SHUT_OFF:
1142 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1143 mPowerKeyHandled = true;
1144 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1145 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1146 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1147 break;
1148 }
1149 }
1150
Nick Vaccarob593a812015-05-15 11:23:05 -07001151 private void sleepPress(long eventTime) {
1152 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1153 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1154 }
1155 }
1156
1157 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001158 switch (mShortPressOnSleepBehavior) {
1159 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001160 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001161 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1162 mPowerManager.goToSleep(eventTime,
1163 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001164 break;
1165 }
1166 }
1167
Jeff Brown13f00f02014-10-31 14:45:50 -07001168 private int getResolvedLongPressOnPowerBehavior() {
1169 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1170 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1171 }
1172 return mLongPressOnPowerBehavior;
1173 }
1174
1175 private boolean hasLongPressOnPowerBehavior() {
1176 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001177 }
1178
1179 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001180 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001181 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1182 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001183 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001184 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1185 && now <= mScreenshotChordPowerKeyTime
1186 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1187 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001188 cancelPendingPowerKeyAction();
1189
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001190 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001191 }
1192 }
1193 }
1194
Winson Chung1cea2f32012-10-08 20:42:01 -07001195 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001196 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001197 // Double the time it takes to take a screenshot from the keyguard
1198 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001199 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001200 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001201 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001202 }
1203
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001204 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001205 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001206 }
1207
Jeff Brown13f00f02014-10-31 14:45:50 -07001208 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001209 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001210 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001211 mEndCallKeyHandled = true;
1212 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1213 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001214 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001215 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001216 }
1217 };
1218
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001219 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001220 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001221 public void run() {
1222 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001223 }
1224 };
1225
Alan Viverettee34560b22014-07-10 14:50:06 -07001226 @Override
1227 public void showGlobalActions() {
1228 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1229 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1230 }
1231
1232 void showGlobalActionsInternal() {
1233 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001234 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001235 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001236 }
Jim Millerab954542014-10-10 18:21:49 -07001237 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001238 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1239 if (keyguardShowing) {
1240 // since it took two seconds of long press to bring this up,
1241 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001242 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001243 }
1244 }
1245
1246 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001247 return Settings.Global.getInt(
1248 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001249 }
1250
Maurice Lam99c6e072014-04-28 18:24:28 -07001251 boolean isUserSetupComplete() {
1252 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1253 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1254 }
1255
Jeff Brown13f00f02014-10-31 14:45:50 -07001256 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001257 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1258 getHdmiControl().turnOnTv();
1259
Jeff Brown13f00f02014-10-31 14:45:50 -07001260 // If there's a dream running then use home to escape the dream
1261 // but don't actually go home.
1262 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1263 mDreamManagerInternal.stopDream(false /*immediate*/);
1264 return;
1265 }
1266
1267 // Go home!
1268 launchHomeFromHotKey();
1269 }
1270
Jinsuk Kime601b712015-07-07 08:01:02 +09001271 /**
1272 * Creates an accessor to HDMI control service that performs the operation of
1273 * turning on TV (optional) and switching input to us. If HDMI control service
1274 * is not available or we're not a HDMI playback device, the operation is no-op.
1275 */
1276 private HdmiControl getHdmiControl() {
1277 if (null == mHdmiControl) {
1278 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1279 Context.HDMI_CONTROL_SERVICE);
1280 HdmiPlaybackClient client = null;
1281 if (manager != null) {
1282 client = manager.getPlaybackClient();
1283 }
1284 mHdmiControl = new HdmiControl(client);
1285 }
1286 return mHdmiControl;
1287 }
1288
1289 private static class HdmiControl {
1290 private final HdmiPlaybackClient mClient;
1291
1292 private HdmiControl(HdmiPlaybackClient client) {
1293 mClient = client;
1294 }
1295
1296 public void turnOnTv() {
1297 if (mClient == null) {
1298 return;
1299 }
1300 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1301 @Override
1302 public void onComplete(int result) {
1303 if (result != HdmiControlManager.RESULT_SUCCESS) {
1304 Log.w(TAG, "One touch play failed: " + result);
1305 }
1306 }
1307 });
1308 }
1309 }
1310
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001311 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001312 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001313 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001314 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001315
Jeff Browncaca8812013-05-09 13:34:33 -07001316 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1317 toggleRecentApps();
1318 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001319 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001320 }
1321 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001322 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001323
Jeff Browncaca8812013-05-09 13:34:33 -07001324 private void handleDoubleTapOnHome() {
1325 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1326 mHomeConsumed = true;
1327 toggleRecentApps();
1328 }
1329 }
1330
1331 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1332 @Override
1333 public void run() {
1334 if (mHomeDoubleTapPending) {
1335 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001336 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001337 }
1338 }
1339 };
1340
Mark Renoufc1256912015-03-11 14:38:23 -04001341 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001342 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001343 }
1344
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001345 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001346 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001347 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001348 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001349 mContext = context;
1350 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001351 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001352 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001353 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001354 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Michael Wrighta4d22d72015-09-16 23:19:26 +01001355 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001356 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001357
1358 // Init display burn-in protection
1359 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1360 com.android.internal.R.bool.config_enableBurnInProtection);
1361 // Allow a system property to override this. Used by developer settings.
1362 boolean burnInProtectionDevMode =
1363 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1364 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1365 final int minHorizontal;
1366 final int maxHorizontal;
1367 final int minVertical;
1368 final int maxVertical;
1369 final int maxRadius;
1370 if (burnInProtectionDevMode) {
1371 minHorizontal = -8;
1372 maxHorizontal = 8;
1373 minVertical = -8;
1374 maxVertical = -4;
1375 maxRadius = (isRoundWindow()) ? 6 : -1;
1376 } else {
1377 Resources resources = context.getResources();
1378 minHorizontal = resources.getInteger(
1379 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1380 maxHorizontal = resources.getInteger(
1381 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1382 minVertical = resources.getInteger(
1383 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1384 maxVertical = resources.getInteger(
1385 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1386 maxRadius = resources.getInteger(
1387 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1388 }
1389 mBurnInProtectionHelper = new BurnInProtectionHelper(
1390 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001391 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001392
Jeff Brown70825162012-03-28 17:27:48 -07001393 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001394 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001395 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001396 try {
1397 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1398 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001399 mSettingsObserver = new SettingsObserver(mHandler);
1400 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001401 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001402 mUiMode = context.getResources().getInteger(
1403 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001404 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1405 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1406 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1407 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
keunyounga7710492015-09-23 11:33:58 -07001408 mEnableCarDockHomeCapture = context.getResources().getBoolean(
1409 com.android.internal.R.bool.config_enableCarDockHomeLaunch);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001410 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1411 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1412 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1413 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1414 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1415 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1416 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1417 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001418
Jeff Brown96307042012-07-27 15:51:34 -07001419 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1420 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001421 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001422 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1423 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001424 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001425 mSupportAutoRotation = mContext.getResources().getBoolean(
1426 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001427 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001428 com.android.internal.R.integer.config_lidOpenRotation);
1429 mCarDockRotation = readRotation(
1430 com.android.internal.R.integer.config_carDockRotation);
1431 mDeskDockRotation = readRotation(
1432 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001433 mUndockedHdmiRotation = readRotation(
1434 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001435 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1436 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1437 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1438 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001439 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1440 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1441 mLidNavigationAccessibility = mContext.getResources().getInteger(
1442 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001443 mLidControlsSleep = mContext.getResources().getBoolean(
1444 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001445 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1446 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001447
1448 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1449 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1450 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1451 || mContext.getResources().getBoolean(
1452 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1453 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1454 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001455 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1456 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001457 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1458 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1459 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1460 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1461 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1462 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1463
Bryce Lee55e846d2014-11-04 12:43:44 -08001464 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1465 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1466
Bryce Leed3b28402015-03-09 15:49:13 +00001467 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1468 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1469
Jeff Brown13f00f02014-10-31 14:45:50 -07001470 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1471 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1472 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1473 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1474 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1475 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1476 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1477 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001478 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1479 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001480
John Spurlock61560172015-02-06 19:46:04 -05001481 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001482
Jeff Brownf71343d2013-05-31 17:59:11 -07001483 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001484
Svetoslav8e3feb12014-02-24 13:46:47 -08001485 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1486 Context.ACCESSIBILITY_SERVICE);
1487
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001488 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001489 IntentFilter filter = new IntentFilter();
1490 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1491 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1492 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1493 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001494 filter.addAction(Intent.ACTION_DOCK_EVENT);
1495 Intent intent = context.registerReceiver(mDockReceiver, filter);
1496 if (intent != null) {
1497 // Retrieve current sticky dock event broadcast.
1498 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1499 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1500 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001501
Jeff Brown6aaf2952012-10-05 16:01:08 -07001502 // register for dream-related broadcasts
1503 filter = new IntentFilter();
1504 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1505 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1506 context.registerReceiver(mDreamReceiver, filter);
1507
Christopher Tate5e08af02012-09-21 17:17:22 -07001508 // register for multiuser-relevant broadcasts
1509 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1510 context.registerReceiver(mMultiuserReceiver, filter);
1511
John Spurlock57306e62013-04-22 09:48:49 -04001512 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001513 mSystemGestures = new SystemGesturesPointerEventListener(context,
1514 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001515 @Override
1516 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001517 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001518 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001519 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001520 }
1521 @Override
1522 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001523 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001524 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001525 }
1526 }
1527 @Override
1528 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001529 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001530 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001531 }
1532 }
1533 @Override
Michael Wrighta4d22d72015-09-16 23:19:26 +01001534 public void onFling(int duration) {
1535 if (mPowerManagerInternal != null) {
1536 mPowerManagerInternal.powerHint(
1537 PowerManagerInternal.POWER_HINT_INTERACTION, duration);
1538 }
1539 }
1540 @Override
John Spurlockad3e6cb2013-04-30 08:47:43 -04001541 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001542 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001543 }
Adrian Roos3595be42015-03-05 16:31:15 +01001544 @Override
1545 public void onDown() {
1546 mOrientationListener.onTouchStart();
1547 }
1548 @Override
1549 public void onUpOrCancel() {
1550 mOrientationListener.onTouchEnd();
1551 }
Jun Mukaid2e7e352015-07-22 17:14:02 -07001552 @Override
1553 public void onMouseHoverAtTop() {
1554 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1555 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1556 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS;
1557 mHandler.sendMessageDelayed(msg, 500);
1558 }
1559 @Override
1560 public void onMouseHoverAtBottom() {
1561 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1562 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1563 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION;
1564 mHandler.sendMessageDelayed(msg, 500);
1565 }
1566 @Override
1567 public void onMouseLeaveFromEdge() {
1568 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1569 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001570 });
John Spurlockf1a36642013-10-12 17:50:42 -04001571 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001572 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001573
Jeff Brownc2346132012-04-13 01:55:38 -07001574 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001575 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1576 com.android.internal.R.array.config_longPressVibePattern);
1577 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1578 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001579 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1580 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001581 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1582 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001583 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1584 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001585 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1586 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1587 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1588 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001589 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1590 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001591
Christopher Tatee90585f2012-03-05 18:56:25 -08001592 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1593 com.android.internal.R.bool.config_enableScreenshotChord);
Jorim Jaggi4fa78922015-11-30 17:13:56 -08001594 mForceWindowDrawsStatusBarBackground = mContext.getResources().getBoolean(
1595 R.bool.config_forceWindowDrawsStatusBarBackground);
Christopher Tatee90585f2012-03-05 18:56:25 -08001596
Justin Kohd378ad72013-04-01 12:18:26 -07001597 mGlobalKeyManager = new GlobalKeyManager(mContext);
1598
Joe Onoratoea495d42011-04-06 11:41:11 -07001599 // Controls rotation and the like.
1600 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001601
1602 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001603 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001604 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1605 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001606 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001607
1608 mWindowManagerInternal.registerAppTransitionListener(
1609 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001610 }
1611
Jeff Brownf71343d2013-05-31 17:59:11 -07001612 /**
1613 * Read values from config.xml that may be overridden depending on
1614 * the configuration of the device.
1615 * eg. Disable long press on home goes to recents on sw600dp.
1616 */
1617 private void readConfigurationDependentBehaviors() {
1618 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1619 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1620 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1621 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1622 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1623 }
1624
1625 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1626 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1627 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1628 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1629 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1630 }
1631 }
1632
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001633 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001634 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001635 // This method might be called before the policy has been fully initialized
1636 // or for other displays we don't care about.
1637 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1638 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001639 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001640 mDisplay = display;
1641
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001642 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001643 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001644 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001645 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001646 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001647 mLandscapeRotation = Surface.ROTATION_0;
1648 mSeascapeRotation = 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 mPortraitRotation = Surface.ROTATION_90;
1651 mUpsideDownRotation = Surface.ROTATION_270;
1652 } else {
1653 mPortraitRotation = Surface.ROTATION_270;
1654 mUpsideDownRotation = Surface.ROTATION_90;
1655 }
1656 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001657 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001658 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001659 mPortraitRotation = Surface.ROTATION_0;
1660 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001661 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001662 mLandscapeRotation = Surface.ROTATION_270;
1663 mSeascapeRotation = Surface.ROTATION_90;
1664 } else {
1665 mLandscapeRotation = Surface.ROTATION_90;
1666 mSeascapeRotation = Surface.ROTATION_270;
1667 }
1668 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001669
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001670 mStatusBarHeight =
1671 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001672
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001673 // Height of the navigation bar when presented horizontally at bottom
1674 mNavigationBarHeightForRotation[mPortraitRotation] =
1675 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001676 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001677 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001678 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1679 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001680
1681 // Width of the navigation bar when presented vertically along one side
1682 mNavigationBarWidthForRotation[mPortraitRotation] =
1683 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1684 mNavigationBarWidthForRotation[mLandscapeRotation] =
1685 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001686 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001687
1688 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001689 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001690 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001691
Devin Kimd7b12b42014-05-05 14:34:58 -07001692 // Allow the navigation bar to move on non-square small devices (phones).
1693 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001694
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001695 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001696 // Allow a system property to override this. Used by the emulator.
1697 // See also hasNavigationBar().
1698 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1699 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001700 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001701 } else if ("0".equals(navBarOverride)) {
1702 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001703 }
1704
Jeff Brown27f1d672012-10-17 18:32:34 -07001705 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1706 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001707 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001708 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001709 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001710 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001711 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001712 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001713
Chong Zhangae6119ff2014-11-11 18:54:39 -08001714 // For demo purposes, allow the rotation of the remote display to be controlled.
1715 // By default, remote display locks rotation to landscape.
1716 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1717 mDemoRotation = mPortraitRotation;
1718 } else {
1719 mDemoRotation = mLandscapeRotation;
1720 }
1721 mDemoRotationLock = SystemProperties.getBoolean(
1722 "persist.demo.rotationlock", false);
1723
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001724 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1725 // http://developer.android.com/guide/practices/screens_support.html#range
1726 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1727 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1728 // For debug purposes the next line turns this feature off with:
1729 // $ adb shell setprop config.override_forced_orient true
1730 // $ adb shell wm size reset
1731 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1732 }
1733
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001734 /**
1735 * @return whether the navigation bar can be hidden, e.g. the device has a
1736 * navigation bar and touch exploration is not enabled
1737 */
1738 private boolean canHideNavigationBar() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04001739 return mHasNavigationBar;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001740 }
1741
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001742 @Override
1743 public boolean isDefaultOrientationForced() {
1744 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001745 }
1746
Dianne Hackbornc652de82013-02-15 16:32:56 -08001747 @Override
1748 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1749 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1750 mOverscanLeft = left;
1751 mOverscanTop = top;
1752 mOverscanRight = right;
1753 mOverscanBottom = bottom;
1754 }
1755 }
1756
Dianne Hackbornc777e072010-02-12 13:07:59 -08001757 public void updateSettings() {
1758 ContentResolver resolver = mContext.getContentResolver();
1759 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001760 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001761 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001762 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001763 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1764 UserHandle.USER_CURRENT);
1765 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001766 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001767 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1768 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001769
Jeff Browna20dda42014-05-27 20:57:24 -07001770 // Configure wake gesture.
1771 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1772 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1773 UserHandle.USER_CURRENT) != 0;
1774 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1775 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1776 updateWakeGestureListenerLp();
1777 }
1778
Jeff Brown207673cd2012-06-05 17:47:11 -07001779 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001780 int userRotation = Settings.System.getIntForUser(resolver,
1781 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1782 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001783 if (mUserRotation != userRotation) {
1784 mUserRotation = userRotation;
1785 updateRotation = true;
1786 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001787 int userRotationMode = Settings.System.getIntForUser(resolver,
1788 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001789 WindowManagerPolicy.USER_ROTATION_FREE :
1790 WindowManagerPolicy.USER_ROTATION_LOCKED;
1791 if (mUserRotationMode != userRotationMode) {
1792 mUserRotationMode = userRotationMode;
1793 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001794 updateOrientationListenerLp();
1795 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001796
Dianne Hackbornc777e072010-02-12 13:07:59 -08001797 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001798 int pointerLocation = Settings.System.getIntForUser(resolver,
1799 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001800 if (mPointerLocationMode != pointerLocation) {
1801 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001802 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1803 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001804 }
1805 }
1806 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001807 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1808 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1809 String imId = Settings.Secure.getStringForUser(resolver,
1810 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001811 boolean hasSoftInput = imId != null && imId.length() > 0;
1812 if (mHasSoftInput != hasSoftInput) {
1813 mHasSoftInput = hasSoftInput;
1814 updateRotation = true;
1815 }
John Spurlockf1a36642013-10-12 17:50:42 -04001816 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001817 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001818 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001819 }
1820 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001821 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001822 }
1823 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001824 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001825 }
Jeff Brown70825162012-03-28 17:27:48 -07001826 }
1827
Jeff Browna20dda42014-05-27 20:57:24 -07001828 private void updateWakeGestureListenerLp() {
1829 if (shouldEnableWakeGestureLp()) {
1830 mWakeGestureListener.requestWakeUpTrigger();
1831 } else {
1832 mWakeGestureListener.cancelWakeUpTrigger();
1833 }
1834 }
1835
1836 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001837 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001838 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1839 && mWakeGestureListener.isSupported();
1840 }
1841
Jeff Brown70825162012-03-28 17:27:48 -07001842 private void enablePointerLocation() {
1843 if (mPointerLocationView == null) {
1844 mPointerLocationView = new PointerLocationView(mContext);
1845 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001846 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1847 WindowManager.LayoutParams.MATCH_PARENT,
1848 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001849 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001850 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1851 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1852 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1853 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001854 if (ActivityManager.isHighEndGfx()) {
1855 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1856 lp.privateFlags |=
1857 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1858 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001859 lp.format = PixelFormat.TRANSLUCENT;
1860 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001861 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001862 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001863 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001864 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001865 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001866 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001867 }
Jeff Brown70825162012-03-28 17:27:48 -07001868
1869 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001870 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001871 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1872 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001873 wm.removeView(mPointerLocationView);
1874 mPointerLocationView = null;
1875 }
1876 }
1877
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001878 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001879 try {
1880 int rotation = mContext.getResources().getInteger(resID);
1881 switch (rotation) {
1882 case 0:
1883 return Surface.ROTATION_0;
1884 case 90:
1885 return Surface.ROTATION_90;
1886 case 180:
1887 return Surface.ROTATION_180;
1888 case 270:
1889 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001890 }
1891 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001892 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001893 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001894 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001895 }
1896
1897 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001898 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001899 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001900 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001901
1902 outAppOp[0] = AppOpsManager.OP_NONE;
1903
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001904 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1905 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1906 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1907 return WindowManagerGlobal.ADD_INVALID_TYPE;
1908 }
1909
1910 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1911 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001912 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001913 }
1914 String permission = null;
1915 switch (type) {
1916 case TYPE_TOAST:
1917 // XXX right now the app process has complete control over
1918 // this... should introduce a token to let the system
1919 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001920 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001921 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001922 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001923 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001924 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001925 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001926 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001927 case TYPE_ACCESSIBILITY_OVERLAY:
Jason Monk8f7f3182015-11-18 16:35:14 -05001928 case TYPE_QS_DIALOG:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001929 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001930 break;
1931 case TYPE_PHONE:
1932 case TYPE_PRIORITY_PHONE:
1933 case TYPE_SYSTEM_ALERT:
1934 case TYPE_SYSTEM_ERROR:
1935 case TYPE_SYSTEM_OVERLAY:
1936 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001937 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001938 break;
1939 default:
1940 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1941 }
1942 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001943 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1944 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01001945 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01001946 if (callingUid == Process.SYSTEM_UID) {
1947 return WindowManagerGlobal.ADD_OKAY;
1948 }
1949
Billy Lau060275f2015-07-15 22:29:19 +01001950 // check if user has enabled this operation. SecurityException will be thrown if
1951 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01001952 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1953 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01001954 switch (mode) {
1955 case AppOpsManager.MODE_ALLOWED:
1956 case AppOpsManager.MODE_IGNORED:
1957 // although we return ADD_OKAY for MODE_IGNORED, the added window will
1958 // actually be hidden in WindowManagerService
1959 return WindowManagerGlobal.ADD_OKAY;
1960 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01001961 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01001962 default:
1963 // in the default mode, we will make a decision here based on
1964 // checkCallingPermission()
1965 if (mContext.checkCallingPermission(permission) !=
1966 PackageManager.PERMISSION_GRANTED) {
1967 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1968 } else {
1969 return WindowManagerGlobal.ADD_OKAY;
1970 }
Billy Laucbe540f2015-06-25 01:51:44 +01001971 }
Billy Laucbe540f2015-06-25 01:51:44 +01001972 }
1973
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001974 if (mContext.checkCallingOrSelfPermission(permission)
1975 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001976 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001977 }
1978 }
Jeff Brown98365d72012-08-19 20:30:52 -07001979 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001980 }
Craig Mautner88400d32012-09-30 12:35:45 -07001981
1982 @Override
1983 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1984
1985 // If this switch statement is modified, modify the comment in the declarations of
1986 // the type in {@link WindowManager.LayoutParams} as well.
1987 switch (attrs.type) {
1988 default:
1989 // These are the windows that by default are shown only to the user that created
1990 // them. If this needs to be overridden, set
1991 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1992 // {@link WindowManager.LayoutParams}. Note that permission
1993 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1994 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1995 return true;
1996 }
1997 break;
1998
1999 // These are the windows that by default are shown to all users. However, to
2000 // protect against spoofing, check permissions below.
2001 case TYPE_APPLICATION_STARTING:
2002 case TYPE_BOOT_PROGRESS:
2003 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07002004 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08002005 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07002006 case TYPE_KEYGUARD_DIALOG:
2007 case TYPE_MAGNIFICATION_OVERLAY:
2008 case TYPE_NAVIGATION_BAR:
2009 case TYPE_NAVIGATION_BAR_PANEL:
2010 case TYPE_PHONE:
2011 case TYPE_POINTER:
2012 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07002013 case TYPE_SEARCH_BAR:
2014 case TYPE_STATUS_BAR:
2015 case TYPE_STATUS_BAR_PANEL:
2016 case TYPE_STATUS_BAR_SUB_PANEL:
2017 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07002018 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07002019 case TYPE_PRIVATE_PRESENTATION:
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002020 case TYPE_DOCK_DIVIDER:
Craig Mautner88400d32012-09-30 12:35:45 -07002021 break;
2022 }
2023
2024 // Check if third party app has set window to system window type.
2025 return mContext.checkCallingOrSelfPermission(
2026 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
2027 != PackageManager.PERMISSION_GRANTED;
2028 }
2029
Craig Mautner967212c2013-04-13 21:10:58 -07002030 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002031 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
2032 switch (attrs.type) {
2033 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07002034 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002035 // These types of windows can't receive input events.
2036 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
2037 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07002038 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002039 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002040 case TYPE_STATUS_BAR:
2041
2042 // If the Keyguard is in a hidden state (occluded by another window), we force to
2043 // remove the wallpaper and keyguard flag so that any change in-flight after setting
2044 // the keyguard as occluded wouldn't set these flags again.
2045 // See {@link #processKeyguardSetHiddenResultLw}.
2046 if (mKeyguardHidden) {
2047 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2048 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2049 }
2050 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002051 }
Adrian Roos38502112014-04-09 21:04:11 +02002052
2053 if (attrs.type != TYPE_STATUS_BAR) {
2054 // The status bar is the only window allowed to exhibit keyguard behavior.
2055 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2056 }
Adrian Roosea562512014-05-05 13:33:03 +02002057
Jorim Jaggi4fa78922015-11-30 17:13:56 -08002058 if (ActivityManager.isHighEndGfx()) {
2059 if ((attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
2060 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
2061 }
2062 if ((attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0
2063 || mForceWindowDrawsStatusBarBackground) {
2064 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
2065 }
Adrian Roosea562512014-05-05 13:33:03 +02002066 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002067 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002068
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002069 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07002070 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002071 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002072
Michael Wright3818c922014-09-02 13:59:07 -07002073 private void readCameraLensCoverState() {
2074 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2075 }
2076
Jeff Browndaa37532012-05-01 15:54:03 -07002077 private boolean isHidden(int accessibilityMode) {
2078 switch (accessibilityMode) {
2079 case 1:
2080 return mLidState == LID_CLOSED;
2081 case 2:
2082 return mLidState == LID_OPEN;
2083 default:
2084 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002085 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002086 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002087
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002088 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002089 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002090 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2091 int navigationPresence) {
2092 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2093
Jeff Brownf71343d2013-05-31 17:59:11 -07002094 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002095 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002096 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002097
Jeff Browndaa37532012-05-01 15:54:03 -07002098 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2099 || (keyboardPresence == PRESENCE_INTERNAL
2100 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002101 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002102 if (!mHasSoftInput) {
2103 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2104 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002105 }
2106
Jeff Browndaa37532012-05-01 15:54:03 -07002107 if (config.navigation == Configuration.NAVIGATION_NONAV
2108 || (navigationPresence == PRESENCE_INTERNAL
2109 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002110 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002111 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002112 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002113
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002114 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002115 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002116 public int windowTypeToLayerLw(int type) {
2117 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002118 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002119 }
2120 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002121 case TYPE_PRIVATE_PRESENTATION:
2122 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002123 case TYPE_WALLPAPER:
2124 // wallpaper is at the bottom, though the window manager may move it.
2125 return 2;
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002126 case TYPE_DOCK_DIVIDER:
2127 return 2;
Jason Monk8f7f3182015-11-18 16:35:14 -05002128 case TYPE_QS_DIALOG:
2129 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002130 case TYPE_PHONE:
2131 return 3;
2132 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002133 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002134 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002135 case TYPE_VOICE_INTERACTION:
2136 // voice interaction layer is almost immediately above apps.
2137 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002138 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002139 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002140 case TYPE_SYSTEM_DIALOG:
2141 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002142 case TYPE_TOAST:
2143 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002144 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002145 case TYPE_PRIORITY_PHONE:
2146 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002147 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002148 case TYPE_DREAM:
2149 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002150 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002151 case TYPE_SYSTEM_ALERT:
2152 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002153 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002154 case TYPE_INPUT_METHOD:
2155 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002156 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002157 case TYPE_INPUT_METHOD_DIALOG:
2158 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002159 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002160 case TYPE_KEYGUARD_SCRIM:
2161 // the safety window that shows behind keyguard while keyguard is starting
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002162 return 14;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002163 case TYPE_STATUS_BAR_SUB_PANEL:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002164 return 15;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002165 case TYPE_STATUS_BAR:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002166 return 16;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002167 case TYPE_STATUS_BAR_PANEL:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002168 return 17;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002169 case TYPE_KEYGUARD_DIALOG:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002170 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002171 case TYPE_VOLUME_OVERLAY:
2172 // the on-screen volume indicator and controller shown when the user
2173 // changes the device volume
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002174 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002175 case TYPE_SYSTEM_OVERLAY:
2176 // the on-screen volume indicator and controller shown when the user
2177 // changes the device volume
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002178 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002179 case TYPE_NAVIGATION_BAR:
2180 // the navigation bar, if available, shows atop most things
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002181 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002182 case TYPE_NAVIGATION_BAR_PANEL:
2183 // some panels (e.g. search) need to show on top of the navigation bar
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002184 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002185 case TYPE_SYSTEM_ERROR:
2186 // system-level error dialogs
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002187 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002188 case TYPE_MAGNIFICATION_OVERLAY:
2189 // used to highlight the magnified portion of a display
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002190 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002191 case TYPE_DISPLAY_OVERLAY:
2192 // used to simulate secondary display devices
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002193 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002194 case TYPE_DRAG:
2195 // the drag layer: input for drag-and-drop is associated with this window,
2196 // which sits above all other focusable windows
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002197 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002198 case TYPE_ACCESSIBILITY_OVERLAY:
2199 // overlay put by accessibility services to intercept user interaction
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002200 return 27;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002201 case TYPE_SECURE_SYSTEM_OVERLAY:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002202 return 28;
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002203 case TYPE_BOOT_PROGRESS:
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002204 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002205 case TYPE_POINTER:
2206 // the (mouse) pointer layer
Filip Gruszczynskie95b0ae2015-09-30 10:55:33 -07002207 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002208 }
2209 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002210 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002211 }
2212
2213 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002214 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002215 public int subWindowTypeToLayerLw(int type) {
2216 switch (type) {
2217 case TYPE_APPLICATION_PANEL:
2218 case TYPE_APPLICATION_ATTACHED_DIALOG:
2219 return APPLICATION_PANEL_SUBLAYER;
2220 case TYPE_APPLICATION_MEDIA:
2221 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002222 case TYPE_APPLICATION_MEDIA_OVERLAY:
2223 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002224 case TYPE_APPLICATION_SUB_PANEL:
2225 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002226 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2227 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002228 }
2229 Log.e(TAG, "Unknown sub-window type: " + type);
2230 return 0;
2231 }
2232
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002233 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002234 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002235 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002236 }
2237
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002238 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002239 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002240 if (mHasNavigationBar) {
2241 // For a basic navigation bar, when we are in landscape mode we place
2242 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002243 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2244 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002245 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002246 }
2247 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002248 }
2249
Jose Lima9546b202014-07-02 17:21:51 -07002250 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002251 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002252 if (mHasNavigationBar) {
2253 // For a basic navigation bar, when we are in portrait mode we place
2254 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002255 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2256 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002257 }
2258 }
2259 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002260 }
2261
Jose Lima9546b202014-07-02 17:21:51 -07002262 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002263 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2264 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002265 }
2266
Jose Lima9546b202014-07-02 17:21:51 -07002267 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002268 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002269 // There is a separate status bar at the top of the display. We don't count that as part
2270 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002271 // we do want to exclude it since applications can't generally use that part
2272 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002273 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002274 }
2275
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002276 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002277 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2278 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002279 (isKeyguardHostWindow(attrs) &&
2280 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002281 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002282 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002283
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002284 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002285 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2286 return attrs.type == TYPE_STATUS_BAR;
2287 }
2288
2289 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002290 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002291 switch (attrs.type) {
2292 case TYPE_STATUS_BAR:
2293 case TYPE_NAVIGATION_BAR:
2294 case TYPE_WALLPAPER:
2295 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002296 case TYPE_KEYGUARD_SCRIM:
Filip Gruszczynski466f3212015-09-21 17:57:57 -07002297 case TYPE_DOCK_DIVIDER:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002298 return false;
2299 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002300 // Hide only windows below the keyguard host window.
2301 return windowTypeToLayerLw(win.getBaseType())
2302 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002303 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002304 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002305
Craig Mautner7d7808f2014-09-11 18:02:38 -07002306 @Override
2307 public WindowState getWinShowWhenLockedLw() {
2308 return mWinShowWhenLocked;
2309 }
2310
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002311 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002312 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002313 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2314 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002315 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002316 if (!SHOW_STARTING_ANIMATIONS) {
2317 return null;
2318 }
2319 if (packageName == null) {
2320 return null;
2321 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002322
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002323 WindowManager wm = null;
2324 View view = null;
2325
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002326 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002327 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002328 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2329 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2330 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002331 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002332 try {
2333 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002334 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002335 } catch (PackageManager.NameNotFoundException e) {
2336 // Ignore
2337 }
2338 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002339
Jorim Jaggia16cc152015-06-01 16:55:05 -07002340 PhoneWindow win = new PhoneWindow(context);
2341 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002342
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002343 Resources r = context.getResources();
2344 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002345
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002346 win.setType(
2347 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002348
2349 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2350 // Assumes it's safe to show starting windows of launched apps while
2351 // the keyguard is being hidden. This is okay because starting windows never show
2352 // secret information.
2353 if (mKeyguardHidden) {
2354 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2355 }
2356 }
2357
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002358 // Force the window flags: this is a fake window, so it is not really
2359 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2360 // flag because we do know that the next window will take input
2361 // focus, so we want to get the IME window up on top of us right away.
2362 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002363 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002364 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2365 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2366 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002367 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002368 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2369 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2370 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002371
Adam Powell04fe6eb2013-05-31 14:39:48 -07002372 win.setDefaultIcon(icon);
2373 win.setDefaultLogo(logo);
2374
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002375 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002376 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002377
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002378 final WindowManager.LayoutParams params = win.getAttributes();
2379 params.token = appToken;
2380 params.packageName = packageName;
2381 params.windowAnimations = win.getWindowStyle().getResourceId(
2382 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002383 params.privateFlags |=
2384 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002385 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002386
2387 if (!compatInfo.supportsScreen()) {
2388 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2389 }
2390
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002391 params.setTitle("Starting " + packageName);
2392
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002393 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2394 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002395
Craig Mautner6fbda632012-07-03 09:26:39 -07002396 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002397 TAG, "Adding starting window for " + packageName
2398 + " / " + appToken + ": "
2399 + (view.getParent() != null ? view : null));
2400
2401 wm.addView(view, params);
2402
2403 // Only return the view if it was successfully added to the
2404 // window manager... which we can tell by it having a parent.
2405 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002406 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002407 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002408 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2409 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002410 } catch (RuntimeException e) {
2411 // don't crash if something else bad happens, for example a
2412 // failure loading resources because we are loading from an app
2413 // on external storage that has been unmounted.
2414 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002415 } finally {
2416 if (view != null && view.getParent() == null) {
2417 Log.w(TAG, "view not successfully added to wm, removing view");
2418 wm.removeViewImmediate(view);
2419 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002420 }
2421
2422 return null;
2423 }
2424
2425 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002426 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002427 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002428 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2429 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002430
2431 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002432 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002433 wm.removeView(window);
2434 }
2435 }
2436
2437 /**
2438 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002439 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002440 * Currently enforces that three window types are singletons:
2441 * <ul>
2442 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002443 * <li>KEYGUARD_TYPE</li>
2444 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002445 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002446 * @param win The window to be added
2447 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002448 *
Jeff Brown98365d72012-08-19 20:30:52 -07002449 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2450 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002451 */
Jose Lima9546b202014-07-02 17:21:51 -07002452 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002453 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2454 switch (attrs.type) {
2455 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002456 mContext.enforceCallingOrSelfPermission(
2457 android.Manifest.permission.STATUS_BAR_SERVICE,
2458 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002459 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002460 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002461 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002462 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002463 }
2464 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002465 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002466 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002467 case TYPE_NAVIGATION_BAR:
2468 mContext.enforceCallingOrSelfPermission(
2469 android.Manifest.permission.STATUS_BAR_SERVICE,
2470 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002471 if (mNavigationBar != null) {
2472 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002473 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002474 }
2475 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002476 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002477 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002478 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002479 break;
Jim Millere898ac52012-04-06 17:10:57 -07002480 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002481 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002482 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002483 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002484 mContext.enforceCallingOrSelfPermission(
2485 android.Manifest.permission.STATUS_BAR_SERVICE,
2486 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002487 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002488 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002489 if (mKeyguardScrim != null) {
2490 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2491 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002492 mKeyguardScrim = win;
2493 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002494 }
Jeff Brown98365d72012-08-19 20:30:52 -07002495 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002496 }
2497
2498 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002499 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002500 public void removeWindowLw(WindowState win) {
2501 if (mStatusBar == win) {
2502 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002503 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002504 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002505 } else if (mKeyguardScrim == win) {
2506 Log.v(TAG, "Removing keyguard scrim");
2507 mKeyguardScrim = null;
2508 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002509 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002510 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002511 }
2512 }
2513
2514 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002515
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002516 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002517 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002518 public int selectAnimationLw(WindowState win, int transit) {
2519 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2520 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002521 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002522 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002523 if (transit == TRANSIT_EXIT
2524 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002525 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002526 } else if (transit == TRANSIT_ENTER
2527 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002528 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002529 }
2530 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002531 if (win.getAttrs().windowAnimations != 0) {
2532 return 0;
2533 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002534 // This can be on either the bottom or the right.
2535 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002536 if (transit == TRANSIT_EXIT
2537 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002538 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002539 } else if (transit == TRANSIT_ENTER
2540 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002541 return R.anim.dock_bottom_enter;
2542 }
2543 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002544 if (transit == TRANSIT_EXIT
2545 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002546 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002547 } else if (transit == TRANSIT_ENTER
2548 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002549 return R.anim.dock_right_enter;
2550 }
2551 }
Filip Gruszczynski57f76f12015-11-04 16:10:54 -08002552 } else if (win.getAttrs().type == TYPE_DOCK_DIVIDER) {
Filip Gruszczynski64cdc142015-11-29 21:10:07 -08002553 if (transit == TRANSIT_ENTER || transit == TRANSIT_SHOW) {
Filip Gruszczynski57f76f12015-11-04 16:10:54 -08002554 return R.anim.fade_in;
2555 } else if (transit == TRANSIT_EXIT) {
2556 return R.anim.fade_out;
2557 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002558 }
2559
2560 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002561 if (win.hasAppShownWindows()) {
2562 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2563 return com.android.internal.R.anim.app_starting_exit;
2564 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002565 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002566 && transit == TRANSIT_ENTER) {
2567 // Special case: we are animating in a dream, while the keyguard
2568 // is shown. We don't want an animation on the dream, because
2569 // we need it shown immediately with the keyguard animating away
2570 // to reveal it.
2571 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002572 }
2573
2574 return 0;
2575 }
2576
Craig Mautner3c174372013-02-21 17:54:37 -08002577 @Override
2578 public void selectRotationAnimationLw(int anim[]) {
2579 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2580 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2581 + (mTopFullscreenOpaqueWindowState == null ?
2582 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2583 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2584 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2585 case ROTATION_ANIMATION_CROSSFADE:
2586 anim[0] = R.anim.rotation_animation_xfade_exit;
2587 anim[1] = R.anim.rotation_animation_enter;
2588 break;
2589 case ROTATION_ANIMATION_JUMPCUT:
2590 anim[0] = R.anim.rotation_animation_jump_exit;
2591 anim[1] = R.anim.rotation_animation_enter;
2592 break;
2593 case ROTATION_ANIMATION_ROTATE:
2594 default:
2595 anim[0] = anim[1] = 0;
2596 break;
2597 }
2598 } else {
2599 anim[0] = anim[1] = 0;
2600 }
2601 }
2602
2603 @Override
2604 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2605 boolean forceDefault) {
2606 switch (exitAnimId) {
2607 case R.anim.rotation_animation_xfade_exit:
2608 case R.anim.rotation_animation_jump_exit:
2609 // These are the only cases that matter.
2610 if (forceDefault) {
2611 return false;
2612 }
2613 int anim[] = new int[2];
2614 selectRotationAnimationLw(anim);
2615 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2616 default:
2617 return true;
2618 }
2619 }
2620
2621 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002622 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2623 boolean goingToNotificationShade) {
2624 if (goingToNotificationShade) {
2625 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002626 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002627
2628 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2629 R.anim.lock_screen_behind_enter_wallpaper :
2630 R.anim.lock_screen_behind_enter);
2631
2632 // TODO: Use XML interpolators when we have log interpolators available in XML.
2633 final List<Animation> animations = set.getAnimations();
2634 for (int i = animations.size() - 1; i >= 0; --i) {
2635 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2636 }
2637
2638 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002639 }
2640
2641
2642 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002643 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2644 if (goingToNotificationShade) {
2645 return null;
2646 } else {
2647 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2648 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002649 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002650
2651 private static void awakenDreams() {
2652 IDreamManager dreamManager = getDreamManager();
2653 if (dreamManager != null) {
2654 try {
2655 dreamManager.awaken();
2656 } catch (RemoteException e) {
2657 // fine, stay asleep then
2658 }
2659 }
2660 }
2661
2662 static IDreamManager getDreamManager() {
2663 return IDreamManager.Stub.asInterface(
2664 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2665 }
2666
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002667 TelecomManager getTelecommService() {
2668 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002669 }
2670
Jeff Brown4d396052010-10-29 21:50:21 -07002671 static IAudioService getAudioService() {
2672 IAudioService audioService = IAudioService.Stub.asInterface(
2673 ServiceManager.checkService(Context.AUDIO_SERVICE));
2674 if (audioService == null) {
2675 Log.w(TAG, "Unable to find IAudioService interface.");
2676 }
2677 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002678 }
2679
2680 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002681 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002682 }
2683
2684 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2685 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2686 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2687 };
2688
2689 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002690 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002691 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002692 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002693 final int keyCode = event.getKeyCode();
2694 final int repeatCount = event.getRepeatCount();
2695 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002696 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002697 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2698 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002699
Jeff Brown40013652012-05-16 21:22:36 -07002700 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002701 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002702 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2703 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002704 }
2705
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002706 // If we think we might have a volume down & power key chord on the way
2707 // but we're not sure, then tell the dispatcher to wait a little while and
2708 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002709 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002710 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002711 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002712 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2713 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002714 if (now < timeoutTime) {
2715 return timeoutTime - now;
2716 }
2717 }
2718 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002719 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002720 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002721 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002722 }
2723 return -1;
2724 }
2725 }
2726
Michael Wright6a62e552014-06-03 19:19:48 -07002727 // Cancel any pending meta actions if we see any other keys being pressed between the down
2728 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002729 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002730 mPendingMetaAction = false;
2731 }
2732
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002733 // First we always handle the home key here, so applications
2734 // can never break it, although if keyguard is on, we do let
2735 // it handle it, because that gives us the correct 5 second
2736 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002737 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002738
Jeff Brown49ed71d2010-12-06 17:13:33 -08002739 // If we have released the home key, and didn't do anything else
2740 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002741 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002742 cancelPreloadRecentApps();
2743
Jeff Brown49ed71d2010-12-06 17:13:33 -08002744 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002745 if (mHomeConsumed) {
2746 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002747 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002748 }
Jeff Browncaca8812013-05-09 13:34:33 -07002749
2750 if (canceled) {
2751 Log.i(TAG, "Ignoring HOME; event canceled.");
2752 return -1;
2753 }
2754
Yorke Lee4f803242014-12-15 23:22:06 +00002755 // If an incoming call is ringing, HOME is totally disabled.
2756 // (The user is already on the InCallUI at this point,
2757 // and his ONLY options are to answer or reject the call.)
2758 TelecomManager telecomManager = getTelecommService();
2759 if (telecomManager != null && telecomManager.isRinging()) {
2760 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2761 return -1;
2762 }
2763
Jeff Browncaca8812013-05-09 13:34:33 -07002764 // Delay handling home if a double-tap is possible.
2765 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2766 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2767 mHomeDoubleTapPending = true;
2768 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2769 ViewConfiguration.getDoubleTapTimeout());
2770 return -1;
2771 }
2772
Jeff Brown13f00f02014-10-31 14:45:50 -07002773 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002774 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002775 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002776
2777 // If a system window has focus, then it doesn't make sense
2778 // right now to interact with applications.
2779 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2780 if (attrs != null) {
2781 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002782 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2783 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2784 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002785 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002786 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002787 }
2788 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2789 for (int i=0; i<typeCount; i++) {
2790 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2791 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002792 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002793 }
2794 }
2795 }
Jeff Browncaca8812013-05-09 13:34:33 -07002796
2797 // Remember that home is pressed and handle special actions.
2798 if (repeatCount == 0) {
2799 mHomePressed = true;
2800 if (mHomeDoubleTapPending) {
2801 mHomeDoubleTapPending = false;
2802 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2803 handleDoubleTapOnHome();
2804 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2805 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2806 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002807 }
Jeff Browncaca8812013-05-09 13:34:33 -07002808 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2809 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002810 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002811 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002812 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002813 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002814 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002815 // Hijack modified menu keys for debugging features
2816 final int chordBug = KeyEvent.META_SHIFT_ON;
2817
2818 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002819 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002820 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002821 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2822 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002823 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002824 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002825 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002826 Intent service = new Intent();
2827 service.setClassName(mContext, "com.android.server.LoadAverageService");
2828 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002829 boolean shown = Settings.Global.getInt(
2830 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002831 if (!shown) {
2832 mContext.startService(service);
2833 } else {
2834 mContext.stopService(service);
2835 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002836 Settings.Global.putInt(
2837 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002838 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002839 }
2840 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002841 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002842 if (down) {
2843 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002844 mSearchKeyShortcutPending = true;
2845 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002846 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002847 } else {
2848 mSearchKeyShortcutPending = false;
2849 if (mConsumeSearchKeyUp) {
2850 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002851 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002852 }
2853 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002854 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002855 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002856 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002857 if (down && repeatCount == 0) {
2858 preloadRecentApps();
2859 } else if (!down) {
2860 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002861 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002862 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002863 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002864 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2865 if (down) {
2866 IStatusBarService service = getStatusBarService();
2867 if (service != null) {
2868 try {
2869 service.expandNotificationsPanel();
2870 } catch (RemoteException e) {
2871 // do nothing.
2872 }
2873 }
2874 }
Clara Bayarrif2debb12015-07-10 14:47:17 +01002875 } else if (keyCode == KeyEvent.KEYCODE_SLASH && event.isMetaPressed()) {
2876 if (down) {
2877 if (repeatCount == 0) {
2878 showKeyboardShortcutsMenu();
2879 }
2880 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002881 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2882 if (down) {
2883 if (repeatCount == 0) {
2884 mAssistKeyLongPressed = false;
2885 } else if (repeatCount == 1) {
2886 mAssistKeyLongPressed = true;
2887 if (!keyguardOn) {
2888 launchAssistLongPressAction();
2889 }
2890 }
2891 } else {
2892 if (mAssistKeyLongPressed) {
2893 mAssistKeyLongPressed = false;
2894 } else {
2895 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002896 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002897 }
2898 }
2899 }
2900 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002901 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2902 if (!down) {
2903 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002904 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002905 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2906 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002907 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2908 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2909 if (dic != null) {
2910 try {
2911 dic.exitIdle("voice-search");
2912 } catch (RemoteException e) {
2913 }
2914 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002915 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002916 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002917 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002918 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002919 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002920 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2921 if (down && repeatCount == 0) {
2922 mHandler.post(mScreenshotRunnable);
2923 }
2924 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002925 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2926 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2927 if (down) {
2928 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2929
2930 // Disable autobrightness if it's on
2931 int auto = Settings.System.getIntForUser(
2932 mContext.getContentResolver(),
2933 Settings.System.SCREEN_BRIGHTNESS_MODE,
2934 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2935 UserHandle.USER_CURRENT_OR_SELF);
2936 if (auto != 0) {
2937 Settings.System.putIntForUser(mContext.getContentResolver(),
2938 Settings.System.SCREEN_BRIGHTNESS_MODE,
2939 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2940 UserHandle.USER_CURRENT_OR_SELF);
2941 }
2942
2943 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2944 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2945 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2946 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2947 Settings.System.SCREEN_BRIGHTNESS,
2948 mPowerManager.getDefaultScreenBrightnessSetting(),
2949 UserHandle.USER_CURRENT_OR_SELF);
2950 brightness += step;
2951 // Make sure we don't go beyond the limits.
2952 brightness = Math.min(max, brightness);
2953 brightness = Math.max(min, brightness);
2954
2955 Settings.System.putIntForUser(mContext.getContentResolver(),
2956 Settings.System.SCREEN_BRIGHTNESS, brightness,
2957 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002958 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002959 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002960 }
2961 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002962 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002963 if (down) {
2964 mPendingMetaAction = true;
2965 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002966 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002967 }
2968 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002969 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002970
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002971 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002972 // Any printing key that is chorded with Search should be consumed
2973 // even if no shortcut was invoked. This prevents text from being
2974 // inadvertently inserted when using a keyboard that has built-in macro
2975 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002976 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002977 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2978 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002979 mConsumeSearchKeyUp = true;
2980 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002981 if (down && repeatCount == 0 && !keyguardOn) {
2982 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2983 if (shortcutIntent != null) {
2984 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002985 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002986 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002987 } catch (ActivityNotFoundException ex) {
2988 Slog.w(TAG, "Dropping shortcut key combination because "
2989 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002990 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002991 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002992 } else {
2993 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002994 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002995 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002996 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002997 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002998 }
2999 }
3000
Jeff Brown68b909d2011-12-07 16:36:01 -08003001 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07003002 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08003003 && (metaState & KeyEvent.META_META_ON) != 0) {
3004 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07003005 if (kcm.isPrintingKey(keyCode)) {
3006 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
3007 metaState & ~(KeyEvent.META_META_ON
3008 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
3009 if (shortcutIntent != null) {
3010 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3011 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00003012 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07003013 } catch (ActivityNotFoundException ex) {
3014 Slog.w(TAG, "Dropping shortcut key combination because "
3015 + "the activity to which it is registered was not found: "
3016 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
3017 }
3018 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08003019 }
Jeff Brown68b909d2011-12-07 16:36:01 -08003020 }
3021 }
3022
Jeff Brown6651a632011-11-28 12:59:11 -08003023 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07003024 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08003025 String category = sApplicationLaunchKeyCategories.get(keyCode);
3026 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08003027 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08003028 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3029 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00003030 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08003031 } catch (ActivityNotFoundException ex) {
3032 Slog.w(TAG, "Dropping application launch key because "
3033 + "the activity to which it is registered was not found: "
3034 + "keyCode=" + keyCode + ", category=" + category, ex);
3035 }
Jeff Brown68b909d2011-12-07 16:36:01 -08003036 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08003037 }
3038 }
3039
Michael Wright61c46752014-08-21 16:57:33 -07003040 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08003041 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Michael Wrightd847ad52015-10-24 13:24:15 +01003042 if (mRecentAppsHeldModifiers == 0 && !keyguardOn && isUserSetupComplete()) {
Jeff Brown68b909d2011-12-07 16:36:01 -08003043 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07003044 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003045 mRecentAppsHeldModifiers = shiftlessModifiers;
3046 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08003047 return -1;
3048 }
3049 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07003050 } else if (!down && mRecentAppsHeldModifiers != 0
3051 && (metaState & mRecentAppsHeldModifiers) == 0) {
3052 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07003053 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08003054 }
3055
Jeff Browncf39bdf2012-05-18 14:41:19 -07003056 // Handle keyboard language switching.
3057 if (down && repeatCount == 0
3058 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3059 || (keyCode == KeyEvent.KEYCODE_SPACE
3060 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
3061 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
3062 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
3063 return -1;
3064 }
3065 if (mLanguageSwitchKeyPressed && !down
3066 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3067 || keyCode == KeyEvent.KEYCODE_SPACE)) {
3068 mLanguageSwitchKeyPressed = false;
3069 return -1;
3070 }
3071
Jeff Brown13f00f02014-10-31 14:45:50 -07003072 if (isValidGlobalKey(keyCode)
3073 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003074 return -1;
3075 }
3076
Michael Wright6a62e552014-06-03 19:19:48 -07003077 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003078 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003079 return -1;
3080 }
3081
Jeff Brown68b909d2011-12-07 16:36:01 -08003082 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003083 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003084 }
3085
Jeff Brown3915bb82010-11-05 15:02:16 -07003086 /** {@inheritDoc} */
3087 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003088 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003089 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003090 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003091 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3092 + ", flags=" + event.getFlags()
3093 + ", keyCode=" + event.getKeyCode()
3094 + ", scanCode=" + event.getScanCode()
3095 + ", metaState=" + event.getMetaState()
3096 + ", repeatCount=" + event.getRepeatCount()
3097 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003098 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003099
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003100 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003101 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3102 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003103 final int keyCode = event.getKeyCode();
3104 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003105 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3106 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003107
Jeff Brown54875002011-04-06 15:33:01 -07003108 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003109 final FallbackAction fallbackAction;
3110 if (initialDown) {
3111 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3112 } else {
3113 fallbackAction = mFallbackActions.get(keyCode);
3114 }
3115
3116 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003117 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003118 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3119 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003120 }
3121
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003122 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3123 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003124 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003125 event.getAction(), fallbackAction.keyCode,
3126 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003127 event.getDeviceId(), event.getScanCode(),
3128 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003129
3130 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3131 fallbackEvent.recycle();
3132 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003133 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003134
3135 if (initialDown) {
3136 mFallbackActions.put(keyCode, fallbackAction);
3137 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3138 mFallbackActions.remove(keyCode);
3139 fallbackAction.recycle();
3140 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003141 }
3142 }
3143
Jeff Brown40013652012-05-16 21:22:36 -07003144 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003145 if (fallbackEvent == null) {
3146 Slog.d(TAG, "No fallback.");
3147 } else {
3148 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3149 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003150 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003151 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003152 }
3153
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003154 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003155 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003156 if ((actions & ACTION_PASS_TO_USER) != 0) {
3157 long delayMillis = interceptKeyBeforeDispatching(
3158 win, fallbackEvent, policyFlags);
3159 if (delayMillis == 0) {
3160 return true;
3161 }
3162 }
3163 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003164 }
3165
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003166 private void launchAssistLongPressAction() {
3167 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3168 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3169
3170 // launch the search activity
3171 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3172 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3173 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003174 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003175 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003176 SearchManager searchManager = getSearchManager();
3177 if (searchManager != null) {
3178 searchManager.stopSearch();
3179 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003180 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003181 } catch (ActivityNotFoundException e) {
3182 Slog.w(TAG, "No activity to handle assist long press action.", e);
3183 }
3184 }
3185
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003186 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003187 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003188 if (!isUserSetupComplete()) {
3189 // Disable opening assist window during setup
3190 return;
3191 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003192 Bundle args = null;
3193 if (deviceId > Integer.MIN_VALUE) {
3194 args = new Bundle();
3195 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003196 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003197 if ((mContext.getResources().getConfiguration().uiMode
3198 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3199 // On TV, use legacy handling until assistants are implemented in the proper way.
3200 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3201 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3202 } else {
3203 try {
3204 if (hint != null) {
3205 if (args == null) {
3206 args = new Bundle();
3207 }
3208 args.putBoolean(hint, true);
3209 }
3210 IStatusBarService statusbar = getStatusBarService();
3211 if (statusbar != null) {
3212 statusbar.startAssist(args);
3213 }
3214 } catch (RemoteException e) {
3215 Slog.e(TAG, "RemoteException when starting assist", e);
3216 // re-acquire status bar service next time it is needed.
3217 mStatusBarService = null;
3218 }
3219 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003220 }
3221
Bart Sears8b1c27c2015-03-18 23:51:02 +00003222 private void startActivityAsUser(Intent intent, UserHandle handle) {
3223 if (isUserSetupComplete()) {
3224 mContext.startActivityAsUser(intent, handle);
3225 } else {
3226 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3227 }
3228 }
3229
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003230 private SearchManager getSearchManager() {
3231 if (mSearchManager == null) {
3232 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3233 }
3234 return mSearchManager;
3235 }
3236
Jeff Browncaca8812013-05-09 13:34:33 -07003237 private void preloadRecentApps() {
3238 mPreloadedRecentApps = true;
3239 try {
3240 IStatusBarService statusbar = getStatusBarService();
3241 if (statusbar != null) {
3242 statusbar.preloadRecentApps();
3243 }
3244 } catch (RemoteException e) {
3245 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3246 // re-acquire status bar service next time it is needed.
3247 mStatusBarService = null;
3248 }
3249 }
3250
3251 private void cancelPreloadRecentApps() {
3252 if (mPreloadedRecentApps) {
3253 mPreloadedRecentApps = false;
3254 try {
3255 IStatusBarService statusbar = getStatusBarService();
3256 if (statusbar != null) {
3257 statusbar.cancelPreloadRecentApps();
3258 }
3259 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003260 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003261 // re-acquire status bar service next time it is needed.
3262 mStatusBarService = null;
3263 }
3264 }
3265 }
3266
3267 private void toggleRecentApps() {
3268 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003269 try {
3270 IStatusBarService statusbar = getStatusBarService();
3271 if (statusbar != null) {
3272 statusbar.toggleRecentApps();
3273 }
3274 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003275 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3276 // re-acquire status bar service next time it is needed.
3277 mStatusBarService = null;
3278 }
3279 }
3280
Craig Mautner84984fa2014-06-19 11:19:20 -07003281 @Override
3282 public void showRecentApps() {
3283 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3284 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3285 }
3286
Winson Chung1e8d71b2014-05-16 17:05:22 -07003287 private void showRecentApps(boolean triggeredFromAltTab) {
3288 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3289 try {
3290 IStatusBarService statusbar = getStatusBarService();
3291 if (statusbar != null) {
3292 statusbar.showRecentApps(triggeredFromAltTab);
3293 }
3294 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003295 Slog.e(TAG, "RemoteException when showing recent apps", e);
3296 // re-acquire status bar service next time it is needed.
3297 mStatusBarService = null;
3298 }
3299 }
3300
Clara Bayarrif2debb12015-07-10 14:47:17 +01003301 private void showKeyboardShortcutsMenu() {
3302 try {
3303 IStatusBarService statusbar = getStatusBarService();
3304 if (statusbar != null) {
3305 statusbar.showKeyboardShortcutsMenu();
3306 }
3307 } catch (RemoteException e) {
3308 Slog.e(TAG, "RemoteException when showing keyboard shortcuts menu", e);
3309 }
3310 }
3311
Winson Chungcdcd4872014-08-05 18:00:13 -07003312 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003313 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3314 try {
3315 IStatusBarService statusbar = getStatusBarService();
3316 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003317 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003318 }
3319 } catch (RemoteException e) {
3320 Slog.e(TAG, "RemoteException when closing recent apps", e);
3321 // re-acquire status bar service next time it is needed.
3322 mStatusBarService = null;
3323 }
3324 }
3325
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003326 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003327 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003328 }
3329
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003330 /**
3331 * A home key -> launch home action was detected. Take the appropriate action
3332 * given the situation with the keyguard.
3333 */
Bryce Lee662ed802015-04-10 20:11:39 +00003334 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3335 if (respectKeyguard) {
3336 if (isKeyguardShowingAndNotOccluded()) {
3337 // don't launch home if keyguard showing
3338 return;
3339 }
3340
3341 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3342 // when in keyguard restricted mode, must first verify unlock
3343 // before launching home
3344 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3345 @Override
3346 public void onKeyguardExitResult(boolean success) {
3347 if (success) {
3348 try {
3349 ActivityManagerNative.getDefault().stopAppSwitches();
3350 } catch (RemoteException e) {
3351 }
3352 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3353 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003354 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003355 }
Bryce Lee662ed802015-04-10 20:11:39 +00003356 });
3357 return;
3358 }
3359 }
3360
3361 // no keyguard stuff to worry about, just launch home!
3362 try {
3363 ActivityManagerNative.getDefault().stopAppSwitches();
3364 } catch (RemoteException e) {
3365 }
3366 if (mRecentsVisible) {
3367 // Hide Recents and notify it to launch Home
3368 if (awakenFromDreams) {
3369 awakenDreams();
3370 }
3371 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3372 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003373 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003374 // Otherwise, just launch Home
3375 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3376 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003377 }
3378 }
3379
John Spurlock04db1762013-05-13 12:46:41 -04003380 private final Runnable mClearHideNavigationFlag = new Runnable() {
3381 @Override
3382 public void run() {
3383 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3384 // Clear flags.
3385 mForceClearedSystemUiFlags &=
3386 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3387 }
3388 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003389 }
3390 };
3391
3392 /**
3393 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3394 * to determine when the nav bar should be shown and prevent applications from
3395 * receiving those touches.
3396 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003397 final class HideNavInputEventReceiver extends InputEventReceiver {
3398 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3399 super(inputChannel, looper);
3400 }
3401
Dianne Hackborndf89e652011-10-06 22:35:11 -07003402 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003403 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003404 boolean handled = false;
3405 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003406 if (event instanceof MotionEvent
3407 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3408 final MotionEvent motionEvent = (MotionEvent)event;
3409 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003410 // When the user taps down, we re-show the nav bar.
3411 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003412 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003413 // Any user activity always causes us to show the
3414 // navigation controls, if they had been hidden.
3415 // We also clear the low profile and only content
3416 // flags so that tapping on the screen will atomically
3417 // restore all currently hidden screen decorations.
3418 int newVal = mResettingSystemUiFlags |
3419 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3420 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3421 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003422 if (mResettingSystemUiFlags != newVal) {
3423 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003424 changed = true;
3425 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003426 // We don't allow the system's nav bar to be hidden
3427 // again for 1 second, to prevent applications from
3428 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003429 newVal = mForceClearedSystemUiFlags |
3430 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003431 if (mForceClearedSystemUiFlags != newVal) {
3432 mForceClearedSystemUiFlags = newVal;
3433 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003434 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003435 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003436 }
3437 if (changed) {
3438 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3439 }
3440 }
3441 }
3442 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003443 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003444 }
3445 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003446 }
3447 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3448 new InputEventReceiver.Factory() {
3449 @Override
3450 public InputEventReceiver createInputEventReceiver(
3451 InputChannel inputChannel, Looper looper) {
3452 return new HideNavInputEventReceiver(inputChannel, looper);
3453 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003454 };
3455
3456 @Override
3457 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003458 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3459 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003460 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003461
Dianne Hackborndf89e652011-10-06 22:35:11 -07003462 // Reset any bits in mForceClearingStatusBarVisibility that
3463 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003464 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003465 // Clear any bits in the new visibility that are currently being
3466 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003467 return visibility & ~mResettingSystemUiFlags
3468 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003469 }
3470
Craig Mautner69b08182012-09-05 13:07:13 -07003471 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003472 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3473 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003474 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003475 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3476 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003477
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003478 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3479 if (useOutsets) {
3480 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3481 if (outset > 0) {
3482 if (displayRotation == Surface.ROTATION_0) {
3483 outOutsets.bottom += outset;
3484 } else if (displayRotation == Surface.ROTATION_90) {
3485 outOutsets.right += outset;
3486 } else if (displayRotation == Surface.ROTATION_180) {
3487 outOutsets.top += outset;
3488 } else if (displayRotation == Surface.ROTATION_270) {
3489 outOutsets.left += outset;
3490 }
3491 }
3492 }
3493
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003494 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003495 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003496 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003497 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003498 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003499 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3500 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3501 } else {
3502 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3503 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3504 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003505 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3506 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003507 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003508 availRight - mStableFullscreenRight,
3509 availBottom - mStableFullscreenBottom);
3510 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003511 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003512 availRight - mStableRight, availBottom - mStableBottom);
3513 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003514 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003515 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003516 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003517 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003518 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003519 availRight - mCurRight, availBottom - mCurBottom);
3520 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003521 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003522 availRight - mCurRight, availBottom - mCurBottom);
3523 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003524
3525 outStableInsets.set(mStableLeft, mStableTop,
3526 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003527 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003528 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003529 outContentInsets.setEmpty();
3530 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003531 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003532
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003533 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3534 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3535 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3536 }
3537
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003538 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003539 @Override
3540 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3541 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003542 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003543 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3544 if (isDefaultDisplay) {
3545 switch (displayRotation) {
3546 case Surface.ROTATION_90:
3547 overscanLeft = mOverscanTop;
3548 overscanTop = mOverscanRight;
3549 overscanRight = mOverscanBottom;
3550 overscanBottom = mOverscanLeft;
3551 break;
3552 case Surface.ROTATION_180:
3553 overscanLeft = mOverscanRight;
3554 overscanTop = mOverscanBottom;
3555 overscanRight = mOverscanLeft;
3556 overscanBottom = mOverscanTop;
3557 break;
3558 case Surface.ROTATION_270:
3559 overscanLeft = mOverscanBottom;
3560 overscanTop = mOverscanLeft;
3561 overscanRight = mOverscanTop;
3562 overscanBottom = mOverscanRight;
3563 break;
3564 default:
3565 overscanLeft = mOverscanLeft;
3566 overscanTop = mOverscanTop;
3567 overscanRight = mOverscanRight;
3568 overscanBottom = mOverscanBottom;
3569 break;
3570 }
3571 } else {
3572 overscanLeft = 0;
3573 overscanTop = 0;
3574 overscanRight = 0;
3575 overscanBottom = 0;
3576 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003577 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3578 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3579 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3580 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003581 mSystemLeft = 0;
3582 mSystemTop = 0;
3583 mSystemRight = displayWidth;
3584 mSystemBottom = displayHeight;
3585 mUnrestrictedScreenLeft = overscanLeft;
3586 mUnrestrictedScreenTop = overscanTop;
3587 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3588 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3589 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3590 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003591 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3592 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003593 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003594 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003595 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003596 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003597 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003598 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003599 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003600 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003601 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003602 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003603
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003604 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3605 final Rect pf = mTmpParentFrame;
3606 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003607 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003608 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003609 final Rect dcf = mTmpDecorFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003610 pf.left = df.left = of.left = vf.left = mDockLeft;
3611 pf.top = df.top = of.top = vf.top = mDockTop;
3612 pf.right = df.right = of.right = vf.right = mDockRight;
3613 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003614 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003615
Craig Mautner69b08182012-09-05 13:07:13 -07003616 if (isDefaultDisplay) {
3617 // For purposes of putting out fake window up to steal focus, we will
3618 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003619 final int sysui = mLastSystemUiFlags;
3620 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003621 boolean navTranslucent = (sysui
Jorim Jaggi4fa78922015-11-30 17:13:56 -08003622 & (View.NAVIGATION_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003623 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3624 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3625 boolean navAllowedHidden = immersive || immersiveSticky;
3626 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003627 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3628 if (!isKeyguardShowing) {
3629 navTranslucent &= areTranslucentBarsAllowed();
3630 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003631
Craig Mautner69b08182012-09-05 13:07:13 -07003632 // When the navigation bar isn't visible, we put up a fake
3633 // input window to catch all touch events. This way we can
3634 // detect when the user presses anywhere to bring back the nav
3635 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003636 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003637 if (mInputConsumer != null) {
3638 mInputConsumer.dismiss();
3639 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003640 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003641 } else if (mInputConsumer == null) {
3642 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3643 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003644 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003645
Craig Mautner69b08182012-09-05 13:07:13 -07003646 // For purposes of positioning and showing the nav bar, if we have
3647 // decided that it can't be hidden (because of the screen aspect ratio),
3648 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003649 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003650
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003651 boolean updateSysUiVisibility = layoutNavigationBar(displayWidth, displayHeight,
3652 displayRotation, overscanRight, overscanBottom, dcf, navVisible, navTranslucent,
3653 navAllowedHidden);
Craig Mautnereda67292013-04-28 13:50:14 -07003654 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003655 mDockLeft, mDockTop, mDockRight, mDockBottom));
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003656 updateSysUiVisibility |= layoutStatusBar(pf, df, of, vf, dcf, sysui, isKeyguardShowing);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003657 if (updateSysUiVisibility) {
3658 updateSystemUiVisibilityLw();
3659 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003660 }
3661 }
3662
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003663 private boolean layoutStatusBar(Rect pf, Rect df, Rect of, Rect vf, Rect dcf, int sysui,
3664 boolean isKeyguardShowing) {
3665 // decide where the status bar goes ahead of time
3666 if (mStatusBar != null) {
3667 // apply any navigation bar insets
3668 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3669 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3670 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3671 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3672 + mUnrestrictedScreenTop;
3673 vf.left = mStableLeft;
3674 vf.top = mStableTop;
3675 vf.right = mStableRight;
3676 vf.bottom = mStableBottom;
3677
3678 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3679
3680 // Let the status bar determine its size.
3681 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3682 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3683 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
3684
3685 // For layout, the status bar is always at the top with our fixed height.
3686 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3687
3688 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
3689 boolean statusBarTranslucent = (sysui
Jorim Jaggi4fa78922015-11-30 17:13:56 -08003690 & (View.STATUS_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSPARENT)) != 0;
Filip Gruszczynski83dd9552015-09-17 17:50:36 -07003691 if (!isKeyguardShowing) {
3692 statusBarTranslucent &= areTranslucentBarsAllowed();
3693 }
3694
3695 // If the status bar is hidden, we don't want to cause
3696 // windows behind it to scroll.
3697 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
3698 // Status bar may go away, so the screen area it occupies
3699 // is available to apps but just covering them when the
3700 // status bar is visible.
3701 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3702
3703 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3704 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3705 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3706 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3707
3708 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
3709 String.format(
3710 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3711 mDockLeft, mDockTop, mDockRight, mDockBottom,
3712 mContentLeft, mContentTop, mContentRight, mContentBottom,
3713 mCurLeft, mCurTop, mCurRight, mCurBottom));
3714 }
3715 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
3716 && !statusBarTransient && !statusBarTranslucent
3717 && !mStatusBarController.wasRecentlyTranslucent()) {
3718 // If the opaque status bar is currently requested to be visible,
3719 // and not in the process of animating on or off, then
3720 // we can tell the app that it is covered by it.
3721 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3722 }
3723 if (mStatusBarController.checkHiddenLw()) {
3724 return true;
3725 }
3726 }
3727 return false;
3728 }
3729
3730 private boolean layoutNavigationBar(int displayWidth, int displayHeight, int displayRotation,
3731 int overscanRight, int overscanBottom, Rect dcf, boolean navVisible,
3732 boolean navTranslucent, boolean navAllowedHidden) {
3733 if (mNavigationBar != null) {
3734 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
3735 // Force the navigation bar to its appropriate place and
3736 // size. We need to do this directly, instead of relying on
3737 // it to bubble up from the nav bar, because this needs to
3738 // change atomically with screen rotations.
3739 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3740 if (mNavigationBarOnBottom) {
3741 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
3742 int top = displayHeight - overscanBottom
3743 - mNavigationBarHeightForRotation[displayRotation];
3744 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
3745 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
3746 if (transientNavBarShowing) {
3747 mNavigationBarController.setBarShowingLw(true);
3748 } else if (navVisible) {
3749 mNavigationBarController.setBarShowingLw(true);
3750 mDockBottom = mTmpNavigationFrame.top;
3751 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3752 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
3753 } else {
3754 // We currently want to hide the navigation UI.
3755 mNavigationBarController.setBarShowingLw(false);
3756 }
3757 if (navVisible && !navTranslucent && !navAllowedHidden
3758 && !mNavigationBar.isAnimatingLw()
3759 && !mNavigationBarController.wasRecentlyTranslucent()) {
3760 // If the opaque nav bar is currently requested to be visible,
3761 // and not in the process of animating on or off, then
3762 // we can tell the app that it is covered by it.
3763 mSystemBottom = mTmpNavigationFrame.top;
3764 }
3765 } else {
3766 // Landscape screen; nav bar goes to the right.
3767 int left = displayWidth - overscanRight
3768 - mNavigationBarWidthForRotation[displayRotation];
3769 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
3770 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
3771 if (transientNavBarShowing) {
3772 mNavigationBarController.setBarShowingLw(true);
3773 } else if (navVisible) {
3774 mNavigationBarController.setBarShowingLw(true);
3775 mDockRight = mTmpNavigationFrame.left;
3776 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3777 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
3778 } else {
3779 // We currently want to hide the navigation UI.
3780 mNavigationBarController.setBarShowingLw(false);
3781 }
3782 if (navVisible && !navTranslucent && !navAllowedHidden
3783 && !mNavigationBar.isAnimatingLw()
3784 && !mNavigationBarController.wasRecentlyTranslucent()) {
3785 // If the nav bar is currently requested to be visible,
3786 // and not in the process of animating on or off, then
3787 // we can tell the app that it is covered by it.
3788 mSystemRight = mTmpNavigationFrame.left;
3789 }
3790 }
3791 // Make sure the content and current rectangles are updated to
3792 // account for the restrictions from the navigation bar.
3793 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3794 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3795 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3796 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3797 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3798 // And compute the final frame.
3799 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
3800 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3801 mTmpNavigationFrame, mTmpNavigationFrame);
3802 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
3803 if (mNavigationBarController.checkHiddenLw()) {
3804 return true;
3805 }
3806 }
3807 return false;
3808 }
3809
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003810 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003811 @Override
John Spurlock46646232013-09-30 22:32:42 -04003812 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003813 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3814 return mStatusBar.getSurfaceLayer();
3815 }
3816
3817 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3818 return mNavigationBar.getSurfaceLayer();
3819 }
3820
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003821 return 0;
3822 }
3823
Craig Mautner967212c2013-04-13 21:10:58 -07003824 @Override
3825 public void getContentRectLw(Rect r) {
3826 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3827 }
3828
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003829 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3830 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003831 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3832 // Here's a special case: if this attached window is a panel that is
3833 // above the dock window, and the window it is attached to is below
3834 // the dock window, then the frames we computed for the window it is
3835 // attached to can not be used because the dock is effectively part
3836 // of the underlying window and the attached window is floating on top
3837 // of the whole thing. So, we ignore the attached window and explicitly
3838 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003839 df.left = of.left = cf.left = vf.left = mDockLeft;
3840 df.top = of.top = cf.top = vf.top = mDockTop;
3841 df.right = of.right = cf.right = vf.right = mDockRight;
3842 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003843 } else {
3844 // The effective display frame of the attached window depends on
3845 // whether it is taking care of insetting its content. If not,
3846 // we need to use the parent's content frame so that the entire
3847 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003848 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003849 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003850 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003851 // Set the content frame of the attached window to the parent's decor frame
3852 // (same as content frame when IME isn't present) if specifically requested by
3853 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3854 // Otherwise, use the overscan frame.
3855 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3856 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003857 } else {
3858 // If the window is resizing, then we want to base the content
3859 // frame on our attached content frame to resize... however,
3860 // things can be tricky if the attached window is NOT in resize
3861 // mode, in which case its content frame will be larger.
3862 // Ungh. So to deal with that, make sure the content frame
3863 // we end up using is not covering the IM dock.
3864 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003865 if (attached.isVoiceInteraction()) {
3866 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3867 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3868 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3869 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3870 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003871 if (cf.left < mContentLeft) cf.left = mContentLeft;
3872 if (cf.top < mContentTop) cf.top = mContentTop;
3873 if (cf.right > mContentRight) cf.right = mContentRight;
3874 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3875 }
3876 }
3877 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003878 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003879 vf.set(attached.getVisibleFrameLw());
3880 }
3881 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3882 // window should be positioned relative to its parent or the entire
3883 // screen.
3884 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3885 ? attached.getFrameLw() : df);
3886 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003887
3888 private void applyStableConstraints(int sysui, int fl, Rect r) {
3889 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3890 // If app is requesting a stable layout, don't let the
3891 // content insets go below the stable values.
3892 if ((fl & FLAG_FULLSCREEN) != 0) {
3893 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3894 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3895 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3896 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3897 } else {
3898 if (r.left < mStableLeft) r.left = mStableLeft;
3899 if (r.top < mStableTop) r.top = mStableTop;
3900 if (r.right > mStableRight) r.right = mStableRight;
3901 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3902 }
3903 }
3904 }
3905
Jorim Jaggiaa806142015-05-20 18:04:16 -07003906 private boolean canReceiveInput(WindowState win) {
3907 boolean notFocusable =
3908 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3909 boolean altFocusableIm =
3910 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3911 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3912 return !notFocusableForIm;
3913 }
3914
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003915 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003916 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003917 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003918 // We've already done the navigation bar and status bar. If the status bar can receive
3919 // input, we need to layout it again to accomodate for the IME window.
3920 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003921 return;
3922 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003923 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003924 final boolean isDefaultDisplay = win.isDefaultDisplay();
3925 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003926 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3927 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003928 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003929 offsetInputMethodWindowLw(mLastInputMethodWindow);
3930 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003931
John Spurlockc6d1c602014-01-17 15:22:06 -05003932 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003933 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003934 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003935
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003936 final Rect pf = mTmpParentFrame;
3937 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003938 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003939 final Rect cf = mTmpContentFrame;
3940 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003941 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003942 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003943 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003944 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003945
3946 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003947 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003948
Craig Mautnerf683b562012-10-02 11:10:57 -07003949 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3950
Adrian Roosfa104232014-06-20 16:10:14 -07003951 if (isDefaultDisplay) {
3952 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3953 } else {
3954 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3955 }
3956
Craig Mautner69b08182012-09-05 13:07:13 -07003957 if (!isDefaultDisplay) {
3958 if (attached != null) {
3959 // If this window is attached to another, our display
3960 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003961 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003962 } else {
3963 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003964 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3965 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3966 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003967 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003968 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003969 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003970 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003971 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003972 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3973 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3974 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003975 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003976 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003977 // ...with content insets above the nav bar
3978 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003979 // IM dock windows always go to the bottom of the screen.
3980 attrs.gravity = Gravity.BOTTOM;
3981 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003982 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003983 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003984 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003985 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3986 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003987 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003988 // Note: In Phone landscape mode, the button bar should also be excluded.
3989 cf.right = vf.right = mStableRight;
3990 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003991 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003992 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003993 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3994 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3995 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3996 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3997 cf.left = vf.left = mStableLeft;
3998 cf.top = vf.top = mStableTop;
3999 cf.right = vf.right = mStableRight;
4000 vf.bottom = mStableBottom;
4001 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004002 } else {
John Spurlock46646232013-09-30 22:32:42 -04004003
4004 // Default policy decor for the default display
4005 dcf.left = mSystemLeft;
4006 dcf.top = mSystemTop;
4007 dcf.right = mSystemRight;
4008 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04004009 final boolean inheritTranslucentDecor = (attrs.privateFlags
4010 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04004011 final boolean isAppWindow =
4012 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
4013 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
4014 final boolean topAtRest =
4015 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
4016 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04004017 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
4018 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02004019 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
4020 && (fl & WindowManager.LayoutParams.
Jorim Jaggi4fa78922015-11-30 17:13:56 -08004021 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0
4022 && !mForceWindowDrawsStatusBarBackground) {
John Spurlock46646232013-09-30 22:32:42 -04004023 // Ensure policy decor includes status bar
4024 dcf.top = mStableTop;
4025 }
John Spurlockbd957402013-10-03 11:38:39 -04004026 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02004027 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
4028 && (fl & WindowManager.LayoutParams.
4029 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04004030 // Ensure policy decor includes navigation bar
4031 dcf.bottom = mStableBottom;
4032 dcf.right = mStableRight;
4033 }
4034 }
4035
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004036 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
4037 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07004038 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004039 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004040 // This is the case for a normal activity window: we want it
4041 // to cover all of the screen space, and it can take care of
4042 // moving its contents to account for screen decorations that
4043 // intrude into that space.
4044 if (attached != null) {
4045 // If this window is attached to another, our display
4046 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004047 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004048 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004049 if (attrs.type == TYPE_STATUS_BAR_PANEL
4050 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08004051 // Status bar panels are the only windows who can go on top of
4052 // the status bar. They are protected by the STATUS_BAR_SERVICE
4053 // permission, so they have the same privileges as the status
4054 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004055 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004056 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004057
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004058 pf.left = df.left = of.left = hasNavBar
4059 ? mDockLeft : mUnrestrictedScreenLeft;
4060 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4061 pf.right = df.right = of.right = hasNavBar
4062 ? mRestrictedScreenLeft+mRestrictedScreenWidth
4063 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4064 pf.bottom = df.bottom = of.bottom = hasNavBar
4065 ? mRestrictedScreenTop+mRestrictedScreenHeight
4066 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004067
Craig Mautnereda67292013-04-28 13:50:14 -07004068 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004069 "Laying out status bar window: (%d,%d - %d,%d)",
4070 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04004071 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004072 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4073 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4074 // Asking to layout into the overscan region, so give it that pure
4075 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004076 pf.left = df.left = of.left = mOverscanScreenLeft;
4077 pf.top = df.top = of.top = mOverscanScreenTop;
4078 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
4079 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
4080 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004081 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004082 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004083 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4084 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004085 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08004086 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004087 // only do this for application windows to ensure no window that
4088 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08004089 pf.left = df.left = mOverscanScreenLeft;
4090 pf.top = df.top = mOverscanScreenTop;
4091 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4092 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004093 // We need to tell the app about where the frame inside the overscan
4094 // is, so it can inset its content by that amount -- it didn't ask
4095 // to actually extend itself into the overscan region.
4096 of.left = mUnrestrictedScreenLeft;
4097 of.top = mUnrestrictedScreenTop;
4098 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4099 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004100 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004101 pf.left = df.left = mRestrictedOverscanScreenLeft;
4102 pf.top = df.top = mRestrictedOverscanScreenTop;
4103 pf.right = df.right = mRestrictedOverscanScreenLeft
4104 + mRestrictedOverscanScreenWidth;
4105 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4106 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004107 // We need to tell the app about where the frame inside the overscan
4108 // is, so it can inset its content by that amount -- it didn't ask
4109 // to actually extend itself into the overscan region.
4110 of.left = mUnrestrictedScreenLeft;
4111 of.top = mUnrestrictedScreenTop;
4112 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4113 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004114 }
Craig Mautner69b08182012-09-05 13:07:13 -07004115
John Spurlock46646232013-09-30 22:32:42 -04004116 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004117 if (win.isVoiceInteraction()) {
4118 cf.left = mVoiceContentLeft;
4119 cf.top = mVoiceContentTop;
4120 cf.right = mVoiceContentRight;
4121 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004122 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004123 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4124 cf.left = mDockLeft;
4125 cf.top = mDockTop;
4126 cf.right = mDockRight;
4127 cf.bottom = mDockBottom;
4128 } else {
4129 cf.left = mContentLeft;
4130 cf.top = mContentTop;
4131 cf.right = mContentRight;
4132 cf.bottom = mContentBottom;
4133 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004134 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004135 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004136 // Full screen windows are always given a layout that is as if the
4137 // status bar and other transient decors are gone. This is to avoid
4138 // bad states when moving from a window that is not hding the
4139 // status bar to one that is.
4140 cf.left = mRestrictedScreenLeft;
4141 cf.top = mRestrictedScreenTop;
4142 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4143 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004144 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004145 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004146 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4147 vf.left = mCurLeft;
4148 vf.top = mCurTop;
4149 vf.right = mCurRight;
4150 vf.bottom = mCurBottom;
4151 } else {
4152 vf.set(cf);
4153 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004154 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004155 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4156 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4157 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004158 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4159 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004160 // A window that has requested to fill the entire screen just
4161 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004162 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004163 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4164 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004165 pf.left = df.left = of.left = cf.left = hasNavBar
4166 ? mDockLeft : mUnrestrictedScreenLeft;
4167 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4168 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004169 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004170 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004171 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004172 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004173 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004174 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004175 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4176 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004177 } else if (attrs.type == TYPE_NAVIGATION_BAR
4178 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004179 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004180 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4181 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4182 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4183 + mUnrestrictedScreenWidth;
4184 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4185 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004186 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004187 "Laying out navigation bar window: (%d,%d - %d,%d)",
4188 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004189 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4190 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004191 && ((fl & FLAG_FULLSCREEN) != 0)) {
4192 // Fullscreen secure system overlays get what they ask for.
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 = mOverscanScreenLeft
4196 + mOverscanScreenWidth;
4197 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4198 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004199 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004200 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004201 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4202 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4203 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4204 + mOverscanScreenWidth;
4205 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4206 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004207 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004208 // The wallpaper also has Real Ultimate Power, but we want to tell
4209 // it about the overscan area.
4210 pf.left = df.left = mOverscanScreenLeft;
4211 pf.top = df.top = mOverscanScreenTop;
4212 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4213 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4214 of.left = cf.left = mUnrestrictedScreenLeft;
4215 of.top = cf.top = mUnrestrictedScreenTop;
4216 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4217 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004218 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004219 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4220 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4221 // Asking to layout into the overscan region, so give it that pure
4222 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004223 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4224 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4225 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004226 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004227 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004228 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004229 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004230 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004231 && (attrs.type == TYPE_STATUS_BAR
4232 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004233 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004234 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4235 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004236 // Asking for layout as if the nav bar is hidden, lets the
4237 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004238 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004239 // can be above the nav bar can do this.
4240 // XXX This assumes that an app asking for this will also
4241 // ask for layout in only content. We can't currently figure out
4242 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004243 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4244 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4245 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4246 + mUnrestrictedScreenWidth;
4247 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4248 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004249 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004250 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4251 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4252 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4253 + mRestrictedScreenWidth;
4254 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4255 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004256 }
Craig Mautner69b08182012-09-05 13:07:13 -07004257
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004258 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004259
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004260 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4261 vf.left = mCurLeft;
4262 vf.top = mCurTop;
4263 vf.right = mCurRight;
4264 vf.bottom = mCurBottom;
4265 } else {
4266 vf.set(cf);
4267 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004268 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004269 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4270 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004271 // A child window should be placed inside of the same visible
4272 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004273 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004274 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004275 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4276 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004277 // Otherwise, a normal window must be placed inside the content
4278 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004279 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4280 // Status bar panels and the volume dialog are the only windows who can go on
4281 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004282 // permission, so they have the same privileges as the status
4283 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004284 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4285 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4286 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4287 + mRestrictedScreenWidth;
4288 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4289 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004290 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004291 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004292 pf.left = df.left = of.left = cf.left = mStableLeft;
4293 pf.top = df.top = of.top = cf.top = mStableTop;
4294 pf.right = df.right = of.right = cf.right = mStableRight;
4295 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004296 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004297 pf.left = mContentLeft;
4298 pf.top = mContentTop;
4299 pf.right = mContentRight;
4300 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004301 if (win.isVoiceInteraction()) {
4302 df.left = of.left = cf.left = mVoiceContentLeft;
4303 df.top = of.top = cf.top = mVoiceContentTop;
4304 df.right = of.right = cf.right = mVoiceContentRight;
4305 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4306 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004307 df.left = of.left = cf.left = mDockLeft;
4308 df.top = of.top = cf.top = mDockTop;
4309 df.right = of.right = cf.right = mDockRight;
4310 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004311 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004312 df.left = of.left = cf.left = mContentLeft;
4313 df.top = of.top = cf.top = mContentTop;
4314 df.right = of.right = cf.right = mContentRight;
4315 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004316 }
4317 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4318 vf.left = mCurLeft;
4319 vf.top = mCurTop;
4320 vf.right = mCurRight;
4321 vf.bottom = mCurBottom;
4322 } else {
4323 vf.set(cf);
4324 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004325 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004326 }
4327 }
Craig Mautner69b08182012-09-05 13:07:13 -07004328
Craig Mautnerb816bed2013-07-23 10:26:17 -07004329 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4330 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004331 df.left = df.top = -10000;
4332 df.right = df.bottom = 10000;
4333 if (attrs.type != TYPE_WALLPAPER) {
4334 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4335 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4336 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004337 }
4338
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004339 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4340 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004341 // We only want to apply outsets to certain types of windows. For example, we never want to
4342 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004343 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004344 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004345 osf = mTmpOutsetFrame;
4346 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4347 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4348 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004349 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004350 if (rotation == Surface.ROTATION_0) {
4351 osf.bottom += outset;
4352 } else if (rotation == Surface.ROTATION_90) {
4353 osf.right += outset;
4354 } else if (rotation == Surface.ROTATION_180) {
4355 osf.top -= outset;
4356 } else if (rotation == Surface.ROTATION_270) {
4357 osf.left -= outset;
4358 }
4359 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4360 + " with rotation " + rotation + ", result: " + osf);
4361 }
4362 }
4363
Craig Mautnereda67292013-04-28 13:50:14 -07004364 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004365 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004366 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004367 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004368 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004369 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004370 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004371 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004372 + " sf=" + sf.toShortString()
4373 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004374
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004375 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004376
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004377 // Dock windows carve out the bottom of the screen, so normal windows
4378 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004379 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4380 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004381 setLastInputMethodWindowLw(null, null);
4382 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004383 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004384 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4385 && !win.getGivenInsetsPendingLw()) {
4386 offsetVoiceInputWindowLw(win);
4387 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004388 }
4389
satok1bc0a492012-04-25 22:47:12 +09004390 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004391 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004392 top += win.getGivenContentInsetsLw().top;
4393 if (mContentBottom > top) {
4394 mContentBottom = top;
4395 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004396 if (mVoiceContentBottom > top) {
4397 mVoiceContentBottom = top;
4398 }
satok1bc0a492012-04-25 22:47:12 +09004399 top = win.getVisibleFrameLw().top;
4400 top += win.getGivenVisibleInsetsLw().top;
4401 if (mCurBottom > top) {
4402 mCurBottom = top;
4403 }
Craig Mautnereda67292013-04-28 13:50:14 -07004404 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004405 + mDockBottom + " mContentBottom="
4406 + mContentBottom + " mCurBottom=" + mCurBottom);
4407 }
4408
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004409 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004410 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004411 top += win.getGivenContentInsetsLw().top;
4412 if (mVoiceContentBottom > top) {
4413 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004414 }
4415 }
4416
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004417 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004418 @Override
4419 public void finishLayoutLw() {
4420 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004421 }
4422
4423 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004424 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004425 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004426 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004427 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004428 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004429 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004430 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004431 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004432 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004433 mForcingShowNavBar = false;
4434 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004435
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004436 mHideLockScreen = false;
4437 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004438 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004439 mShowingLockscreen = false;
4440 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004441 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004442 mKeyguardSecure = isKeyguardSecure();
4443 mKeyguardSecureIncludingHidden = mKeyguardSecure
4444 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004445 }
4446
4447 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004448 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004449 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4450 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004451 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4452 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004453 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004454 if (mTopFullscreenOpaqueWindowState == null
4455 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4456 mForcingShowNavBar = true;
4457 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004458 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004459 if (attrs.type == TYPE_STATUS_BAR) {
4460 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4461 mForceStatusBarFromKeyguard = true;
Jorim Jaggie1de9f62015-09-23 14:59:50 -07004462 mShowingLockscreen = true;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004463 }
4464 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4465 mForceStatusBarTransparent = true;
4466 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004467 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004468
4469 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4470 && attrs.type < FIRST_SYSTEM_WINDOW;
4471 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4472 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4473
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004474 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004475 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004476 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004477 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004478 mForceStatusBarFromKeyguard = true;
4479 } else {
4480 mForceStatusBar = true;
4481 }
4482 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004483 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004484 // If the lockscreen was showing when the dream started then wait
4485 // for the dream to draw before hiding the lockscreen.
4486 if (!mDreamingLockscreen
4487 || (win.isVisibleLw() && win.hasDrawnLw())) {
4488 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004489 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004490 }
4491 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004492
Yohei Yukawad1a09222015-06-30 16:22:05 -07004493 final IApplicationToken appToken = win.getAppToken();
4494
4495 // For app windows that are not attached, we decide if all windows in the app they
4496 // represent should be hidden or if we should hide the lockscreen. For attached app
4497 // windows we defer the decision to the window it is attached to.
4498 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004499 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004500 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004501 mAppsToBeHidden.remove(appToken);
4502 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004503 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004504 if (dismissKeyguard && !mKeyguardSecure) {
4505 mAppsThatDismissKeyguard.add(appToken);
Selim Cinek90b5e072015-08-28 17:05:56 -07004506 } else if (win.isDrawnLw() || win.hasAppShownWindows()) {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004507 mWinShowWhenLocked = win;
4508 mHideLockScreen = true;
4509 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004510 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004511 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004512 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004513 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004514 mAppsToBeHidden.add(appToken);
4515 } else {
4516 mAppsToBeHidden.remove(appToken);
4517 }
4518 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004519 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004520 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004521 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004522 if (attrs.x == 0 && attrs.y == 0
4523 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4524 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4525 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4526 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004527 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4528 mTopFullscreenOpaqueOrDimmingWindowState = win;
4529 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004530 if (!mAppsThatDismissKeyguard.isEmpty() &&
4531 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4532 if (DEBUG_LAYOUT) Slog.v(TAG,
4533 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004534 mDismissKeyguard = (mWinDismissingKeyguard == win
4535 && mSecureDismissingKeyguard == mKeyguardSecure)
4536 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004537 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004538 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004539 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Selim Cinek90b5e072015-08-28 17:05:56 -07004540 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked
4541 && (win.isDrawnLw() || win.hasAppShownWindows())) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004542 if (DEBUG_LAYOUT) Slog.v(TAG,
4543 "Setting mHideLockScreen to true by win " + win);
4544 mHideLockScreen = true;
4545 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004546 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004547 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004548 mAllowLockscreenWhenOn = true;
4549 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004550 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004551
4552 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004553 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4554 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004555 win.hideLw(false);
4556 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004557 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004558 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4559 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4560 // that is being hidden in an animation - keep the
4561 // keyguard hidden until the new window shows up and
4562 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004563 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004564 mHideLockScreen = true;
4565 mWinShowWhenLocked = win;
4566 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004567 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004568 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4569 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4570 && win.isDimming()) {
4571 mTopFullscreenOpaqueOrDimmingWindowState = win;
4572 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004573 }
4574
4575 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004576 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004577 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004578 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4579 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4580 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004581 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4582 // fullscreen window.
4583 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4584 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4585 mTopFullscreenOpaqueWindowState.hideLw(false);
4586 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4587 }
4588
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004589 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004590 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004591
4592 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4593 ? mTopFullscreenOpaqueWindowState.getAttrs()
4594 : null;
4595
Jeff Brownc8018eb2012-10-29 21:33:27 -07004596 // If we are not currently showing a dream then remember the current
4597 // lockscreen state. We will use this to determine whether the dream
4598 // started while the lockscreen was showing and remember this state
4599 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004600 if (!mShowingDream) {
4601 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004602 if (mDreamingSleepTokenNeeded) {
4603 mDreamingSleepTokenNeeded = false;
4604 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4605 }
4606 } else {
4607 if (!mDreamingSleepTokenNeeded) {
4608 mDreamingSleepTokenNeeded = true;
4609 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4610 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004611 }
4612
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004613 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004614 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004615 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004616 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004617 boolean shouldBeTransparent = mForceStatusBarTransparent
4618 && !mForceStatusBar
4619 && !mForceStatusBarFromKeyguard;
4620 if (!shouldBeTransparent) {
4621 mStatusBarController.setShowTransparent(false /* transparent */);
4622 } else if (!mStatusBar.isVisibleLw()) {
4623 mStatusBarController.setShowTransparent(true /* transparent */);
4624 }
4625 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004626 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004627 if (mStatusBarController.setBarShowingLw(true)) {
4628 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4629 }
Craig Mautner81defc72013-10-29 11:10:42 -07004630 // Maintain fullscreen layout until incoming animation is complete.
4631 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004632 // Transient status bar on the lockscreen is not allowed
4633 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4634 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4635 mLastSystemUiFlags, mLastSystemUiFlags);
4636 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004637 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004638 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004639 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004640 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Filip Gruszczynski2a6a2c22015-10-14 12:00:53 -07004641 + " shown position: "
4642 + mTopFullscreenOpaqueWindowState.getShownPositionLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004643 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004644 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004645 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004646 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004647 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004648 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004649 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004650 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4651 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004652 if (mStatusBarController.isTransientShowing()) {
4653 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004654 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4655 }
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07004656 } else if (topIsFullscreen
4657 && !mWindowManagerInternal.isStackVisible(FREEFORM_WORKSPACE_STACK_ID)
4658 && !mWindowManagerInternal.isStackVisible(DOCKED_STACK_ID)) {
Craig Mautnereda67292013-04-28 13:50:14 -07004659 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004660 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004661 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004662 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004663 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004664 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004665 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004666 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004667 if (mStatusBarController.setBarShowingLw(true)) {
4668 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4669 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004670 }
4671 }
4672 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004673
Craig Mautner81defc72013-10-29 11:10:42 -07004674 if (mTopIsFullscreen != topIsFullscreen) {
4675 if (!topIsFullscreen) {
4676 // Force another layout when status bar becomes fully shown.
4677 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4678 }
4679 mTopIsFullscreen = topIsFullscreen;
4680 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004681
Craig Mautner39834192012-09-02 07:47:24 -07004682 // Hide the key guard if a visible window explicitly specifies that it wants to be
4683 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004684 if (mKeyguardDelegate != null && mStatusBar != null) {
4685 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4686 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004687 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004688 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004689 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004690 changes |= FINISH_LAYOUT_REDO_LAYOUT
4691 | FINISH_LAYOUT_REDO_CONFIG
4692 | FINISH_LAYOUT_REDO_WALLPAPER;
4693 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004694 if (mKeyguardDelegate.isShowing()) {
4695 mHandler.post(new Runnable() {
4696 @Override
4697 public void run() {
4698 mKeyguardDelegate.keyguardDone(false, false);
4699 }
4700 });
4701 }
4702 } else if (mHideLockScreen) {
4703 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004704 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004705 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004706 changes |= FINISH_LAYOUT_REDO_LAYOUT
4707 | FINISH_LAYOUT_REDO_CONFIG
4708 | FINISH_LAYOUT_REDO_WALLPAPER;
4709 }
4710 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004711 mKeyguardHidden = false;
4712 if (setKeyguardOccludedLw(false)) {
4713 changes |= FINISH_LAYOUT_REDO_LAYOUT
4714 | FINISH_LAYOUT_REDO_CONFIG
4715 | FINISH_LAYOUT_REDO_WALLPAPER;
4716 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004717 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4718 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004719 mHandler.post(new Runnable() {
4720 @Override
4721 public void run() {
4722 mKeyguardDelegate.dismiss();
4723 }
4724 });
4725 }
4726 } else {
4727 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004728 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004729 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004730 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004731 changes |= FINISH_LAYOUT_REDO_LAYOUT
4732 | FINISH_LAYOUT_REDO_CONFIG
4733 | FINISH_LAYOUT_REDO_WALLPAPER;
4734 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004735 }
4736 }
Joe Onorato664644d2011-01-23 17:53:23 -08004737
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004738 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004739 // If the navigation bar has been hidden or shown, we need to do another
4740 // layout pass to update that window.
4741 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4742 }
Joe Onorato664644d2011-01-23 17:53:23 -08004743
Mike Lockwood28569302010-01-28 11:54:40 -05004744 // update since mAllowLockscreenWhenOn might have changed
4745 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004746 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004747 }
4748
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004749 /**
Jim Millerab954542014-10-10 18:21:49 -07004750 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004751 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004752 * @return Whether the flags have changed and we have to redo the layout.
4753 */
Jim Millerab954542014-10-10 18:21:49 -07004754 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4755 boolean wasOccluded = mKeyguardOccluded;
4756 boolean showing = mKeyguardDelegate.isShowing();
4757 if (wasOccluded && !isOccluded && showing) {
4758 mKeyguardOccluded = false;
4759 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004760 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4761 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4762 return true;
Jim Millerab954542014-10-10 18:21:49 -07004763 } else if (!wasOccluded && isOccluded && showing) {
4764 mKeyguardOccluded = true;
4765 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004766 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4767 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4768 return true;
4769 } else {
4770 return false;
4771 }
4772 }
4773
4774 private boolean isStatusBarKeyguard() {
4775 return mStatusBar != null
4776 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4777 }
4778
Jose Lima9546b202014-07-02 17:21:51 -07004779 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004780 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004781 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004782 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004783 return false;
4784 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004785 return true;
4786 }
4787
Jose Lima9546b202014-07-02 17:21:51 -07004788 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004789 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004790 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004791 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004792 // If the navigation bar has been hidden or shown, we need to do another
4793 // layout pass to update that window.
4794 return FINISH_LAYOUT_REDO_LAYOUT;
4795 }
4796 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004797 }
4798
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004799 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004800 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004801 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4802 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004803 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4804 if (newLidState == mLidState) {
4805 return;
4806 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004807
Jeff Brownc458ce92012-04-30 14:58:40 -07004808 mLidState = newLidState;
4809 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004810 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004811
4812 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004813 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4814 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004815 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004816 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004817 }
4818 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004819
Michael Wright3818c922014-09-02 13:59:07 -07004820 @Override
4821 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4822 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4823 if (mCameraLensCoverState == lensCoverState) {
4824 return;
4825 }
4826 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4827 lensCoverState == CAMERA_LENS_UNCOVERED) {
4828 Intent intent;
4829 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4830 mKeyguardDelegate.isShowing();
4831 if (keyguardActive) {
4832 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4833 } else {
4834 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4835 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004836 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4837 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004838 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004839 }
4840 mCameraLensCoverState = lensCoverState;
4841 }
4842
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004843 void setHdmiPlugged(boolean plugged) {
4844 if (mHdmiPlugged != plugged) {
4845 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004846 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004847 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004848 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004849 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004850 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004851 }
4852 }
4853
Joe Onoratoea495d42011-04-06 11:41:11 -07004854 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004855 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004856 // watch for HDMI plug messages if the hdmi switch exists
4857 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4858 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4859
Joe Onoratoea495d42011-04-06 11:41:11 -07004860 final String filename = "/sys/class/switch/hdmi/state";
4861 FileReader reader = null;
4862 try {
4863 reader = new FileReader(filename);
4864 char[] buf = new char[15];
4865 int n = reader.read(buf);
4866 if (n > 1) {
4867 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4868 }
4869 } catch (IOException ex) {
4870 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4871 } catch (NumberFormatException ex) {
4872 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4873 } finally {
4874 if (reader != null) {
4875 try {
4876 reader.close();
4877 } catch (IOException ex) {
4878 }
Joe Onoratodc100302011-01-11 17:07:41 -08004879 }
4880 }
4881 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004882 // This dance forces the code in setHdmiPlugged to run.
4883 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4884 mHdmiPlugged = !plugged;
4885 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004886 }
4887
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004888 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004889 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004890
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004891 final Runnable mScreenshotTimeout = new Runnable() {
4892 @Override public void run() {
4893 synchronized (mScreenshotLock) {
4894 if (mScreenshotConnection != null) {
4895 mContext.unbindService(mScreenshotConnection);
4896 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004897 }
Winson Chung9112ec32011-06-27 13:15:32 -07004898 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004899 }
4900 };
4901
4902 // Assume this is called from the Handler thread.
4903 private void takeScreenshot() {
4904 synchronized (mScreenshotLock) {
4905 if (mScreenshotConnection != null) {
4906 return;
4907 }
4908 ComponentName cn = new ComponentName("com.android.systemui",
4909 "com.android.systemui.screenshot.TakeScreenshotService");
4910 Intent intent = new Intent();
4911 intent.setComponent(cn);
4912 ServiceConnection conn = new ServiceConnection() {
4913 @Override
4914 public void onServiceConnected(ComponentName name, IBinder service) {
4915 synchronized (mScreenshotLock) {
4916 if (mScreenshotConnection != this) {
4917 return;
4918 }
4919 Messenger messenger = new Messenger(service);
4920 Message msg = Message.obtain(null, 1);
4921 final ServiceConnection myConn = this;
4922 Handler h = new Handler(mHandler.getLooper()) {
4923 @Override
4924 public void handleMessage(Message msg) {
4925 synchronized (mScreenshotLock) {
4926 if (mScreenshotConnection == myConn) {
4927 mContext.unbindService(mScreenshotConnection);
4928 mScreenshotConnection = null;
4929 mHandler.removeCallbacks(mScreenshotTimeout);
4930 }
4931 }
4932 }
4933 };
4934 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004935 msg.arg1 = msg.arg2 = 0;
4936 if (mStatusBar != null && mStatusBar.isVisibleLw())
4937 msg.arg1 = 1;
4938 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4939 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004940 try {
4941 messenger.send(msg);
4942 } catch (RemoteException e) {
4943 }
4944 }
4945 }
4946 @Override
4947 public void onServiceDisconnected(ComponentName name) {}
4948 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004949 if (mContext.bindServiceAsUser(
4950 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004951 mScreenshotConnection = conn;
4952 mHandler.postDelayed(mScreenshotTimeout, 10000);
4953 }
4954 }
Winson Chung9112ec32011-06-27 13:15:32 -07004955 }
4956
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004957 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004958 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004959 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004960 if (!mSystemBooted) {
4961 // If we have not yet booted, don't let key events do anything.
4962 return 0;
4963 }
4964
Jeff Brown037c33e2014-04-09 00:31:55 -07004965 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004966 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4967 final boolean canceled = event.isCanceled();
4968 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004969
Jeff Brown3122e442010-10-11 23:32:49 -07004970 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004971
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004972 // If screen is off then we treat the case where the keyguard is open but hidden
4973 // the same as if it were open and in front.
4974 // This will prevent any keys other than the power button from waking the screen
4975 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004976 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004977 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004978 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004979 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004980
Jeff Brown40013652012-05-16 21:22:36 -07004981 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004982 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004983 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004984 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004985 }
4986
Jeff Brown037c33e2014-04-09 00:31:55 -07004987 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004988 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004989 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4990 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004991 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004992 // When the device is interactive or the key is injected pass the
4993 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004994 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004995 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004996 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4997 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4998 // to the application but preserve its wake key status to make sure we still move
4999 // from dozing to fully interactive if we would normally go from off to fully
5000 // interactive.
5001 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07005002 } else {
5003 // When the screen is off and the key is not injected, determine whether
5004 // to wake the device but don't pass the key to the application.
5005 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08005006 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
5007 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005008 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005009 }
5010
Justin Kohd378ad72013-04-01 12:18:26 -07005011 // If the key would be handled globally, just return the result, don't worry about special
5012 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07005013 if (isValidGlobalKey(keyCode)
5014 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07005015 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005016 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07005017 }
Justin Kohd378ad72013-04-01 12:18:26 -07005018 return result;
5019 }
5020
Jeff Brownbae8e772014-06-12 19:59:45 -07005021 boolean useHapticFeedback = down
5022 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
5023 && event.getRepeatCount() == 0;
5024
Jeff Brown4d396052010-10-29 21:50:21 -07005025 // Handle special keys.
5026 switch (keyCode) {
5027 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07005028 case KeyEvent.KEYCODE_VOLUME_UP:
5029 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08005030 if (mUseTvRouting) {
5031 // On TVs volume keys never go to the foreground app
5032 result &= ~ACTION_PASS_TO_USER;
5033 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005034 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
5035 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005036 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005037 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005038 mScreenshotChordVolumeDownKeyTriggered = true;
5039 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
5040 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005041 cancelPendingPowerKeyAction();
5042 interceptScreenshotChord();
5043 }
5044 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005045 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005046 cancelPendingScreenshotChordAction();
5047 }
5048 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
5049 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005050 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005051 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005052 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005053 cancelPendingPowerKeyAction();
5054 cancelPendingScreenshotChordAction();
5055 }
5056 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005057 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005058 cancelPendingScreenshotChordAction();
5059 }
5060 }
Jeff Brown4d396052010-10-29 21:50:21 -07005061 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005062 TelecomManager telecomManager = getTelecommService();
5063 if (telecomManager != null) {
5064 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005065 // If an incoming call is ringing, either VOLUME key means
5066 // "silence ringer". We handle these keys here, rather than
5067 // in the InCallScreen, to make sure we'll respond to them
5068 // even if the InCallScreen hasn't come to the foreground yet.
5069 // Look for the DOWN event here, to agree with the "fallback"
5070 // behavior in the InCallScreen.
5071 Log.i(TAG, "interceptKeyBeforeQueueing:"
5072 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07005073
Santos Cordon6848f722014-05-21 15:22:12 -07005074 // Silence the ringer. (It's safe to call this
5075 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005076 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07005077
Santos Cordon6848f722014-05-21 15:22:12 -07005078 // And *don't* pass this key thru to the current activity
5079 // (which is probably the InCallScreen.)
5080 result &= ~ACTION_PASS_TO_USER;
5081 break;
5082 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005083 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07005084 && (result & ACTION_PASS_TO_USER) == 0) {
5085 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07005086 // the application, just pass it to the session service.
5087
5088 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07005089 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005090 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005091 }
5092 }
5093
RoboErik430fc482014-06-12 15:49:20 -07005094 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08005095 if (mUseTvRouting) {
5096 dispatchDirectAudioEvent(event);
5097 } else {
5098 // If we aren't passing to the user and no one else
5099 // handled it send it to the session manager to
5100 // figure out.
5101 MediaSessionLegacyHelper.getHelper(mContext)
5102 .sendVolumeKeyEvent(event, true);
5103 }
Jeff Brown4d396052010-10-29 21:50:21 -07005104 break;
5105 }
5106 }
5107 break;
5108 }
5109
5110 case KeyEvent.KEYCODE_ENDCALL: {
5111 result &= ~ACTION_PASS_TO_USER;
5112 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005113 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005114 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005115 if (telecomManager != null) {
5116 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005117 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005118 if (interactive && !hungUp) {
5119 mEndCallKeyHandled = false;
5120 mHandler.postDelayed(mEndCallLongPress,
5121 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5122 } else {
5123 mEndCallKeyHandled = true;
5124 }
Jeff Brown4d396052010-10-29 21:50:21 -07005125 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005126 if (!mEndCallKeyHandled) {
5127 mHandler.removeCallbacks(mEndCallLongPress);
5128 if (!canceled) {
5129 if ((mEndcallBehavior
5130 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5131 if (goHome()) {
5132 break;
5133 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005134 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005135 if ((mEndcallBehavior
5136 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5137 mPowerManager.goToSleep(event.getEventTime(),
5138 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5139 isWakeKey = false;
5140 }
Jeff Brown4d396052010-10-29 21:50:21 -07005141 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005142 }
Jeff Brown4d396052010-10-29 21:50:21 -07005143 }
5144 break;
5145 }
5146
5147 case KeyEvent.KEYCODE_POWER: {
5148 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005149 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005150 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005151 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005152 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005153 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005154 }
5155 break;
5156 }
5157
Jeff Brown6212a492014-03-07 13:58:47 -08005158 case KeyEvent.KEYCODE_SLEEP: {
5159 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005160 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005161 if (!mPowerManager.isInteractive()) {
5162 useHapticFeedback = false; // suppress feedback if already non-interactive
5163 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005164 if (down) {
5165 sleepPress(event.getEventTime());
5166 } else {
5167 sleepRelease(event.getEventTime());
5168 }
Jeff Brown6212a492014-03-07 13:58:47 -08005169 break;
5170 }
5171
Nick Armstrong-Crews56ecfcc2015-09-07 21:46:50 -07005172 case KeyEvent.KEYCODE_SOFT_SLEEP: {
5173 result &= ~ACTION_PASS_TO_USER;
5174 isWakeKey = false;
5175 if (!down) {
5176 mPowerManagerInternal.setUserInactiveOverrideFromWindowManager();
5177 }
5178 break;
5179 }
5180
Jeff Brown6212a492014-03-07 13:58:47 -08005181 case KeyEvent.KEYCODE_WAKEUP: {
5182 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005183 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005184 break;
5185 }
5186
Jeff Brown4d396052010-10-29 21:50:21 -07005187 case KeyEvent.KEYCODE_MEDIA_PLAY:
5188 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5189 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005190 case KeyEvent.KEYCODE_HEADSETHOOK:
5191 case KeyEvent.KEYCODE_MUTE:
5192 case KeyEvent.KEYCODE_MEDIA_STOP:
5193 case KeyEvent.KEYCODE_MEDIA_NEXT:
5194 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5195 case KeyEvent.KEYCODE_MEDIA_REWIND:
5196 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005197 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5198 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005199 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5200 // If the global session is active pass all media keys to it
5201 // instead of the active window.
5202 result &= ~ACTION_PASS_TO_USER;
5203 }
Jeff Brown4d396052010-10-29 21:50:21 -07005204 if ((result & ACTION_PASS_TO_USER) == 0) {
5205 // Only do this if we would otherwise not pass it to the user. In that
5206 // case, the PhoneWindow class will do the same thing, except it will
5207 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005208 // Note that we need to make a copy of the key event here because the
5209 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005210 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005211 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5212 new KeyEvent(event));
5213 msg.setAsynchronous(true);
5214 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005215 }
5216 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005217 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005218
Jeff Brown4d396052010-10-29 21:50:21 -07005219 case KeyEvent.KEYCODE_CALL: {
5220 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005221 TelecomManager telecomManager = getTelecommService();
5222 if (telecomManager != null) {
5223 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005224 Log.i(TAG, "interceptKeyBeforeQueueing:"
5225 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005226 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005227
Santos Cordon6848f722014-05-21 15:22:12 -07005228 // And *don't* pass this key thru to the current activity
5229 // (which is presumably the InCallScreen.)
5230 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005231 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005232 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005233 }
Jeff Brown4d396052010-10-29 21:50:21 -07005234 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005235 }
Michael Wright869a67c2014-08-26 19:33:06 -07005236 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5237 // Only do this if we would otherwise not pass it to the user. In that case,
5238 // interceptKeyBeforeDispatching would apply a similar but different policy in
5239 // order to invoke voice assist actions. Note that we need to make a copy of the
5240 // key event here because the original key event will be recycled when we return.
5241 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5242 mBroadcastWakeLock.acquire();
5243 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5244 keyguardActive ? 1 : 0, 0);
5245 msg.setAsynchronous(true);
5246 msg.sendToTarget();
5247 }
5248 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005249 }
Jeff Brown26875502014-01-30 21:47:47 -08005250
Jeff Brownbae8e772014-06-12 19:59:45 -07005251 if (useHapticFeedback) {
5252 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5253 }
5254
Jeff Brown26875502014-01-30 21:47:47 -08005255 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005256 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005257 }
Bryce Lee584a4452014-10-21 15:55:55 -07005258
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005259 return result;
5260 }
5261
Jeff Brown1c2e4942012-11-06 16:32:01 -08005262 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005263 * Returns true if the key can have global actions attached to it.
5264 * We reserve all power management keys for the system since they require
5265 * very careful handling.
5266 */
5267 private static boolean isValidGlobalKey(int keyCode) {
5268 switch (keyCode) {
5269 case KeyEvent.KEYCODE_POWER:
5270 case KeyEvent.KEYCODE_WAKEUP:
5271 case KeyEvent.KEYCODE_SLEEP:
5272 return false;
5273 default:
5274 return true;
5275 }
5276 }
5277
5278 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005279 * When the screen is off we ignore some keys that might otherwise typically
5280 * be considered wake keys. We filter them out here.
5281 *
5282 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5283 * is always considered a wake key.
5284 */
5285 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5286 switch (keyCode) {
5287 // ignore volume keys unless docked
5288 case KeyEvent.KEYCODE_VOLUME_UP:
5289 case KeyEvent.KEYCODE_VOLUME_DOWN:
5290 case KeyEvent.KEYCODE_VOLUME_MUTE:
5291 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5292
5293 // ignore media and camera keys
5294 case KeyEvent.KEYCODE_MUTE:
5295 case KeyEvent.KEYCODE_HEADSETHOOK:
5296 case KeyEvent.KEYCODE_MEDIA_PLAY:
5297 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5298 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5299 case KeyEvent.KEYCODE_MEDIA_STOP:
5300 case KeyEvent.KEYCODE_MEDIA_NEXT:
5301 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5302 case KeyEvent.KEYCODE_MEDIA_REWIND:
5303 case KeyEvent.KEYCODE_MEDIA_RECORD:
5304 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005305 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005306 case KeyEvent.KEYCODE_CAMERA:
5307 return false;
5308 }
5309 return true;
5310 }
5311
5312
Jeff Brown56194eb2011-03-02 19:23:13 -08005313 /** {@inheritDoc} */
5314 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005315 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5316 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005317 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5318 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005319 return 0;
5320 }
Michael Wright70af00a2014-09-03 19:30:20 -07005321 }
Bryce Lee5c138322014-11-03 08:26:09 -08005322
Michael Wright70af00a2014-09-03 19:30:20 -07005323 if (shouldDispatchInputWhenNonInteractive()) {
5324 return ACTION_PASS_TO_USER;
5325 }
Bryce Lee5c138322014-11-03 08:26:09 -08005326
Bryce Lee812d7022014-11-10 13:33:28 -08005327 // If we have not passed the action up and we are in theater mode without dreaming,
5328 // there will be no dream to intercept the touch and wake into ambient. The device should
5329 // wake up in this case.
5330 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005331 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5332 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005333 }
5334
Jeff Brown037c33e2014-04-09 00:31:55 -07005335 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005336 }
5337
Michael Wright70af00a2014-09-03 19:30:20 -07005338 private boolean shouldDispatchInputWhenNonInteractive() {
Joe LaPennaf2b9b2d2015-11-17 22:22:37 +00005339 // Send events to keyguard while the screen is on.
5340 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
5341 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08005342 return true;
5343 }
5344
5345 // Send events to a dozing dream even if the screen is off since the dream
5346 // is in control of the state of the screen.
5347 IDreamManager dreamManager = getDreamManager();
5348
5349 try {
5350 if (dreamManager != null && dreamManager.isDreaming()) {
5351 return true;
5352 }
5353 } catch (RemoteException e) {
5354 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5355 }
5356
5357 // Otherwise, consume events since the user can't see what is being
5358 // interacted with.
5359 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005360 }
5361
RoboErik001c59c2015-01-26 15:53:51 -08005362 private void dispatchDirectAudioEvent(KeyEvent event) {
5363 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5364 return;
5365 }
5366 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005367 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5368 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005369 String pkgName = mContext.getOpPackageName();
5370 switch (keyCode) {
5371 case KeyEvent.KEYCODE_VOLUME_UP:
5372 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005373 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005374 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005375 } catch (RemoteException e) {
5376 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5377 }
5378 break;
5379 case KeyEvent.KEYCODE_VOLUME_DOWN:
5380 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005381 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005382 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005383 } catch (RemoteException e) {
5384 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5385 }
5386 break;
5387 case KeyEvent.KEYCODE_VOLUME_MUTE:
5388 try {
5389 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005390 getAudioService().adjustSuggestedStreamVolume(
5391 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005392 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005393 }
5394 } catch (RemoteException e) {
5395 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5396 }
5397 break;
5398 }
5399 }
5400
Jeff Brown40013652012-05-16 21:22:36 -07005401 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5402 if (DEBUG_INPUT) {
5403 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005404 }
5405
Jeff Brown40013652012-05-16 21:22:36 -07005406 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5407 if (DEBUG_INPUT) {
5408 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5409 }
5410
5411 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5412 mHavePendingMediaKeyRepeatWithWakeLock = false;
5413 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5414 }
5415
5416 dispatchMediaKeyWithWakeLockToAudioService(event);
5417
5418 if (event.getAction() == KeyEvent.ACTION_DOWN
5419 && event.getRepeatCount() == 0) {
5420 mHavePendingMediaKeyRepeatWithWakeLock = true;
5421
5422 Message msg = mHandler.obtainMessage(
5423 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5424 msg.setAsynchronous(true);
5425 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5426 } else {
5427 mBroadcastWakeLock.release();
5428 }
5429 }
5430
5431 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5432 mHavePendingMediaKeyRepeatWithWakeLock = false;
5433
5434 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5435 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5436 if (DEBUG_INPUT) {
5437 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5438 }
5439
5440 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5441 mBroadcastWakeLock.release();
5442 }
5443
5444 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5445 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005446 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005447 }
5448 }
5449
Michael Wright869a67c2014-08-26 19:33:06 -07005450 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005451 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5452 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5453 if (dic != null) {
5454 try {
5455 dic.exitIdle("voice-search");
5456 } catch (RemoteException e) {
5457 }
5458 }
Michael Wright869a67c2014-08-26 19:33:06 -07005459 Intent voiceIntent =
5460 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5461 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005462 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005463 mBroadcastWakeLock.release();
5464 }
5465
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005466 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005467 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005468 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005469 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5470 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5471 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005472 } else {
5473 try {
5474 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5475 ServiceManager.getService(Context.UI_MODE_SERVICE));
5476 mUiMode = uiModeService.getCurrentModeType();
5477 } catch (RemoteException e) {
5478 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005479 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005480 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005481 synchronized (mLock) {
5482 updateOrientationListenerLp();
5483 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005484 }
5485 };
5486
Jeff Brown6aaf2952012-10-05 16:01:08 -07005487 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5488 @Override
5489 public void onReceive(Context context, Intent intent) {
5490 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005491 if (mKeyguardDelegate != null) {
5492 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005493 }
5494 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005495 if (mKeyguardDelegate != null) {
5496 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005497 }
5498 }
5499 }
5500 };
5501
Christopher Tate5e08af02012-09-21 17:17:22 -07005502 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5503 @Override
5504 public void onReceive(Context context, Intent intent) {
5505 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5506 // tickle the settings observer: this first ensures that we're
5507 // observing the relevant settings for the newly-active user,
5508 // and then updates our own bookkeeping based on the now-
5509 // current user.
5510 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005511
5512 // force a re-application of focused window sysui visibility.
5513 // the window may never have been shown for this user
5514 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005515 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005516 mLastSystemUiFlags = 0;
5517 updateSystemUiVisibilityLw();
5518 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005519 }
5520 }
5521 };
5522
Adrian Roosddc8b272015-05-21 16:28:27 -07005523 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005524 @Override
5525 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005526 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5527 if (!isUserSetupComplete()) {
5528 // Swipe-up for navigation bar is disabled during setup
5529 return;
5530 }
5531 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5532 mNavigationBarController.showTransient();
5533 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005534 }
5535 };
5536
John Spurlocke1f366f2013-08-05 12:22:40 -04005537 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005538 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005539 if (!isUserSetupComplete()) {
5540 // Swipe-up for navigation bar is disabled during setup
5541 return;
5542 }
John Spurlock27735a42013-08-14 17:57:38 -04005543 boolean sb = mStatusBarController.checkShowTransientBarLw();
5544 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005545 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005546 // Don't show status bar when swiping on already visible navigation bar
5547 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005548 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005549 return;
5550 }
John Spurlock27735a42013-08-14 17:57:38 -04005551 if (sb) mStatusBarController.showTransient();
5552 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005553 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005554 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005555 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005556 }
5557 }
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 startedGoingToSleep(int why) {
5562 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005563 if (mKeyguardDelegate != null) {
5564 mKeyguardDelegate.onStartedGoingToSleep(why);
5565 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005566 }
5567
5568 // Called on the PowerManager's Notifier thread.
5569 @Override
5570 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005571 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005572 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005573 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005574
5575 // We must get this work done here because the power manager will drop
5576 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005577 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005578 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005579 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005580 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005581 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005582 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005583 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005584 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005585 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005586 }
5587
Jeff Brown3ee549c2014-09-22 20:14:39 -07005588 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005589 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005590 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005591 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005592 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005593
Jeff Brown3ee549c2014-09-22 20:14:39 -07005594 // Since goToSleep performs these functions synchronously, we must
5595 // do the same here. We cannot post this work to a handler because
5596 // that might cause it to become reordered with respect to what
5597 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005598 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005599 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005600
Jeff Browna20dda42014-05-27 20:57:24 -07005601 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005602 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005603 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005604 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005605
Jim Miller5ecd8112013-01-09 18:50:26 -08005606 if (mKeyguardDelegate != null) {
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005607 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005608 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005609 }
5610
Jeff Brown416c49c2015-05-26 19:50:18 -07005611 // Called on the PowerManager's Notifier thread.
5612 @Override
5613 public void finishedWakingUp() {
5614 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5615 }
5616
5617 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005618 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005619 }
5620
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005621 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005622 final boolean theaterModeEnabled = isTheaterModeEnabled();
5623 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005624 return false;
5625 }
5626
Bryce Leed3896842015-06-23 17:06:51 -07005627 if (theaterModeEnabled) {
5628 Settings.Global.putInt(mContext.getContentResolver(),
5629 Settings.Global.THEATER_MODE_ON, 0);
5630 }
5631
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005632 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005633 return true;
5634 }
5635
Jeff Brown36c4db82014-09-19 12:05:31 -07005636 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005637 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005638 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005639 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005640 }
5641
Jeff Brown36c4db82014-09-19 12:05:31 -07005642 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005643 if (mKeyguardDelegate != null) {
5644 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5645 }
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005646 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005647 }
5648
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005649 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5650 // as well as enabling the orientation change logic/sensor.
5651 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5652 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005653 }
5654
5655 // Called on the DisplayManager's DisplayPowerController thread.
5656 @Override
5657 public void screenTurnedOff() {
5658 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5659
Jeff Brown48d1b142015-06-10 16:36:03 -07005660 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005661 synchronized (mLock) {
5662 mScreenOnEarly = false;
5663 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005664 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005665 mWindowManagerDrawComplete = false;
5666 mScreenOnListener = null;
5667 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005668
5669 if (mKeyguardDelegate != null) {
5670 mKeyguardDelegate.onScreenTurnedOff();
5671 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005672 }
5673 }
5674
Jeff Brown3ee549c2014-09-22 20:14:39 -07005675 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005676 @Override
5677 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005678 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005679
Jeff Brown48d1b142015-06-10 16:36:03 -07005680 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005681 synchronized (mLock) {
5682 mScreenOnEarly = true;
5683 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005684 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005685 mWindowManagerDrawComplete = false;
5686 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005687
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005688 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005689 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5690 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005691 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5692 } else {
5693 if (DEBUG_WAKEUP) Slog.d(TAG,
5694 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5695 finishKeyguardDrawn();
5696 }
5697 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005698 }
5699
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005700 // Called on the DisplayManager's DisplayPowerController thread.
5701 @Override
5702 public void screenTurnedOn() {
5703 synchronized (mLock) {
5704 if (mKeyguardDelegate != null) {
5705 mKeyguardDelegate.onScreenTurnedOn();
5706 }
5707 }
5708 }
5709
Jeff Brown36c4db82014-09-19 12:05:31 -07005710 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005711 synchronized (mLock) {
5712 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005713 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005714 }
5715
Jeff Brown36c4db82014-09-19 12:05:31 -07005716 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005717 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005718
5719 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005720 }
5721
Craig Mautner8a0da012014-05-31 15:13:37 -07005722 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005723 synchronized (mLock) {
5724 // We have just finished drawing screen content. Since the orientation listener
5725 // gets only installed when all windows are drawn, we try to install it again.
5726 updateOrientationListenerLp();
5727 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005728 final ScreenOnListener listener;
5729 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005730 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005731 if (DEBUG_WAKEUP) Slog.d(TAG,
5732 "finishScreenTurningOn: mAwake=" + mAwake
5733 + ", mScreenOnEarly=" + mScreenOnEarly
5734 + ", mScreenOnFully=" + mScreenOnFully
5735 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5736 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5737
5738 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5739 || (mAwake && !mKeyguardDrawComplete)) {
5740 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005741 }
5742
Jeff Brown3ee549c2014-09-22 20:14:39 -07005743 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5744 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005745 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005746 mScreenOnFully = true;
5747
5748 // Remember the first time we draw the keyguard so we know when we're done with
5749 // the main part of booting and can enable the screen and hide boot messages.
5750 if (!mKeyguardDrawnOnce && mAwake) {
5751 mKeyguardDrawnOnce = true;
5752 enableScreen = true;
5753 if (mBootMessageNeedsHiding) {
5754 mBootMessageNeedsHiding = false;
5755 hideBootMessages();
5756 }
5757 } else {
5758 enableScreen = false;
5759 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005760 }
5761
Jeff Brown3ee549c2014-09-22 20:14:39 -07005762 if (listener != null) {
5763 listener.onScreenOn();
5764 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005765
Jeff Brown3ee549c2014-09-22 20:14:39 -07005766 if (enableScreen) {
5767 try {
5768 mWindowManager.enableScreenIfNeeded();
5769 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005770 }
Craig Mautnera631d492014-08-05 15:16:01 -07005771 }
5772 }
5773
5774 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005775 synchronized (mLock) {
5776 if (!mKeyguardDrawnOnce) {
5777 mBootMessageNeedsHiding = true;
5778 return; // keyguard hasn't drawn the first time yet, not done booting
5779 }
Craig Mautnera631d492014-08-05 15:16:01 -07005780 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005781
5782 if (mBootMsgDialog != null) {
5783 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5784 mBootMsgDialog.dismiss();
5785 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005786 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005787 }
5788
5789 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005790 public boolean isScreenOn() {
5791 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005792 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005793
Dianne Hackborn08743722009-12-21 12:16:51 -08005794 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005795 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005796 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005797 if (mKeyguardDelegate != null) {
5798 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005799 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005800 }
5801
5802 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005803 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005804 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005805 if (mKeyguardDelegate != null) {
5806 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005807 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005808 }
5809
Jim Millerab954542014-10-10 18:21:49 -07005810 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005811 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005812 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005813 }
5814
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005815 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005816 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005817 public boolean isKeyguardLocked() {
5818 return keyguardOn();
5819 }
5820
5821 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005822 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005823 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005824 if (mKeyguardDelegate == null) return false;
5825 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005826 }
5827
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005828 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005829 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005830 public boolean isKeyguardShowingOrOccluded() {
5831 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5832 }
5833
5834 /** {@inheritDoc} */
5835 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005836 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005837 if (mKeyguardDelegate == null) return false;
5838 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005839 }
5840
Jose Lima9546b202014-07-02 17:21:51 -07005841 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005842 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005843 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005844 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005845 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005846 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005847 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005848 // ask the keyguard to prompt the user to authenticate if necessary
5849 mKeyguardDelegate.dismiss();
5850 }
5851 });
5852 }
5853 }
5854
5855 public void notifyActivityDrawnForKeyguardLw() {
5856 if (mKeyguardDelegate != null) {
5857 mHandler.post(new Runnable() {
5858 @Override
5859 public void run() {
5860 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005861 }
5862 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005863 }
5864 }
5865
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005866 @Override
5867 public boolean isKeyguardDrawnLw() {
5868 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005869 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005870 }
5871 }
5872
Jorim Jaggi0d674622014-05-21 01:34:15 +02005873 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005874 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005875 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005876 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005877 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005878 }
5879 }
5880
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005881 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005882 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005883 }
5884
5885 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005886 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005887 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005888
Jeff Brown01a98dd2011-09-20 15:08:29 -07005889 @Override
5890 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005891 if (false) {
5892 Slog.v(TAG, "rotationForOrientationLw(orient="
5893 + orientation + ", last=" + lastRotation
5894 + "); user=" + mUserRotation + " "
5895 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5896 ? "USER_ROTATION_LOCKED" : "")
5897 );
5898 }
5899
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005900 if (mForceDefaultOrientation) {
5901 return Surface.ROTATION_0;
5902 }
5903
The Android Open Source Project0727d222009-03-11 12:11:58 -07005904 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005905 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5906 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005907 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005908 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005909
Jeff Browndec6cf42011-11-15 14:08:20 -08005910 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005911 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005912 // Ignore sensor when lid switch is open and rotation is forced.
5913 preferredRotation = mLidOpenRotation;
5914 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005915 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005916 // Ignore sensor when in car dock unless explicitly enabled.
5917 // This case can override the behavior of NOSENSOR, and can also
5918 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005919 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005920 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005921 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5922 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5923 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005924 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005925 // Ignore sensor when in desk dock unless explicitly enabled.
5926 // This case can override the behavior of NOSENSOR, and can also
5927 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005928 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005929 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005930 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5931 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005932 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005933 preferredRotation = mDemoHdmiRotation;
5934 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5935 && mUndockedHdmiRotation >= 0) {
5936 // Ignore sensor when plugged into HDMI and an undocked orientation has
5937 // been specified in the configuration (only for legacy devices without
5938 // full multi-display support).
5939 // Note that the dock orientation overrides the HDMI orientation.
5940 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005941 } else if (mDemoRotationLock) {
5942 // Ignore sensor when demo rotation lock is enabled.
5943 // Note that the dock orientation and HDMI rotation lock override this.
5944 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005945 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5946 // Application just wants to remain locked in the last rotation.
5947 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005948 } else if (!mSupportAutoRotation) {
5949 // If we don't support auto-rotation then bail out here and ignore
5950 // the sensor and any rotation lock settings.
5951 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005952 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005953 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005954 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5955 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5956 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5957 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005958 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5959 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5960 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5961 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5962 // Otherwise, use sensor only if requested by the application or enabled
5963 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005964 if (mAllowAllRotations < 0) {
5965 // Can't read this during init() because the context doesn't
5966 // have display metrics at that time so we cannot determine
5967 // tablet vs. phone then.
5968 mAllowAllRotations = mContext.getResources().getBoolean(
5969 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5970 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005971 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005972 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005973 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5974 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005975 preferredRotation = sensorRotation;
5976 } else {
5977 preferredRotation = lastRotation;
5978 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005979 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5980 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5981 // Apply rotation lock. Does not apply to NOSENSOR.
5982 // The idea is that the user rotation expresses a weak preference for the direction
5983 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5984 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005985 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005986 } else {
5987 // No overriding preference.
5988 // We will do exactly what the application asked us to do.
5989 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005990 }
5991
Dianne Hackborne5439f22010-10-02 16:53:50 -07005992 switch (orientation) {
5993 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005994 // Return portrait unless overridden.
5995 if (isAnyPortrait(preferredRotation)) {
5996 return preferredRotation;
5997 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005998 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005999
Jeff Brown01a98dd2011-09-20 15:08:29 -07006000 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08006001 // Return landscape unless overridden.
6002 if (isLandscapeOrSeascape(preferredRotation)) {
6003 return preferredRotation;
6004 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006005 return mLandscapeRotation;
6006
6007 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08006008 // Return reverse portrait unless overridden.
6009 if (isAnyPortrait(preferredRotation)) {
6010 return preferredRotation;
6011 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006012 return mUpsideDownRotation;
6013
6014 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08006015 // Return seascape unless overridden.
6016 if (isLandscapeOrSeascape(preferredRotation)) {
6017 return preferredRotation;
6018 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006019 return mSeascapeRotation;
6020
6021 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006022 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07006023 // Return either landscape rotation.
6024 if (isLandscapeOrSeascape(preferredRotation)) {
6025 return preferredRotation;
6026 }
6027 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08006028 return lastRotation;
6029 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006030 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006031
Jeff Brown01a98dd2011-09-20 15:08:29 -07006032 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07006033 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07006034 // Return either portrait rotation.
6035 if (isAnyPortrait(preferredRotation)) {
6036 return preferredRotation;
6037 }
6038 if (isAnyPortrait(lastRotation)) {
6039 return lastRotation;
6040 }
6041 return mPortraitRotation;
6042
6043 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07006044 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
6045 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07006046 if (preferredRotation >= 0) {
6047 return preferredRotation;
6048 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07006049 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05006050 }
6051 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006052 }
6053
Jeff Brown01a98dd2011-09-20 15:08:29 -07006054 @Override
6055 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
6056 switch (orientation) {
6057 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
6058 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
6059 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
6060 return isAnyPortrait(rotation);
6061
6062 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
6063 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
6064 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
6065 return isLandscapeOrSeascape(rotation);
6066
6067 default:
6068 return true;
6069 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006070 }
6071
Jeff Brownc0347aa2011-09-23 17:26:09 -07006072 @Override
6073 public void setRotationLw(int rotation) {
6074 mOrientationListener.setCurrentRotation(rotation);
6075 }
6076
Jeff Brown01a98dd2011-09-20 15:08:29 -07006077 private boolean isLandscapeOrSeascape(int rotation) {
6078 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006079 }
6080
Jeff Brown01a98dd2011-09-20 15:08:29 -07006081 private boolean isAnyPortrait(int rotation) {
6082 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006083 }
6084
Jose Lima9546b202014-07-02 17:21:51 -07006085 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006086 public int getUserRotationMode() {
6087 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07006088 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
6089 WindowManagerPolicy.USER_ROTATION_FREE :
6090 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006091 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006092
6093 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07006094 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006095 public void setUserRotationMode(int mode, int rot) {
6096 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006097
6098 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006099 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006100 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006101 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006102 rot,
6103 UserHandle.USER_CURRENT);
6104 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006105 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006106 0,
6107 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006108 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006109 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006110 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006111 1,
6112 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006113 }
6114 }
6115
Jose Lima9546b202014-07-02 17:21:51 -07006116 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006117 public void setSafeMode(boolean safeMode) {
6118 mSafeMode = safeMode;
6119 performHapticFeedbackLw(null, safeMode
6120 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6121 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006122 }
Craig Mautnereda67292013-04-28 13:50:14 -07006123
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006124 static long[] getLongIntArray(Resources r, int resid) {
6125 int[] ar = r.getIntArray(resid);
6126 if (ar == null) {
6127 return null;
6128 }
6129 long[] out = new long[ar.length];
6130 for (int i=0; i<ar.length; i++) {
6131 out[i] = ar[i];
6132 }
6133 return out;
6134 }
Craig Mautnereda67292013-04-28 13:50:14 -07006135
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006136 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006137 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006138 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006139 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006140 mKeyguardDelegate.onSystemReady();
6141
Michael Wright3818c922014-09-02 13:59:07 -07006142 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006143 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006144 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006145 synchronized (mLock) {
6146 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006147 mSystemReady = true;
6148 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006149 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006150 public void run() {
6151 updateSettings();
6152 }
6153 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006154
6155 bindKeyguardNow = mDeferBindKeyguard;
6156 if (bindKeyguardNow) {
6157 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6158 mDeferBindKeyguard = false;
6159 }
6160 }
6161
6162 if (bindKeyguardNow) {
6163 mKeyguardDelegate.bindService(mContext);
6164 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006165 }
Michael Wrighta4d22d72015-09-16 23:19:26 +01006166 mSystemGestures.systemReady();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006167 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006168
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006169 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006170 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006171 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006172 boolean bindKeyguardNow = false;
6173 synchronized (mLock) {
6174 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6175 // in systemReady if not.
6176 if (mKeyguardDelegate != null) {
6177 bindKeyguardNow = true;
6178 } else {
6179 // Because mKeyguardDelegate is null, we know that the synchronized block in
6180 // systemReady didn't run yet and setting this will actually have an effect.
6181 mDeferBindKeyguard = true;
6182 }
6183 }
6184 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006185 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006186 mKeyguardDelegate.onBootCompleted();
6187 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006188 synchronized (mLock) {
6189 mSystemBooted = true;
6190 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006191 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006192 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006193 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006194 }
6195
Dianne Hackborn661cd522011-08-22 00:26:20 -07006196 ProgressDialog mBootMsgDialog = null;
6197
6198 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006199 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006200 public void showBootMessage(final CharSequence msg, final boolean always) {
6201 mHandler.post(new Runnable() {
6202 @Override public void run() {
6203 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006204 int theme;
6205 if (mContext.getPackageManager().hasSystemFeature(
6206 PackageManager.FEATURE_WATCH)) {
6207 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6208 } else if (mContext.getPackageManager().hasSystemFeature(
6209 PackageManager.FEATURE_TELEVISION)) {
6210 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6211 } else {
6212 theme = 0;
6213 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006214
6215 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006216 // This dialog will consume all events coming in to
6217 // it, to avoid it trying to do things too early in boot.
6218 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6219 return true;
6220 }
6221 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6222 return true;
6223 }
6224 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6225 return true;
6226 }
6227 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6228 return true;
6229 }
6230 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6231 return true;
6232 }
6233 @Override public boolean dispatchPopulateAccessibilityEvent(
6234 AccessibilityEvent event) {
6235 return true;
6236 }
6237 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006238 if (mContext.getPackageManager().isUpgrade()) {
6239 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6240 } else {
6241 mBootMsgDialog.setTitle(R.string.android_start_title);
6242 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006243 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6244 mBootMsgDialog.setIndeterminate(true);
6245 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006246 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006247 mBootMsgDialog.getWindow().addFlags(
6248 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6249 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6250 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006251 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6252 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6253 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006254 mBootMsgDialog.setCancelable(false);
6255 mBootMsgDialog.show();
6256 }
6257 mBootMsgDialog.setMessage(msg);
6258 }
6259 });
6260 }
6261
6262 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006263 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006264 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006265 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006266 }
6267
Mike Lockwood28569302010-01-28 11:54:40 -05006268 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006269 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006270 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006271 // ***************************************
6272 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6273 // ***************************************
6274 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6275 // WITH ITS LOCKS HELD.
6276 //
6277 // This code must be VERY careful about the locks
6278 // it acquires.
6279 // In fact, the current code acquires way too many,
6280 // and probably has lurking deadlocks.
6281
Mike Lockwood28569302010-01-28 11:54:40 -05006282 synchronized (mScreenLockTimeout) {
6283 if (mLockScreenTimerActive) {
6284 // reset the timer
6285 mHandler.removeCallbacks(mScreenLockTimeout);
6286 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6287 }
6288 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006289 }
6290
Adam Cohenf7522022012-10-03 20:03:18 -07006291 class ScreenLockTimeout implements Runnable {
6292 Bundle options;
6293
6294 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006295 public void run() {
6296 synchronized (this) {
6297 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006298 if (mKeyguardDelegate != null) {
6299 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006300 }
Mike Lockwood28569302010-01-28 11:54:40 -05006301 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006302 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006303 }
6304 }
Mike Lockwood28569302010-01-28 11:54:40 -05006305
Adam Cohenf7522022012-10-03 20:03:18 -07006306 public void setLockOptions(Bundle options) {
6307 this.options = options;
6308 }
6309 }
6310
6311 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6312
Jose Lima9546b202014-07-02 17:21:51 -07006313 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006314 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006315 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6316 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006317 if (options != null) {
6318 // In case multiple calls are made to lockNow, we don't wipe out the options
6319 // until the runnable actually executes.
6320 mScreenLockTimeout.setLockOptions(options);
6321 }
Jim Miller93c518e2012-01-17 15:55:31 -08006322 mHandler.post(mScreenLockTimeout);
6323 }
6324
Mike Lockwood28569302010-01-28 11:54:40 -05006325 private void updateLockScreenTimeout() {
6326 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006327 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006328 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006329 if (mLockScreenTimerActive != enable) {
6330 if (enable) {
6331 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6332 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6333 } else {
6334 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6335 mHandler.removeCallbacks(mScreenLockTimeout);
6336 }
6337 mLockScreenTimerActive = enable;
6338 }
6339 }
6340 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006341
Jeff Brown061ea992015-04-17 19:55:47 -07006342 private void updateDreamingSleepToken(boolean acquire) {
6343 if (acquire) {
6344 if (mDreamingSleepToken == null) {
6345 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6346 }
6347 } else {
6348 if (mDreamingSleepToken != null) {
6349 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006350 mDreamingSleepToken = null;
6351 }
6352 }
6353 }
6354
6355 private void updateScreenOffSleepToken(boolean acquire) {
6356 if (acquire) {
6357 if (mScreenOffSleepToken == null) {
6358 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6359 }
6360 } else {
6361 if (mScreenOffSleepToken != null) {
6362 mScreenOffSleepToken.release();
6363 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006364 }
6365 }
6366 }
6367
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006368 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006369 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006370 public void enableScreenAfterBoot() {
6371 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006372 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006373 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006374 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006375
Jeff Brownc458ce92012-04-30 14:58:40 -07006376 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006377 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006378 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006379 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006380 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006381 }
Jeff Browna20dda42014-05-27 20:57:24 -07006382
6383 synchronized (mLock) {
6384 updateWakeGestureListenerLp();
6385 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006386 }
6387
Jeff Brown4f5fa282014-06-12 19:19:15 -07006388 void updateUiMode() {
6389 if (mUiModeManager == null) {
6390 mUiModeManager = IUiModeManager.Stub.asInterface(
6391 ServiceManager.getService(Context.UI_MODE_SERVICE));
6392 }
6393 try {
6394 mUiMode = mUiModeManager.getCurrentModeType();
6395 } catch (RemoteException e) {
6396 }
6397 }
6398
Jeff Brown01a98dd2011-09-20 15:08:29 -07006399 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006400 try {
6401 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006402 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6403 } catch (RemoteException e) {
6404 // Ignore
6405 }
6406 }
6407
6408 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6409 try {
6410 //set orientation on WindowManager
6411 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006412 } catch (RemoteException e) {
6413 // Ignore
6414 }
6415 }
6416
Daniel Sandler6396c722013-04-16 20:19:09 -04006417 /**
6418 * Return an Intent to launch the currently active dock app as home. Returns
6419 * null if the standard home should be launched, which is the case if any of the following is
6420 * true:
6421 * <ul>
6422 * <li>The device is not in either car mode or desk mode
keunyounga7710492015-09-23 11:33:58 -07006423 * <li>The device is in car mode but mEnableCarDockHomeCapture is false
Daniel Sandler6396c722013-04-16 20:19:09 -04006424 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6425 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6426 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6427 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006428 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006429 */
6430 Intent createHomeDockIntent() {
6431 Intent intent = null;
6432
6433 // What home does is based on the mode, not the dock state. That
6434 // is, when in car mode you should be taken to car home regardless
6435 // of whether we are actually in a car dock.
6436 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
keunyounga7710492015-09-23 11:33:58 -07006437 if (mEnableCarDockHomeCapture) {
Daniel Sandler6396c722013-04-16 20:19:09 -04006438 intent = mCarDockIntent;
6439 }
6440 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6441 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6442 intent = mDeskDockIntent;
6443 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006444 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6445 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6446 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6447 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6448 // Always launch dock home from home when watch is docked, if it exists.
6449 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006450 }
6451
6452 if (intent == null) {
6453 return null;
6454 }
6455
6456 ActivityInfo ai = null;
6457 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6458 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006459 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006460 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006461 if (info != null) {
6462 ai = info.activityInfo;
6463 }
6464 if (ai != null
6465 && ai.metaData != null
6466 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6467 intent = new Intent(intent);
6468 intent.setClassName(ai.packageName, ai.name);
6469 return intent;
6470 }
6471
6472 return null;
6473 }
6474
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006475 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6476 if (awakenFromDreams) {
6477 awakenDreams();
6478 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006479
6480 Intent dock = createHomeDockIntent();
6481 if (dock != null) {
6482 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006483 if (fromHomeKey) {
6484 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6485 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006486 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006487 return;
6488 } catch (ActivityNotFoundException e) {
6489 }
6490 }
6491
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006492 Intent intent;
6493
6494 if (fromHomeKey) {
6495 intent = new Intent(mHomeIntent);
6496 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6497 } else {
6498 intent = mHomeIntent;
6499 }
6500
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006501 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006502 }
Craig Mautnereda67292013-04-28 13:50:14 -07006503
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006504 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006505 * goes to the home screen
6506 * @return whether it did anything
6507 */
6508 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006509 if (!isUserSetupComplete()) {
6510 Slog.i(TAG, "Not going home because user setup is in progress.");
6511 return false;
6512 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006513 if (false) {
6514 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006515 try {
6516 ActivityManagerNative.getDefault().stopAppSwitches();
6517 } catch (RemoteException e) {
6518 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006519 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006520 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006521 } else {
6522 // This code brings home to the front or, if it is already
6523 // at the front, puts the device to sleep.
6524 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006525 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6526 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6527 Log.d(TAG, "UTS-TEST-MODE");
6528 } else {
6529 ActivityManagerNative.getDefault().stopAppSwitches();
6530 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006531 Intent dock = createHomeDockIntent();
6532 if (dock != null) {
6533 int result = ActivityManagerNative.getDefault()
6534 .startActivityAsUser(null, null, dock,
6535 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6536 null, null, 0,
6537 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006538 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006539 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6540 return false;
6541 }
6542 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006543 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006544 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006545 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006546 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006547 null, null, 0,
6548 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006549 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006550 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006551 return false;
6552 }
6553 } catch (RemoteException ex) {
6554 // bummer, the activity manager, which is in this process, is dead
6555 }
6556 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006557 return true;
6558 }
Craig Mautnereda67292013-04-28 13:50:14 -07006559
6560 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006561 public void setCurrentOrientationLw(int newOrientation) {
6562 synchronized (mLock) {
6563 if (newOrientation != mCurrentAppOrientation) {
6564 mCurrentAppOrientation = newOrientation;
6565 updateOrientationListenerLp();
6566 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006567 }
6568 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006569
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006570 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6571 if (!isGlobalAccessibilityGestureEnabled()) {
6572 return;
6573 }
6574 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6575 Context.AUDIO_SERVICE);
6576 if (audioManager.isSilentMode()) {
6577 return;
6578 }
6579 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6580 Settings.System.DEFAULT_NOTIFICATION_URI);
6581 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6582 ringTone.play();
6583 }
Craig Mautnereda67292013-04-28 13:50:14 -07006584
Bryce Lee584a4452014-10-21 15:55:55 -07006585 private boolean isTheaterModeEnabled() {
6586 return Settings.Global.getInt(mContext.getContentResolver(),
6587 Settings.Global.THEATER_MODE_ON, 0) == 1;
6588 }
6589
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006590 private boolean isGlobalAccessibilityGestureEnabled() {
6591 return Settings.Global.getInt(mContext.getContentResolver(),
6592 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6593 }
6594
Craig Mautnereda67292013-04-28 13:50:14 -07006595 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006596 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006597 if (!mVibrator.hasVibrator()) {
6598 return false;
6599 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006600 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6601 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006602 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006603 return false;
6604 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006605 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006606 switch (effectId) {
6607 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006608 pattern = mLongPressVibePattern;
6609 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006610 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006611 pattern = mVirtualKeyVibePattern;
6612 break;
6613 case HapticFeedbackConstants.KEYBOARD_TAP:
6614 pattern = mKeyboardTapVibePattern;
6615 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006616 case HapticFeedbackConstants.CLOCK_TICK:
6617 pattern = mClockTickVibePattern;
6618 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006619 case HapticFeedbackConstants.CALENDAR_DATE:
6620 pattern = mCalendarDateVibePattern;
6621 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006622 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006623 pattern = mSafeModeDisabledVibePattern;
6624 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006625 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006626 pattern = mSafeModeEnabledVibePattern;
6627 break;
Mady Mellore8608912015-06-05 09:02:55 -07006628 case HapticFeedbackConstants.CONTEXT_CLICK:
6629 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006630 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006631 default:
6632 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006633 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006634 int owningUid;
6635 String owningPackage;
6636 if (win != null) {
6637 owningUid = win.getOwningUid();
6638 owningPackage = win.getOwningPackage();
6639 } else {
6640 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006641 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006642 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006643 if (pattern.length == 1) {
6644 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006645 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006646 } else {
6647 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006648 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006649 }
6650 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006651 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006652
6653 @Override
6654 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006655 }
6656
Jeff Brownc38c9be2012-10-04 13:16:19 -07006657 @Override
6658 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006659 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006660 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006661 }
6662 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006663
Dianne Hackborndf89e652011-10-06 22:35:11 -07006664 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006665 // If there is no window focused, there will be nobody to handle the events
6666 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006667 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6668 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006669 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006670 return 0;
6671 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006672 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006673 // We are updating at a point where the keyguard has gotten
6674 // focus, but we were last in a state where the top window is
6675 // hiding it. This is probably because the keyguard as been
6676 // shown while the top window was displayed, so we want to ignore
6677 // it here because this is just a very transient change and it
6678 // will quickly lose focus once it correctly gets hidden.
6679 return 0;
6680 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006681
John Spurlock1db8b682014-02-18 11:18:59 -05006682 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006683 & ~mResettingSystemUiFlags
6684 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006685 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006686 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006687 }
Thanh Hai Mai6c009f52015-09-01 16:27:32 -07006688
6689 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6690 tmpVisibility |= StatusBarManager.DISABLE_RECENT;
6691 }
6692
Adrian Rooscd3884d2015-02-18 17:25:23 +01006693 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006694 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006695 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006696 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006697 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006698 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006699 return 0;
6700 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006701 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006702 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006703 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006704 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006705 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006706 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006707 try {
6708 IStatusBarService statusbar = getStatusBarService();
6709 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006710 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006711 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006712 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006713 } catch (RemoteException e) {
6714 // re-acquire status bar service next time it is needed.
6715 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006716 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006717 }
6718 });
6719 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006720 }
6721
Adrian Rooscd3884d2015-02-18 17:25:23 +01006722 private int updateLightStatusBarLw(int vis) {
6723 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6724 ? mStatusBar
6725 : mTopFullscreenOpaqueOrDimmingWindowState;
6726
6727 if (statusColorWin != null) {
6728 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6729 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6730 // its light flag.
6731 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6732 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6733 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6734 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6735 // Otherwise if it's dimming, clear the light flag.
6736 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6737 }
6738 }
6739 return vis;
6740 }
6741
John Spurlock79da8332013-09-20 12:04:47 -04006742 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006743 final boolean dockedStackVisible = mWindowManagerInternal.isStackVisible(DOCKED_STACK_ID);
6744 final boolean freeformStackVisible =
6745 mWindowManagerInternal.isStackVisible(FREEFORM_WORKSPACE_STACK_ID);
6746 final boolean forceShowSystemBars = dockedStackVisible || freeformStackVisible;
Jorim Jaggi4fa78922015-11-30 17:13:56 -08006747 final boolean forceOpaqueSystemBars = forceShowSystemBars && !mForceStatusBarFromKeyguard;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006748
John Spurlockbd957402013-10-03 11:38:39 -04006749 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006750 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6751 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006752 : mTopFullscreenOpaqueWindowState;
6753 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6754 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6755
John Spurlock27735a42013-08-14 17:57:38 -04006756 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006757 int type = win.getAttrs().type;
6758 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006759 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006760 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6761 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006762 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006763 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6764 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006765 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006766 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6767 }
John Spurlockbd957402013-10-03 11:38:39 -04006768 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006769 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006770
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006771 if ((!areTranslucentBarsAllowed() && transWin != mStatusBar)
6772 || forceOpaqueSystemBars) {
Adrian Roosea562512014-05-05 13:33:03 +02006773 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6774 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006775 }
6776
Jorim Jaggi4fa78922015-11-30 17:13:56 -08006777 if (mForceWindowDrawsStatusBarBackground) {
6778 vis |= View.STATUS_BAR_TRANSPARENT;
6779 vis &= ~View.STATUS_BAR_TRANSLUCENT;
6780 }
6781
John Spurlock27735a42013-08-14 17:57:38 -04006782 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006783 boolean immersiveSticky =
6784 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006785 final boolean hideStatusBarWM =
6786 mTopFullscreenOpaqueWindowState != null
6787 && (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006788 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006789 final boolean hideStatusBarSysui =
John Spurlock27735a42013-08-14 17:57:38 -04006790 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006791 final boolean hideNavBarSysui =
John Spurlockf1a36642013-10-12 17:50:42 -04006792 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006793
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006794 final boolean transientStatusBarAllowed = mStatusBar != null
6795 && (statusBarHasFocus || (!forceShowSystemBars
6796 && (hideStatusBarWM || (hideStatusBarSysui && immersiveSticky))));
John Spurlock27735a42013-08-14 17:57:38 -04006797
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006798 final boolean transientNavBarAllowed = mNavigationBar != null
6799 && !forceShowSystemBars && hideNavBarSysui && immersiveSticky;
John Spurlockf1a36642013-10-12 17:50:42 -04006800
Adrian Roosddc8b272015-05-21 16:28:27 -07006801 final long now = SystemClock.uptimeMillis();
6802 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6803 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6804 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6805 // The user performed the panic gesture recently, we're about to hide the bars,
6806 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6807 mPendingPanicGestureUptime = 0;
6808 mStatusBarController.showTransient();
6809 mNavigationBarController.showTransient();
6810 }
6811
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006812 final boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006813 && !transientStatusBarAllowed && hideStatusBarSysui;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006814 final boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006815 && !transientNavBarAllowed;
Wale Ogunwale6e94a9e2015-10-07 15:35:49 -07006816 if (denyTransientStatus || denyTransientNav || forceShowSystemBars) {
John Spurlock27735a42013-08-14 17:57:38 -04006817 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006818 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006819 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006820 }
John Spurlock27735a42013-08-14 17:57:38 -04006821
Selim Cinekf98702e2015-05-20 22:48:40 -07006822 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6823 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6824 final boolean navAllowedHidden = immersive || immersiveSticky;
6825
Selim Cinekd6623612015-05-22 18:56:22 -07006826 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6827 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006828 // We can't hide the navbar from this window otherwise the input consumer would not get
6829 // the input events.
6830 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6831 }
6832
John Spurlock27735a42013-08-14 17:57:38 -04006833 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6834
6835 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006836 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6837 boolean newImmersiveMode = isImmersiveMode(vis);
6838 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006839 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006840 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6841 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006842 }
John Spurlock27735a42013-08-14 17:57:38 -04006843
John Spurlockf1a36642013-10-12 17:50:42 -04006844 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6845
John Spurlocke1f366f2013-08-05 12:22:40 -04006846 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006847 }
6848
John Spurlockf1a36642013-10-12 17:50:42 -04006849 private void clearClearableFlagsLw() {
6850 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6851 if (newVal != mResettingSystemUiFlags) {
6852 mResettingSystemUiFlags = newVal;
6853 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6854 }
6855 }
6856
6857 private boolean isImmersiveMode(int vis) {
6858 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006859 return mNavigationBar != null
6860 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006861 && (vis & flags) != 0
6862 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006863 }
6864
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006865 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006866 * @return whether the navigation or status bar can be made translucent
6867 *
6868 * This should return true unless touch exploration is not enabled or
6869 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006870 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006871 private boolean areTranslucentBarsAllowed() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04006872 return mTranslucentDecorEnabled;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006873 }
6874
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006875 // Use this instead of checking config_showNavigationBar so that it can be consistently
6876 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006877 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006878 public boolean hasNavigationBar() {
6879 return mHasNavigationBar;
6880 }
6881
satok1bc0a492012-04-25 22:47:12 +09006882 @Override
6883 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6884 mLastInputMethodWindow = ime;
6885 mLastInputMethodTargetWindow = target;
6886 }
6887
Craig Mautnerf1b67412012-09-19 13:18:29 -07006888 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006889 public int getInputMethodWindowVisibleHeightLw() {
6890 return mDockBottom - mCurBottom;
6891 }
6892
6893 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006894 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006895 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006896 if (mKeyguardDelegate != null) {
6897 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006898 }
John Spurlock13451a22012-09-28 14:40:41 -04006899 if (mStatusBarService != null) {
6900 try {
6901 mStatusBarService.setCurrentUser(newUserId);
6902 } catch (RemoteException e) {
6903 // oh well
6904 }
6905 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006906 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006907 }
6908
6909 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006910 public boolean canMagnifyWindow(int windowType) {
6911 switch (windowType) {
6912 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6913 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6914 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6915 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6916 return false;
6917 }
6918 }
6919 return true;
6920 }
6921
6922 @Override
6923 public boolean isTopLevelWindow(int windowType) {
6924 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6925 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6926 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6927 }
6928 return true;
6929 }
6930
Jim Miller4eeb4f62012-11-08 00:04:29 -08006931 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006932 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006933 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006934 pw.print(" mSystemReady="); pw.print(mSystemReady);
6935 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006936 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006937 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006938 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006939 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006940 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6941 || mForceClearedSystemUiFlags != 0) {
6942 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6943 pw.print(Integer.toHexString(mLastSystemUiFlags));
6944 pw.print(" mResettingSystemUiFlags=0x");
6945 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6946 pw.print(" mForceClearedSystemUiFlags=0x");
6947 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006948 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006949 if (mLastFocusNeedsMenu) {
6950 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6951 pw.println(mLastFocusNeedsMenu);
6952 }
Jeff Browna20dda42014-05-27 20:57:24 -07006953 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6954 pw.println(mWakeGestureEnabledSetting);
6955
Jeff Brownbcdfc622014-03-06 19:13:04 -08006956 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006957 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6958 pw.print(" mDockMode="); pw.print(mDockMode);
keunyounga7710492015-09-23 11:33:58 -07006959 pw.print(" mEnableCarDockHomeCapture="); pw.print(mEnableCarDockHomeCapture);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006960 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6961 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6962 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6963 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006964 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006965 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006966 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6967 pw.print(mCarDockEnablesAccelerometer);
6968 pw.print(" mDeskDockEnablesAccelerometer=");
6969 pw.println(mDeskDockEnablesAccelerometer);
6970 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6971 pw.print(mLidKeyboardAccessibility);
6972 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006973 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006974 pw.print(prefix);
6975 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6976 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006977 pw.print(prefix);
6978 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6979 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006980 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006981 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6982 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6983 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6984 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6985 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6986 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6987 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006988 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6989 pw.print(","); pw.print(mOverscanScreenTop);
6990 pw.print(") "); pw.print(mOverscanScreenWidth);
6991 pw.print("x"); pw.println(mOverscanScreenHeight);
6992 if (mOverscanLeft != 0 || mOverscanTop != 0
6993 || mOverscanRight != 0 || mOverscanBottom != 0) {
6994 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6995 pw.print(" top="); pw.print(mOverscanTop);
6996 pw.print(" right="); pw.print(mOverscanRight);
6997 pw.print(" bottom="); pw.println(mOverscanBottom);
6998 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006999 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
7000 pw.print(mRestrictedOverscanScreenLeft);
7001 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
7002 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
7003 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007004 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
7005 pw.print(","); pw.print(mUnrestrictedScreenTop);
7006 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
7007 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
7008 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
7009 pw.print(","); pw.print(mRestrictedScreenTop);
7010 pw.print(") "); pw.print(mRestrictedScreenWidth);
7011 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07007012 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
7013 pw.print(","); pw.print(mStableFullscreenTop);
7014 pw.print(")-("); pw.print(mStableFullscreenRight);
7015 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07007016 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
7017 pw.print(","); pw.print(mStableTop);
7018 pw.print(")-("); pw.print(mStableRight);
7019 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07007020 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
7021 pw.print(","); pw.print(mSystemTop);
7022 pw.print(")-("); pw.print(mSystemRight);
7023 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007024 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
7025 pw.print(","); pw.print(mCurTop);
7026 pw.print(")-("); pw.print(mCurRight);
7027 pw.print(","); pw.print(mCurBottom); pw.println(")");
7028 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
7029 pw.print(","); pw.print(mContentTop);
7030 pw.print(")-("); pw.print(mContentRight);
7031 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07007032 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
7033 pw.print(","); pw.print(mVoiceContentTop);
7034 pw.print(")-("); pw.print(mVoiceContentRight);
7035 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007036 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
7037 pw.print(","); pw.print(mDockTop);
7038 pw.print(")-("); pw.print(mDockRight);
7039 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07007040 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
7041 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007042 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
7043 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07007044 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
7045 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007046 if (mLastInputMethodWindow != null) {
7047 pw.print(prefix); pw.print("mLastInputMethodWindow=");
7048 pw.println(mLastInputMethodWindow);
7049 }
7050 if (mLastInputMethodTargetWindow != null) {
7051 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
7052 pw.println(mLastInputMethodTargetWindow);
7053 }
7054 if (mStatusBar != null) {
7055 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08007056 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
7057 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007058 }
7059 if (mNavigationBar != null) {
7060 pw.print(prefix); pw.print("mNavigationBar=");
7061 pw.println(mNavigationBar);
7062 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07007063 if (mFocusedWindow != null) {
7064 pw.print(prefix); pw.print("mFocusedWindow=");
7065 pw.println(mFocusedWindow);
7066 }
7067 if (mFocusedApp != null) {
7068 pw.print(prefix); pw.print("mFocusedApp=");
7069 pw.println(mFocusedApp);
7070 }
7071 if (mWinDismissingKeyguard != null) {
7072 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
7073 pw.println(mWinDismissingKeyguard);
7074 }
7075 if (mTopFullscreenOpaqueWindowState != null) {
7076 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
7077 pw.println(mTopFullscreenOpaqueWindowState);
7078 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01007079 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
7080 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
7081 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
7082 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08007083 if (mForcingShowNavBar) {
7084 pw.print(prefix); pw.print("mForcingShowNavBar=");
7085 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
7086 pw.println(mForcingShowNavBarLayer);
7087 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007088 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007089 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07007090 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
7091 pw.print(" mForceStatusBarFromKeyguard=");
7092 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007093 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07007094 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007095 pw.print(" mHomePressed="); pw.println(mHomePressed);
7096 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
7097 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
7098 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
7099 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
7100 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
7101 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
7102 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
7103 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
7104 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
7105 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07007106 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
7107 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
7108 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07007109
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07007110 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04007111 mStatusBarController.dump(pw, prefix);
7112 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007113 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007114
Jeff Browna20dda42014-05-27 20:57:24 -07007115 if (mWakeGestureListener != null) {
7116 mWakeGestureListener.dump(pw, prefix);
7117 }
Jeff Brown600f0032014-05-22 17:06:00 -07007118 if (mOrientationListener != null) {
7119 mOrientationListener.dump(pw, prefix);
7120 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007121 if (mBurnInProtectionHelper != null) {
7122 mBurnInProtectionHelper.dump(prefix, pw);
7123 }
Jorim Jaggi84dc08a2015-09-11 17:45:22 -07007124 if (mKeyguardDelegate != null) {
7125 mKeyguardDelegate.dump(prefix, pw);
7126 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007127 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007128}