blob: 2a66250804c00e3fa18dbfcfef1a8c70f9ec59f7 [file] [log] [blame]
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001/*
Jeff Brown37df39a92015-02-25 15:42:31 -08002 * Copyright (C) 2006 The Android Open Source Project
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jorim Jaggib10e33f2015-02-04 21:57:40 +010017package com.android.server.policy;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080018
Dianne Hackborna4972e92012-03-14 10:38:05 -070019import android.app.ActivityManager;
Jeff Brown061ea992015-04-17 19:55:47 -070020import android.app.ActivityManagerInternal;
21import android.app.ActivityManagerInternal.SleepToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080022import android.app.ActivityManagerNative;
Dianne Hackbornc2293022013-02-06 23:14:49 -080023import android.app.AppOpsManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040024import android.app.IUiModeManager;
Dianne Hackborn661cd522011-08-22 00:26:20 -070025import android.app.ProgressDialog;
Jeff Brownde7a8ea2012-06-13 18:28:57 -070026import android.app.SearchManager;
John Spurlock97642182013-07-29 17:58:39 -040027import android.app.StatusBarManager;
Dianne Hackborn78968392010-03-04 20:47:56 -080028import android.app.UiModeManager;
Dianne Hackborn39c2d712009-09-22 11:41:31 -070029import android.content.ActivityNotFoundException;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080030import android.content.BroadcastReceiver;
Daniel Sandler0601eb72011-04-13 01:01:32 -040031import android.content.ComponentName;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080032import android.content.ContentResolver;
33import android.content.Context;
34import android.content.Intent;
Mike Lockwood1753f7f2009-08-24 14:49:07 -070035import android.content.IntentFilter;
Winson Chung9112ec32011-06-27 13:15:32 -070036import android.content.ServiceConnection;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080037import android.content.pm.ActivityInfo;
38import android.content.pm.PackageManager;
Daniel Sandler6396c722013-04-16 20:19:09 -040039import android.content.pm.ResolveInfo;
Dianne Hackborn2f0b1752011-05-31 17:59:49 -070040import android.content.res.CompatibilityInfo;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080041import android.content.res.Configuration;
42import android.content.res.Resources;
Craig Mautner8e4df6c2012-05-23 16:57:23 -070043import android.content.res.TypedArray;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080044import android.database.ContentObserver;
Dianne Hackbornc777e072010-02-12 13:07:59 -080045import android.graphics.PixelFormat;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080046import android.graphics.Rect;
Jinsuk Kime601b712015-07-07 08:01:02 +090047import android.hardware.hdmi.HdmiControlManager;
48import android.hardware.hdmi.HdmiPlaybackClient;
49import android.hardware.hdmi.HdmiPlaybackClient.OneTouchPlayCallback;
John Spurlock7b414672014-07-18 13:02:39 -040050import android.media.AudioAttributes;
Michael Jurka7a348952012-02-27 13:07:58 -080051import android.media.AudioManager;
John Spurlock61560172015-02-06 19:46:04 -050052import android.media.AudioSystem;
Michael Jurka7a348952012-02-27 13:07:58 -080053import android.media.IAudioService;
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -070054import android.media.Ringtone;
55import android.media.RingtoneManager;
RoboErik8a2cfc32014-05-16 11:19:38 -070056import android.media.session.MediaSessionLegacyHelper;
Billy Laucbe540f2015-06-25 01:51:44 +010057import android.os.Binder;
Dianne Hackborn38e29a62011-09-18 14:43:08 -070058import android.os.Bundle;
Craig Mautner276a6eb2014-11-04 15:32:57 -080059import android.os.Debug;
Jeff Brown9a538ee2012-08-20 14:56:57 -070060import android.os.FactoryTest;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080061import android.os.Handler;
62import android.os.IBinder;
Dianne Hackbornb6683c42015-06-18 17:40:33 -070063import android.os.IDeviceIdleController;
Jeff Brown32cbc38552011-12-01 14:01:49 -080064import android.os.Looper;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -070065import android.os.Message;
66import android.os.Messenger;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080067import android.os.PowerManager;
Billy Laucbe540f2015-06-25 01:51:44 +010068import android.os.Process;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080069import android.os.RemoteException;
70import android.os.ServiceManager;
71import android.os.SystemClock;
72import android.os.SystemProperties;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -080073import android.os.UEventObserver;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070074import android.os.UserHandle;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080075import android.os.Vibrator;
Michael Wright3818c922014-09-02 13:59:07 -070076import android.provider.MediaStore;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080077import android.provider.Settings;
Jose Lima9546b202014-07-02 17:21:51 -070078import android.service.dreams.DreamManagerInternal;
John Spurlockc8b46ca2013-04-08 12:59:26 -040079import android.service.dreams.DreamService;
80import android.service.dreams.IDreamManager;
Michael Wrightdc63f7b2014-08-21 19:05:21 -070081import android.speech.RecognizerIntent;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070082import android.telecom.TelecomManager;
Dianne Hackborn81e56d52011-05-26 00:55:58 -070083import android.util.DisplayMetrics;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080084import android.util.EventLog;
85import android.util.Log;
Jeff Browna41ca772010-08-11 14:46:32 -070086import android.util.Slog;
Jeff Brown6651a632011-11-28 12:59:11 -080087import android.util.SparseArray;
Dianne Hackbornf87d1962012-04-04 12:48:24 -070088import android.view.Display;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080089import android.view.Gravity;
90import android.view.HapticFeedbackConstants;
Dianne Hackborne0f085d2011-11-30 18:41:15 -080091import android.view.IApplicationToken;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080092import android.view.IWindowManager;
Jeff Browna41ca772010-08-11 14:46:32 -070093import android.view.InputChannel;
Jeff Brown4d396052010-10-29 21:50:21 -070094import android.view.InputDevice;
Jeff Brown4952dfd2011-11-30 19:23:22 -080095import android.view.InputEvent;
Jeff Brown32cbc38552011-12-01 14:01:49 -080096import android.view.InputEventReceiver;
Jeff Brown6b53e8d2010-11-10 16:03:06 -080097import android.view.KeyCharacterMap;
Craig Mautnerae446592012-12-06 19:05:05 -080098import android.view.KeyCharacterMap.FallbackAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -080099import android.view.KeyEvent;
100import android.view.MotionEvent;
Chris Wren9bb290b2015-06-29 12:02:13 -0400101
102import com.android.internal.logging.MetricsLogger;
Adam Powell6711f3b2015-05-06 15:57:09 -0700103import com.android.internal.policy.PhoneWindow;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800104import android.view.Surface;
105import android.view.View;
106import android.view.ViewConfiguration;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800107import android.view.WindowManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800108import android.view.WindowManagerGlobal;
Craig Mautner8a0da012014-05-31 15:13:37 -0700109import android.view.WindowManagerInternal;
Craig Mautnerae446592012-12-06 19:05:05 -0800110import android.view.WindowManagerPolicy;
Craig Mautnerae446592012-12-06 19:05:05 -0800111import android.view.accessibility.AccessibilityEvent;
Svetoslav8e3feb12014-02-24 13:46:47 -0800112import android.view.accessibility.AccessibilityManager;
Craig Mautnerae446592012-12-06 19:05:05 -0800113import android.view.animation.Animation;
Jorim Jaggi76a16232014-08-08 17:00:47 +0200114import android.view.animation.AnimationSet;
Craig Mautnerae446592012-12-06 19:05:05 -0800115import android.view.animation.AnimationUtils;
Craig Mautnerae446592012-12-06 19:05:05 -0800116import com.android.internal.R;
Craig Mautnerae446592012-12-06 19:05:05 -0800117import com.android.internal.statusbar.IStatusBarService;
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700118import com.android.internal.util.ScreenShapeHelper;
Craig Mautnerae446592012-12-06 19:05:05 -0800119import com.android.internal.widget.PointerLocationView;
Craig Mautner8a0da012014-05-31 15:13:37 -0700120import com.android.server.LocalServices;
Jorim Jaggib10e33f2015-02-04 21:57:40 +0100121import com.android.server.policy.keyguard.KeyguardServiceDelegate;
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700122import com.android.server.policy.keyguard.KeyguardServiceDelegate.DrawnListener;
Craig Mautnerae446592012-12-06 19:05:05 -0800123
124import java.io.File;
125import java.io.FileReader;
126import java.io.IOException;
127import java.io.PrintWriter;
Billy Lau060275f2015-07-15 22:29:19 +0100128import java.util.Arrays;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700129import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800130import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800131
Dianne Hackbornc652de82013-02-15 16:32:56 -0800132import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700133import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
134import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
135import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700136import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
137import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
138import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800139
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800140/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700141 * WindowManagerPolicy implementation for the Android phone UI. This
142 * introduces a new method suffix, Lp, for an internal lock of the
143 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400144 * 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 -0700145 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800146 */
147public class PhoneWindowManager implements WindowManagerPolicy {
148 static final String TAG = "WindowManager";
149 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700150 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700151 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700152 static final boolean DEBUG_KEYGUARD = false;
153 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700154 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700155 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800156 static final boolean SHOW_STARTING_ANIMATIONS = true;
157 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400158
Daniel Sandler6396c722013-04-16 20:19:09 -0400159 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
160 // No longer recommended for desk docks; still useful in car docks.
161 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
162 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
212 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700213
John Spurlock7b414672014-07-18 13:02:39 -0400214 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
215 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
216 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
217 .build();
218
Adrian Roosddc8b272015-05-21 16:28:27 -0700219 // The panic gesture may become active only after the keyguard is dismissed and the immersive
220 // app shows again. If that doesn't happen for 30s we drop the gesture.
221 private static final long PANIC_GESTURE_EXPIRATION = 30000;
222
Jim Miller5ecd8112013-01-09 18:50:26 -0800223 /**
224 * Keyguard stuff
225 */
226 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100227 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700228 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800229
Jeff Brown6651a632011-11-28 12:59:11 -0800230 /* Table of Application Launch keys. Maps from key codes to intent categories.
231 *
232 * These are special keys that are used to launch particular kinds of applications,
233 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
234 * usage page. We don't support quite that many yet...
235 */
236 static SparseArray<String> sApplicationLaunchKeyCategories;
237 static {
238 sApplicationLaunchKeyCategories = new SparseArray<String>();
239 sApplicationLaunchKeyCategories.append(
240 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
241 sApplicationLaunchKeyCategories.append(
242 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
243 sApplicationLaunchKeyCategories.append(
244 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
245 sApplicationLaunchKeyCategories.append(
246 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
247 sApplicationLaunchKeyCategories.append(
248 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
249 sApplicationLaunchKeyCategories.append(
250 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
251 }
252
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700253 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
Jorim Jaggi0d210f62015-07-10 14:24:44 -0700254 static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700255
Dianne Hackborndf89e652011-10-06 22:35:11 -0700256 /**
257 * Lock protecting internal state. Must not call out into window
258 * manager with lock held. (This lock will be acquired in places
259 * where the window manager is calling in with its own lock held.)
260 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800261 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700262
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800263 Context mContext;
264 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700265 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700266 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700267 PowerManager mPowerManager;
Jeff Brown061ea992015-04-17 19:55:47 -0700268 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700269 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400270 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700271 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700272 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800273 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700274 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800275 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000276 BurnInProtectionHelper mBurnInProtectionHelper;
Billy Laucbe540f2015-06-25 01:51:44 +0100277 AppOpsManager mAppOpsManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800278
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700279 // Vibrator pattern for haptic feedback of a long press.
280 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700281
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700282 // Vibrator pattern for haptic feedback of virtual key press.
283 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700284
Amith Yamasanic33cb712010-02-10 15:21:49 -0800285 // Vibrator pattern for a short vibration.
286 long[] mKeyboardTapVibePattern;
287
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700288 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
289 long[] mClockTickVibePattern;
290
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700291 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
292 long[] mCalendarDateVibePattern;
293
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700294 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
295 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700296
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700297 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
298 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700299
Mady Mellore8608912015-06-05 09:02:55 -0700300 // Vibrator pattern for haptic feedback of a context click.
301 long[] mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -0700302
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800303 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
304 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400305
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800306 boolean mSafeMode;
307 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700308 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400309 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400310 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700311 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400312 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
313 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
314 int[] mNavigationBarHeightForRotation = new int[4];
315 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400316
Craig Mautnera631d492014-08-05 15:16:01 -0700317 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800318 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700319 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700320 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700321 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700322 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
323 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
324 }
325 };
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700326 final DrawnListener mKeyguardDrawnCallback = new DrawnListener() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700327 @Override
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700328 public void onDrawn() {
329 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onDrawn.");
Craig Mautner8a0da012014-05-31 15:13:37 -0700330 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
331 }
332 };
333
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800334 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800335 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900336 WindowState mLastInputMethodWindow = null;
337 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800338
Jeff Brown13f00f02014-10-31 14:45:50 -0700339 // FIXME This state is shared between the input reader and handler thread.
340 // Technically it's broken and buggy but it has been like this for many years
341 // and we have not yet seen any problems. Someday we'll rewrite this logic
342 // so that only one thread is involved in handling input policy. Unfortunately
343 // it's on a critical path for power management so we can't just post the work to the
344 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
345 // to hold wakelocks during dispatch and eliminating the critical path.
346 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800347 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700348 volatile int mPowerKeyPressCounter;
349 volatile boolean mEndCallKeyHandled;
350
Winson Chungd42a6cf2014-06-03 16:24:04 -0700351 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700352 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700353 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800354
Jeff Brown2e7760e2012-04-11 15:14:55 -0700355 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700356 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700357 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800358
Dianne Hackbornc777e072010-02-12 13:07:59 -0800359 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700360 boolean mSystemBooted;
Adrian Roos3542f7d2015-07-13 15:57:53 -0700361 private boolean mDeferBindKeyguard;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800362 boolean mHdmiPlugged;
Jinsuk Kime601b712015-07-07 08:01:02 +0900363 HdmiControl mHdmiControl;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700364 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400365 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700366 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700367 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400368 int mCarDockRotation;
369 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700370 int mUndockedHdmiRotation;
371 int mDemoHdmiRotation;
372 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800373 int mDemoRotation;
374 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400375
Jeff Browna20dda42014-05-27 20:57:24 -0700376 boolean mWakeGestureEnabledSetting;
377 MyWakeGestureListener mWakeGestureListener;
378
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700379 // Default display does not rotate, apps that require non-default orientation will have to
380 // have the orientation emulated.
381 private boolean mForceDefaultOrientation = false;
382
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400383 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
384 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700385 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400386
Jeff Brownbcdfc622014-03-06 19:13:04 -0800387 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700388 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400389 boolean mCarDockEnablesAccelerometer;
390 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700391 int mLidKeyboardAccessibility;
392 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700393 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700394 int mShortPressOnPowerBehavior;
395 int mLongPressOnPowerBehavior;
396 int mDoublePressOnPowerBehavior;
397 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000398 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700399 boolean mAwake;
400 boolean mScreenOnEarly;
401 boolean mScreenOnFully;
402 ScreenOnListener mScreenOnListener;
403 boolean mKeyguardDrawComplete;
404 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800405 boolean mOrientationSensorEnabled = false;
406 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800407 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400408 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800409 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700410
Jeff Brown70825162012-03-28 17:27:48 -0700411 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800412
413 // The last window we were told about in focusChanged.
414 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800415 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800416
Jeff Brown70825162012-03-28 17:27:48 -0700417 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800418
Dianne Hackbornc652de82013-02-15 16:32:56 -0800419 // The current size of the screen; really; extends into the overscan area of
420 // the screen and doesn't account for any system elements like the status bar.
421 int mOverscanScreenLeft, mOverscanScreenTop;
422 int mOverscanScreenWidth, mOverscanScreenHeight;
423 // The current visible size of the screen; really; (ir)regardless of whether the status
424 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800425 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
426 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800427 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
428 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
429 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700430 // The current size of the screen; these may be different than (0,0)-(dw,dh)
431 // if the status bar can't be hidden; in that case it effectively carves out
432 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800433 int mRestrictedScreenLeft, mRestrictedScreenTop;
434 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700435 // During layout, the current screen borders accounting for any currently
436 // visible system UI elements.
437 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700438 // For applications requesting stable content insets, these are them.
439 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700440 // For applications requesting stable content insets but have also set the
441 // fullscreen window flag, these are the stable dimensions without the status bar.
442 int mStableFullscreenLeft, mStableFullscreenTop;
443 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800444 // During layout, the current screen borders with all outer decoration
445 // (status bar, input method dock) accounted for.
446 int mCurLeft, mCurTop, mCurRight, mCurBottom;
447 // During layout, the frame in which content should be displayed
448 // to the user, accounting for all screen decoration except for any
449 // space they deem as available for other content. This is usually
450 // the same as mCur*, but may be larger if the screen decor has supplied
451 // content insets.
452 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700453 // During layout, the frame in which voice 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.
456 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800457 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800458 // windows are placed.
459 int mDockLeft, mDockTop, mDockRight, mDockBottom;
460 // During layout, the layer at which the doc window is placed.
461 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700462 // During layout, this is the layer of the status bar.
463 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700464 int mLastSystemUiFlags;
465 // Bits that we are in the process of clearing, so we want to prevent
466 // them from being set by applications until everything has been updated
467 // to have them clear.
468 int mResettingSystemUiFlags = 0;
469 // Bits that we are currently always keeping cleared.
470 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800471 // What we last reported to system UI about whether the compatibility
472 // menu needs to be displayed.
473 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700474 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
475 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700476
Selim Cinekf83e8242015-05-19 18:08:14 -0700477 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700478
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800479 static final Rect mTmpParentFrame = new Rect();
480 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800481 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800482 static final Rect mTmpContentFrame = new Rect();
483 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400484 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700485 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700486 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700487 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700488
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800489 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100490 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700491 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200492 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400493 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800494 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700495 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700496 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700497 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800498 boolean mForcingShowNavBar;
499 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700500
501 // States of keyguard dismiss.
502 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
503 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
504 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
505 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
506
507 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
508 * be done once per window. */
509 private WindowState mWinDismissingKeyguard;
510
tingna_sunge785ffa2015-05-12 13:23:15 +0800511 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
512 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
513 * lock SIM card. This variable is used to record the previous keyguard secure state for
514 * monitoring secure state change on window dismissing keyguard. */
515 private boolean mSecureDismissingKeyguard;
516
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700517 /** The window that is currently showing "over" the keyguard. If there is an app window
518 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
519 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
520 * the wallpaper. */
521 private WindowState mWinShowWhenLocked;
522
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700523 boolean mShowingLockscreen;
524 boolean mShowingDream;
525 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700526 boolean mDreamingSleepTokenNeeded;
527 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700528 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700529 boolean mKeyguardSecure;
530 boolean mKeyguardSecureIncludingHidden;
531 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800532 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700533 boolean mHomeConsumed;
534 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800535 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700536 Intent mCarDockIntent;
537 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700538 boolean mSearchKeyShortcutPending;
539 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700540 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700541 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800542
Mike Lockwood28569302010-01-28 11:54:40 -0500543 // support for activating the lock screen while the screen is on
544 boolean mAllowLockscreenWhenOn;
545 int mLockScreenTimeout;
546 boolean mLockScreenTimerActive;
547
David Brownbaf8d092010-03-08 21:52:59 -0800548 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800549 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800550
551 // Behavior of POWER button while in-call and screen on.
552 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
553 int mIncallPowerBehavior;
554
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700555 Display mDisplay;
556
Filip Gruszczynski2987f612015-06-30 15:03:30 -0700557 private int mDisplayRotation;
558
Dianne Hackborn9d132642011-04-21 17:26:39 -0700559 int mLandscapeRotation = 0; // default landscape rotation
560 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
561 int mPortraitRotation = 0; // default portrait rotation
562 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700563
Dianne Hackbornc652de82013-02-15 16:32:56 -0800564 int mOverscanLeft = 0;
565 int mOverscanTop = 0;
566 int mOverscanRight = 0;
567 int mOverscanBottom = 0;
568
Joe Onorato46b0d682010-11-22 17:37:27 -0800569 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700570 private int mLongPressOnHomeBehavior;
571
572 // What we do when the user double-taps on home
573 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800574
Bryce Lee584a4452014-10-21 15:55:55 -0700575 // Allowed theater mode wake actions
576 private boolean mAllowTheaterModeWakeFromKey;
577 private boolean mAllowTheaterModeWakeFromPowerKey;
578 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800579 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700580 private boolean mAllowTheaterModeWakeFromCameraLens;
581 private boolean mAllowTheaterModeWakeFromLidSwitch;
582 private boolean mAllowTheaterModeWakeFromWakeGesture;
583
Bryce Leed3b28402015-03-09 15:49:13 +0000584 // Whether to support long press from power button in non-interactive mode
585 private boolean mSupportLongPressPowerWhenNonInteractive;
586
Bryce Lee55e846d2014-11-04 12:43:44 -0800587 // Whether to go to sleep entering theater mode from power button
588 private boolean mGoToSleepOnButtonPressTheaterMode;
589
Winson Chung9112ec32011-06-27 13:15:32 -0700590 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700591 // Time to volume and power must be pressed within this interval of each other.
592 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700593 // Increase the chord delay when taking a screenshot from the keyguard
594 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800595 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700596 private boolean mScreenshotChordVolumeDownKeyTriggered;
597 private long mScreenshotChordVolumeDownKeyTime;
598 private boolean mScreenshotChordVolumeDownKeyConsumed;
599 private boolean mScreenshotChordVolumeUpKeyTriggered;
600 private boolean mScreenshotChordPowerKeyTriggered;
601 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700602
Michael Wrightb854e242013-02-05 17:54:02 -0800603 /* The number of steps between min and max brightness */
604 private static final int BRIGHTNESS_STEPS = 10;
605
Christopher Tate5e08af02012-09-21 17:17:22 -0700606 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800607 ShortcutManager mShortcutManager;
608 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700609 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700610 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800611
Craig Mautnerd625ab22013-09-06 13:40:31 -0700612 private int mCurrentUserId;
613
Justin Kohd378ad72013-04-01 12:18:26 -0700614 // Maps global key codes to the components that will handle them.
615 private GlobalKeyManager mGlobalKeyManager;
616
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700617 // Fallback actions by key code.
618 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
619 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800620
Jorim Jaggi76a16232014-08-08 17:00:47 +0200621 private final LogDecelerateInterpolator mLogDecelerateInterpolator
622 = new LogDecelerateInterpolator(100, 0);
623
Jeff Brown70825162012-03-28 17:27:48 -0700624 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
625 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700626 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
627 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700628 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
629 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
630 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700631 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700632 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700633 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700634 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700635 private static final int MSG_POWER_DELAYED_PRESS = 13;
636 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700637 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700638 private static final int MSG_REQUEST_TRANSIENT_BARS = 16;
639
640 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS = 0;
641 private static final int MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION = 1;
Jeff Brown70825162012-03-28 17:27:48 -0700642
643 private class PolicyHandler extends Handler {
644 @Override
645 public void handleMessage(Message msg) {
646 switch (msg.what) {
647 case MSG_ENABLE_POINTER_LOCATION:
648 enablePointerLocation();
649 break;
650 case MSG_DISABLE_POINTER_LOCATION:
651 disablePointerLocation();
652 break;
Jeff Brown40013652012-05-16 21:22:36 -0700653 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
654 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
655 break;
656 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
657 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
658 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700659 case MSG_DISPATCH_SHOW_RECENTS:
660 showRecentApps(false);
661 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700662 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
663 showGlobalActionsInternal();
664 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700665 case MSG_KEYGUARD_DRAWN_COMPLETE:
666 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700667 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700668 break;
669 case MSG_KEYGUARD_DRAWN_TIMEOUT:
670 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700671 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700672 break;
673 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
674 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700675 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700676 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700677 case MSG_HIDE_BOOT_MESSAGE:
678 handleHideBootMessage();
679 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700680 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
681 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
682 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700683 case MSG_POWER_DELAYED_PRESS:
684 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
685 finishPowerKeyPress();
686 break;
687 case MSG_POWER_LONG_PRESS:
688 powerLongPress();
689 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700690 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
691 updateDreamingSleepToken(msg.arg1 != 0);
692 break;
Jun Mukaid2e7e352015-07-22 17:14:02 -0700693 case MSG_REQUEST_TRANSIENT_BARS:
694 WindowState targetBar = (msg.arg1 == MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS) ?
695 mStatusBar : mNavigationBar;
696 if (targetBar != null) {
697 requestTransientBars(targetBar);
698 }
699 break;
Jeff Brown70825162012-03-28 17:27:48 -0700700 }
701 }
702 }
703
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800704 private UEventObserver mHDMIObserver = new UEventObserver() {
705 @Override
706 public void onUEvent(UEventObserver.UEvent event) {
707 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
708 }
709 };
710
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800711 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800712 SettingsObserver(Handler handler) {
713 super(handler);
714 }
David Brownbaf8d092010-03-08 21:52:59 -0800715
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800716 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700717 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800718 ContentResolver resolver = mContext.getContentResolver();
719 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700720 Settings.System.END_BUTTON_BEHAVIOR), false, this,
721 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800722 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700723 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
724 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700725 resolver.registerContentObserver(Settings.Secure.getUriFor(
726 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
727 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800728 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700729 Settings.System.ACCELEROMETER_ROTATION), false, this,
730 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500731 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700732 Settings.System.USER_ROTATION), false, this,
733 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400734 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700735 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
736 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800737 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700738 Settings.System.POINTER_LOCATION), false, this,
739 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800740 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700741 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
742 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500743 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400744 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700745 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500746 resolver.registerContentObserver(Settings.Global.getUriFor(
747 Settings.Global.POLICY_CONTROL), false, this,
748 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800749 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800750 }
751
752 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800753 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700754 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800755 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800756 }
Craig Mautner967212c2013-04-13 21:10:58 -0700757
Jeff Browna20dda42014-05-27 20:57:24 -0700758 class MyWakeGestureListener extends WakeGestureListener {
759 MyWakeGestureListener(Context context, Handler handler) {
760 super(context, handler);
761 }
762
763 @Override
764 public void onWakeUp() {
765 synchronized (mLock) {
766 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700767 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Dianne Hackborn280a64e2015-07-13 14:48:08 -0700768 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture,
769 "android.policy:GESTURE");
Jeff Browna20dda42014-05-27 20:57:24 -0700770 }
771 }
772 }
773 }
774
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800775 class MyOrientationListener extends WindowOrientationListener {
Craig Mautnereee29c42013-01-17 14:44:34 -0800776 MyOrientationListener(Context context, Handler handler) {
777 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800778 }
Craig Mautner967212c2013-04-13 21:10:58 -0700779
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800780 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700781 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700782 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700783 updateRotation(false);
784 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800785 }
786 MyOrientationListener mOrientationListener;
787
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100788 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400789
John Spurlock27735a42013-08-14 17:57:38 -0400790 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400791 View.NAVIGATION_BAR_TRANSIENT,
792 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400793 View.NAVIGATION_BAR_TRANSLUCENT,
794 StatusBarManager.WINDOW_NAVIGATION_BAR,
795 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400796
John Spurlockf1a36642013-10-12 17:50:42 -0400797 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400798
Craig Mautner037aa8d2013-06-07 10:35:44 -0700799 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400800
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700801 IStatusBarService getStatusBarService() {
802 synchronized (mServiceAquireLock) {
803 if (mStatusBarService == null) {
804 mStatusBarService = IStatusBarService.Stub.asInterface(
805 ServiceManager.getService("statusbar"));
806 }
807 return mStatusBarService;
808 }
809 }
810
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700811 /*
812 * We always let the sensor be switched on by default except when
813 * the user has explicitly disabled sensor based rotation or when the
814 * screen is switched off.
815 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700816 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800817 if (mSupportAutoRotation) {
818 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
819 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
820 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
821 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
822 // If the application has explicitly requested to follow the
823 // orientation, then we need to turn the sensor on.
824 return true;
825 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800826 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700827 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800828 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
829 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
830 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400831 // enable accelerometer if we are docked in a dock that enables accelerometer
832 // orientation management,
833 return true;
834 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700835 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800836 // If the setting for using the sensor by default is enabled, then
837 // we will always leave it on. Note that the user could go to
838 // a window that forces an orientation that does not use the
839 // sensor and in theory we could turn it off... however, when next
840 // turning it on we won't have a good value for the current
841 // orientation for a little bit, which can cause orientation
842 // changes to lag, so we'd like to keep it always on. (It will
843 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700844 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800845 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800846 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800847 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700848
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800849 /*
850 * Various use cases for invoking this function
851 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700852 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800853 * if not already enabled
854 * screen turned on and current app does not have sensor orientation, disable listeners if
855 * already enabled
856 * screen turning on and current app has sensor based orientation, enable listeners if needed
857 * screen turning on and current app has nosensor based orientation, do nothing
858 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700859 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800860 if (!mOrientationListener.canDetectOrientation()) {
861 // If sensor is turned off or nonexistent for some reason
862 return;
863 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000864 // Could have been invoked due to screen turning on or off or
865 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700866 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
867 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000868 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
869 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
870 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800871 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000872 // Note: We postpone the rotating of the screen until the keyguard as well as the
873 // window manager have reported a draw complete.
874 if (mScreenOnEarly && mAwake &&
875 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700876 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800877 disable = false;
878 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700879 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800880 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700881 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800882 mOrientationSensorEnabled = true;
883 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700884 }
885 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800886 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700887 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800888 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700889 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800890 mOrientationSensorEnabled = false;
891 }
892 }
893
Jeff Brown13f00f02014-10-31 14:45:50 -0700894 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
895 // Hold a wake lock until the power key is released.
896 if (!mPowerKeyWakeLock.isHeld()) {
897 mPowerKeyWakeLock.acquire();
898 }
899
900 // Cancel multi-press detection timeout.
901 if (mPowerKeyPressCounter != 0) {
902 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
903 }
904
905 // Detect user pressing the power button in panic when an application has
906 // taken over the whole screen.
907 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800908 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700909 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700910 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700911 }
912
913 // Latch power key state to detect screenshot chord.
914 if (interactive && !mScreenshotChordPowerKeyTriggered
915 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
916 mScreenshotChordPowerKeyTriggered = true;
917 mScreenshotChordPowerKeyTime = event.getDownTime();
918 interceptScreenshotChord();
919 }
920
921 // Stop ringing or end call if configured to do so when power is pressed.
922 TelecomManager telecomManager = getTelecommService();
923 boolean hungUp = false;
924 if (telecomManager != null) {
925 if (telecomManager.isRinging()) {
926 // Pressing Power while there's a ringing incoming
927 // call should silence the ringer.
928 telecomManager.silenceRinger();
929 } else if ((mIncallPowerBehavior
930 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
931 && telecomManager.isInCall() && interactive) {
932 // Otherwise, if "Power button ends call" is enabled,
933 // the Power button will hang up any current active call.
934 hungUp = telecomManager.endCall();
935 }
936 }
937
938 // If the power key has still not yet been handled, then detect short
939 // press, long press, or multi press and decide what to do.
940 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
941 || mScreenshotChordVolumeUpKeyTriggered;
942 if (!mPowerKeyHandled) {
943 if (interactive) {
944 // When interactive, we're already awake.
945 // Wait for a long press or for the button to be released to decide what to do.
946 if (hasLongPressOnPowerBehavior()) {
947 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
948 msg.setAsynchronous(true);
949 mHandler.sendMessageDelayed(msg,
950 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
951 }
952 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800953 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800954
Bryce Leed3b28402015-03-09 15:49:13 +0000955 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
956 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
957 msg.setAsynchronous(true);
958 mHandler.sendMessageDelayed(msg,
959 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800960 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000961 } else {
962 final int maxCount = getMaxMultiPressPowerCount();
963
964 if (maxCount <= 1) {
965 mPowerKeyHandled = true;
966 } else {
967 mBeganFromNonInteractive = true;
968 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700969 }
970 }
Jeff Brown4d396052010-10-29 21:50:21 -0700971 }
972 }
973
Jeff Brown13f00f02014-10-31 14:45:50 -0700974 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
975 final boolean handled = canceled || mPowerKeyHandled;
976 mScreenshotChordPowerKeyTriggered = false;
977 cancelPendingScreenshotChordAction();
978 cancelPendingPowerKeyAction();
979
980 if (!handled) {
981 // Figure out how to handle the key now that it has been released.
982 mPowerKeyPressCounter += 1;
983
984 final int maxCount = getMaxMultiPressPowerCount();
985 final long eventTime = event.getDownTime();
986 if (mPowerKeyPressCounter < maxCount) {
987 // This could be a multi-press. Wait a little bit longer to confirm.
988 // Continue holding the wake lock.
989 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
990 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
991 msg.setAsynchronous(true);
992 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
993 return;
994 }
995
996 // No other actions. Handle it immediately.
997 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700998 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700999
1000 // Done. Reset our state.
1001 finishPowerKeyPress();
1002 }
1003
1004 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -08001005 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001006 mPowerKeyPressCounter = 0;
1007 if (mPowerKeyWakeLock.isHeld()) {
1008 mPowerKeyWakeLock.release();
1009 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001010 }
1011
1012 private void cancelPendingPowerKeyAction() {
1013 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001014 mPowerKeyHandled = true;
1015 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001016 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001017 }
1018
1019 private void powerPress(long eventTime, boolean interactive, int count) {
1020 if (mScreenOnEarly && !mScreenOnFully) {
1021 Slog.i(TAG, "Suppressed redundant power key press while "
1022 + "already in the process of turning the screen on.");
1023 return;
Jeff Brownff204712011-10-25 21:27:54 -07001024 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001025
1026 if (count == 2) {
1027 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1028 } else if (count == 3) {
1029 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001030 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001031 switch (mShortPressOnPowerBehavior) {
1032 case SHORT_PRESS_POWER_NOTHING:
1033 break;
1034 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1035 mPowerManager.goToSleep(eventTime,
1036 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1037 break;
1038 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1039 mPowerManager.goToSleep(eventTime,
1040 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1041 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1042 break;
1043 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1044 mPowerManager.goToSleep(eventTime,
1045 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1046 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1047 launchHomeFromHotKey();
1048 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001049 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001050 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001051 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001052 }
1053 }
1054 }
1055
1056 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1057 switch (behavior) {
1058 case MULTI_PRESS_POWER_NOTHING:
1059 break;
1060 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001061 if (!isUserSetupComplete()) {
1062 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1063 break;
1064 }
1065
Jeff Brown13f00f02014-10-31 14:45:50 -07001066 if (isTheaterModeEnabled()) {
1067 Slog.i(TAG, "Toggling theater mode off.");
1068 Settings.Global.putInt(mContext.getContentResolver(),
1069 Settings.Global.THEATER_MODE_ON, 0);
1070 if (!interactive) {
1071 wakeUpFromPowerKey(eventTime);
1072 }
1073 } else {
1074 Slog.i(TAG, "Toggling theater mode on.");
1075 Settings.Global.putInt(mContext.getContentResolver(),
1076 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001077
1078 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001079 mPowerManager.goToSleep(eventTime,
1080 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1081 }
1082 }
1083 break;
1084 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001085 Slog.i(TAG, "Starting brightness boost.");
1086 if (!interactive) {
1087 wakeUpFromPowerKey(eventTime);
1088 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001089 mPowerManager.boostScreenBrightness(eventTime);
1090 break;
1091 }
1092 }
1093
1094 private int getMaxMultiPressPowerCount() {
1095 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1096 return 3;
1097 }
1098 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1099 return 2;
1100 }
1101 return 1;
1102 }
1103
1104 private void powerLongPress() {
1105 final int behavior = getResolvedLongPressOnPowerBehavior();
1106 switch (behavior) {
1107 case LONG_PRESS_POWER_NOTHING:
1108 break;
1109 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1110 mPowerKeyHandled = true;
1111 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1112 performAuditoryFeedbackForAccessibilityIfNeed();
1113 }
1114 showGlobalActionsInternal();
1115 break;
1116 case LONG_PRESS_POWER_SHUT_OFF:
1117 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1118 mPowerKeyHandled = true;
1119 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1120 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1121 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1122 break;
1123 }
1124 }
1125
Nick Vaccarob593a812015-05-15 11:23:05 -07001126 private void sleepPress(long eventTime) {
1127 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1128 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1129 }
1130 }
1131
1132 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001133 switch (mShortPressOnSleepBehavior) {
1134 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001135 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001136 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1137 mPowerManager.goToSleep(eventTime,
1138 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001139 break;
1140 }
1141 }
1142
Jeff Brown13f00f02014-10-31 14:45:50 -07001143 private int getResolvedLongPressOnPowerBehavior() {
1144 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1145 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1146 }
1147 return mLongPressOnPowerBehavior;
1148 }
1149
1150 private boolean hasLongPressOnPowerBehavior() {
1151 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001152 }
1153
1154 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001155 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001156 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1157 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001158 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001159 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1160 && now <= mScreenshotChordPowerKeyTime
1161 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1162 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001163 cancelPendingPowerKeyAction();
1164
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001165 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001166 }
1167 }
1168 }
1169
Winson Chung1cea2f32012-10-08 20:42:01 -07001170 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001171 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001172 // Double the time it takes to take a screenshot from the keyguard
1173 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001174 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001175 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001176 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001177 }
1178
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001179 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001180 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001181 }
1182
Jeff Brown13f00f02014-10-31 14:45:50 -07001183 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001184 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001185 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001186 mEndCallKeyHandled = true;
1187 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1188 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001189 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001190 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001191 }
1192 };
1193
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001194 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001195 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001196 public void run() {
1197 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001198 }
1199 };
1200
Alan Viverettee34560b22014-07-10 14:50:06 -07001201 @Override
1202 public void showGlobalActions() {
1203 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1204 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1205 }
1206
1207 void showGlobalActionsInternal() {
1208 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001209 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001210 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001211 }
Jim Millerab954542014-10-10 18:21:49 -07001212 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001213 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1214 if (keyguardShowing) {
1215 // since it took two seconds of long press to bring this up,
1216 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001217 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001218 }
1219 }
1220
1221 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001222 return Settings.Global.getInt(
1223 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001224 }
1225
Maurice Lam99c6e072014-04-28 18:24:28 -07001226 boolean isUserSetupComplete() {
1227 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1228 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1229 }
1230
Jeff Brown13f00f02014-10-31 14:45:50 -07001231 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001232 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1233 getHdmiControl().turnOnTv();
1234
Jeff Brown13f00f02014-10-31 14:45:50 -07001235 // If there's a dream running then use home to escape the dream
1236 // but don't actually go home.
1237 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1238 mDreamManagerInternal.stopDream(false /*immediate*/);
1239 return;
1240 }
1241
1242 // Go home!
1243 launchHomeFromHotKey();
1244 }
1245
Jinsuk Kime601b712015-07-07 08:01:02 +09001246 /**
1247 * Creates an accessor to HDMI control service that performs the operation of
1248 * turning on TV (optional) and switching input to us. If HDMI control service
1249 * is not available or we're not a HDMI playback device, the operation is no-op.
1250 */
1251 private HdmiControl getHdmiControl() {
1252 if (null == mHdmiControl) {
1253 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1254 Context.HDMI_CONTROL_SERVICE);
1255 HdmiPlaybackClient client = null;
1256 if (manager != null) {
1257 client = manager.getPlaybackClient();
1258 }
1259 mHdmiControl = new HdmiControl(client);
1260 }
1261 return mHdmiControl;
1262 }
1263
1264 private static class HdmiControl {
1265 private final HdmiPlaybackClient mClient;
1266
1267 private HdmiControl(HdmiPlaybackClient client) {
1268 mClient = client;
1269 }
1270
1271 public void turnOnTv() {
1272 if (mClient == null) {
1273 return;
1274 }
1275 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1276 @Override
1277 public void onComplete(int result) {
1278 if (result != HdmiControlManager.RESULT_SUCCESS) {
1279 Log.w(TAG, "One touch play failed: " + result);
1280 }
1281 }
1282 });
1283 }
1284 }
1285
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001286 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001287 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001288 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001289 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001290
Jeff Browncaca8812013-05-09 13:34:33 -07001291 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1292 toggleRecentApps();
1293 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001294 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001295 }
1296 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001297 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001298
Jeff Browncaca8812013-05-09 13:34:33 -07001299 private void handleDoubleTapOnHome() {
1300 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1301 mHomeConsumed = true;
1302 toggleRecentApps();
1303 }
1304 }
1305
1306 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1307 @Override
1308 public void run() {
1309 if (mHomeDoubleTapPending) {
1310 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001311 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001312 }
1313 }
1314 };
1315
Mark Renoufc1256912015-03-11 14:38:23 -04001316 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001317 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001318 }
1319
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001320 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001321 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001322 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001323 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001324 mContext = context;
1325 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001326 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001327 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001328 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001329 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001330 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001331
1332 // Init display burn-in protection
1333 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1334 com.android.internal.R.bool.config_enableBurnInProtection);
1335 // Allow a system property to override this. Used by developer settings.
1336 boolean burnInProtectionDevMode =
1337 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1338 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1339 final int minHorizontal;
1340 final int maxHorizontal;
1341 final int minVertical;
1342 final int maxVertical;
1343 final int maxRadius;
1344 if (burnInProtectionDevMode) {
1345 minHorizontal = -8;
1346 maxHorizontal = 8;
1347 minVertical = -8;
1348 maxVertical = -4;
1349 maxRadius = (isRoundWindow()) ? 6 : -1;
1350 } else {
1351 Resources resources = context.getResources();
1352 minHorizontal = resources.getInteger(
1353 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1354 maxHorizontal = resources.getInteger(
1355 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1356 minVertical = resources.getInteger(
1357 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1358 maxVertical = resources.getInteger(
1359 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1360 maxRadius = resources.getInteger(
1361 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1362 }
1363 mBurnInProtectionHelper = new BurnInProtectionHelper(
1364 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001365 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001366
Jeff Brown70825162012-03-28 17:27:48 -07001367 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001368 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001369 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001370 try {
1371 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1372 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001373 mSettingsObserver = new SettingsObserver(mHandler);
1374 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001375 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001376 mUiMode = context.getResources().getInteger(
1377 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001378 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1379 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1380 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1381 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001382 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1383 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1384 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1385 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1386 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1387 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1388 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1389 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001390
Jeff Brown96307042012-07-27 15:51:34 -07001391 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1392 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001393 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001394 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1395 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001396 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001397 mSupportAutoRotation = mContext.getResources().getBoolean(
1398 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001399 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001400 com.android.internal.R.integer.config_lidOpenRotation);
1401 mCarDockRotation = readRotation(
1402 com.android.internal.R.integer.config_carDockRotation);
1403 mDeskDockRotation = readRotation(
1404 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001405 mUndockedHdmiRotation = readRotation(
1406 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001407 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1408 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1409 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1410 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001411 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1412 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1413 mLidNavigationAccessibility = mContext.getResources().getInteger(
1414 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001415 mLidControlsSleep = mContext.getResources().getBoolean(
1416 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001417 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1418 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001419
1420 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1421 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1422 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1423 || mContext.getResources().getBoolean(
1424 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1425 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1426 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001427 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1428 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001429 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1430 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1431 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1432 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1433 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1434 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1435
Bryce Lee55e846d2014-11-04 12:43:44 -08001436 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1437 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1438
Bryce Leed3b28402015-03-09 15:49:13 +00001439 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1440 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1441
Jeff Brown13f00f02014-10-31 14:45:50 -07001442 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1443 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1444 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1445 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1446 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1447 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1448 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1449 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001450 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1451 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001452
John Spurlock61560172015-02-06 19:46:04 -05001453 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001454
Jeff Brownf71343d2013-05-31 17:59:11 -07001455 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001456
Svetoslav8e3feb12014-02-24 13:46:47 -08001457 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1458 Context.ACCESSIBILITY_SERVICE);
1459
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001460 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001461 IntentFilter filter = new IntentFilter();
1462 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1463 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1464 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1465 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001466 filter.addAction(Intent.ACTION_DOCK_EVENT);
1467 Intent intent = context.registerReceiver(mDockReceiver, filter);
1468 if (intent != null) {
1469 // Retrieve current sticky dock event broadcast.
1470 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1471 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1472 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001473
Jeff Brown6aaf2952012-10-05 16:01:08 -07001474 // register for dream-related broadcasts
1475 filter = new IntentFilter();
1476 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1477 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1478 context.registerReceiver(mDreamReceiver, filter);
1479
Christopher Tate5e08af02012-09-21 17:17:22 -07001480 // register for multiuser-relevant broadcasts
1481 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1482 context.registerReceiver(mMultiuserReceiver, filter);
1483
John Spurlock57306e62013-04-22 09:48:49 -04001484 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001485 mSystemGestures = new SystemGesturesPointerEventListener(context,
1486 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001487 @Override
1488 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001489 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001490 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001491 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001492 }
1493 @Override
1494 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001495 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001496 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001497 }
1498 }
1499 @Override
1500 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001501 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001502 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001503 }
1504 }
1505 @Override
1506 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001507 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001508 }
Adrian Roos3595be42015-03-05 16:31:15 +01001509 @Override
1510 public void onDown() {
1511 mOrientationListener.onTouchStart();
1512 }
1513 @Override
1514 public void onUpOrCancel() {
1515 mOrientationListener.onTouchEnd();
1516 }
Jun Mukaid2e7e352015-07-22 17:14:02 -07001517 @Override
1518 public void onMouseHoverAtTop() {
1519 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1520 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1521 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_STATUS;
1522 mHandler.sendMessageDelayed(msg, 500);
1523 }
1524 @Override
1525 public void onMouseHoverAtBottom() {
1526 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1527 Message msg = mHandler.obtainMessage(MSG_REQUEST_TRANSIENT_BARS);
1528 msg.arg1 = MSG_REQUEST_TRANSIENT_BARS_ARG_NAVIGATION;
1529 mHandler.sendMessageDelayed(msg, 500);
1530 }
1531 @Override
1532 public void onMouseLeaveFromEdge() {
1533 mHandler.removeMessages(MSG_REQUEST_TRANSIENT_BARS);
1534 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001535 });
John Spurlockf1a36642013-10-12 17:50:42 -04001536 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001537 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001538
Jeff Brownc2346132012-04-13 01:55:38 -07001539 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001540 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1541 com.android.internal.R.array.config_longPressVibePattern);
1542 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1543 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001544 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1545 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001546 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1547 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001548 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1549 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001550 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1551 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1552 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1553 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001554 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1555 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001556
Christopher Tatee90585f2012-03-05 18:56:25 -08001557 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1558 com.android.internal.R.bool.config_enableScreenshotChord);
1559
Justin Kohd378ad72013-04-01 12:18:26 -07001560 mGlobalKeyManager = new GlobalKeyManager(mContext);
1561
Joe Onoratoea495d42011-04-06 11:41:11 -07001562 // Controls rotation and the like.
1563 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001564
1565 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001566 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001567 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1568 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001569 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001570
1571 mWindowManagerInternal.registerAppTransitionListener(
1572 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001573 }
1574
Jeff Brownf71343d2013-05-31 17:59:11 -07001575 /**
1576 * Read values from config.xml that may be overridden depending on
1577 * the configuration of the device.
1578 * eg. Disable long press on home goes to recents on sw600dp.
1579 */
1580 private void readConfigurationDependentBehaviors() {
1581 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1582 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1583 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1584 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1585 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1586 }
1587
1588 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1589 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1590 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1591 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1592 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1593 }
1594 }
1595
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001596 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001597 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001598 // This method might be called before the policy has been fully initialized
1599 // or for other displays we don't care about.
1600 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1601 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001602 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001603 mDisplay = display;
1604
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001605 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001606 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001607 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001608 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001609 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001610 mLandscapeRotation = Surface.ROTATION_0;
1611 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001612 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001613 mPortraitRotation = Surface.ROTATION_90;
1614 mUpsideDownRotation = Surface.ROTATION_270;
1615 } else {
1616 mPortraitRotation = Surface.ROTATION_270;
1617 mUpsideDownRotation = Surface.ROTATION_90;
1618 }
1619 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001620 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001621 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001622 mPortraitRotation = Surface.ROTATION_0;
1623 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001624 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001625 mLandscapeRotation = Surface.ROTATION_270;
1626 mSeascapeRotation = Surface.ROTATION_90;
1627 } else {
1628 mLandscapeRotation = Surface.ROTATION_90;
1629 mSeascapeRotation = Surface.ROTATION_270;
1630 }
1631 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001632
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001633 mStatusBarHeight =
1634 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001635
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001636 // Height of the navigation bar when presented horizontally at bottom
1637 mNavigationBarHeightForRotation[mPortraitRotation] =
1638 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001639 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001640 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001641 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1642 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001643
1644 // Width of the navigation bar when presented vertically along one side
1645 mNavigationBarWidthForRotation[mPortraitRotation] =
1646 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1647 mNavigationBarWidthForRotation[mLandscapeRotation] =
1648 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001649 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001650
1651 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001652 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001653 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001654
Devin Kimd7b12b42014-05-05 14:34:58 -07001655 // Allow the navigation bar to move on non-square small devices (phones).
1656 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001657
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001658 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001659 // Allow a system property to override this. Used by the emulator.
1660 // See also hasNavigationBar().
1661 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1662 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001663 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001664 } else if ("0".equals(navBarOverride)) {
1665 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001666 }
1667
Jeff Brown27f1d672012-10-17 18:32:34 -07001668 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1669 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001670 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001671 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001672 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001673 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001674 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001675 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001676
Chong Zhangae6119ff2014-11-11 18:54:39 -08001677 // For demo purposes, allow the rotation of the remote display to be controlled.
1678 // By default, remote display locks rotation to landscape.
1679 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1680 mDemoRotation = mPortraitRotation;
1681 } else {
1682 mDemoRotation = mLandscapeRotation;
1683 }
1684 mDemoRotationLock = SystemProperties.getBoolean(
1685 "persist.demo.rotationlock", false);
1686
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001687 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1688 // http://developer.android.com/guide/practices/screens_support.html#range
1689 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1690 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1691 // For debug purposes the next line turns this feature off with:
1692 // $ adb shell setprop config.override_forced_orient true
1693 // $ adb shell wm size reset
1694 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1695 }
1696
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001697 /**
1698 * @return whether the navigation bar can be hidden, e.g. the device has a
1699 * navigation bar and touch exploration is not enabled
1700 */
1701 private boolean canHideNavigationBar() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04001702 return mHasNavigationBar;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001703 }
1704
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001705 @Override
1706 public boolean isDefaultOrientationForced() {
1707 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001708 }
1709
Dianne Hackbornc652de82013-02-15 16:32:56 -08001710 @Override
1711 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1712 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1713 mOverscanLeft = left;
1714 mOverscanTop = top;
1715 mOverscanRight = right;
1716 mOverscanBottom = bottom;
1717 }
1718 }
1719
Dianne Hackbornc777e072010-02-12 13:07:59 -08001720 public void updateSettings() {
1721 ContentResolver resolver = mContext.getContentResolver();
1722 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001723 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001724 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001725 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001726 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1727 UserHandle.USER_CURRENT);
1728 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001729 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001730 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1731 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001732
Jeff Browna20dda42014-05-27 20:57:24 -07001733 // Configure wake gesture.
1734 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1735 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1736 UserHandle.USER_CURRENT) != 0;
1737 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1738 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1739 updateWakeGestureListenerLp();
1740 }
1741
Jeff Brown207673cd2012-06-05 17:47:11 -07001742 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001743 int userRotation = Settings.System.getIntForUser(resolver,
1744 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1745 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001746 if (mUserRotation != userRotation) {
1747 mUserRotation = userRotation;
1748 updateRotation = true;
1749 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001750 int userRotationMode = Settings.System.getIntForUser(resolver,
1751 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001752 WindowManagerPolicy.USER_ROTATION_FREE :
1753 WindowManagerPolicy.USER_ROTATION_LOCKED;
1754 if (mUserRotationMode != userRotationMode) {
1755 mUserRotationMode = userRotationMode;
1756 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001757 updateOrientationListenerLp();
1758 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001759
Dianne Hackbornc777e072010-02-12 13:07:59 -08001760 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001761 int pointerLocation = Settings.System.getIntForUser(resolver,
1762 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001763 if (mPointerLocationMode != pointerLocation) {
1764 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001765 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1766 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001767 }
1768 }
1769 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001770 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1771 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1772 String imId = Settings.Secure.getStringForUser(resolver,
1773 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001774 boolean hasSoftInput = imId != null && imId.length() > 0;
1775 if (mHasSoftInput != hasSoftInput) {
1776 mHasSoftInput = hasSoftInput;
1777 updateRotation = true;
1778 }
John Spurlockf1a36642013-10-12 17:50:42 -04001779 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001780 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001781 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001782 }
1783 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001784 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001785 }
1786 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001787 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001788 }
Jeff Brown70825162012-03-28 17:27:48 -07001789 }
1790
Jeff Browna20dda42014-05-27 20:57:24 -07001791 private void updateWakeGestureListenerLp() {
1792 if (shouldEnableWakeGestureLp()) {
1793 mWakeGestureListener.requestWakeUpTrigger();
1794 } else {
1795 mWakeGestureListener.cancelWakeUpTrigger();
1796 }
1797 }
1798
1799 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001800 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001801 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1802 && mWakeGestureListener.isSupported();
1803 }
1804
Jeff Brown70825162012-03-28 17:27:48 -07001805 private void enablePointerLocation() {
1806 if (mPointerLocationView == null) {
1807 mPointerLocationView = new PointerLocationView(mContext);
1808 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001809 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1810 WindowManager.LayoutParams.MATCH_PARENT,
1811 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001812 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001813 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1814 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1815 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1816 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001817 if (ActivityManager.isHighEndGfx()) {
1818 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1819 lp.privateFlags |=
1820 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1821 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001822 lp.format = PixelFormat.TRANSLUCENT;
1823 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001824 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001825 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001826 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001827 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001828 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001829 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001830 }
Jeff Brown70825162012-03-28 17:27:48 -07001831
1832 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001833 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001834 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1835 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001836 wm.removeView(mPointerLocationView);
1837 mPointerLocationView = null;
1838 }
1839 }
1840
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001841 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001842 try {
1843 int rotation = mContext.getResources().getInteger(resID);
1844 switch (rotation) {
1845 case 0:
1846 return Surface.ROTATION_0;
1847 case 90:
1848 return Surface.ROTATION_90;
1849 case 180:
1850 return Surface.ROTATION_180;
1851 case 270:
1852 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001853 }
1854 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001855 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001856 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001857 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001858 }
1859
1860 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001861 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001862 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001863 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001864
1865 outAppOp[0] = AppOpsManager.OP_NONE;
1866
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001867 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1868 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1869 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1870 return WindowManagerGlobal.ADD_INVALID_TYPE;
1871 }
1872
1873 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1874 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001875 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001876 }
1877 String permission = null;
1878 switch (type) {
1879 case TYPE_TOAST:
1880 // XXX right now the app process has complete control over
1881 // this... should introduce a token to let the system
1882 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001883 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001884 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001885 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001886 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001887 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001888 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001889 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001890 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001891 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001892 break;
1893 case TYPE_PHONE:
1894 case TYPE_PRIORITY_PHONE:
1895 case TYPE_SYSTEM_ALERT:
1896 case TYPE_SYSTEM_ERROR:
1897 case TYPE_SYSTEM_OVERLAY:
1898 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001899 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001900 break;
1901 default:
1902 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1903 }
1904 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001905 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1906 final int callingUid = Binder.getCallingUid();
Billy Lau060275f2015-07-15 22:29:19 +01001907 // system processes will be automatically allowed privilege to draw
Billy Laucbe540f2015-06-25 01:51:44 +01001908 if (callingUid == Process.SYSTEM_UID) {
1909 return WindowManagerGlobal.ADD_OKAY;
1910 }
1911
Billy Lau060275f2015-07-15 22:29:19 +01001912 // check if user has enabled this operation. SecurityException will be thrown if
1913 // this app has not been allowed by the user
Billy Laucbe540f2015-06-25 01:51:44 +01001914 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1915 attrs.packageName);
Billy Lau060275f2015-07-15 22:29:19 +01001916 switch (mode) {
1917 case AppOpsManager.MODE_ALLOWED:
1918 case AppOpsManager.MODE_IGNORED:
1919 // although we return ADD_OKAY for MODE_IGNORED, the added window will
1920 // actually be hidden in WindowManagerService
1921 return WindowManagerGlobal.ADD_OKAY;
1922 case AppOpsManager.MODE_ERRORED:
Billy Laucbe540f2015-06-25 01:51:44 +01001923 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
Billy Lau060275f2015-07-15 22:29:19 +01001924 default:
1925 // in the default mode, we will make a decision here based on
1926 // checkCallingPermission()
1927 if (mContext.checkCallingPermission(permission) !=
1928 PackageManager.PERMISSION_GRANTED) {
1929 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1930 } else {
1931 return WindowManagerGlobal.ADD_OKAY;
1932 }
Billy Laucbe540f2015-06-25 01:51:44 +01001933 }
Billy Laucbe540f2015-06-25 01:51:44 +01001934 }
1935
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001936 if (mContext.checkCallingOrSelfPermission(permission)
1937 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001938 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001939 }
1940 }
Jeff Brown98365d72012-08-19 20:30:52 -07001941 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001942 }
Craig Mautner88400d32012-09-30 12:35:45 -07001943
1944 @Override
1945 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1946
1947 // If this switch statement is modified, modify the comment in the declarations of
1948 // the type in {@link WindowManager.LayoutParams} as well.
1949 switch (attrs.type) {
1950 default:
1951 // These are the windows that by default are shown only to the user that created
1952 // them. If this needs to be overridden, set
1953 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1954 // {@link WindowManager.LayoutParams}. Note that permission
1955 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1956 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1957 return true;
1958 }
1959 break;
1960
1961 // These are the windows that by default are shown to all users. However, to
1962 // protect against spoofing, check permissions below.
1963 case TYPE_APPLICATION_STARTING:
1964 case TYPE_BOOT_PROGRESS:
1965 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001966 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001967 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001968 case TYPE_KEYGUARD_DIALOG:
1969 case TYPE_MAGNIFICATION_OVERLAY:
1970 case TYPE_NAVIGATION_BAR:
1971 case TYPE_NAVIGATION_BAR_PANEL:
1972 case TYPE_PHONE:
1973 case TYPE_POINTER:
1974 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001975 case TYPE_SEARCH_BAR:
1976 case TYPE_STATUS_BAR:
1977 case TYPE_STATUS_BAR_PANEL:
1978 case TYPE_STATUS_BAR_SUB_PANEL:
1979 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001980 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001981 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001982 break;
1983 }
1984
1985 // Check if third party app has set window to system window type.
1986 return mContext.checkCallingOrSelfPermission(
1987 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1988 != PackageManager.PERMISSION_GRANTED;
1989 }
1990
Craig Mautner967212c2013-04-13 21:10:58 -07001991 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001992 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1993 switch (attrs.type) {
1994 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001995 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001996 // These types of windows can't receive input events.
1997 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1998 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001999 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002000 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002001 case TYPE_STATUS_BAR:
2002
2003 // If the Keyguard is in a hidden state (occluded by another window), we force to
2004 // remove the wallpaper and keyguard flag so that any change in-flight after setting
2005 // the keyguard as occluded wouldn't set these flags again.
2006 // See {@link #processKeyguardSetHiddenResultLw}.
2007 if (mKeyguardHidden) {
2008 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
2009 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2010 }
2011 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002012 }
Adrian Roos38502112014-04-09 21:04:11 +02002013
2014 if (attrs.type != TYPE_STATUS_BAR) {
2015 // The status bar is the only window allowed to exhibit keyguard behavior.
2016 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
2017 }
Adrian Roosea562512014-05-05 13:33:03 +02002018
2019 if (ActivityManager.isHighEndGfx()
2020 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02002021 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02002022 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
2023 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002024 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002025
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002026 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07002027 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002028 }
RoboErik8a2cfc32014-05-16 11:19:38 -07002029
Michael Wright3818c922014-09-02 13:59:07 -07002030 private void readCameraLensCoverState() {
2031 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
2032 }
2033
Jeff Browndaa37532012-05-01 15:54:03 -07002034 private boolean isHidden(int accessibilityMode) {
2035 switch (accessibilityMode) {
2036 case 1:
2037 return mLidState == LID_CLOSED;
2038 case 2:
2039 return mLidState == LID_OPEN;
2040 default:
2041 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002042 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002043 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002044
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002045 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002046 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002047 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2048 int navigationPresence) {
2049 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2050
Jeff Brownf71343d2013-05-31 17:59:11 -07002051 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002052 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002053 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002054
Jeff Browndaa37532012-05-01 15:54:03 -07002055 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2056 || (keyboardPresence == PRESENCE_INTERNAL
2057 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002058 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002059 if (!mHasSoftInput) {
2060 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2061 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002062 }
2063
Jeff Browndaa37532012-05-01 15:54:03 -07002064 if (config.navigation == Configuration.NAVIGATION_NONAV
2065 || (navigationPresence == PRESENCE_INTERNAL
2066 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002067 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002068 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002069 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002070
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002071 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002072 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002073 public int windowTypeToLayerLw(int type) {
2074 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002075 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002076 }
2077 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002078 case TYPE_PRIVATE_PRESENTATION:
2079 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002080 case TYPE_WALLPAPER:
2081 // wallpaper is at the bottom, though the window manager may move it.
2082 return 2;
2083 case TYPE_PHONE:
2084 return 3;
2085 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002086 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002087 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002088 case TYPE_VOICE_INTERACTION:
2089 // voice interaction layer is almost immediately above apps.
2090 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002091 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002092 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002093 case TYPE_SYSTEM_DIALOG:
2094 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002095 case TYPE_TOAST:
2096 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002097 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002098 case TYPE_PRIORITY_PHONE:
2099 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002100 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002101 case TYPE_DREAM:
2102 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002103 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002104 case TYPE_SYSTEM_ALERT:
2105 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002106 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002107 case TYPE_INPUT_METHOD:
2108 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002109 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002110 case TYPE_INPUT_METHOD_DIALOG:
2111 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002112 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002113 case TYPE_KEYGUARD_SCRIM:
2114 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002115 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07002116 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002117 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07002118 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002119 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07002120 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002121 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002122 case TYPE_KEYGUARD_DIALOG:
2123 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002124 case TYPE_VOLUME_OVERLAY:
2125 // the on-screen volume indicator and controller shown when the user
2126 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002127 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002128 case TYPE_SYSTEM_OVERLAY:
2129 // the on-screen volume indicator and controller shown when the user
2130 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002131 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002132 case TYPE_NAVIGATION_BAR:
2133 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002134 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002135 case TYPE_NAVIGATION_BAR_PANEL:
2136 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002137 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002138 case TYPE_SYSTEM_ERROR:
2139 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002140 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002141 case TYPE_MAGNIFICATION_OVERLAY:
2142 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002143 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002144 case TYPE_DISPLAY_OVERLAY:
2145 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002146 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002147 case TYPE_DRAG:
2148 // the drag layer: input for drag-and-drop is associated with this window,
2149 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002150 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002151 case TYPE_ACCESSIBILITY_OVERLAY:
2152 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002153 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002154 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002155 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002156 case TYPE_BOOT_PROGRESS:
2157 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002158 case TYPE_POINTER:
2159 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002160 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002161 }
2162 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002163 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002164 }
2165
2166 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002167 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002168 public int subWindowTypeToLayerLw(int type) {
2169 switch (type) {
2170 case TYPE_APPLICATION_PANEL:
2171 case TYPE_APPLICATION_ATTACHED_DIALOG:
2172 return APPLICATION_PANEL_SUBLAYER;
2173 case TYPE_APPLICATION_MEDIA:
2174 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002175 case TYPE_APPLICATION_MEDIA_OVERLAY:
2176 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002177 case TYPE_APPLICATION_SUB_PANEL:
2178 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002179 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2180 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002181 }
2182 Log.e(TAG, "Unknown sub-window type: " + type);
2183 return 0;
2184 }
2185
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002186 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002187 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002188 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002189 }
2190
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002191 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002192 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002193 if (mHasNavigationBar) {
2194 // For a basic navigation bar, when we are in landscape mode we place
2195 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002196 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2197 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002198 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002199 }
2200 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002201 }
2202
Jose Lima9546b202014-07-02 17:21:51 -07002203 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002204 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002205 if (mHasNavigationBar) {
2206 // For a basic navigation bar, when we are in portrait mode we place
2207 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002208 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2209 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002210 }
2211 }
2212 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002213 }
2214
Jose Lima9546b202014-07-02 17:21:51 -07002215 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002216 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2217 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002218 }
2219
Jose Lima9546b202014-07-02 17:21:51 -07002220 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002221 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002222 // There is a separate status bar at the top of the display. We don't count that as part
2223 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002224 // we do want to exclude it since applications can't generally use that part
2225 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002226 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002227 }
2228
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002229 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002230 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2231 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002232 (isKeyguardHostWindow(attrs) &&
2233 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002234 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002235 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002236
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002237 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002238 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2239 return attrs.type == TYPE_STATUS_BAR;
2240 }
2241
2242 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002243 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002244 switch (attrs.type) {
2245 case TYPE_STATUS_BAR:
2246 case TYPE_NAVIGATION_BAR:
2247 case TYPE_WALLPAPER:
2248 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002249 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002250 return false;
2251 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002252 // Hide only windows below the keyguard host window.
2253 return windowTypeToLayerLw(win.getBaseType())
2254 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002255 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002256 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002257
Craig Mautner7d7808f2014-09-11 18:02:38 -07002258 @Override
2259 public WindowState getWinShowWhenLockedLw() {
2260 return mWinShowWhenLocked;
2261 }
2262
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002263 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002264 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002265 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2266 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002267 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002268 if (!SHOW_STARTING_ANIMATIONS) {
2269 return null;
2270 }
2271 if (packageName == null) {
2272 return null;
2273 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002274
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002275 WindowManager wm = null;
2276 View view = null;
2277
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002278 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002279 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002280 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2281 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2282 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002283 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002284 try {
2285 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002286 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002287 } catch (PackageManager.NameNotFoundException e) {
2288 // Ignore
2289 }
2290 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002291
Jorim Jaggia16cc152015-06-01 16:55:05 -07002292 PhoneWindow win = new PhoneWindow(context);
2293 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002294 final TypedArray ta = win.getWindowStyle();
2295 if (ta.getBoolean(
2296 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2297 || ta.getBoolean(
2298 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002299 return null;
2300 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002301
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002302 Resources r = context.getResources();
2303 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002304
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002305 win.setType(
2306 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002307
2308 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2309 // Assumes it's safe to show starting windows of launched apps while
2310 // the keyguard is being hidden. This is okay because starting windows never show
2311 // secret information.
2312 if (mKeyguardHidden) {
2313 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2314 }
2315 }
2316
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002317 // Force the window flags: this is a fake window, so it is not really
2318 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2319 // flag because we do know that the next window will take input
2320 // focus, so we want to get the IME window up on top of us right away.
2321 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002322 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002323 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2324 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2325 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002326 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002327 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2328 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2329 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002330
Adam Powell04fe6eb2013-05-31 14:39:48 -07002331 win.setDefaultIcon(icon);
2332 win.setDefaultLogo(logo);
2333
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002334 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002335 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002336
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002337 final WindowManager.LayoutParams params = win.getAttributes();
2338 params.token = appToken;
2339 params.packageName = packageName;
2340 params.windowAnimations = win.getWindowStyle().getResourceId(
2341 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002342 params.privateFlags |=
2343 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002344 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002345
2346 if (!compatInfo.supportsScreen()) {
2347 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2348 }
2349
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002350 params.setTitle("Starting " + packageName);
2351
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002352 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2353 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002354
2355 if (win.isFloating()) {
2356 // Whoops, there is no way to display an animation/preview
2357 // of such a thing! After all that work... let's skip it.
2358 // (Note that we must do this here because it is in
2359 // getDecorView() where the theme is evaluated... maybe
2360 // we should peek the floating attribute from the theme
2361 // earlier.)
2362 return null;
2363 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002364
Craig Mautner6fbda632012-07-03 09:26:39 -07002365 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002366 TAG, "Adding starting window for " + packageName
2367 + " / " + appToken + ": "
2368 + (view.getParent() != null ? view : null));
2369
2370 wm.addView(view, params);
2371
2372 // Only return the view if it was successfully added to the
2373 // window manager... which we can tell by it having a parent.
2374 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002375 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002376 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002377 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2378 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002379 } catch (RuntimeException e) {
2380 // don't crash if something else bad happens, for example a
2381 // failure loading resources because we are loading from an app
2382 // on external storage that has been unmounted.
2383 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002384 } finally {
2385 if (view != null && view.getParent() == null) {
2386 Log.w(TAG, "view not successfully added to wm, removing view");
2387 wm.removeViewImmediate(view);
2388 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002389 }
2390
2391 return null;
2392 }
2393
2394 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002395 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002396 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002397 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2398 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002399
2400 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002401 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002402 wm.removeView(window);
2403 }
2404 }
2405
2406 /**
2407 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002408 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002409 * Currently enforces that three window types are singletons:
2410 * <ul>
2411 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002412 * <li>KEYGUARD_TYPE</li>
2413 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002414 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002415 * @param win The window to be added
2416 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002417 *
Jeff Brown98365d72012-08-19 20:30:52 -07002418 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2419 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002420 */
Jose Lima9546b202014-07-02 17:21:51 -07002421 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002422 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2423 switch (attrs.type) {
2424 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002425 mContext.enforceCallingOrSelfPermission(
2426 android.Manifest.permission.STATUS_BAR_SERVICE,
2427 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002428 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002429 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002430 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002431 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002432 }
2433 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002434 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002435 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002436 case TYPE_NAVIGATION_BAR:
2437 mContext.enforceCallingOrSelfPermission(
2438 android.Manifest.permission.STATUS_BAR_SERVICE,
2439 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002440 if (mNavigationBar != null) {
2441 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002442 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002443 }
2444 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002445 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002446 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002447 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002448 break;
Jim Millere898ac52012-04-06 17:10:57 -07002449 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002450 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002451 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002452 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002453 mContext.enforceCallingOrSelfPermission(
2454 android.Manifest.permission.STATUS_BAR_SERVICE,
2455 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002456 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002457 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002458 if (mKeyguardScrim != null) {
2459 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2460 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002461 mKeyguardScrim = win;
2462 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002463 }
Jeff Brown98365d72012-08-19 20:30:52 -07002464 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002465 }
2466
2467 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002468 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002469 public void removeWindowLw(WindowState win) {
2470 if (mStatusBar == win) {
2471 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002472 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002473 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002474 } else if (mKeyguardScrim == win) {
2475 Log.v(TAG, "Removing keyguard scrim");
2476 mKeyguardScrim = null;
2477 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002478 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002479 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002480 }
2481 }
2482
2483 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002484
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002485 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002486 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002487 public int selectAnimationLw(WindowState win, int transit) {
2488 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2489 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002490 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002491 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002492 if (transit == TRANSIT_EXIT
2493 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002494 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002495 } else if (transit == TRANSIT_ENTER
2496 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002497 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002498 }
2499 } else if (win == mNavigationBar) {
Jorim Jaggi0d210f62015-07-10 14:24:44 -07002500 if (win.getAttrs().windowAnimations != 0) {
2501 return 0;
2502 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002503 // This can be on either the bottom or the right.
2504 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002505 if (transit == TRANSIT_EXIT
2506 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002507 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002508 } else if (transit == TRANSIT_ENTER
2509 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002510 return R.anim.dock_bottom_enter;
2511 }
2512 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002513 if (transit == TRANSIT_EXIT
2514 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002515 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002516 } else if (transit == TRANSIT_ENTER
2517 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002518 return R.anim.dock_right_enter;
2519 }
2520 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002521 }
2522
2523 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002524 if (win.hasAppShownWindows()) {
2525 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2526 return com.android.internal.R.anim.app_starting_exit;
2527 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002528 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002529 && transit == TRANSIT_ENTER) {
2530 // Special case: we are animating in a dream, while the keyguard
2531 // is shown. We don't want an animation on the dream, because
2532 // we need it shown immediately with the keyguard animating away
2533 // to reveal it.
2534 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002535 }
2536
2537 return 0;
2538 }
2539
Craig Mautner3c174372013-02-21 17:54:37 -08002540 @Override
2541 public void selectRotationAnimationLw(int anim[]) {
2542 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2543 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2544 + (mTopFullscreenOpaqueWindowState == null ?
2545 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2546 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2547 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2548 case ROTATION_ANIMATION_CROSSFADE:
2549 anim[0] = R.anim.rotation_animation_xfade_exit;
2550 anim[1] = R.anim.rotation_animation_enter;
2551 break;
2552 case ROTATION_ANIMATION_JUMPCUT:
2553 anim[0] = R.anim.rotation_animation_jump_exit;
2554 anim[1] = R.anim.rotation_animation_enter;
2555 break;
2556 case ROTATION_ANIMATION_ROTATE:
2557 default:
2558 anim[0] = anim[1] = 0;
2559 break;
2560 }
2561 } else {
2562 anim[0] = anim[1] = 0;
2563 }
2564 }
2565
2566 @Override
2567 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2568 boolean forceDefault) {
2569 switch (exitAnimId) {
2570 case R.anim.rotation_animation_xfade_exit:
2571 case R.anim.rotation_animation_jump_exit:
2572 // These are the only cases that matter.
2573 if (forceDefault) {
2574 return false;
2575 }
2576 int anim[] = new int[2];
2577 selectRotationAnimationLw(anim);
2578 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2579 default:
2580 return true;
2581 }
2582 }
2583
2584 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002585 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2586 boolean goingToNotificationShade) {
2587 if (goingToNotificationShade) {
2588 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002589 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002590
2591 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2592 R.anim.lock_screen_behind_enter_wallpaper :
2593 R.anim.lock_screen_behind_enter);
2594
2595 // TODO: Use XML interpolators when we have log interpolators available in XML.
2596 final List<Animation> animations = set.getAnimations();
2597 for (int i = animations.size() - 1; i >= 0; --i) {
2598 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2599 }
2600
2601 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002602 }
2603
2604
2605 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002606 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2607 if (goingToNotificationShade) {
2608 return null;
2609 } else {
2610 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2611 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002612 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002613
2614 private static void awakenDreams() {
2615 IDreamManager dreamManager = getDreamManager();
2616 if (dreamManager != null) {
2617 try {
2618 dreamManager.awaken();
2619 } catch (RemoteException e) {
2620 // fine, stay asleep then
2621 }
2622 }
2623 }
2624
2625 static IDreamManager getDreamManager() {
2626 return IDreamManager.Stub.asInterface(
2627 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2628 }
2629
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002630 TelecomManager getTelecommService() {
2631 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002632 }
2633
Jeff Brown4d396052010-10-29 21:50:21 -07002634 static IAudioService getAudioService() {
2635 IAudioService audioService = IAudioService.Stub.asInterface(
2636 ServiceManager.checkService(Context.AUDIO_SERVICE));
2637 if (audioService == null) {
2638 Log.w(TAG, "Unable to find IAudioService interface.");
2639 }
2640 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002641 }
2642
2643 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002644 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002645 }
2646
2647 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2648 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2649 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2650 };
2651
2652 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002653 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002654 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002655 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002656 final int keyCode = event.getKeyCode();
2657 final int repeatCount = event.getRepeatCount();
2658 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002659 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002660 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2661 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002662
Jeff Brown40013652012-05-16 21:22:36 -07002663 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002664 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002665 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2666 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002667 }
2668
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002669 // If we think we might have a volume down & power key chord on the way
2670 // but we're not sure, then tell the dispatcher to wait a little while and
2671 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002672 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002673 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002674 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002675 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2676 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002677 if (now < timeoutTime) {
2678 return timeoutTime - now;
2679 }
2680 }
2681 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002682 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002683 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002684 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002685 }
2686 return -1;
2687 }
2688 }
2689
Michael Wright6a62e552014-06-03 19:19:48 -07002690 // Cancel any pending meta actions if we see any other keys being pressed between the down
2691 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002692 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002693 mPendingMetaAction = false;
2694 }
2695
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002696 // First we always handle the home key here, so applications
2697 // can never break it, although if keyguard is on, we do let
2698 // it handle it, because that gives us the correct 5 second
2699 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002700 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002701
Jeff Brown49ed71d2010-12-06 17:13:33 -08002702 // If we have released the home key, and didn't do anything else
2703 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002704 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002705 cancelPreloadRecentApps();
2706
Jeff Brown49ed71d2010-12-06 17:13:33 -08002707 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002708 if (mHomeConsumed) {
2709 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002710 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002711 }
Jeff Browncaca8812013-05-09 13:34:33 -07002712
2713 if (canceled) {
2714 Log.i(TAG, "Ignoring HOME; event canceled.");
2715 return -1;
2716 }
2717
Yorke Lee4f803242014-12-15 23:22:06 +00002718 // If an incoming call is ringing, HOME is totally disabled.
2719 // (The user is already on the InCallUI at this point,
2720 // and his ONLY options are to answer or reject the call.)
2721 TelecomManager telecomManager = getTelecommService();
2722 if (telecomManager != null && telecomManager.isRinging()) {
2723 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2724 return -1;
2725 }
2726
Jeff Browncaca8812013-05-09 13:34:33 -07002727 // Delay handling home if a double-tap is possible.
2728 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2729 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2730 mHomeDoubleTapPending = true;
2731 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2732 ViewConfiguration.getDoubleTapTimeout());
2733 return -1;
2734 }
2735
Jeff Brown13f00f02014-10-31 14:45:50 -07002736 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002737 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002738 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002739
2740 // If a system window has focus, then it doesn't make sense
2741 // right now to interact with applications.
2742 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2743 if (attrs != null) {
2744 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002745 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2746 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2747 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002748 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002749 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002750 }
2751 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2752 for (int i=0; i<typeCount; i++) {
2753 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2754 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002755 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002756 }
2757 }
2758 }
Jeff Browncaca8812013-05-09 13:34:33 -07002759
2760 // Remember that home is pressed and handle special actions.
2761 if (repeatCount == 0) {
2762 mHomePressed = true;
2763 if (mHomeDoubleTapPending) {
2764 mHomeDoubleTapPending = false;
2765 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2766 handleDoubleTapOnHome();
2767 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2768 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2769 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002770 }
Jeff Browncaca8812013-05-09 13:34:33 -07002771 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2772 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002773 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002774 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002775 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002776 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002777 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002778 // Hijack modified menu keys for debugging features
2779 final int chordBug = KeyEvent.META_SHIFT_ON;
2780
2781 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002782 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002783 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002784 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2785 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002786 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002787 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002788 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002789 Intent service = new Intent();
2790 service.setClassName(mContext, "com.android.server.LoadAverageService");
2791 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002792 boolean shown = Settings.Global.getInt(
2793 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002794 if (!shown) {
2795 mContext.startService(service);
2796 } else {
2797 mContext.stopService(service);
2798 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002799 Settings.Global.putInt(
2800 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002801 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002802 }
2803 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002804 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002805 if (down) {
2806 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002807 mSearchKeyShortcutPending = true;
2808 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002809 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002810 } else {
2811 mSearchKeyShortcutPending = false;
2812 if (mConsumeSearchKeyUp) {
2813 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002814 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002815 }
2816 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002817 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002818 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002819 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002820 if (down && repeatCount == 0) {
2821 preloadRecentApps();
2822 } else if (!down) {
2823 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002824 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002825 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002826 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002827 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2828 if (down) {
2829 IStatusBarService service = getStatusBarService();
2830 if (service != null) {
2831 try {
2832 service.expandNotificationsPanel();
2833 } catch (RemoteException e) {
2834 // do nothing.
2835 }
2836 }
2837 }
Clara Bayarrif2debb12015-07-10 14:47:17 +01002838 } else if (keyCode == KeyEvent.KEYCODE_SLASH && event.isMetaPressed()) {
2839 if (down) {
2840 if (repeatCount == 0) {
2841 showKeyboardShortcutsMenu();
2842 }
2843 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002844 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2845 if (down) {
2846 if (repeatCount == 0) {
2847 mAssistKeyLongPressed = false;
2848 } else if (repeatCount == 1) {
2849 mAssistKeyLongPressed = true;
2850 if (!keyguardOn) {
2851 launchAssistLongPressAction();
2852 }
2853 }
2854 } else {
2855 if (mAssistKeyLongPressed) {
2856 mAssistKeyLongPressed = false;
2857 } else {
2858 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002859 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002860 }
2861 }
2862 }
2863 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002864 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2865 if (!down) {
2866 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002867 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002868 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2869 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002870 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2871 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2872 if (dic != null) {
2873 try {
2874 dic.exitIdle("voice-search");
2875 } catch (RemoteException e) {
2876 }
2877 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002878 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002879 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002880 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002881 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002882 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002883 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2884 if (down && repeatCount == 0) {
2885 mHandler.post(mScreenshotRunnable);
2886 }
2887 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002888 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2889 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2890 if (down) {
2891 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2892
2893 // Disable autobrightness if it's on
2894 int auto = Settings.System.getIntForUser(
2895 mContext.getContentResolver(),
2896 Settings.System.SCREEN_BRIGHTNESS_MODE,
2897 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2898 UserHandle.USER_CURRENT_OR_SELF);
2899 if (auto != 0) {
2900 Settings.System.putIntForUser(mContext.getContentResolver(),
2901 Settings.System.SCREEN_BRIGHTNESS_MODE,
2902 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2903 UserHandle.USER_CURRENT_OR_SELF);
2904 }
2905
2906 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2907 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2908 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2909 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2910 Settings.System.SCREEN_BRIGHTNESS,
2911 mPowerManager.getDefaultScreenBrightnessSetting(),
2912 UserHandle.USER_CURRENT_OR_SELF);
2913 brightness += step;
2914 // Make sure we don't go beyond the limits.
2915 brightness = Math.min(max, brightness);
2916 brightness = Math.max(min, brightness);
2917
2918 Settings.System.putIntForUser(mContext.getContentResolver(),
2919 Settings.System.SCREEN_BRIGHTNESS, brightness,
2920 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002921 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002922 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002923 }
2924 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002925 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002926 if (down) {
2927 mPendingMetaAction = true;
2928 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002929 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002930 }
2931 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002932 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002933
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002934 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002935 // Any printing key that is chorded with Search should be consumed
2936 // even if no shortcut was invoked. This prevents text from being
2937 // inadvertently inserted when using a keyboard that has built-in macro
2938 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002939 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002940 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2941 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002942 mConsumeSearchKeyUp = true;
2943 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002944 if (down && repeatCount == 0 && !keyguardOn) {
2945 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2946 if (shortcutIntent != null) {
2947 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002948 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002949 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002950 } catch (ActivityNotFoundException ex) {
2951 Slog.w(TAG, "Dropping shortcut key combination because "
2952 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002953 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002954 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002955 } else {
2956 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002957 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002958 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002959 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002960 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002961 }
2962 }
2963
Jeff Brown68b909d2011-12-07 16:36:01 -08002964 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002965 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002966 && (metaState & KeyEvent.META_META_ON) != 0) {
2967 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002968 if (kcm.isPrintingKey(keyCode)) {
2969 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2970 metaState & ~(KeyEvent.META_META_ON
2971 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2972 if (shortcutIntent != null) {
2973 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2974 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002975 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002976 } catch (ActivityNotFoundException ex) {
2977 Slog.w(TAG, "Dropping shortcut key combination because "
2978 + "the activity to which it is registered was not found: "
2979 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2980 }
2981 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002982 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002983 }
2984 }
2985
Jeff Brown6651a632011-11-28 12:59:11 -08002986 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002987 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002988 String category = sApplicationLaunchKeyCategories.get(keyCode);
2989 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002990 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002991 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2992 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002993 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002994 } catch (ActivityNotFoundException ex) {
2995 Slog.w(TAG, "Dropping application launch key because "
2996 + "the activity to which it is registered was not found: "
2997 + "keyCode=" + keyCode + ", category=" + category, ex);
2998 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002999 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08003000 }
3001 }
3002
Michael Wright61c46752014-08-21 16:57:33 -07003003 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08003004 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003005 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08003006 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07003007 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003008 mRecentAppsHeldModifiers = shiftlessModifiers;
3009 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08003010 return -1;
3011 }
3012 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07003013 } else if (!down && mRecentAppsHeldModifiers != 0
3014 && (metaState & mRecentAppsHeldModifiers) == 0) {
3015 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07003016 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08003017 }
3018
Jeff Browncf39bdf2012-05-18 14:41:19 -07003019 // Handle keyboard language switching.
3020 if (down && repeatCount == 0
3021 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3022 || (keyCode == KeyEvent.KEYCODE_SPACE
3023 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
3024 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
3025 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
3026 return -1;
3027 }
3028 if (mLanguageSwitchKeyPressed && !down
3029 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
3030 || keyCode == KeyEvent.KEYCODE_SPACE)) {
3031 mLanguageSwitchKeyPressed = false;
3032 return -1;
3033 }
3034
Jeff Brown13f00f02014-10-31 14:45:50 -07003035 if (isValidGlobalKey(keyCode)
3036 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07003037 return -1;
3038 }
3039
Michael Wright6a62e552014-06-03 19:19:48 -07003040 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07003041 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07003042 return -1;
3043 }
3044
Jeff Brown68b909d2011-12-07 16:36:01 -08003045 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07003046 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003047 }
3048
Jeff Brown3915bb82010-11-05 15:02:16 -07003049 /** {@inheritDoc} */
3050 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08003051 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003052 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003053 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003054 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3055 + ", flags=" + event.getFlags()
3056 + ", keyCode=" + event.getKeyCode()
3057 + ", scanCode=" + event.getScanCode()
3058 + ", metaState=" + event.getMetaState()
3059 + ", repeatCount=" + event.getRepeatCount()
3060 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003061 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003062
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003063 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003064 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3065 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003066 final int keyCode = event.getKeyCode();
3067 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003068 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3069 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003070
Jeff Brown54875002011-04-06 15:33:01 -07003071 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003072 final FallbackAction fallbackAction;
3073 if (initialDown) {
3074 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3075 } else {
3076 fallbackAction = mFallbackActions.get(keyCode);
3077 }
3078
3079 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003080 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003081 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3082 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003083 }
3084
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003085 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3086 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003087 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003088 event.getAction(), fallbackAction.keyCode,
3089 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003090 event.getDeviceId(), event.getScanCode(),
3091 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003092
3093 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3094 fallbackEvent.recycle();
3095 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003096 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003097
3098 if (initialDown) {
3099 mFallbackActions.put(keyCode, fallbackAction);
3100 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3101 mFallbackActions.remove(keyCode);
3102 fallbackAction.recycle();
3103 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003104 }
3105 }
3106
Jeff Brown40013652012-05-16 21:22:36 -07003107 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003108 if (fallbackEvent == null) {
3109 Slog.d(TAG, "No fallback.");
3110 } else {
3111 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3112 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003113 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003114 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003115 }
3116
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003117 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003118 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003119 if ((actions & ACTION_PASS_TO_USER) != 0) {
3120 long delayMillis = interceptKeyBeforeDispatching(
3121 win, fallbackEvent, policyFlags);
3122 if (delayMillis == 0) {
3123 return true;
3124 }
3125 }
3126 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003127 }
3128
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003129 private void launchAssistLongPressAction() {
3130 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3131 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3132
3133 // launch the search activity
3134 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3135 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3136 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003137 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003138 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003139 SearchManager searchManager = getSearchManager();
3140 if (searchManager != null) {
3141 searchManager.stopSearch();
3142 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003143 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003144 } catch (ActivityNotFoundException e) {
3145 Slog.w(TAG, "No activity to handle assist long press action.", e);
3146 }
3147 }
3148
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003149 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003150 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Maurice Lam39d13812015-07-23 20:49:20 -07003151 if (!isUserSetupComplete()) {
3152 // Disable opening assist window during setup
3153 return;
3154 }
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003155 Bundle args = null;
3156 if (deviceId > Integer.MIN_VALUE) {
3157 args = new Bundle();
3158 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003159 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003160 if ((mContext.getResources().getConfiguration().uiMode
3161 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3162 // On TV, use legacy handling until assistants are implemented in the proper way.
3163 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3164 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3165 } else {
3166 try {
3167 if (hint != null) {
3168 if (args == null) {
3169 args = new Bundle();
3170 }
3171 args.putBoolean(hint, true);
3172 }
3173 IStatusBarService statusbar = getStatusBarService();
3174 if (statusbar != null) {
3175 statusbar.startAssist(args);
3176 }
3177 } catch (RemoteException e) {
3178 Slog.e(TAG, "RemoteException when starting assist", e);
3179 // re-acquire status bar service next time it is needed.
3180 mStatusBarService = null;
3181 }
3182 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003183 }
3184
Bart Sears8b1c27c2015-03-18 23:51:02 +00003185 private void startActivityAsUser(Intent intent, UserHandle handle) {
3186 if (isUserSetupComplete()) {
3187 mContext.startActivityAsUser(intent, handle);
3188 } else {
3189 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3190 }
3191 }
3192
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003193 private SearchManager getSearchManager() {
3194 if (mSearchManager == null) {
3195 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3196 }
3197 return mSearchManager;
3198 }
3199
Jeff Browncaca8812013-05-09 13:34:33 -07003200 private void preloadRecentApps() {
3201 mPreloadedRecentApps = true;
3202 try {
3203 IStatusBarService statusbar = getStatusBarService();
3204 if (statusbar != null) {
3205 statusbar.preloadRecentApps();
3206 }
3207 } catch (RemoteException e) {
3208 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3209 // re-acquire status bar service next time it is needed.
3210 mStatusBarService = null;
3211 }
3212 }
3213
3214 private void cancelPreloadRecentApps() {
3215 if (mPreloadedRecentApps) {
3216 mPreloadedRecentApps = false;
3217 try {
3218 IStatusBarService statusbar = getStatusBarService();
3219 if (statusbar != null) {
3220 statusbar.cancelPreloadRecentApps();
3221 }
3222 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003223 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003224 // re-acquire status bar service next time it is needed.
3225 mStatusBarService = null;
3226 }
3227 }
3228 }
3229
3230 private void toggleRecentApps() {
3231 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003232 try {
3233 IStatusBarService statusbar = getStatusBarService();
3234 if (statusbar != null) {
3235 statusbar.toggleRecentApps();
3236 }
3237 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003238 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3239 // re-acquire status bar service next time it is needed.
3240 mStatusBarService = null;
3241 }
3242 }
3243
Craig Mautner84984fa2014-06-19 11:19:20 -07003244 @Override
3245 public void showRecentApps() {
3246 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3247 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3248 }
3249
Winson Chung1e8d71b2014-05-16 17:05:22 -07003250 private void showRecentApps(boolean triggeredFromAltTab) {
3251 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3252 try {
3253 IStatusBarService statusbar = getStatusBarService();
3254 if (statusbar != null) {
3255 statusbar.showRecentApps(triggeredFromAltTab);
3256 }
3257 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003258 Slog.e(TAG, "RemoteException when showing recent apps", e);
3259 // re-acquire status bar service next time it is needed.
3260 mStatusBarService = null;
3261 }
3262 }
3263
Clara Bayarrif2debb12015-07-10 14:47:17 +01003264 private void showKeyboardShortcutsMenu() {
3265 try {
3266 IStatusBarService statusbar = getStatusBarService();
3267 if (statusbar != null) {
3268 statusbar.showKeyboardShortcutsMenu();
3269 }
3270 } catch (RemoteException e) {
3271 Slog.e(TAG, "RemoteException when showing keyboard shortcuts menu", e);
3272 }
3273 }
3274
Winson Chungcdcd4872014-08-05 18:00:13 -07003275 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003276 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3277 try {
3278 IStatusBarService statusbar = getStatusBarService();
3279 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003280 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003281 }
3282 } catch (RemoteException e) {
3283 Slog.e(TAG, "RemoteException when closing recent apps", e);
3284 // re-acquire status bar service next time it is needed.
3285 mStatusBarService = null;
3286 }
3287 }
3288
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003289 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003290 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003291 }
3292
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003293 /**
3294 * A home key -> launch home action was detected. Take the appropriate action
3295 * given the situation with the keyguard.
3296 */
Bryce Lee662ed802015-04-10 20:11:39 +00003297 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3298 if (respectKeyguard) {
3299 if (isKeyguardShowingAndNotOccluded()) {
3300 // don't launch home if keyguard showing
3301 return;
3302 }
3303
3304 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3305 // when in keyguard restricted mode, must first verify unlock
3306 // before launching home
3307 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3308 @Override
3309 public void onKeyguardExitResult(boolean success) {
3310 if (success) {
3311 try {
3312 ActivityManagerNative.getDefault().stopAppSwitches();
3313 } catch (RemoteException e) {
3314 }
3315 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3316 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003317 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003318 }
Bryce Lee662ed802015-04-10 20:11:39 +00003319 });
3320 return;
3321 }
3322 }
3323
3324 // no keyguard stuff to worry about, just launch home!
3325 try {
3326 ActivityManagerNative.getDefault().stopAppSwitches();
3327 } catch (RemoteException e) {
3328 }
3329 if (mRecentsVisible) {
3330 // Hide Recents and notify it to launch Home
3331 if (awakenFromDreams) {
3332 awakenDreams();
3333 }
3334 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3335 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003336 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003337 // Otherwise, just launch Home
3338 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3339 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003340 }
3341 }
3342
John Spurlock04db1762013-05-13 12:46:41 -04003343 private final Runnable mClearHideNavigationFlag = new Runnable() {
3344 @Override
3345 public void run() {
3346 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3347 // Clear flags.
3348 mForceClearedSystemUiFlags &=
3349 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3350 }
3351 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003352 }
3353 };
3354
3355 /**
3356 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3357 * to determine when the nav bar should be shown and prevent applications from
3358 * receiving those touches.
3359 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003360 final class HideNavInputEventReceiver extends InputEventReceiver {
3361 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3362 super(inputChannel, looper);
3363 }
3364
Dianne Hackborndf89e652011-10-06 22:35:11 -07003365 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003366 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003367 boolean handled = false;
3368 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003369 if (event instanceof MotionEvent
3370 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3371 final MotionEvent motionEvent = (MotionEvent)event;
3372 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003373 // When the user taps down, we re-show the nav bar.
3374 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003375 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003376 // Any user activity always causes us to show the
3377 // navigation controls, if they had been hidden.
3378 // We also clear the low profile and only content
3379 // flags so that tapping on the screen will atomically
3380 // restore all currently hidden screen decorations.
3381 int newVal = mResettingSystemUiFlags |
3382 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3383 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3384 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003385 if (mResettingSystemUiFlags != newVal) {
3386 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003387 changed = true;
3388 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003389 // We don't allow the system's nav bar to be hidden
3390 // again for 1 second, to prevent applications from
3391 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003392 newVal = mForceClearedSystemUiFlags |
3393 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003394 if (mForceClearedSystemUiFlags != newVal) {
3395 mForceClearedSystemUiFlags = newVal;
3396 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003397 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003398 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003399 }
3400 if (changed) {
3401 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3402 }
3403 }
3404 }
3405 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003406 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003407 }
3408 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003409 }
3410 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3411 new InputEventReceiver.Factory() {
3412 @Override
3413 public InputEventReceiver createInputEventReceiver(
3414 InputChannel inputChannel, Looper looper) {
3415 return new HideNavInputEventReceiver(inputChannel, looper);
3416 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003417 };
3418
3419 @Override
3420 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003421 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3422 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003423 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003424
Dianne Hackborndf89e652011-10-06 22:35:11 -07003425 // Reset any bits in mForceClearingStatusBarVisibility that
3426 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003427 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003428 // Clear any bits in the new visibility that are currently being
3429 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003430 return visibility & ~mResettingSystemUiFlags
3431 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003432 }
3433
Craig Mautner69b08182012-09-05 13:07:13 -07003434 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003435 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3436 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003437 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003438 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3439 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003440
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003441 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3442 if (useOutsets) {
3443 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3444 if (outset > 0) {
3445 if (displayRotation == Surface.ROTATION_0) {
3446 outOutsets.bottom += outset;
3447 } else if (displayRotation == Surface.ROTATION_90) {
3448 outOutsets.right += outset;
3449 } else if (displayRotation == Surface.ROTATION_180) {
3450 outOutsets.top += outset;
3451 } else if (displayRotation == Surface.ROTATION_270) {
3452 outOutsets.left += outset;
3453 }
3454 }
3455 }
3456
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003457 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003458 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003459 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003460 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003461 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003462 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3463 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3464 } else {
3465 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3466 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3467 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003468 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3469 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003470 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003471 availRight - mStableFullscreenRight,
3472 availBottom - mStableFullscreenBottom);
3473 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003474 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003475 availRight - mStableRight, availBottom - mStableBottom);
3476 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003477 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003478 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003479 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003480 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003481 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003482 availRight - mCurRight, availBottom - mCurBottom);
3483 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003484 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003485 availRight - mCurRight, availBottom - mCurBottom);
3486 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003487
3488 outStableInsets.set(mStableLeft, mStableTop,
3489 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003490 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003491 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003492 outContentInsets.setEmpty();
3493 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003494 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003495
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003496 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3497 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3498 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3499 }
3500
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003501 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003502 @Override
3503 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3504 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003505 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003506 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3507 if (isDefaultDisplay) {
3508 switch (displayRotation) {
3509 case Surface.ROTATION_90:
3510 overscanLeft = mOverscanTop;
3511 overscanTop = mOverscanRight;
3512 overscanRight = mOverscanBottom;
3513 overscanBottom = mOverscanLeft;
3514 break;
3515 case Surface.ROTATION_180:
3516 overscanLeft = mOverscanRight;
3517 overscanTop = mOverscanBottom;
3518 overscanRight = mOverscanLeft;
3519 overscanBottom = mOverscanTop;
3520 break;
3521 case Surface.ROTATION_270:
3522 overscanLeft = mOverscanBottom;
3523 overscanTop = mOverscanLeft;
3524 overscanRight = mOverscanTop;
3525 overscanBottom = mOverscanRight;
3526 break;
3527 default:
3528 overscanLeft = mOverscanLeft;
3529 overscanTop = mOverscanTop;
3530 overscanRight = mOverscanRight;
3531 overscanBottom = mOverscanBottom;
3532 break;
3533 }
3534 } else {
3535 overscanLeft = 0;
3536 overscanTop = 0;
3537 overscanRight = 0;
3538 overscanBottom = 0;
3539 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003540 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3541 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3542 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3543 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003544 mSystemLeft = 0;
3545 mSystemTop = 0;
3546 mSystemRight = displayWidth;
3547 mSystemBottom = displayHeight;
3548 mUnrestrictedScreenLeft = overscanLeft;
3549 mUnrestrictedScreenTop = overscanTop;
3550 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3551 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3552 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3553 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003554 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3555 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003556 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003557 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003558 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003559 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003560 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003561 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003562 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003563 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003564 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003565 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003566
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003567 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3568 final Rect pf = mTmpParentFrame;
3569 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003570 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003571 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003572 final Rect dcf = mTmpDecorFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003573 final Rect osf = mTmpOutsetFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003574 pf.left = df.left = of.left = vf.left = mDockLeft;
3575 pf.top = df.top = of.top = vf.top = mDockTop;
3576 pf.right = df.right = of.right = vf.right = mDockRight;
3577 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003578 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003579
Craig Mautner69b08182012-09-05 13:07:13 -07003580 if (isDefaultDisplay) {
3581 // For purposes of putting out fake window up to steal focus, we will
3582 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003583 final int sysui = mLastSystemUiFlags;
3584 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003585 boolean navTranslucent = (sysui
3586 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003587 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3588 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3589 boolean navAllowedHidden = immersive || immersiveSticky;
3590 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003591 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3592 if (!isKeyguardShowing) {
3593 navTranslucent &= areTranslucentBarsAllowed();
3594 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003595
Craig Mautner69b08182012-09-05 13:07:13 -07003596 // When the navigation bar isn't visible, we put up a fake
3597 // input window to catch all touch events. This way we can
3598 // detect when the user presses anywhere to bring back the nav
3599 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003600 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003601 if (mInputConsumer != null) {
3602 mInputConsumer.dismiss();
3603 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003604 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003605 } else if (mInputConsumer == null) {
3606 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3607 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003608 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003609
Craig Mautner69b08182012-09-05 13:07:13 -07003610 // For purposes of positioning and showing the nav bar, if we have
3611 // decided that it can't be hidden (because of the screen aspect ratio),
3612 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003613 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003614
John Spurlockad3e6cb2013-04-30 08:47:43 -04003615 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003616 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003617 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003618 // Force the navigation bar to its appropriate place and
3619 // size. We need to do this directly, instead of relying on
3620 // it to bubble up from the nav bar, because this needs to
3621 // change atomically with screen rotations.
3622 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3623 if (mNavigationBarOnBottom) {
3624 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003625 int top = displayHeight - overscanBottom
3626 - mNavigationBarHeightForRotation[displayRotation];
3627 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003628 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003629 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003630 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003631 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003632 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003633 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003634 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3635 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003636 } else {
3637 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003638 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003639 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003640 if (navVisible && !navTranslucent && !navAllowedHidden
3641 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003642 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003643 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003644 // and not in the process of animating on or off, then
3645 // we can tell the app that it is covered by it.
3646 mSystemBottom = mTmpNavigationFrame.top;
3647 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003648 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003649 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003650 int left = displayWidth - overscanRight
3651 - mNavigationBarWidthForRotation[displayRotation];
3652 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003653 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003654 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003655 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003656 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003657 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003658 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003659 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3660 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003661 } else {
3662 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003663 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003664 }
Adrian Roosfe836fa2015-08-11 17:36:43 -07003665 if (navVisible && !navTranslucent && !navAllowedHidden
3666 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003667 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003668 // If the nav bar is currently requested to be visible,
3669 // and not in the process of animating on or off, then
3670 // we can tell the app that it is covered by it.
3671 mSystemRight = mTmpNavigationFrame.left;
3672 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003673 }
Craig Mautner69b08182012-09-05 13:07:13 -07003674 // Make sure the content and current rectangles are updated to
3675 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003676 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3677 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3678 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3679 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003680 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3681 // And compute the final frame.
3682 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003683 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003684 mTmpNavigationFrame, mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003685 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003686 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003687 updateSysUiVisibility = true;
3688 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003689 }
Craig Mautnereda67292013-04-28 13:50:14 -07003690 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003691 mDockLeft, mDockTop, mDockRight, mDockBottom));
3692
3693 // decide where the status bar goes ahead of time
3694 if (mStatusBar != null) {
3695 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003696 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3697 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3698 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3699 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3700 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003701 vf.left = mStableLeft;
3702 vf.top = mStableTop;
3703 vf.right = mStableRight;
3704 vf.bottom = mStableBottom;
3705
3706 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3707
3708 // Let the status bar determine its size.
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003709 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3710 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3711 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
Craig Mautner69b08182012-09-05 13:07:13 -07003712
3713 // For layout, the status bar is always at the top with our fixed height.
3714 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3715
John Spurlocke1f366f2013-08-05 12:22:40 -04003716 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003717 boolean statusBarTranslucent = (sysui
3718 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003719 if (!isKeyguardShowing) {
3720 statusBarTranslucent &= areTranslucentBarsAllowed();
3721 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003722
Craig Mautner69b08182012-09-05 13:07:13 -07003723 // If the status bar is hidden, we don't want to cause
3724 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003725 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003726 // Status bar may go away, so the screen area it occupies
3727 // is available to apps but just covering them when the
3728 // status bar is visible.
3729 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3730
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003731 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3732 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3733 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3734 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003735
Craig Mautnereda67292013-04-28 13:50:14 -07003736 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003737 String.format(
3738 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3739 mDockLeft, mDockTop, mDockRight, mDockBottom,
3740 mContentLeft, mContentTop, mContentRight, mContentBottom,
3741 mCurLeft, mCurTop, mCurRight, mCurBottom));
3742 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003743 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003744 && !statusBarTransient && !statusBarTranslucent
3745 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003746 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003747 // and not in the process of animating on or off, then
3748 // we can tell the app that it is covered by it.
3749 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3750 }
John Spurlock27735a42013-08-14 17:57:38 -04003751 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003752 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003753 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003754 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003755 if (updateSysUiVisibility) {
3756 updateSystemUiVisibilityLw();
3757 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003758 }
3759 }
3760
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003761 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003762 @Override
John Spurlock46646232013-09-30 22:32:42 -04003763 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003764 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3765 return mStatusBar.getSurfaceLayer();
3766 }
3767
3768 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3769 return mNavigationBar.getSurfaceLayer();
3770 }
3771
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003772 return 0;
3773 }
3774
Craig Mautner967212c2013-04-13 21:10:58 -07003775 @Override
3776 public void getContentRectLw(Rect r) {
3777 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3778 }
3779
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003780 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3781 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003782 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3783 // Here's a special case: if this attached window is a panel that is
3784 // above the dock window, and the window it is attached to is below
3785 // the dock window, then the frames we computed for the window it is
3786 // attached to can not be used because the dock is effectively part
3787 // of the underlying window and the attached window is floating on top
3788 // of the whole thing. So, we ignore the attached window and explicitly
3789 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003790 df.left = of.left = cf.left = vf.left = mDockLeft;
3791 df.top = of.top = cf.top = vf.top = mDockTop;
3792 df.right = of.right = cf.right = vf.right = mDockRight;
3793 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003794 } else {
3795 // The effective display frame of the attached window depends on
3796 // whether it is taking care of insetting its content. If not,
3797 // we need to use the parent's content frame so that the entire
3798 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003799 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003800 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003801 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003802 // Set the content frame of the attached window to the parent's decor frame
3803 // (same as content frame when IME isn't present) if specifically requested by
3804 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3805 // Otherwise, use the overscan frame.
3806 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3807 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003808 } else {
3809 // If the window is resizing, then we want to base the content
3810 // frame on our attached content frame to resize... however,
3811 // things can be tricky if the attached window is NOT in resize
3812 // mode, in which case its content frame will be larger.
3813 // Ungh. So to deal with that, make sure the content frame
3814 // we end up using is not covering the IM dock.
3815 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003816 if (attached.isVoiceInteraction()) {
3817 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3818 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3819 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3820 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3821 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003822 if (cf.left < mContentLeft) cf.left = mContentLeft;
3823 if (cf.top < mContentTop) cf.top = mContentTop;
3824 if (cf.right > mContentRight) cf.right = mContentRight;
3825 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3826 }
3827 }
3828 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003829 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003830 vf.set(attached.getVisibleFrameLw());
3831 }
3832 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3833 // window should be positioned relative to its parent or the entire
3834 // screen.
3835 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3836 ? attached.getFrameLw() : df);
3837 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003838
3839 private void applyStableConstraints(int sysui, int fl, Rect r) {
3840 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3841 // If app is requesting a stable layout, don't let the
3842 // content insets go below the stable values.
3843 if ((fl & FLAG_FULLSCREEN) != 0) {
3844 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3845 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3846 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3847 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3848 } else {
3849 if (r.left < mStableLeft) r.left = mStableLeft;
3850 if (r.top < mStableTop) r.top = mStableTop;
3851 if (r.right > mStableRight) r.right = mStableRight;
3852 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3853 }
3854 }
3855 }
3856
Jorim Jaggiaa806142015-05-20 18:04:16 -07003857 private boolean canReceiveInput(WindowState win) {
3858 boolean notFocusable =
3859 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3860 boolean altFocusableIm =
3861 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3862 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3863 return !notFocusableForIm;
3864 }
3865
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003866 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003867 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003868 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003869 // We've already done the navigation bar and status bar. If the status bar can receive
3870 // input, we need to layout it again to accomodate for the IME window.
3871 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003872 return;
3873 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003874 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003875 final boolean isDefaultDisplay = win.isDefaultDisplay();
3876 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003877 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3878 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003879 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003880 offsetInputMethodWindowLw(mLastInputMethodWindow);
3881 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003882
John Spurlockc6d1c602014-01-17 15:22:06 -05003883 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003884 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003885 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003886
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003887 final Rect pf = mTmpParentFrame;
3888 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003889 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003890 final Rect cf = mTmpContentFrame;
3891 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003892 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003893 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003894 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003895 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003896
3897 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003898 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003899
Craig Mautnerf683b562012-10-02 11:10:57 -07003900 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3901
Adrian Roosfa104232014-06-20 16:10:14 -07003902 if (isDefaultDisplay) {
3903 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3904 } else {
3905 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3906 }
3907
Craig Mautner69b08182012-09-05 13:07:13 -07003908 if (!isDefaultDisplay) {
3909 if (attached != null) {
3910 // If this window is attached to another, our display
3911 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003912 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003913 } else {
3914 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003915 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3916 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3917 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003918 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003919 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003920 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003921 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003922 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003923 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3924 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3925 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003926 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003927 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003928 // ...with content insets above the nav bar
3929 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003930 // IM dock windows always go to the bottom of the screen.
3931 attrs.gravity = Gravity.BOTTOM;
3932 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003933 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003934 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003935 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003936 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3937 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003938 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003939 // Note: In Phone landscape mode, the button bar should also be excluded.
3940 cf.right = vf.right = mStableRight;
3941 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003942 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003943 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003944 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3945 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3946 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3947 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3948 cf.left = vf.left = mStableLeft;
3949 cf.top = vf.top = mStableTop;
3950 cf.right = vf.right = mStableRight;
3951 vf.bottom = mStableBottom;
3952 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003953 } else {
John Spurlock46646232013-09-30 22:32:42 -04003954
3955 // Default policy decor for the default display
3956 dcf.left = mSystemLeft;
3957 dcf.top = mSystemTop;
3958 dcf.right = mSystemRight;
3959 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003960 final boolean inheritTranslucentDecor = (attrs.privateFlags
3961 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003962 final boolean isAppWindow =
3963 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3964 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3965 final boolean topAtRest =
3966 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3967 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003968 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3969 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003970 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3971 && (fl & WindowManager.LayoutParams.
3972 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003973 // Ensure policy decor includes status bar
3974 dcf.top = mStableTop;
3975 }
John Spurlockbd957402013-10-03 11:38:39 -04003976 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003977 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3978 && (fl & WindowManager.LayoutParams.
3979 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003980 // Ensure policy decor includes navigation bar
3981 dcf.bottom = mStableBottom;
3982 dcf.right = mStableRight;
3983 }
3984 }
3985
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003986 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3987 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003988 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003989 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003990 // This is the case for a normal activity window: we want it
3991 // to cover all of the screen space, and it can take care of
3992 // moving its contents to account for screen decorations that
3993 // intrude into that space.
3994 if (attached != null) {
3995 // If this window is attached to another, our display
3996 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003997 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003998 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003999 if (attrs.type == TYPE_STATUS_BAR_PANEL
4000 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08004001 // Status bar panels are the only windows who can go on top of
4002 // the status bar. They are protected by the STATUS_BAR_SERVICE
4003 // permission, so they have the same privileges as the status
4004 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004005 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004006 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004007
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004008 pf.left = df.left = of.left = hasNavBar
4009 ? mDockLeft : mUnrestrictedScreenLeft;
4010 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4011 pf.right = df.right = of.right = hasNavBar
4012 ? mRestrictedScreenLeft+mRestrictedScreenWidth
4013 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4014 pf.bottom = df.bottom = of.bottom = hasNavBar
4015 ? mRestrictedScreenTop+mRestrictedScreenHeight
4016 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004017
Craig Mautnereda67292013-04-28 13:50:14 -07004018 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004019 "Laying out status bar window: (%d,%d - %d,%d)",
4020 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04004021 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004022 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4023 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4024 // Asking to layout into the overscan region, so give it that pure
4025 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004026 pf.left = df.left = of.left = mOverscanScreenLeft;
4027 pf.top = df.top = of.top = mOverscanScreenTop;
4028 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
4029 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
4030 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004031 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004032 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004033 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4034 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004035 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08004036 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004037 // only do this for application windows to ensure no window that
4038 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08004039 pf.left = df.left = mOverscanScreenLeft;
4040 pf.top = df.top = mOverscanScreenTop;
4041 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4042 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004043 // We need to tell the app about where the frame inside the overscan
4044 // is, so it can inset its content by that amount -- it didn't ask
4045 // to actually extend itself into the overscan region.
4046 of.left = mUnrestrictedScreenLeft;
4047 of.top = mUnrestrictedScreenTop;
4048 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4049 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004050 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08004051 pf.left = df.left = mRestrictedOverscanScreenLeft;
4052 pf.top = df.top = mRestrictedOverscanScreenTop;
4053 pf.right = df.right = mRestrictedOverscanScreenLeft
4054 + mRestrictedOverscanScreenWidth;
4055 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
4056 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004057 // We need to tell the app about where the frame inside the overscan
4058 // is, so it can inset its content by that amount -- it didn't ask
4059 // to actually extend itself into the overscan region.
4060 of.left = mUnrestrictedScreenLeft;
4061 of.top = mUnrestrictedScreenTop;
4062 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4063 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004064 }
Craig Mautner69b08182012-09-05 13:07:13 -07004065
John Spurlock46646232013-09-30 22:32:42 -04004066 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004067 if (win.isVoiceInteraction()) {
4068 cf.left = mVoiceContentLeft;
4069 cf.top = mVoiceContentTop;
4070 cf.right = mVoiceContentRight;
4071 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004072 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004073 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4074 cf.left = mDockLeft;
4075 cf.top = mDockTop;
4076 cf.right = mDockRight;
4077 cf.bottom = mDockBottom;
4078 } else {
4079 cf.left = mContentLeft;
4080 cf.top = mContentTop;
4081 cf.right = mContentRight;
4082 cf.bottom = mContentBottom;
4083 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004084 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004085 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004086 // Full screen windows are always given a layout that is as if the
4087 // status bar and other transient decors are gone. This is to avoid
4088 // bad states when moving from a window that is not hding the
4089 // status bar to one that is.
4090 cf.left = mRestrictedScreenLeft;
4091 cf.top = mRestrictedScreenTop;
4092 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4093 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004094 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004095 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004096 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4097 vf.left = mCurLeft;
4098 vf.top = mCurTop;
4099 vf.right = mCurRight;
4100 vf.bottom = mCurBottom;
4101 } else {
4102 vf.set(cf);
4103 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004104 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004105 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4106 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4107 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004108 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4109 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004110 // A window that has requested to fill the entire screen just
4111 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004112 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004113 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4114 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004115 pf.left = df.left = of.left = cf.left = hasNavBar
4116 ? mDockLeft : mUnrestrictedScreenLeft;
4117 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4118 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004119 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004120 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004121 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004122 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004123 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004124 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004125 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4126 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004127 } else if (attrs.type == TYPE_NAVIGATION_BAR
4128 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004129 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004130 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4131 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4132 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4133 + mUnrestrictedScreenWidth;
4134 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4135 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004136 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004137 "Laying out navigation bar window: (%d,%d - %d,%d)",
4138 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004139 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4140 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004141 && ((fl & FLAG_FULLSCREEN) != 0)) {
4142 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004143 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4144 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4145 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4146 + mOverscanScreenWidth;
4147 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4148 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004149 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004150 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004151 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4152 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4153 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4154 + mOverscanScreenWidth;
4155 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4156 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004157 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004158 // The wallpaper also has Real Ultimate Power, but we want to tell
4159 // it about the overscan area.
4160 pf.left = df.left = mOverscanScreenLeft;
4161 pf.top = df.top = mOverscanScreenTop;
4162 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4163 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4164 of.left = cf.left = mUnrestrictedScreenLeft;
4165 of.top = cf.top = mUnrestrictedScreenTop;
4166 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4167 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004168 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004169 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4170 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4171 // Asking to layout into the overscan region, so give it that pure
4172 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004173 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4174 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4175 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004176 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004177 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004178 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004179 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004180 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004181 && (attrs.type == TYPE_STATUS_BAR
4182 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004183 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004184 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4185 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004186 // Asking for layout as if the nav bar is hidden, lets the
4187 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004188 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004189 // can be above the nav bar can do this.
4190 // XXX This assumes that an app asking for this will also
4191 // ask for layout in only content. We can't currently figure out
4192 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004193 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4194 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4195 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4196 + mUnrestrictedScreenWidth;
4197 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4198 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004199 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004200 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4201 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4202 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4203 + mRestrictedScreenWidth;
4204 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4205 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004206 }
Craig Mautner69b08182012-09-05 13:07:13 -07004207
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004208 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004209
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004210 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4211 vf.left = mCurLeft;
4212 vf.top = mCurTop;
4213 vf.right = mCurRight;
4214 vf.bottom = mCurBottom;
4215 } else {
4216 vf.set(cf);
4217 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004218 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004219 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4220 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004221 // A child window should be placed inside of the same visible
4222 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004223 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004224 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004225 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4226 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004227 // Otherwise, a normal window must be placed inside the content
4228 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004229 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4230 // Status bar panels and the volume dialog are the only windows who can go on
4231 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004232 // permission, so they have the same privileges as the status
4233 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004234 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4235 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4236 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4237 + mRestrictedScreenWidth;
4238 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4239 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004240 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004241 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004242 pf.left = df.left = of.left = cf.left = mStableLeft;
4243 pf.top = df.top = of.top = cf.top = mStableTop;
4244 pf.right = df.right = of.right = cf.right = mStableRight;
4245 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004246 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004247 pf.left = mContentLeft;
4248 pf.top = mContentTop;
4249 pf.right = mContentRight;
4250 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004251 if (win.isVoiceInteraction()) {
4252 df.left = of.left = cf.left = mVoiceContentLeft;
4253 df.top = of.top = cf.top = mVoiceContentTop;
4254 df.right = of.right = cf.right = mVoiceContentRight;
4255 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4256 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004257 df.left = of.left = cf.left = mDockLeft;
4258 df.top = of.top = cf.top = mDockTop;
4259 df.right = of.right = cf.right = mDockRight;
4260 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004261 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004262 df.left = of.left = cf.left = mContentLeft;
4263 df.top = of.top = cf.top = mContentTop;
4264 df.right = of.right = cf.right = mContentRight;
4265 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004266 }
4267 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4268 vf.left = mCurLeft;
4269 vf.top = mCurTop;
4270 vf.right = mCurRight;
4271 vf.bottom = mCurBottom;
4272 } else {
4273 vf.set(cf);
4274 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004275 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004276 }
4277 }
Craig Mautner69b08182012-09-05 13:07:13 -07004278
Craig Mautnerb816bed2013-07-23 10:26:17 -07004279 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4280 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004281 df.left = df.top = -10000;
4282 df.right = df.bottom = 10000;
4283 if (attrs.type != TYPE_WALLPAPER) {
4284 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4285 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4286 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004287 }
4288
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004289 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4290 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004291 // We only want to apply outsets to certain types of windows. For example, we never want to
4292 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004293 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004294 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004295 osf = mTmpOutsetFrame;
4296 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4297 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4298 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004299 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004300 if (rotation == Surface.ROTATION_0) {
4301 osf.bottom += outset;
4302 } else if (rotation == Surface.ROTATION_90) {
4303 osf.right += outset;
4304 } else if (rotation == Surface.ROTATION_180) {
4305 osf.top -= outset;
4306 } else if (rotation == Surface.ROTATION_270) {
4307 osf.left -= outset;
4308 }
4309 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4310 + " with rotation " + rotation + ", result: " + osf);
4311 }
4312 }
4313
Craig Mautnereda67292013-04-28 13:50:14 -07004314 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004315 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004316 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004317 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004318 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004319 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004320 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004321 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004322 + " sf=" + sf.toShortString()
4323 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004324
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004325 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004326
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004327 // Dock windows carve out the bottom of the screen, so normal windows
4328 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004329 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4330 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004331 setLastInputMethodWindowLw(null, null);
4332 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004333 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004334 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4335 && !win.getGivenInsetsPendingLw()) {
4336 offsetVoiceInputWindowLw(win);
4337 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004338 }
4339
satok1bc0a492012-04-25 22:47:12 +09004340 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004341 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004342 top += win.getGivenContentInsetsLw().top;
4343 if (mContentBottom > top) {
4344 mContentBottom = top;
4345 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004346 if (mVoiceContentBottom > top) {
4347 mVoiceContentBottom = top;
4348 }
satok1bc0a492012-04-25 22:47:12 +09004349 top = win.getVisibleFrameLw().top;
4350 top += win.getGivenVisibleInsetsLw().top;
4351 if (mCurBottom > top) {
4352 mCurBottom = top;
4353 }
Craig Mautnereda67292013-04-28 13:50:14 -07004354 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004355 + mDockBottom + " mContentBottom="
4356 + mContentBottom + " mCurBottom=" + mCurBottom);
4357 }
4358
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004359 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004360 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004361 top += win.getGivenContentInsetsLw().top;
4362 if (mVoiceContentBottom > top) {
4363 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004364 }
4365 }
4366
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004367 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004368 @Override
4369 public void finishLayoutLw() {
4370 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004371 }
4372
4373 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004374 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004375 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004376 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004377 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004378 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004379 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004380 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004381 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004382 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004383 mForcingShowNavBar = false;
4384 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004385
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004386 mHideLockScreen = false;
4387 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004388 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004389 mShowingLockscreen = false;
4390 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004391 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004392 mKeyguardSecure = isKeyguardSecure();
4393 mKeyguardSecureIncludingHidden = mKeyguardSecure
4394 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004395 }
4396
4397 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004398 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004399 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4400 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004401 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4402 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004403 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004404 if (mTopFullscreenOpaqueWindowState == null
4405 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4406 mForcingShowNavBar = true;
4407 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004408 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004409 if (attrs.type == TYPE_STATUS_BAR) {
4410 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4411 mForceStatusBarFromKeyguard = true;
4412 }
4413 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4414 mForceStatusBarTransparent = true;
4415 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004416 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004417
4418 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4419 && attrs.type < FIRST_SYSTEM_WINDOW;
4420 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4421 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4422
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004423 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004424 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004425 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004426 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004427 mForceStatusBarFromKeyguard = true;
4428 } else {
4429 mForceStatusBar = true;
4430 }
4431 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004432 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004433 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004434 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004435 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004436 // If the lockscreen was showing when the dream started then wait
4437 // for the dream to draw before hiding the lockscreen.
4438 if (!mDreamingLockscreen
4439 || (win.isVisibleLw() && win.hasDrawnLw())) {
4440 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004441 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004442 }
4443 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004444
Yohei Yukawad1a09222015-06-30 16:22:05 -07004445 final IApplicationToken appToken = win.getAppToken();
4446
4447 // For app windows that are not attached, we decide if all windows in the app they
4448 // represent should be hidden or if we should hide the lockscreen. For attached app
4449 // windows we defer the decision to the window it is attached to.
4450 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004451 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004452 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004453 mAppsToBeHidden.remove(appToken);
4454 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004455 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004456 if (dismissKeyguard && !mKeyguardSecure) {
4457 mAppsThatDismissKeyguard.add(appToken);
Selim Cinek372d1bd2015-08-14 13:19:37 -07004458 } else if (win.isDrawnLw()) {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004459 mWinShowWhenLocked = win;
4460 mHideLockScreen = true;
4461 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004462 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004463 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004464 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004465 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004466 mAppsToBeHidden.add(appToken);
4467 } else {
4468 mAppsToBeHidden.remove(appToken);
4469 }
4470 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004471 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004472 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004473 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004474 if (attrs.x == 0 && attrs.y == 0
4475 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4476 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4477 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4478 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004479 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4480 mTopFullscreenOpaqueOrDimmingWindowState = win;
4481 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004482 if (!mAppsThatDismissKeyguard.isEmpty() &&
4483 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4484 if (DEBUG_LAYOUT) Slog.v(TAG,
4485 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004486 mDismissKeyguard = (mWinDismissingKeyguard == win
4487 && mSecureDismissingKeyguard == mKeyguardSecure)
4488 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004489 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004490 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004491 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Selim Cinek372d1bd2015-08-14 13:19:37 -07004492 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked && win.isDrawnLw()) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004493 if (DEBUG_LAYOUT) Slog.v(TAG,
4494 "Setting mHideLockScreen to true by win " + win);
4495 mHideLockScreen = true;
4496 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004497 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004498 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004499 mAllowLockscreenWhenOn = true;
4500 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004501 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004502
4503 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004504 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4505 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004506 win.hideLw(false);
4507 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004508 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004509 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4510 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4511 // that is being hidden in an animation - keep the
4512 // keyguard hidden until the new window shows up and
4513 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004514 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004515 mHideLockScreen = true;
4516 mWinShowWhenLocked = win;
4517 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004518 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004519 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4520 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4521 && win.isDimming()) {
4522 mTopFullscreenOpaqueOrDimmingWindowState = win;
4523 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004524 }
4525
4526 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004527 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004528 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004529 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4530 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4531 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004532 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4533 // fullscreen window.
4534 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4535 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4536 mTopFullscreenOpaqueWindowState.hideLw(false);
4537 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4538 }
4539
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004540 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004541 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004542
4543 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4544 ? mTopFullscreenOpaqueWindowState.getAttrs()
4545 : null;
4546
Jeff Brownc8018eb2012-10-29 21:33:27 -07004547 // If we are not currently showing a dream then remember the current
4548 // lockscreen state. We will use this to determine whether the dream
4549 // started while the lockscreen was showing and remember this state
4550 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004551 if (!mShowingDream) {
4552 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004553 if (mDreamingSleepTokenNeeded) {
4554 mDreamingSleepTokenNeeded = false;
4555 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4556 }
4557 } else {
4558 if (!mDreamingSleepTokenNeeded) {
4559 mDreamingSleepTokenNeeded = true;
4560 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4561 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004562 }
4563
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004564 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004565 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004566 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004567 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004568 boolean shouldBeTransparent = mForceStatusBarTransparent
4569 && !mForceStatusBar
4570 && !mForceStatusBarFromKeyguard;
4571 if (!shouldBeTransparent) {
4572 mStatusBarController.setShowTransparent(false /* transparent */);
4573 } else if (!mStatusBar.isVisibleLw()) {
4574 mStatusBarController.setShowTransparent(true /* transparent */);
4575 }
4576 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004577 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004578 if (mStatusBarController.setBarShowingLw(true)) {
4579 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4580 }
Craig Mautner81defc72013-10-29 11:10:42 -07004581 // Maintain fullscreen layout until incoming animation is complete.
4582 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004583 // Transient status bar on the lockscreen is not allowed
4584 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4585 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4586 mLastSystemUiFlags, mLastSystemUiFlags);
4587 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004588 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004589 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004590 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004591 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004592 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004593 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004594 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004595 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004596 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004597 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004598 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004599 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004600 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4601 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004602 if (mStatusBarController.isTransientShowing()) {
4603 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004604 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4605 }
4606 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004607 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004608 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004609 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004610 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004611 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004612 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004613 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004614 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004615 if (mStatusBarController.setBarShowingLw(true)) {
4616 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4617 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004618 }
4619 }
4620 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004621
Craig Mautner81defc72013-10-29 11:10:42 -07004622 if (mTopIsFullscreen != topIsFullscreen) {
4623 if (!topIsFullscreen) {
4624 // Force another layout when status bar becomes fully shown.
4625 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4626 }
4627 mTopIsFullscreen = topIsFullscreen;
4628 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004629
Craig Mautner39834192012-09-02 07:47:24 -07004630 // Hide the key guard if a visible window explicitly specifies that it wants to be
4631 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004632 if (mKeyguardDelegate != null && mStatusBar != null) {
4633 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4634 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004635 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004636 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004637 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004638 changes |= FINISH_LAYOUT_REDO_LAYOUT
4639 | FINISH_LAYOUT_REDO_CONFIG
4640 | FINISH_LAYOUT_REDO_WALLPAPER;
4641 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004642 if (mKeyguardDelegate.isShowing()) {
4643 mHandler.post(new Runnable() {
4644 @Override
4645 public void run() {
4646 mKeyguardDelegate.keyguardDone(false, false);
4647 }
4648 });
4649 }
4650 } else if (mHideLockScreen) {
4651 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004652 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004653 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004654 changes |= FINISH_LAYOUT_REDO_LAYOUT
4655 | FINISH_LAYOUT_REDO_CONFIG
4656 | FINISH_LAYOUT_REDO_WALLPAPER;
4657 }
4658 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004659 mKeyguardHidden = false;
4660 if (setKeyguardOccludedLw(false)) {
4661 changes |= FINISH_LAYOUT_REDO_LAYOUT
4662 | FINISH_LAYOUT_REDO_CONFIG
4663 | FINISH_LAYOUT_REDO_WALLPAPER;
4664 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004665 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4666 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004667 mHandler.post(new Runnable() {
4668 @Override
4669 public void run() {
4670 mKeyguardDelegate.dismiss();
4671 }
4672 });
4673 }
4674 } else {
4675 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004676 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004677 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004678 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004679 changes |= FINISH_LAYOUT_REDO_LAYOUT
4680 | FINISH_LAYOUT_REDO_CONFIG
4681 | FINISH_LAYOUT_REDO_WALLPAPER;
4682 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004683 }
4684 }
Joe Onorato664644d2011-01-23 17:53:23 -08004685
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004686 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004687 // If the navigation bar has been hidden or shown, we need to do another
4688 // layout pass to update that window.
4689 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4690 }
Joe Onorato664644d2011-01-23 17:53:23 -08004691
Mike Lockwood28569302010-01-28 11:54:40 -05004692 // update since mAllowLockscreenWhenOn might have changed
4693 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004694 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004695 }
4696
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004697 /**
Jim Millerab954542014-10-10 18:21:49 -07004698 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004699 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004700 * @return Whether the flags have changed and we have to redo the layout.
4701 */
Jim Millerab954542014-10-10 18:21:49 -07004702 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4703 boolean wasOccluded = mKeyguardOccluded;
4704 boolean showing = mKeyguardDelegate.isShowing();
4705 if (wasOccluded && !isOccluded && showing) {
4706 mKeyguardOccluded = false;
4707 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004708 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4709 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4710 return true;
Jim Millerab954542014-10-10 18:21:49 -07004711 } else if (!wasOccluded && isOccluded && showing) {
4712 mKeyguardOccluded = true;
4713 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004714 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4715 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4716 return true;
4717 } else {
4718 return false;
4719 }
4720 }
4721
4722 private boolean isStatusBarKeyguard() {
4723 return mStatusBar != null
4724 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4725 }
4726
Jose Lima9546b202014-07-02 17:21:51 -07004727 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004728 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004729 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004730 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004731 return false;
4732 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004733 return true;
4734 }
4735
Jose Lima9546b202014-07-02 17:21:51 -07004736 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004737 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004738 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004739 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004740 // If the navigation bar has been hidden or shown, we need to do another
4741 // layout pass to update that window.
4742 return FINISH_LAYOUT_REDO_LAYOUT;
4743 }
4744 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004745 }
4746
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004747 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004748 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004749 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4750 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004751 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4752 if (newLidState == mLidState) {
4753 return;
4754 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004755
Jeff Brownc458ce92012-04-30 14:58:40 -07004756 mLidState = newLidState;
4757 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004758 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004759
4760 if (lidOpen) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004761 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch,
4762 "android.policy:LID");
Jeff Brownc458ce92012-04-30 14:58:40 -07004763 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004764 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004765 }
4766 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004767
Michael Wright3818c922014-09-02 13:59:07 -07004768 @Override
4769 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4770 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4771 if (mCameraLensCoverState == lensCoverState) {
4772 return;
4773 }
4774 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4775 lensCoverState == CAMERA_LENS_UNCOVERED) {
4776 Intent intent;
4777 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4778 mKeyguardDelegate.isShowing();
4779 if (keyguardActive) {
4780 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4781 } else {
4782 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4783 }
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004784 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens,
4785 "android.policy:CAMERA_COVER");
Bart Sears8b1c27c2015-03-18 23:51:02 +00004786 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004787 }
4788 mCameraLensCoverState = lensCoverState;
4789 }
4790
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004791 void setHdmiPlugged(boolean plugged) {
4792 if (mHdmiPlugged != plugged) {
4793 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004794 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004795 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004796 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004797 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004798 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004799 }
4800 }
4801
Joe Onoratoea495d42011-04-06 11:41:11 -07004802 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004803 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004804 // watch for HDMI plug messages if the hdmi switch exists
4805 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4806 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4807
Joe Onoratoea495d42011-04-06 11:41:11 -07004808 final String filename = "/sys/class/switch/hdmi/state";
4809 FileReader reader = null;
4810 try {
4811 reader = new FileReader(filename);
4812 char[] buf = new char[15];
4813 int n = reader.read(buf);
4814 if (n > 1) {
4815 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4816 }
4817 } catch (IOException ex) {
4818 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4819 } catch (NumberFormatException ex) {
4820 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4821 } finally {
4822 if (reader != null) {
4823 try {
4824 reader.close();
4825 } catch (IOException ex) {
4826 }
Joe Onoratodc100302011-01-11 17:07:41 -08004827 }
4828 }
4829 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004830 // This dance forces the code in setHdmiPlugged to run.
4831 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4832 mHdmiPlugged = !plugged;
4833 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004834 }
4835
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004836 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004837 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004838
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004839 final Runnable mScreenshotTimeout = new Runnable() {
4840 @Override public void run() {
4841 synchronized (mScreenshotLock) {
4842 if (mScreenshotConnection != null) {
4843 mContext.unbindService(mScreenshotConnection);
4844 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004845 }
Winson Chung9112ec32011-06-27 13:15:32 -07004846 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004847 }
4848 };
4849
4850 // Assume this is called from the Handler thread.
4851 private void takeScreenshot() {
4852 synchronized (mScreenshotLock) {
4853 if (mScreenshotConnection != null) {
4854 return;
4855 }
4856 ComponentName cn = new ComponentName("com.android.systemui",
4857 "com.android.systemui.screenshot.TakeScreenshotService");
4858 Intent intent = new Intent();
4859 intent.setComponent(cn);
4860 ServiceConnection conn = new ServiceConnection() {
4861 @Override
4862 public void onServiceConnected(ComponentName name, IBinder service) {
4863 synchronized (mScreenshotLock) {
4864 if (mScreenshotConnection != this) {
4865 return;
4866 }
4867 Messenger messenger = new Messenger(service);
4868 Message msg = Message.obtain(null, 1);
4869 final ServiceConnection myConn = this;
4870 Handler h = new Handler(mHandler.getLooper()) {
4871 @Override
4872 public void handleMessage(Message msg) {
4873 synchronized (mScreenshotLock) {
4874 if (mScreenshotConnection == myConn) {
4875 mContext.unbindService(mScreenshotConnection);
4876 mScreenshotConnection = null;
4877 mHandler.removeCallbacks(mScreenshotTimeout);
4878 }
4879 }
4880 }
4881 };
4882 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004883 msg.arg1 = msg.arg2 = 0;
4884 if (mStatusBar != null && mStatusBar.isVisibleLw())
4885 msg.arg1 = 1;
4886 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4887 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004888 try {
4889 messenger.send(msg);
4890 } catch (RemoteException e) {
4891 }
4892 }
4893 }
4894 @Override
4895 public void onServiceDisconnected(ComponentName name) {}
4896 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004897 if (mContext.bindServiceAsUser(
4898 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004899 mScreenshotConnection = conn;
4900 mHandler.postDelayed(mScreenshotTimeout, 10000);
4901 }
4902 }
Winson Chung9112ec32011-06-27 13:15:32 -07004903 }
4904
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004905 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004906 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004907 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004908 if (!mSystemBooted) {
4909 // If we have not yet booted, don't let key events do anything.
4910 return 0;
4911 }
4912
Jeff Brown037c33e2014-04-09 00:31:55 -07004913 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004914 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4915 final boolean canceled = event.isCanceled();
4916 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004917
Jeff Brown3122e442010-10-11 23:32:49 -07004918 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004919
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004920 // If screen is off then we treat the case where the keyguard is open but hidden
4921 // the same as if it were open and in front.
4922 // This will prevent any keys other than the power button from waking the screen
4923 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004924 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004925 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004926 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004927 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004928
Jeff Brown40013652012-05-16 21:22:36 -07004929 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004930 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004931 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004932 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004933 }
4934
Jeff Brown037c33e2014-04-09 00:31:55 -07004935 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004936 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004937 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4938 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004939 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004940 // When the device is interactive or the key is injected pass the
4941 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004942 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004943 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004944 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4945 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4946 // to the application but preserve its wake key status to make sure we still move
4947 // from dozing to fully interactive if we would normally go from off to fully
4948 // interactive.
4949 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004950 } else {
4951 // When the screen is off and the key is not injected, determine whether
4952 // to wake the device but don't pass the key to the application.
4953 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004954 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4955 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004956 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004957 }
4958
Justin Kohd378ad72013-04-01 12:18:26 -07004959 // If the key would be handled globally, just return the result, don't worry about special
4960 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004961 if (isValidGlobalKey(keyCode)
4962 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004963 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07004964 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Michael Wright85b1af62014-06-04 14:51:58 -07004965 }
Justin Kohd378ad72013-04-01 12:18:26 -07004966 return result;
4967 }
4968
Jeff Brownbae8e772014-06-12 19:59:45 -07004969 boolean useHapticFeedback = down
4970 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4971 && event.getRepeatCount() == 0;
4972
Jeff Brown4d396052010-10-29 21:50:21 -07004973 // Handle special keys.
4974 switch (keyCode) {
4975 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004976 case KeyEvent.KEYCODE_VOLUME_UP:
4977 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004978 if (mUseTvRouting) {
4979 // On TVs volume keys never go to the foreground app
4980 result &= ~ACTION_PASS_TO_USER;
4981 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004982 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4983 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004984 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004985 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004986 mScreenshotChordVolumeDownKeyTriggered = true;
4987 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4988 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004989 cancelPendingPowerKeyAction();
4990 interceptScreenshotChord();
4991 }
4992 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004993 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004994 cancelPendingScreenshotChordAction();
4995 }
4996 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4997 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004998 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004999 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005000 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005001 cancelPendingPowerKeyAction();
5002 cancelPendingScreenshotChordAction();
5003 }
5004 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005005 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07005006 cancelPendingScreenshotChordAction();
5007 }
5008 }
Jeff Brown4d396052010-10-29 21:50:21 -07005009 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005010 TelecomManager telecomManager = getTelecommService();
5011 if (telecomManager != null) {
5012 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005013 // If an incoming call is ringing, either VOLUME key means
5014 // "silence ringer". We handle these keys here, rather than
5015 // in the InCallScreen, to make sure we'll respond to them
5016 // even if the InCallScreen hasn't come to the foreground yet.
5017 // Look for the DOWN event here, to agree with the "fallback"
5018 // behavior in the InCallScreen.
5019 Log.i(TAG, "interceptKeyBeforeQueueing:"
5020 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07005021
Santos Cordon6848f722014-05-21 15:22:12 -07005022 // Silence the ringer. (It's safe to call this
5023 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005024 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07005025
Santos Cordon6848f722014-05-21 15:22:12 -07005026 // And *don't* pass this key thru to the current activity
5027 // (which is probably the InCallScreen.)
5028 result &= ~ACTION_PASS_TO_USER;
5029 break;
5030 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005031 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07005032 && (result & ACTION_PASS_TO_USER) == 0) {
5033 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07005034 // the application, just pass it to the session service.
5035
5036 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07005037 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07005038 break;
Jeff Brown4d396052010-10-29 21:50:21 -07005039 }
5040 }
5041
RoboErik430fc482014-06-12 15:49:20 -07005042 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08005043 if (mUseTvRouting) {
5044 dispatchDirectAudioEvent(event);
5045 } else {
5046 // If we aren't passing to the user and no one else
5047 // handled it send it to the session manager to
5048 // figure out.
5049 MediaSessionLegacyHelper.getHelper(mContext)
5050 .sendVolumeKeyEvent(event, true);
5051 }
Jeff Brown4d396052010-10-29 21:50:21 -07005052 break;
5053 }
5054 }
5055 break;
5056 }
5057
5058 case KeyEvent.KEYCODE_ENDCALL: {
5059 result &= ~ACTION_PASS_TO_USER;
5060 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005061 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07005062 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005063 if (telecomManager != null) {
5064 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07005065 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005066 if (interactive && !hungUp) {
5067 mEndCallKeyHandled = false;
5068 mHandler.postDelayed(mEndCallLongPress,
5069 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5070 } else {
5071 mEndCallKeyHandled = true;
5072 }
Jeff Brown4d396052010-10-29 21:50:21 -07005073 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005074 if (!mEndCallKeyHandled) {
5075 mHandler.removeCallbacks(mEndCallLongPress);
5076 if (!canceled) {
5077 if ((mEndcallBehavior
5078 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5079 if (goHome()) {
5080 break;
5081 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005082 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005083 if ((mEndcallBehavior
5084 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5085 mPowerManager.goToSleep(event.getEventTime(),
5086 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5087 isWakeKey = false;
5088 }
Jeff Brown4d396052010-10-29 21:50:21 -07005089 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005090 }
Jeff Brown4d396052010-10-29 21:50:21 -07005091 }
5092 break;
5093 }
5094
5095 case KeyEvent.KEYCODE_POWER: {
5096 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005097 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005098 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005099 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005100 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005101 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005102 }
5103 break;
5104 }
5105
Jeff Brown6212a492014-03-07 13:58:47 -08005106 case KeyEvent.KEYCODE_SLEEP: {
5107 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005108 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005109 if (!mPowerManager.isInteractive()) {
5110 useHapticFeedback = false; // suppress feedback if already non-interactive
5111 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005112 if (down) {
5113 sleepPress(event.getEventTime());
5114 } else {
5115 sleepRelease(event.getEventTime());
5116 }
Jeff Brown6212a492014-03-07 13:58:47 -08005117 break;
5118 }
5119
5120 case KeyEvent.KEYCODE_WAKEUP: {
5121 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005122 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005123 break;
5124 }
5125
Jeff Brown4d396052010-10-29 21:50:21 -07005126 case KeyEvent.KEYCODE_MEDIA_PLAY:
5127 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5128 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005129 case KeyEvent.KEYCODE_HEADSETHOOK:
5130 case KeyEvent.KEYCODE_MUTE:
5131 case KeyEvent.KEYCODE_MEDIA_STOP:
5132 case KeyEvent.KEYCODE_MEDIA_NEXT:
5133 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5134 case KeyEvent.KEYCODE_MEDIA_REWIND:
5135 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005136 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5137 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005138 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5139 // If the global session is active pass all media keys to it
5140 // instead of the active window.
5141 result &= ~ACTION_PASS_TO_USER;
5142 }
Jeff Brown4d396052010-10-29 21:50:21 -07005143 if ((result & ACTION_PASS_TO_USER) == 0) {
5144 // Only do this if we would otherwise not pass it to the user. In that
5145 // case, the PhoneWindow class will do the same thing, except it will
5146 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005147 // Note that we need to make a copy of the key event here because the
5148 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005149 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005150 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5151 new KeyEvent(event));
5152 msg.setAsynchronous(true);
5153 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005154 }
5155 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005156 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005157
Jeff Brown4d396052010-10-29 21:50:21 -07005158 case KeyEvent.KEYCODE_CALL: {
5159 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005160 TelecomManager telecomManager = getTelecommService();
5161 if (telecomManager != null) {
5162 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005163 Log.i(TAG, "interceptKeyBeforeQueueing:"
5164 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005165 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005166
Santos Cordon6848f722014-05-21 15:22:12 -07005167 // And *don't* pass this key thru to the current activity
5168 // (which is presumably the InCallScreen.)
5169 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005170 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005171 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005172 }
Jeff Brown4d396052010-10-29 21:50:21 -07005173 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005174 }
Michael Wright869a67c2014-08-26 19:33:06 -07005175 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5176 // Only do this if we would otherwise not pass it to the user. In that case,
5177 // interceptKeyBeforeDispatching would apply a similar but different policy in
5178 // order to invoke voice assist actions. Note that we need to make a copy of the
5179 // key event here because the original key event will be recycled when we return.
5180 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5181 mBroadcastWakeLock.acquire();
5182 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5183 keyguardActive ? 1 : 0, 0);
5184 msg.setAsynchronous(true);
5185 msg.sendToTarget();
5186 }
5187 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005188 }
Jeff Brown26875502014-01-30 21:47:47 -08005189
Jeff Brownbae8e772014-06-12 19:59:45 -07005190 if (useHapticFeedback) {
5191 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5192 }
5193
Jeff Brown26875502014-01-30 21:47:47 -08005194 if (isWakeKey) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005195 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey, "android.policy:KEY");
Jeff Brown26875502014-01-30 21:47:47 -08005196 }
Bryce Lee584a4452014-10-21 15:55:55 -07005197
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005198 return result;
5199 }
5200
Jeff Brown1c2e4942012-11-06 16:32:01 -08005201 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005202 * Returns true if the key can have global actions attached to it.
5203 * We reserve all power management keys for the system since they require
5204 * very careful handling.
5205 */
5206 private static boolean isValidGlobalKey(int keyCode) {
5207 switch (keyCode) {
5208 case KeyEvent.KEYCODE_POWER:
5209 case KeyEvent.KEYCODE_WAKEUP:
5210 case KeyEvent.KEYCODE_SLEEP:
5211 return false;
5212 default:
5213 return true;
5214 }
5215 }
5216
5217 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005218 * When the screen is off we ignore some keys that might otherwise typically
5219 * be considered wake keys. We filter them out here.
5220 *
5221 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5222 * is always considered a wake key.
5223 */
5224 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5225 switch (keyCode) {
5226 // ignore volume keys unless docked
5227 case KeyEvent.KEYCODE_VOLUME_UP:
5228 case KeyEvent.KEYCODE_VOLUME_DOWN:
5229 case KeyEvent.KEYCODE_VOLUME_MUTE:
5230 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5231
5232 // ignore media and camera keys
5233 case KeyEvent.KEYCODE_MUTE:
5234 case KeyEvent.KEYCODE_HEADSETHOOK:
5235 case KeyEvent.KEYCODE_MEDIA_PLAY:
5236 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5237 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5238 case KeyEvent.KEYCODE_MEDIA_STOP:
5239 case KeyEvent.KEYCODE_MEDIA_NEXT:
5240 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5241 case KeyEvent.KEYCODE_MEDIA_REWIND:
5242 case KeyEvent.KEYCODE_MEDIA_RECORD:
5243 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005244 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005245 case KeyEvent.KEYCODE_CAMERA:
5246 return false;
5247 }
5248 return true;
5249 }
5250
5251
Jeff Brown56194eb2011-03-02 19:23:13 -08005252 /** {@inheritDoc} */
5253 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005254 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5255 if ((policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005256 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion,
5257 "android.policy:MOTION")) {
Bryce Lee5c138322014-11-03 08:26:09 -08005258 return 0;
5259 }
Michael Wright70af00a2014-09-03 19:30:20 -07005260 }
Bryce Lee5c138322014-11-03 08:26:09 -08005261
Michael Wright70af00a2014-09-03 19:30:20 -07005262 if (shouldDispatchInputWhenNonInteractive()) {
5263 return ACTION_PASS_TO_USER;
5264 }
Bryce Lee5c138322014-11-03 08:26:09 -08005265
Bryce Lee812d7022014-11-10 13:33:28 -08005266 // If we have not passed the action up and we are in theater mode without dreaming,
5267 // there will be no dream to intercept the touch and wake into ambient. The device should
5268 // wake up in this case.
5269 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005270 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming,
5271 "android.policy:MOTION");
Bryce Lee812d7022014-11-10 13:33:28 -08005272 }
5273
Jeff Brown037c33e2014-04-09 00:31:55 -07005274 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005275 }
5276
Michael Wright70af00a2014-09-03 19:30:20 -07005277 private boolean shouldDispatchInputWhenNonInteractive() {
Michael Wright2ccf0c82015-08-04 23:03:03 +01005278 if (mDisplay == null || mDisplay.getState() == Display.STATE_OFF) {
5279 return false;
5280 }
5281 // Send events to keyguard while the screen is on and it's showing.
5282 if (isKeyguardShowingAndNotOccluded()) {
Bryce Lee5c138322014-11-03 08:26:09 -08005283 return true;
5284 }
5285
5286 // Send events to a dozing dream even if the screen is off since the dream
5287 // is in control of the state of the screen.
5288 IDreamManager dreamManager = getDreamManager();
5289
5290 try {
5291 if (dreamManager != null && dreamManager.isDreaming()) {
5292 return true;
5293 }
5294 } catch (RemoteException e) {
5295 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5296 }
5297
5298 // Otherwise, consume events since the user can't see what is being
5299 // interacted with.
5300 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005301 }
5302
RoboErik001c59c2015-01-26 15:53:51 -08005303 private void dispatchDirectAudioEvent(KeyEvent event) {
5304 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5305 return;
5306 }
5307 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005308 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5309 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005310 String pkgName = mContext.getOpPackageName();
5311 switch (keyCode) {
5312 case KeyEvent.KEYCODE_VOLUME_UP:
5313 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005314 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005315 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005316 } catch (RemoteException e) {
5317 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5318 }
5319 break;
5320 case KeyEvent.KEYCODE_VOLUME_DOWN:
5321 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005322 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005323 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005324 } catch (RemoteException e) {
5325 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5326 }
5327 break;
5328 case KeyEvent.KEYCODE_VOLUME_MUTE:
5329 try {
5330 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005331 getAudioService().adjustSuggestedStreamVolume(
5332 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005333 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005334 }
5335 } catch (RemoteException e) {
5336 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5337 }
5338 break;
5339 }
5340 }
5341
Jeff Brown40013652012-05-16 21:22:36 -07005342 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5343 if (DEBUG_INPUT) {
5344 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005345 }
5346
Jeff Brown40013652012-05-16 21:22:36 -07005347 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5348 if (DEBUG_INPUT) {
5349 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5350 }
5351
5352 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5353 mHavePendingMediaKeyRepeatWithWakeLock = false;
5354 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5355 }
5356
5357 dispatchMediaKeyWithWakeLockToAudioService(event);
5358
5359 if (event.getAction() == KeyEvent.ACTION_DOWN
5360 && event.getRepeatCount() == 0) {
5361 mHavePendingMediaKeyRepeatWithWakeLock = true;
5362
5363 Message msg = mHandler.obtainMessage(
5364 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5365 msg.setAsynchronous(true);
5366 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5367 } else {
5368 mBroadcastWakeLock.release();
5369 }
5370 }
5371
5372 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5373 mHavePendingMediaKeyRepeatWithWakeLock = false;
5374
5375 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5376 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5377 if (DEBUG_INPUT) {
5378 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5379 }
5380
5381 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5382 mBroadcastWakeLock.release();
5383 }
5384
5385 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5386 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005387 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005388 }
5389 }
5390
Michael Wright869a67c2014-08-26 19:33:06 -07005391 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005392 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5393 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5394 if (dic != null) {
5395 try {
5396 dic.exitIdle("voice-search");
5397 } catch (RemoteException e) {
5398 }
5399 }
Michael Wright869a67c2014-08-26 19:33:06 -07005400 Intent voiceIntent =
5401 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5402 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005403 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005404 mBroadcastWakeLock.release();
5405 }
5406
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005407 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005408 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005409 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005410 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5411 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5412 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005413 } else {
5414 try {
5415 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5416 ServiceManager.getService(Context.UI_MODE_SERVICE));
5417 mUiMode = uiModeService.getCurrentModeType();
5418 } catch (RemoteException e) {
5419 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005420 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005421 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005422 synchronized (mLock) {
5423 updateOrientationListenerLp();
5424 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005425 }
5426 };
5427
Jeff Brown6aaf2952012-10-05 16:01:08 -07005428 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5429 @Override
5430 public void onReceive(Context context, Intent intent) {
5431 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005432 if (mKeyguardDelegate != null) {
5433 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005434 }
5435 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005436 if (mKeyguardDelegate != null) {
5437 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005438 }
5439 }
5440 }
5441 };
5442
Christopher Tate5e08af02012-09-21 17:17:22 -07005443 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5444 @Override
5445 public void onReceive(Context context, Intent intent) {
5446 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5447 // tickle the settings observer: this first ensures that we're
5448 // observing the relevant settings for the newly-active user,
5449 // and then updates our own bookkeeping based on the now-
5450 // current user.
5451 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005452
5453 // force a re-application of focused window sysui visibility.
5454 // the window may never have been shown for this user
5455 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005456 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005457 mLastSystemUiFlags = 0;
5458 updateSystemUiVisibilityLw();
5459 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005460 }
5461 }
5462 };
5463
Adrian Roosddc8b272015-05-21 16:28:27 -07005464 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005465 @Override
5466 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005467 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5468 if (!isUserSetupComplete()) {
5469 // Swipe-up for navigation bar is disabled during setup
5470 return;
5471 }
5472 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5473 mNavigationBarController.showTransient();
5474 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005475 }
5476 };
5477
John Spurlocke1f366f2013-08-05 12:22:40 -04005478 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005479 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005480 if (!isUserSetupComplete()) {
5481 // Swipe-up for navigation bar is disabled during setup
5482 return;
5483 }
John Spurlock27735a42013-08-14 17:57:38 -04005484 boolean sb = mStatusBarController.checkShowTransientBarLw();
5485 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005486 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005487 // Don't show status bar when swiping on already visible navigation bar
5488 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005489 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005490 return;
5491 }
John Spurlock27735a42013-08-14 17:57:38 -04005492 if (sb) mStatusBarController.showTransient();
5493 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005494 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005495 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005496 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005497 }
5498 }
5499
Jeff Brown3ee549c2014-09-22 20:14:39 -07005500 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005501 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005502 public void startedGoingToSleep(int why) {
5503 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005504 if (mKeyguardDelegate != null) {
5505 mKeyguardDelegate.onStartedGoingToSleep(why);
5506 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005507 }
5508
5509 // Called on the PowerManager's Notifier thread.
5510 @Override
5511 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005512 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005513 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005514 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005515
5516 // We must get this work done here because the power manager will drop
5517 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005518 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005519 mAwake = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005520 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005521 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005522 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005523 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005524 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005525 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005526 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005527 }
5528
Jeff Brown3ee549c2014-09-22 20:14:39 -07005529 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005530 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005531 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005532 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005533 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005534
Jeff Brown3ee549c2014-09-22 20:14:39 -07005535 // Since goToSleep performs these functions synchronously, we must
5536 // do the same here. We cannot post this work to a handler because
5537 // that might cause it to become reordered with respect to what
5538 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005539 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005540 mAwake = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005541
Jeff Browna20dda42014-05-27 20:57:24 -07005542 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005543 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005544 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005545 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005546
Jim Miller5ecd8112013-01-09 18:50:26 -08005547 if (mKeyguardDelegate != null) {
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005548 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005549 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005550 }
5551
Jeff Brown416c49c2015-05-26 19:50:18 -07005552 // Called on the PowerManager's Notifier thread.
5553 @Override
5554 public void finishedWakingUp() {
5555 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5556 }
5557
5558 private void wakeUpFromPowerKey(long eventTime) {
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005559 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey, "android.policy:POWER");
Jeff Brown416c49c2015-05-26 19:50:18 -07005560 }
5561
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005562 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode, String reason) {
Bryce Leed3896842015-06-23 17:06:51 -07005563 final boolean theaterModeEnabled = isTheaterModeEnabled();
5564 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005565 return false;
5566 }
5567
Bryce Leed3896842015-06-23 17:06:51 -07005568 if (theaterModeEnabled) {
5569 Settings.Global.putInt(mContext.getContentResolver(),
5570 Settings.Global.THEATER_MODE_ON, 0);
5571 }
5572
Dianne Hackborn280a64e2015-07-13 14:48:08 -07005573 mPowerManager.wakeUp(wakeTime, reason);
Jeff Brown416c49c2015-05-26 19:50:18 -07005574 return true;
5575 }
5576
Jeff Brown36c4db82014-09-19 12:05:31 -07005577 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005578 synchronized (mLock) {
Jorim Jaggif3255482015-07-24 12:32:42 -07005579 if (!mScreenOnEarly || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005580 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005581 }
5582
Jeff Brown36c4db82014-09-19 12:05:31 -07005583 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005584 if (mKeyguardDelegate != null) {
5585 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5586 }
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005587 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005588 }
5589
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005590 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5591 // as well as enabling the orientation change logic/sensor.
5592 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5593 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005594 }
5595
5596 // Called on the DisplayManager's DisplayPowerController thread.
5597 @Override
5598 public void screenTurnedOff() {
5599 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5600
Jeff Brown48d1b142015-06-10 16:36:03 -07005601 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005602 synchronized (mLock) {
5603 mScreenOnEarly = false;
5604 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005605 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005606 mWindowManagerDrawComplete = false;
5607 mScreenOnListener = null;
5608 updateOrientationListenerLp();
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005609
5610 if (mKeyguardDelegate != null) {
5611 mKeyguardDelegate.onScreenTurnedOff();
5612 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005613 }
5614 }
5615
Jeff Brown3ee549c2014-09-22 20:14:39 -07005616 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005617 @Override
5618 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005619 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005620
Jeff Brown48d1b142015-06-10 16:36:03 -07005621 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005622 synchronized (mLock) {
5623 mScreenOnEarly = true;
5624 mScreenOnFully = false;
Jorim Jaggi95c6dae2015-07-29 15:17:23 -07005625 mKeyguardDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005626 mWindowManagerDrawComplete = false;
5627 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005628
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005629 if (mKeyguardDelegate != null) {
Jorim Jaggia4b51bc2015-08-10 18:20:43 -07005630 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5631 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005632 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5633 } else {
5634 if (DEBUG_WAKEUP) Slog.d(TAG,
5635 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5636 finishKeyguardDrawn();
5637 }
5638 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005639 }
5640
Jorim Jaggi0d210f62015-07-10 14:24:44 -07005641 // Called on the DisplayManager's DisplayPowerController thread.
5642 @Override
5643 public void screenTurnedOn() {
5644 synchronized (mLock) {
5645 if (mKeyguardDelegate != null) {
5646 mKeyguardDelegate.onScreenTurnedOn();
5647 }
5648 }
5649 }
5650
Jeff Brown36c4db82014-09-19 12:05:31 -07005651 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005652 synchronized (mLock) {
5653 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005654 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005655 }
5656
Jeff Brown36c4db82014-09-19 12:05:31 -07005657 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005658 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005659
5660 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005661 }
5662
Craig Mautner8a0da012014-05-31 15:13:37 -07005663 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005664 synchronized (mLock) {
5665 // We have just finished drawing screen content. Since the orientation listener
5666 // gets only installed when all windows are drawn, we try to install it again.
5667 updateOrientationListenerLp();
5668 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005669 final ScreenOnListener listener;
5670 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005671 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005672 if (DEBUG_WAKEUP) Slog.d(TAG,
5673 "finishScreenTurningOn: mAwake=" + mAwake
5674 + ", mScreenOnEarly=" + mScreenOnEarly
5675 + ", mScreenOnFully=" + mScreenOnFully
5676 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5677 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5678
5679 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5680 || (mAwake && !mKeyguardDrawComplete)) {
5681 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005682 }
5683
Jeff Brown3ee549c2014-09-22 20:14:39 -07005684 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5685 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005686 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005687 mScreenOnFully = true;
5688
5689 // Remember the first time we draw the keyguard so we know when we're done with
5690 // the main part of booting and can enable the screen and hide boot messages.
5691 if (!mKeyguardDrawnOnce && mAwake) {
5692 mKeyguardDrawnOnce = true;
5693 enableScreen = true;
5694 if (mBootMessageNeedsHiding) {
5695 mBootMessageNeedsHiding = false;
5696 hideBootMessages();
5697 }
5698 } else {
5699 enableScreen = false;
5700 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005701 }
5702
Jeff Brown3ee549c2014-09-22 20:14:39 -07005703 if (listener != null) {
5704 listener.onScreenOn();
5705 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005706
Jeff Brown3ee549c2014-09-22 20:14:39 -07005707 if (enableScreen) {
5708 try {
5709 mWindowManager.enableScreenIfNeeded();
5710 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005711 }
Craig Mautnera631d492014-08-05 15:16:01 -07005712 }
5713 }
5714
5715 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005716 synchronized (mLock) {
5717 if (!mKeyguardDrawnOnce) {
5718 mBootMessageNeedsHiding = true;
5719 return; // keyguard hasn't drawn the first time yet, not done booting
5720 }
Craig Mautnera631d492014-08-05 15:16:01 -07005721 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005722
5723 if (mBootMsgDialog != null) {
5724 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5725 mBootMsgDialog.dismiss();
5726 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005727 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005728 }
5729
5730 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005731 public boolean isScreenOn() {
5732 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005733 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005734
Dianne Hackborn08743722009-12-21 12:16:51 -08005735 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005736 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005737 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005738 if (mKeyguardDelegate != null) {
5739 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005740 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005741 }
5742
5743 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005744 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005745 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005746 if (mKeyguardDelegate != null) {
5747 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005748 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005749 }
5750
Jim Millerab954542014-10-10 18:21:49 -07005751 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005752 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005753 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005754 }
5755
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005756 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005757 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005758 public boolean isKeyguardLocked() {
5759 return keyguardOn();
5760 }
5761
5762 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005763 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005764 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005765 if (mKeyguardDelegate == null) return false;
5766 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005767 }
5768
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005769 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005770 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005771 public boolean isKeyguardShowingOrOccluded() {
5772 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5773 }
5774
5775 /** {@inheritDoc} */
5776 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005777 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005778 if (mKeyguardDelegate == null) return false;
5779 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005780 }
5781
Jose Lima9546b202014-07-02 17:21:51 -07005782 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005783 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005784 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005785 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005786 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005787 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005788 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005789 // ask the keyguard to prompt the user to authenticate if necessary
5790 mKeyguardDelegate.dismiss();
5791 }
5792 });
5793 }
5794 }
5795
5796 public void notifyActivityDrawnForKeyguardLw() {
5797 if (mKeyguardDelegate != null) {
5798 mHandler.post(new Runnable() {
5799 @Override
5800 public void run() {
5801 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005802 }
5803 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005804 }
5805 }
5806
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005807 @Override
5808 public boolean isKeyguardDrawnLw() {
5809 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005810 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005811 }
5812 }
5813
Jorim Jaggi0d674622014-05-21 01:34:15 +02005814 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005815 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005816 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005817 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005818 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005819 }
5820 }
5821
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005822 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005823 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005824 }
5825
5826 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005827 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005828 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005829
Jeff Brown01a98dd2011-09-20 15:08:29 -07005830 @Override
5831 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005832 if (false) {
5833 Slog.v(TAG, "rotationForOrientationLw(orient="
5834 + orientation + ", last=" + lastRotation
5835 + "); user=" + mUserRotation + " "
5836 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5837 ? "USER_ROTATION_LOCKED" : "")
5838 );
5839 }
5840
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005841 if (mForceDefaultOrientation) {
5842 return Surface.ROTATION_0;
5843 }
5844
The Android Open Source Project0727d222009-03-11 12:11:58 -07005845 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005846 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5847 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005848 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005849 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005850
Jeff Browndec6cf42011-11-15 14:08:20 -08005851 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005852 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005853 // Ignore sensor when lid switch is open and rotation is forced.
5854 preferredRotation = mLidOpenRotation;
5855 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005856 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005857 // Ignore sensor when in car dock unless explicitly enabled.
5858 // This case can override the behavior of NOSENSOR, and can also
5859 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005860 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005861 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005862 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5863 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5864 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005865 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005866 // Ignore sensor when in desk dock unless explicitly enabled.
5867 // This case can override the behavior of NOSENSOR, and can also
5868 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005869 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005870 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005871 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5872 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005873 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005874 preferredRotation = mDemoHdmiRotation;
5875 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5876 && mUndockedHdmiRotation >= 0) {
5877 // Ignore sensor when plugged into HDMI and an undocked orientation has
5878 // been specified in the configuration (only for legacy devices without
5879 // full multi-display support).
5880 // Note that the dock orientation overrides the HDMI orientation.
5881 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005882 } else if (mDemoRotationLock) {
5883 // Ignore sensor when demo rotation lock is enabled.
5884 // Note that the dock orientation and HDMI rotation lock override this.
5885 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005886 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5887 // Application just wants to remain locked in the last rotation.
5888 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005889 } else if (!mSupportAutoRotation) {
5890 // If we don't support auto-rotation then bail out here and ignore
5891 // the sensor and any rotation lock settings.
5892 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005893 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005894 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005895 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5896 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5897 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5898 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005899 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5900 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5901 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5902 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5903 // Otherwise, use sensor only if requested by the application or enabled
5904 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005905 if (mAllowAllRotations < 0) {
5906 // Can't read this during init() because the context doesn't
5907 // have display metrics at that time so we cannot determine
5908 // tablet vs. phone then.
5909 mAllowAllRotations = mContext.getResources().getBoolean(
5910 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5911 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005912 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005913 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005914 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5915 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005916 preferredRotation = sensorRotation;
5917 } else {
5918 preferredRotation = lastRotation;
5919 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005920 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5921 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5922 // Apply rotation lock. Does not apply to NOSENSOR.
5923 // The idea is that the user rotation expresses a weak preference for the direction
5924 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5925 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005926 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005927 } else {
5928 // No overriding preference.
5929 // We will do exactly what the application asked us to do.
5930 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005931 }
5932
Dianne Hackborne5439f22010-10-02 16:53:50 -07005933 switch (orientation) {
5934 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005935 // Return portrait unless overridden.
5936 if (isAnyPortrait(preferredRotation)) {
5937 return preferredRotation;
5938 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005939 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005940
Jeff Brown01a98dd2011-09-20 15:08:29 -07005941 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005942 // Return landscape unless overridden.
5943 if (isLandscapeOrSeascape(preferredRotation)) {
5944 return preferredRotation;
5945 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005946 return mLandscapeRotation;
5947
5948 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005949 // Return reverse portrait unless overridden.
5950 if (isAnyPortrait(preferredRotation)) {
5951 return preferredRotation;
5952 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005953 return mUpsideDownRotation;
5954
5955 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005956 // Return seascape unless overridden.
5957 if (isLandscapeOrSeascape(preferredRotation)) {
5958 return preferredRotation;
5959 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005960 return mSeascapeRotation;
5961
5962 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005963 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005964 // Return either landscape rotation.
5965 if (isLandscapeOrSeascape(preferredRotation)) {
5966 return preferredRotation;
5967 }
5968 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005969 return lastRotation;
5970 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005971 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005972
Jeff Brown01a98dd2011-09-20 15:08:29 -07005973 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005974 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005975 // Return either portrait rotation.
5976 if (isAnyPortrait(preferredRotation)) {
5977 return preferredRotation;
5978 }
5979 if (isAnyPortrait(lastRotation)) {
5980 return lastRotation;
5981 }
5982 return mPortraitRotation;
5983
5984 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005985 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5986 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005987 if (preferredRotation >= 0) {
5988 return preferredRotation;
5989 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005990 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005991 }
5992 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005993 }
5994
Jeff Brown01a98dd2011-09-20 15:08:29 -07005995 @Override
5996 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5997 switch (orientation) {
5998 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5999 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
6000 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
6001 return isAnyPortrait(rotation);
6002
6003 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
6004 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
6005 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
6006 return isLandscapeOrSeascape(rotation);
6007
6008 default:
6009 return true;
6010 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07006011 }
6012
Jeff Brownc0347aa2011-09-23 17:26:09 -07006013 @Override
6014 public void setRotationLw(int rotation) {
6015 mOrientationListener.setCurrentRotation(rotation);
6016 }
6017
Jeff Brown01a98dd2011-09-20 15:08:29 -07006018 private boolean isLandscapeOrSeascape(int rotation) {
6019 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006020 }
6021
Jeff Brown01a98dd2011-09-20 15:08:29 -07006022 private boolean isAnyPortrait(int rotation) {
6023 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07006024 }
6025
Jose Lima9546b202014-07-02 17:21:51 -07006026 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006027 public int getUserRotationMode() {
6028 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07006029 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
6030 WindowManagerPolicy.USER_ROTATION_FREE :
6031 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08006032 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006033
6034 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07006035 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006036 public void setUserRotationMode(int mode, int rot) {
6037 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006038
6039 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006040 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07006041 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006042 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006043 rot,
6044 UserHandle.USER_CURRENT);
6045 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006046 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006047 0,
6048 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006049 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07006050 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006051 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07006052 1,
6053 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04006054 }
6055 }
6056
Jose Lima9546b202014-07-02 17:21:51 -07006057 @Override
Jeff Brownac143512012-04-05 18:57:33 -07006058 public void setSafeMode(boolean safeMode) {
6059 mSafeMode = safeMode;
6060 performHapticFeedbackLw(null, safeMode
6061 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
6062 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006063 }
Craig Mautnereda67292013-04-28 13:50:14 -07006064
Dianne Hackborn181ceb52009-08-27 22:16:40 -07006065 static long[] getLongIntArray(Resources r, int resid) {
6066 int[] ar = r.getIntArray(resid);
6067 if (ar == null) {
6068 return null;
6069 }
6070 long[] out = new long[ar.length];
6071 for (int i=0; i<ar.length; i++) {
6072 out[i] = ar[i];
6073 }
6074 return out;
6075 }
Craig Mautnereda67292013-04-28 13:50:14 -07006076
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006077 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006078 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006079 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07006080 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08006081 mKeyguardDelegate.onSystemReady();
6082
Michael Wright3818c922014-09-02 13:59:07 -07006083 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07006084 updateUiMode();
Adrian Roos3542f7d2015-07-13 15:57:53 -07006085 boolean bindKeyguardNow;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006086 synchronized (mLock) {
6087 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006088 mSystemReady = true;
6089 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006090 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006091 public void run() {
6092 updateSettings();
6093 }
6094 });
Adrian Roos3542f7d2015-07-13 15:57:53 -07006095
6096 bindKeyguardNow = mDeferBindKeyguard;
6097 if (bindKeyguardNow) {
6098 // systemBooted ran but wasn't able to bind to the Keyguard, we'll do it now.
6099 mDeferBindKeyguard = false;
6100 }
6101 }
6102
6103 if (bindKeyguardNow) {
6104 mKeyguardDelegate.bindService(mContext);
6105 mKeyguardDelegate.onBootCompleted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006106 }
6107 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006108
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006109 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006110 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006111 public void systemBooted() {
Adrian Roos3542f7d2015-07-13 15:57:53 -07006112 boolean bindKeyguardNow = false;
6113 synchronized (mLock) {
6114 // Time to bind Keyguard; take care to only bind it once, either here if ready or
6115 // in systemReady if not.
6116 if (mKeyguardDelegate != null) {
6117 bindKeyguardNow = true;
6118 } else {
6119 // Because mKeyguardDelegate is null, we know that the synchronized block in
6120 // systemReady didn't run yet and setting this will actually have an effect.
6121 mDeferBindKeyguard = true;
6122 }
6123 }
6124 if (bindKeyguardNow) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006125 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006126 mKeyguardDelegate.onBootCompleted();
6127 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006128 synchronized (mLock) {
6129 mSystemBooted = true;
6130 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006131 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006132 screenTurningOn(null);
Jorim Jaggic0496072015-08-19 15:14:52 -07006133 screenTurnedOn();
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006134 }
6135
Dianne Hackborn661cd522011-08-22 00:26:20 -07006136 ProgressDialog mBootMsgDialog = null;
6137
6138 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006139 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006140 public void showBootMessage(final CharSequence msg, final boolean always) {
6141 mHandler.post(new Runnable() {
6142 @Override public void run() {
6143 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006144 int theme;
6145 if (mContext.getPackageManager().hasSystemFeature(
6146 PackageManager.FEATURE_WATCH)) {
6147 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6148 } else if (mContext.getPackageManager().hasSystemFeature(
6149 PackageManager.FEATURE_TELEVISION)) {
6150 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6151 } else {
6152 theme = 0;
6153 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006154
6155 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006156 // This dialog will consume all events coming in to
6157 // it, to avoid it trying to do things too early in boot.
6158 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6159 return true;
6160 }
6161 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6162 return true;
6163 }
6164 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6165 return true;
6166 }
6167 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6168 return true;
6169 }
6170 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6171 return true;
6172 }
6173 @Override public boolean dispatchPopulateAccessibilityEvent(
6174 AccessibilityEvent event) {
6175 return true;
6176 }
6177 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006178 if (mContext.getPackageManager().isUpgrade()) {
6179 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6180 } else {
6181 mBootMsgDialog.setTitle(R.string.android_start_title);
6182 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006183 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6184 mBootMsgDialog.setIndeterminate(true);
6185 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006186 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006187 mBootMsgDialog.getWindow().addFlags(
6188 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6189 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6190 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006191 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6192 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6193 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006194 mBootMsgDialog.setCancelable(false);
6195 mBootMsgDialog.show();
6196 }
6197 mBootMsgDialog.setMessage(msg);
6198 }
6199 });
6200 }
6201
6202 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006203 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006204 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006205 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006206 }
6207
Mike Lockwood28569302010-01-28 11:54:40 -05006208 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006209 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006210 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006211 // ***************************************
6212 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6213 // ***************************************
6214 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6215 // WITH ITS LOCKS HELD.
6216 //
6217 // This code must be VERY careful about the locks
6218 // it acquires.
6219 // In fact, the current code acquires way too many,
6220 // and probably has lurking deadlocks.
6221
Mike Lockwood28569302010-01-28 11:54:40 -05006222 synchronized (mScreenLockTimeout) {
6223 if (mLockScreenTimerActive) {
6224 // reset the timer
6225 mHandler.removeCallbacks(mScreenLockTimeout);
6226 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6227 }
6228 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006229 }
6230
Adam Cohenf7522022012-10-03 20:03:18 -07006231 class ScreenLockTimeout implements Runnable {
6232 Bundle options;
6233
6234 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006235 public void run() {
6236 synchronized (this) {
6237 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006238 if (mKeyguardDelegate != null) {
6239 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006240 }
Mike Lockwood28569302010-01-28 11:54:40 -05006241 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006242 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006243 }
6244 }
Mike Lockwood28569302010-01-28 11:54:40 -05006245
Adam Cohenf7522022012-10-03 20:03:18 -07006246 public void setLockOptions(Bundle options) {
6247 this.options = options;
6248 }
6249 }
6250
6251 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6252
Jose Lima9546b202014-07-02 17:21:51 -07006253 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006254 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006255 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6256 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006257 if (options != null) {
6258 // In case multiple calls are made to lockNow, we don't wipe out the options
6259 // until the runnable actually executes.
6260 mScreenLockTimeout.setLockOptions(options);
6261 }
Jim Miller93c518e2012-01-17 15:55:31 -08006262 mHandler.post(mScreenLockTimeout);
6263 }
6264
Mike Lockwood28569302010-01-28 11:54:40 -05006265 private void updateLockScreenTimeout() {
6266 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006267 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006268 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006269 if (mLockScreenTimerActive != enable) {
6270 if (enable) {
6271 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6272 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6273 } else {
6274 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6275 mHandler.removeCallbacks(mScreenLockTimeout);
6276 }
6277 mLockScreenTimerActive = enable;
6278 }
6279 }
6280 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006281
Jeff Brown061ea992015-04-17 19:55:47 -07006282 private void updateDreamingSleepToken(boolean acquire) {
6283 if (acquire) {
6284 if (mDreamingSleepToken == null) {
6285 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6286 }
6287 } else {
6288 if (mDreamingSleepToken != null) {
6289 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006290 mDreamingSleepToken = null;
6291 }
6292 }
6293 }
6294
6295 private void updateScreenOffSleepToken(boolean acquire) {
6296 if (acquire) {
6297 if (mScreenOffSleepToken == null) {
6298 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6299 }
6300 } else {
6301 if (mScreenOffSleepToken != null) {
6302 mScreenOffSleepToken.release();
6303 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006304 }
6305 }
6306 }
6307
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006308 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006309 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006310 public void enableScreenAfterBoot() {
6311 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006312 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006313 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006314 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006315
Jeff Brownc458ce92012-04-30 14:58:40 -07006316 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006317 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006318 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006319 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006320 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006321 }
Jeff Browna20dda42014-05-27 20:57:24 -07006322
6323 synchronized (mLock) {
6324 updateWakeGestureListenerLp();
6325 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006326 }
6327
Jeff Brown4f5fa282014-06-12 19:19:15 -07006328 void updateUiMode() {
6329 if (mUiModeManager == null) {
6330 mUiModeManager = IUiModeManager.Stub.asInterface(
6331 ServiceManager.getService(Context.UI_MODE_SERVICE));
6332 }
6333 try {
6334 mUiMode = mUiModeManager.getCurrentModeType();
6335 } catch (RemoteException e) {
6336 }
6337 }
6338
Jeff Brown01a98dd2011-09-20 15:08:29 -07006339 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006340 try {
6341 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006342 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6343 } catch (RemoteException e) {
6344 // Ignore
6345 }
6346 }
6347
6348 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6349 try {
6350 //set orientation on WindowManager
6351 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006352 } catch (RemoteException e) {
6353 // Ignore
6354 }
6355 }
6356
Daniel Sandler6396c722013-04-16 20:19:09 -04006357 /**
6358 * Return an Intent to launch the currently active dock app as home. Returns
6359 * null if the standard home should be launched, which is the case if any of the following is
6360 * true:
6361 * <ul>
6362 * <li>The device is not in either car mode or desk mode
6363 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6364 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6365 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6366 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6367 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006368 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006369 */
6370 Intent createHomeDockIntent() {
6371 Intent intent = null;
6372
6373 // What home does is based on the mode, not the dock state. That
6374 // is, when in car mode you should be taken to car home regardless
6375 // of whether we are actually in a car dock.
6376 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6377 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6378 intent = mCarDockIntent;
6379 }
6380 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6381 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6382 intent = mDeskDockIntent;
6383 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006384 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6385 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6386 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6387 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6388 // Always launch dock home from home when watch is docked, if it exists.
6389 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006390 }
6391
6392 if (intent == null) {
6393 return null;
6394 }
6395
6396 ActivityInfo ai = null;
6397 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6398 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006399 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006400 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006401 if (info != null) {
6402 ai = info.activityInfo;
6403 }
6404 if (ai != null
6405 && ai.metaData != null
6406 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6407 intent = new Intent(intent);
6408 intent.setClassName(ai.packageName, ai.name);
6409 return intent;
6410 }
6411
6412 return null;
6413 }
6414
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006415 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6416 if (awakenFromDreams) {
6417 awakenDreams();
6418 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006419
6420 Intent dock = createHomeDockIntent();
6421 if (dock != null) {
6422 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006423 if (fromHomeKey) {
6424 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6425 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006426 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006427 return;
6428 } catch (ActivityNotFoundException e) {
6429 }
6430 }
6431
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006432 Intent intent;
6433
6434 if (fromHomeKey) {
6435 intent = new Intent(mHomeIntent);
6436 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6437 } else {
6438 intent = mHomeIntent;
6439 }
6440
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006441 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006442 }
Craig Mautnereda67292013-04-28 13:50:14 -07006443
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006444 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006445 * goes to the home screen
6446 * @return whether it did anything
6447 */
6448 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006449 if (!isUserSetupComplete()) {
6450 Slog.i(TAG, "Not going home because user setup is in progress.");
6451 return false;
6452 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006453 if (false) {
6454 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006455 try {
6456 ActivityManagerNative.getDefault().stopAppSwitches();
6457 } catch (RemoteException e) {
6458 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006459 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006460 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006461 } else {
6462 // This code brings home to the front or, if it is already
6463 // at the front, puts the device to sleep.
6464 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006465 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6466 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6467 Log.d(TAG, "UTS-TEST-MODE");
6468 } else {
6469 ActivityManagerNative.getDefault().stopAppSwitches();
6470 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006471 Intent dock = createHomeDockIntent();
6472 if (dock != null) {
6473 int result = ActivityManagerNative.getDefault()
6474 .startActivityAsUser(null, null, dock,
6475 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6476 null, null, 0,
6477 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006478 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006479 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6480 return false;
6481 }
6482 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006483 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006484 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006485 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006486 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006487 null, null, 0,
6488 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006489 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006490 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006491 return false;
6492 }
6493 } catch (RemoteException ex) {
6494 // bummer, the activity manager, which is in this process, is dead
6495 }
6496 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006497 return true;
6498 }
Craig Mautnereda67292013-04-28 13:50:14 -07006499
6500 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006501 public void setCurrentOrientationLw(int newOrientation) {
6502 synchronized (mLock) {
6503 if (newOrientation != mCurrentAppOrientation) {
6504 mCurrentAppOrientation = newOrientation;
6505 updateOrientationListenerLp();
6506 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006507 }
6508 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006509
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006510 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6511 if (!isGlobalAccessibilityGestureEnabled()) {
6512 return;
6513 }
6514 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6515 Context.AUDIO_SERVICE);
6516 if (audioManager.isSilentMode()) {
6517 return;
6518 }
6519 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6520 Settings.System.DEFAULT_NOTIFICATION_URI);
6521 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6522 ringTone.play();
6523 }
Craig Mautnereda67292013-04-28 13:50:14 -07006524
Bryce Lee584a4452014-10-21 15:55:55 -07006525 private boolean isTheaterModeEnabled() {
6526 return Settings.Global.getInt(mContext.getContentResolver(),
6527 Settings.Global.THEATER_MODE_ON, 0) == 1;
6528 }
6529
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006530 private boolean isGlobalAccessibilityGestureEnabled() {
6531 return Settings.Global.getInt(mContext.getContentResolver(),
6532 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6533 }
6534
Craig Mautnereda67292013-04-28 13:50:14 -07006535 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006536 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006537 if (!mVibrator.hasVibrator()) {
6538 return false;
6539 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006540 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6541 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006542 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006543 return false;
6544 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006545 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006546 switch (effectId) {
6547 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006548 pattern = mLongPressVibePattern;
6549 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006550 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006551 pattern = mVirtualKeyVibePattern;
6552 break;
6553 case HapticFeedbackConstants.KEYBOARD_TAP:
6554 pattern = mKeyboardTapVibePattern;
6555 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006556 case HapticFeedbackConstants.CLOCK_TICK:
6557 pattern = mClockTickVibePattern;
6558 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006559 case HapticFeedbackConstants.CALENDAR_DATE:
6560 pattern = mCalendarDateVibePattern;
6561 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006562 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006563 pattern = mSafeModeDisabledVibePattern;
6564 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006565 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006566 pattern = mSafeModeEnabledVibePattern;
6567 break;
Mady Mellore8608912015-06-05 09:02:55 -07006568 case HapticFeedbackConstants.CONTEXT_CLICK:
6569 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006570 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006571 default:
6572 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006573 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006574 int owningUid;
6575 String owningPackage;
6576 if (win != null) {
6577 owningUid = win.getOwningUid();
6578 owningPackage = win.getOwningPackage();
6579 } else {
6580 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006581 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006582 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006583 if (pattern.length == 1) {
6584 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006585 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006586 } else {
6587 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006588 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006589 }
6590 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006591 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006592
6593 @Override
6594 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006595 }
6596
Jeff Brownc38c9be2012-10-04 13:16:19 -07006597 @Override
6598 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006599 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006600 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006601 }
6602 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006603
Dianne Hackborndf89e652011-10-06 22:35:11 -07006604 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006605 // If there is no window focused, there will be nobody to handle the events
6606 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006607 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6608 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006609 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006610 return 0;
6611 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006612 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006613 // We are updating at a point where the keyguard has gotten
6614 // focus, but we were last in a state where the top window is
6615 // hiding it. This is probably because the keyguard as been
6616 // shown while the top window was displayed, so we want to ignore
6617 // it here because this is just a very transient change and it
6618 // will quickly lose focus once it correctly gets hidden.
6619 return 0;
6620 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006621
John Spurlock1db8b682014-02-18 11:18:59 -05006622 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006623 & ~mResettingSystemUiFlags
6624 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006625 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006626 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006627 }
Thanh Hai Mai6c009f52015-09-01 16:27:32 -07006628
6629 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6630 tmpVisibility |= StatusBarManager.DISABLE_RECENT;
6631 }
6632
Adrian Rooscd3884d2015-02-18 17:25:23 +01006633 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006634 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006635 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006636 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006637 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006638 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006639 return 0;
6640 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006641 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006642 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006643 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006644 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006645 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006646 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006647 try {
6648 IStatusBarService statusbar = getStatusBarService();
6649 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006650 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006651 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006652 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006653 } catch (RemoteException e) {
6654 // re-acquire status bar service next time it is needed.
6655 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006656 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006657 }
6658 });
6659 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006660 }
6661
Adrian Rooscd3884d2015-02-18 17:25:23 +01006662 private int updateLightStatusBarLw(int vis) {
6663 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6664 ? mStatusBar
6665 : mTopFullscreenOpaqueOrDimmingWindowState;
6666
6667 if (statusColorWin != null) {
6668 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6669 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6670 // its light flag.
6671 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6672 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6673 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6674 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6675 // Otherwise if it's dimming, clear the light flag.
6676 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6677 }
6678 }
6679 return vis;
6680 }
6681
John Spurlock79da8332013-09-20 12:04:47 -04006682 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006683 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006684 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6685 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006686 : mTopFullscreenOpaqueWindowState;
6687 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6688 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6689
John Spurlock27735a42013-08-14 17:57:38 -04006690 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006691 int type = win.getAttrs().type;
6692 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006693 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006694 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6695 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006696 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006697 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6698 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006699 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006700 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6701 }
John Spurlockbd957402013-10-03 11:38:39 -04006702 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006703 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006704
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006705 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006706 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6707 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006708 }
6709
John Spurlock27735a42013-08-14 17:57:38 -04006710 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006711 boolean immersiveSticky =
6712 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006713 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006714 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006715 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006716 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6717 boolean hideStatusBarSysui =
6718 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006719 boolean hideNavBarSysui =
6720 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006721
John Spurlock27735a42013-08-14 17:57:38 -04006722 boolean transientStatusBarAllowed =
6723 mStatusBar != null && (
6724 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006725 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006726 || statusBarHasFocus);
6727
John Spurlockf1a36642013-10-12 17:50:42 -04006728 boolean transientNavBarAllowed =
6729 mNavigationBar != null &&
6730 hideNavBarSysui && immersiveSticky;
6731
Adrian Roosddc8b272015-05-21 16:28:27 -07006732 final long now = SystemClock.uptimeMillis();
6733 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6734 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6735 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6736 // The user performed the panic gesture recently, we're about to hide the bars,
6737 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6738 mPendingPanicGestureUptime = 0;
6739 mStatusBarController.showTransient();
6740 mNavigationBarController.showTransient();
6741 }
6742
John Spurlockf25706f2013-11-07 18:02:43 -05006743 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006744 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006745 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006746 && !transientNavBarAllowed;
6747 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006748 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006749 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006750 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006751 }
John Spurlock27735a42013-08-14 17:57:38 -04006752
Selim Cinekf98702e2015-05-20 22:48:40 -07006753 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6754 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6755 final boolean navAllowedHidden = immersive || immersiveSticky;
6756
Selim Cinekd6623612015-05-22 18:56:22 -07006757 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6758 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006759 // We can't hide the navbar from this window otherwise the input consumer would not get
6760 // the input events.
6761 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6762 }
6763
John Spurlock27735a42013-08-14 17:57:38 -04006764 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6765
6766 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006767 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6768 boolean newImmersiveMode = isImmersiveMode(vis);
6769 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006770 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006771 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6772 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006773 }
John Spurlock27735a42013-08-14 17:57:38 -04006774
John Spurlockf1a36642013-10-12 17:50:42 -04006775 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6776
John Spurlocke1f366f2013-08-05 12:22:40 -04006777 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006778 }
6779
John Spurlockf1a36642013-10-12 17:50:42 -04006780 private void clearClearableFlagsLw() {
6781 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6782 if (newVal != mResettingSystemUiFlags) {
6783 mResettingSystemUiFlags = newVal;
6784 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6785 }
6786 }
6787
6788 private boolean isImmersiveMode(int vis) {
6789 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006790 return mNavigationBar != null
6791 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006792 && (vis & flags) != 0
6793 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006794 }
6795
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006796 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006797 * @return whether the navigation or status bar can be made translucent
6798 *
6799 * This should return true unless touch exploration is not enabled or
6800 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006801 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006802 private boolean areTranslucentBarsAllowed() {
Alan Viverette817f3cd2015-08-13 11:40:14 -04006803 return mTranslucentDecorEnabled;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006804 }
6805
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006806 // Use this instead of checking config_showNavigationBar so that it can be consistently
6807 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006808 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006809 public boolean hasNavigationBar() {
6810 return mHasNavigationBar;
6811 }
6812
satok1bc0a492012-04-25 22:47:12 +09006813 @Override
6814 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6815 mLastInputMethodWindow = ime;
6816 mLastInputMethodTargetWindow = target;
6817 }
6818
Craig Mautnerf1b67412012-09-19 13:18:29 -07006819 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006820 public int getInputMethodWindowVisibleHeightLw() {
6821 return mDockBottom - mCurBottom;
6822 }
6823
6824 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006825 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006826 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006827 if (mKeyguardDelegate != null) {
6828 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006829 }
John Spurlock13451a22012-09-28 14:40:41 -04006830 if (mStatusBarService != null) {
6831 try {
6832 mStatusBarService.setCurrentUser(newUserId);
6833 } catch (RemoteException e) {
6834 // oh well
6835 }
6836 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006837 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006838 }
6839
6840 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006841 public boolean canMagnifyWindow(int windowType) {
6842 switch (windowType) {
6843 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6844 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6845 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6846 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6847 return false;
6848 }
6849 }
6850 return true;
6851 }
6852
6853 @Override
6854 public boolean isTopLevelWindow(int windowType) {
6855 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6856 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6857 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6858 }
6859 return true;
6860 }
6861
Jim Miller4eeb4f62012-11-08 00:04:29 -08006862 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006863 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006864 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006865 pw.print(" mSystemReady="); pw.print(mSystemReady);
6866 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006867 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006868 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006869 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006870 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006871 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6872 || mForceClearedSystemUiFlags != 0) {
6873 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6874 pw.print(Integer.toHexString(mLastSystemUiFlags));
6875 pw.print(" mResettingSystemUiFlags=0x");
6876 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6877 pw.print(" mForceClearedSystemUiFlags=0x");
6878 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006879 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006880 if (mLastFocusNeedsMenu) {
6881 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6882 pw.println(mLastFocusNeedsMenu);
6883 }
Jeff Browna20dda42014-05-27 20:57:24 -07006884 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6885 pw.println(mWakeGestureEnabledSetting);
6886
Jeff Brownbcdfc622014-03-06 19:13:04 -08006887 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006888 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6889 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006890 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6891 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6892 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6893 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006894 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006895 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006896 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6897 pw.print(mCarDockEnablesAccelerometer);
6898 pw.print(" mDeskDockEnablesAccelerometer=");
6899 pw.println(mDeskDockEnablesAccelerometer);
6900 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6901 pw.print(mLidKeyboardAccessibility);
6902 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006903 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006904 pw.print(prefix);
6905 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6906 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006907 pw.print(prefix);
6908 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6909 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006910 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006911 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6912 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6913 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6914 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6915 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6916 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6917 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006918 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6919 pw.print(","); pw.print(mOverscanScreenTop);
6920 pw.print(") "); pw.print(mOverscanScreenWidth);
6921 pw.print("x"); pw.println(mOverscanScreenHeight);
6922 if (mOverscanLeft != 0 || mOverscanTop != 0
6923 || mOverscanRight != 0 || mOverscanBottom != 0) {
6924 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6925 pw.print(" top="); pw.print(mOverscanTop);
6926 pw.print(" right="); pw.print(mOverscanRight);
6927 pw.print(" bottom="); pw.println(mOverscanBottom);
6928 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006929 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6930 pw.print(mRestrictedOverscanScreenLeft);
6931 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6932 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6933 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006934 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6935 pw.print(","); pw.print(mUnrestrictedScreenTop);
6936 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6937 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6938 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6939 pw.print(","); pw.print(mRestrictedScreenTop);
6940 pw.print(") "); pw.print(mRestrictedScreenWidth);
6941 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006942 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6943 pw.print(","); pw.print(mStableFullscreenTop);
6944 pw.print(")-("); pw.print(mStableFullscreenRight);
6945 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006946 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6947 pw.print(","); pw.print(mStableTop);
6948 pw.print(")-("); pw.print(mStableRight);
6949 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006950 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6951 pw.print(","); pw.print(mSystemTop);
6952 pw.print(")-("); pw.print(mSystemRight);
6953 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006954 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6955 pw.print(","); pw.print(mCurTop);
6956 pw.print(")-("); pw.print(mCurRight);
6957 pw.print(","); pw.print(mCurBottom); pw.println(")");
6958 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6959 pw.print(","); pw.print(mContentTop);
6960 pw.print(")-("); pw.print(mContentRight);
6961 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006962 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6963 pw.print(","); pw.print(mVoiceContentTop);
6964 pw.print(")-("); pw.print(mVoiceContentRight);
6965 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006966 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6967 pw.print(","); pw.print(mDockTop);
6968 pw.print(")-("); pw.print(mDockRight);
6969 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006970 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6971 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006972 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6973 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006974 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6975 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006976 if (mLastInputMethodWindow != null) {
6977 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6978 pw.println(mLastInputMethodWindow);
6979 }
6980 if (mLastInputMethodTargetWindow != null) {
6981 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6982 pw.println(mLastInputMethodTargetWindow);
6983 }
6984 if (mStatusBar != null) {
6985 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006986 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6987 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006988 }
6989 if (mNavigationBar != null) {
6990 pw.print(prefix); pw.print("mNavigationBar=");
6991 pw.println(mNavigationBar);
6992 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006993 if (mFocusedWindow != null) {
6994 pw.print(prefix); pw.print("mFocusedWindow=");
6995 pw.println(mFocusedWindow);
6996 }
6997 if (mFocusedApp != null) {
6998 pw.print(prefix); pw.print("mFocusedApp=");
6999 pw.println(mFocusedApp);
7000 }
7001 if (mWinDismissingKeyguard != null) {
7002 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
7003 pw.println(mWinDismissingKeyguard);
7004 }
7005 if (mTopFullscreenOpaqueWindowState != null) {
7006 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
7007 pw.println(mTopFullscreenOpaqueWindowState);
7008 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01007009 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
7010 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
7011 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
7012 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08007013 if (mForcingShowNavBar) {
7014 pw.print(prefix); pw.print("mForcingShowNavBar=");
7015 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
7016 pw.println(mForcingShowNavBarLayer);
7017 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07007018 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007019 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07007020 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
7021 pw.print(" mForceStatusBarFromKeyguard=");
7022 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007023 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07007024 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007025 pw.print(" mHomePressed="); pw.println(mHomePressed);
7026 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
7027 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
7028 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
7029 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
7030 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
7031 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
7032 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
7033 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
7034 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
7035 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07007036 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
7037 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
7038 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07007039
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07007040 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04007041 mStatusBarController.dump(pw, prefix);
7042 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05007043 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07007044
Jeff Browna20dda42014-05-27 20:57:24 -07007045 if (mWakeGestureListener != null) {
7046 mWakeGestureListener.dump(pw, prefix);
7047 }
Jeff Brown600f0032014-05-22 17:06:00 -07007048 if (mOrientationListener != null) {
7049 mOrientationListener.dump(pw, prefix);
7050 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00007051 if (mBurnInProtectionHelper != null) {
7052 mBurnInProtectionHelper.dump(prefix, pw);
7053 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08007054 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08007055}