blob: 68acd9c0760c283f9f6e523ac487bd94d5abb4e3 [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;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700128import java.util.HashSet;
Craig Mautner276a6eb2014-11-04 15:32:57 -0800129import java.util.List;
Craig Mautnerae446592012-12-06 19:05:05 -0800130
Dianne Hackbornc652de82013-02-15 16:32:56 -0800131import static android.view.WindowManager.LayoutParams.*;
Jeff Brownac143512012-04-05 18:57:33 -0700132import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
133import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
134import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
Michael Wright3818c922014-09-02 13:59:07 -0700135import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
136import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
137import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
Dianne Hackborn08743722009-12-21 12:16:51 -0800138
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800139/**
The Android Open Source Project0727d222009-03-11 12:11:58 -0700140 * WindowManagerPolicy implementation for the Android phone UI. This
141 * introduces a new method suffix, Lp, for an internal lock of the
142 * PhoneWindowManager. This is used to protect some internal state, and
John Spurlock04db1762013-05-13 12:46:41 -0400143 * 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 -0700144 * of both of those when held.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800145 */
146public class PhoneWindowManager implements WindowManagerPolicy {
147 static final String TAG = "WindowManager";
148 static final boolean DEBUG = false;
Joe Onorato43a17652011-04-06 19:22:23 -0700149 static final boolean localLOGV = false;
Jeff Brown40013652012-05-16 21:22:36 -0700150 static final boolean DEBUG_INPUT = false;
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -0700151 static final boolean DEBUG_KEYGUARD = false;
152 static final boolean DEBUG_LAYOUT = false;
Craig Mautner6fbda632012-07-03 09:26:39 -0700153 static final boolean DEBUG_STARTING_WINDOW = false;
Craig Mautner8a0da012014-05-31 15:13:37 -0700154 static final boolean DEBUG_WAKEUP = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800155 static final boolean SHOW_STARTING_ANIMATIONS = true;
156 static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
Joe Onoratod208e702010-10-08 16:22:43 -0400157
Daniel Sandler6396c722013-04-16 20:19:09 -0400158 // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
159 // No longer recommended for desk docks; still useful in car docks.
160 static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
161 static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
162
Jeff Brown6d8fd272014-05-20 21:24:38 -0700163 static final int SHORT_PRESS_POWER_NOTHING = 0;
164 static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
165 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
166 static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
Bryce Lee01b0c5f2015-02-05 18:24:04 -0800167 static final int SHORT_PRESS_POWER_GO_HOME = 4;
Jeff Brown6d8fd272014-05-20 21:24:38 -0700168
Joe Onoratod208e702010-10-08 16:22:43 -0400169 static final int LONG_PRESS_POWER_NOTHING = 0;
170 static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
171 static final int LONG_PRESS_POWER_SHUT_OFF = 2;
Jeff Brown9a538ee2012-08-20 14:56:57 -0700172 static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700173
Jeff Brown13f00f02014-10-31 14:45:50 -0700174 static final int MULTI_PRESS_POWER_NOTHING = 0;
175 static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
176 static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
177
Michael Jurka3b1fc472011-06-13 10:54:40 -0700178 // These need to match the documentation/constant in
179 // core/res/res/values/config.xml
Joe Onorato46b0d682010-11-22 17:37:27 -0800180 static final int LONG_PRESS_HOME_NOTHING = 0;
Michael Wrightc9ebea72013-01-16 19:25:02 -0800181 static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
Jeff Browncaca8812013-05-09 13:34:33 -0700182 static final int LONG_PRESS_HOME_ASSIST = 2;
183
184 static final int DOUBLE_TAP_HOME_NOTHING = 0;
185 static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
Joe Onorato46b0d682010-11-22 17:37:27 -0800186
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000187 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP = 0;
188 static final int SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME = 1;
189
Dianne Hackborn5cb8d792009-05-21 17:34:15 -0700190 static final int APPLICATION_MEDIA_SUBLAYER = -2;
191 static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800192 static final int APPLICATION_PANEL_SUBLAYER = 1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800193 static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -0700194 static final int APPLICATION_ABOVE_SUB_PANEL_SUBLAYER = 3;
Craig Mautner88400d32012-09-30 12:35:45 -0700195
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800196 static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
197 static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
198 static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
Joe Onoratof275f0c2009-11-24 16:11:13 -0500199 static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700200 static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800201
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700202 /**
203 * These are the system UI flags that, when changing, can cause the layout
204 * of the screen to change.
205 */
206 static final int SYSTEM_UI_CHANGING_LAYOUT =
John Spurlocke1f366f2013-08-05 12:22:40 -0400207 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlock7f4820a2013-10-08 12:54:35 -0400208 | View.SYSTEM_UI_FLAG_FULLSCREEN
209 | View.STATUS_BAR_TRANSLUCENT
Adrian Roosea562512014-05-05 13:33:03 +0200210 | View.NAVIGATION_BAR_TRANSLUCENT
211 | View.SYSTEM_UI_TRANSPARENT;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700212
John Spurlock7b414672014-07-18 13:02:39 -0400213 private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
214 .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
215 .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
216 .build();
217
Adrian Roosddc8b272015-05-21 16:28:27 -0700218 // The panic gesture may become active only after the keyguard is dismissed and the immersive
219 // app shows again. If that doesn't happen for 30s we drop the gesture.
220 private static final long PANIC_GESTURE_EXPIRATION = 30000;
221
Jim Miller5ecd8112013-01-09 18:50:26 -0800222 /**
223 * Keyguard stuff
224 */
225 private WindowState mKeyguardScrim;
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100226 private boolean mKeyguardHidden;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700227 private boolean mKeyguardDrawnOnce;
Jim Miller5ecd8112013-01-09 18:50:26 -0800228
Jeff Brown6651a632011-11-28 12:59:11 -0800229 /* Table of Application Launch keys. Maps from key codes to intent categories.
230 *
231 * These are special keys that are used to launch particular kinds of applications,
232 * such as a web browser. HID defines nearly a hundred of them in the Consumer (0x0C)
233 * usage page. We don't support quite that many yet...
234 */
235 static SparseArray<String> sApplicationLaunchKeyCategories;
236 static {
237 sApplicationLaunchKeyCategories = new SparseArray<String>();
238 sApplicationLaunchKeyCategories.append(
239 KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
240 sApplicationLaunchKeyCategories.append(
241 KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
242 sApplicationLaunchKeyCategories.append(
243 KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
244 sApplicationLaunchKeyCategories.append(
245 KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
246 sApplicationLaunchKeyCategories.append(
247 KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
248 sApplicationLaunchKeyCategories.append(
249 KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
250 }
251
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700252 /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000253 static final int WAITING_FOR_DRAWN_TIMEOUT = 500;
Craig Mautnerc3daedd2014-09-13 11:17:23 -0700254
Dianne Hackborndf89e652011-10-06 22:35:11 -0700255 /**
256 * Lock protecting internal state. Must not call out into window
257 * manager with lock held. (This lock will be acquired in places
258 * where the window manager is calling in with its own lock held.)
259 */
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800260 private final Object mLock = new Object();
Dianne Hackborndf89e652011-10-06 22:35:11 -0700261
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800262 Context mContext;
263 IWindowManager mWindowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700264 WindowManagerFuncs mWindowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -0700265 WindowManagerInternal mWindowManagerInternal;
Jeff Brown96307042012-07-27 15:51:34 -0700266 PowerManager mPowerManager;
Jeff Brown061ea992015-04-17 19:55:47 -0700267 ActivityManagerInternal mActivityManagerInternal;
Jose Lima9546b202014-07-02 17:21:51 -0700268 DreamManagerInternal mDreamManagerInternal;
Joe Onorato93056472010-09-10 10:30:46 -0400269 IStatusBarService mStatusBarService;
Jeff Browncaca8812013-05-09 13:34:33 -0700270 boolean mPreloadedRecentApps;
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700271 final Object mServiceAquireLock = new Object();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800272 Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700273 SearchManager mSearchManager;
Svetoslav8e3feb12014-02-24 13:46:47 -0800274 AccessibilityManager mAccessibilityManager;
Filip Gruszczynskicfb31852015-02-25 21:47:12 +0000275 BurnInProtectionHelper mBurnInProtectionHelper;
Billy Laucbe540f2015-06-25 01:51:44 +0100276 AppOpsManager mAppOpsManager;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800277
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700278 // Vibrator pattern for haptic feedback of a long press.
279 long[] mLongPressVibePattern;
Craig Mautner88400d32012-09-30 12:35:45 -0700280
Dianne Hackborn181ceb52009-08-27 22:16:40 -0700281 // Vibrator pattern for haptic feedback of virtual key press.
282 long[] mVirtualKeyVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700283
Amith Yamasanic33cb712010-02-10 15:21:49 -0800284 // Vibrator pattern for a short vibration.
285 long[] mKeyboardTapVibePattern;
286
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -0700287 // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
288 long[] mClockTickVibePattern;
289
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -0700290 // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
291 long[] mCalendarDateVibePattern;
292
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700293 // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
294 long[] mSafeModeDisabledVibePattern;
Craig Mautner967212c2013-04-13 21:10:58 -0700295
Dianne Hackbornb1a79802009-09-29 15:18:31 -0700296 // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
297 long[] mSafeModeEnabledVibePattern;
Romain Guy8154cd32010-03-29 14:41:15 -0700298
Mady Mellore8608912015-06-05 09:02:55 -0700299 // Vibrator pattern for haptic feedback of a context click.
300 long[] mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -0700301
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800302 /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
303 boolean mEnableShiftMenuBugReports = false;
Mike Lockwoodd747dc82011-09-13 16:28:22 -0400304
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800305 boolean mSafeMode;
306 WindowState mStatusBar = null;
Dianne Hackborn69cb8752011-05-19 18:13:32 -0700307 int mStatusBarHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400308 WindowState mNavigationBar = null;
Daniel Sandler36412a72011-08-04 09:35:13 -0400309 boolean mHasNavigationBar = false;
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700310 boolean mCanHideNavigationBar = false;
Daniel Sandler4a066c52012-04-20 14:49:13 -0400311 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
312 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
313 int[] mNavigationBarHeightForRotation = new int[4];
314 int[] mNavigationBarWidthForRotation = new int[4];
Daniel Sandler8956dbb2011-04-22 07:55:02 -0400315
Craig Mautnera631d492014-08-05 15:16:01 -0700316 boolean mBootMessageNeedsHiding;
Jim Miller5ecd8112013-01-09 18:50:26 -0800317 KeyguardServiceDelegate mKeyguardDelegate;
Craig Mautner13f6ea72014-06-23 14:57:02 -0700318 final Runnable mWindowManagerDrawCallback = new Runnable() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700319 @Override
Craig Mautner13f6ea72014-06-23 14:57:02 -0700320 public void run() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700321 if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
322 mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
323 }
324 };
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700325 final DrawnListener mKeyguardDrawnCallback = new DrawnListener() {
Craig Mautner8a0da012014-05-31 15:13:37 -0700326 @Override
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -0700327 public void onDrawn() {
328 if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onDrawn.");
Craig Mautner8a0da012014-05-31 15:13:37 -0700329 mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
330 }
331 };
332
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800333 GlobalActions mGlobalActions;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800334 Handler mHandler;
satok1bc0a492012-04-25 22:47:12 +0900335 WindowState mLastInputMethodWindow = null;
336 WindowState mLastInputMethodTargetWindow = null;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800337
Jeff Brown13f00f02014-10-31 14:45:50 -0700338 // FIXME This state is shared between the input reader and handler thread.
339 // Technically it's broken and buggy but it has been like this for many years
340 // and we have not yet seen any problems. Someday we'll rewrite this logic
341 // so that only one thread is involved in handling input policy. Unfortunately
342 // it's on a critical path for power management so we can't just post the work to the
343 // handler thread. We'll need to resolve this someday by teaching the input dispatcher
344 // to hold wakelocks during dispatch and eliminating the critical path.
345 volatile boolean mPowerKeyHandled;
Bryce Leed9268e32014-11-17 17:40:59 -0800346 volatile boolean mBeganFromNonInteractive;
Jeff Brown13f00f02014-10-31 14:45:50 -0700347 volatile int mPowerKeyPressCounter;
348 volatile boolean mEndCallKeyHandled;
349
Winson Chungd42a6cf2014-06-03 16:24:04 -0700350 boolean mRecentsVisible;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700351 int mRecentAppsHeldModifiers;
Jeff Browncf39bdf2012-05-18 14:41:19 -0700352 boolean mLanguageSwitchKeyPressed;
Jeff Brown68b909d2011-12-07 16:36:01 -0800353
Jeff Brown2e7760e2012-04-11 15:14:55 -0700354 int mLidState = LID_ABSENT;
Michael Wright3818c922014-09-02 13:59:07 -0700355 int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
Jeff Browndaa37532012-05-01 15:54:03 -0700356 boolean mHaveBuiltInKeyboard;
Jeff Brown4aed78b2011-01-14 17:36:55 -0800357
Dianne Hackbornc777e072010-02-12 13:07:59 -0800358 boolean mSystemReady;
Dianne Hackbornba24e4d2011-09-01 11:17:06 -0700359 boolean mSystemBooted;
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800360 boolean mHdmiPlugged;
Jinsuk Kime601b712015-07-07 08:01:02 +0900361 HdmiControl mHdmiControl;
Jeff Brown4f5fa282014-06-12 19:19:15 -0700362 IUiModeManager mUiModeManager;
Daniel Sandler6396c722013-04-16 20:19:09 -0400363 int mUiMode;
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700364 int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
Mike Lockwood1753f7f2009-08-24 14:49:07 -0700365 int mLidOpenRotation;
Mike Lockwood2d1efbd2009-09-16 12:15:53 -0400366 int mCarDockRotation;
367 int mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -0700368 int mUndockedHdmiRotation;
369 int mDemoHdmiRotation;
370 boolean mDemoHdmiRotationLock;
Chong Zhangae6119ff2014-11-11 18:54:39 -0800371 int mDemoRotation;
372 boolean mDemoRotationLock;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400373
Jeff Browna20dda42014-05-27 20:57:24 -0700374 boolean mWakeGestureEnabledSetting;
375 MyWakeGestureListener mWakeGestureListener;
376
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700377 // Default display does not rotate, apps that require non-default orientation will have to
378 // have the orientation emulated.
379 private boolean mForceDefaultOrientation = false;
380
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400381 int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
382 int mUserRotation = Surface.ROTATION_0;
Jeff Brown207673cd2012-06-05 17:47:11 -0700383 boolean mAccelerometerDefault;
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400384
Jeff Brownbcdfc622014-03-06 19:13:04 -0800385 boolean mSupportAutoRotation;
Jeff Brownd3187e32011-09-21 19:26:44 -0700386 int mAllowAllRotations = -1;
Mike Lockwoode9867d22009-09-20 01:59:02 -0400387 boolean mCarDockEnablesAccelerometer;
388 boolean mDeskDockEnablesAccelerometer;
Dianne Hackborn2862fff2009-09-15 22:56:29 -0700389 int mLidKeyboardAccessibility;
390 int mLidNavigationAccessibility;
Jeff Brownc458ce92012-04-30 14:58:40 -0700391 boolean mLidControlsSleep;
Jeff Brown13f00f02014-10-31 14:45:50 -0700392 int mShortPressOnPowerBehavior;
393 int mLongPressOnPowerBehavior;
394 int mDoublePressOnPowerBehavior;
395 int mTriplePressOnPowerBehavior;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +0000396 int mShortPressOnSleepBehavior;
Jeff Brown3ee549c2014-09-22 20:14:39 -0700397 boolean mAwake;
398 boolean mScreenOnEarly;
399 boolean mScreenOnFully;
400 ScreenOnListener mScreenOnListener;
401 boolean mKeyguardDrawComplete;
402 boolean mWindowManagerDrawComplete;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800403 boolean mOrientationSensorEnabled = false;
404 int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800405 boolean mHasSoftInput = false;
Daniel Sandlerdd73ee42013-10-11 22:19:59 -0400406 boolean mTranslucentDecorEnabled = true;
RoboErik001c59c2015-01-26 15:53:51 -0800407 boolean mUseTvRouting;
Craig Mautner967212c2013-04-13 21:10:58 -0700408
Jeff Brown70825162012-03-28 17:27:48 -0700409 int mPointerLocationMode = 0; // guarded by mLock
Joe Onorato664644d2011-01-23 17:53:23 -0800410
411 // The last window we were told about in focusChanged.
412 WindowState mFocusedWindow;
Dianne Hackborne0f085d2011-11-30 18:41:15 -0800413 IApplicationToken mFocusedApp;
Joe Onorato664644d2011-01-23 17:53:23 -0800414
Jeff Brown70825162012-03-28 17:27:48 -0700415 PointerLocationView mPointerLocationView;
Jeff Brown32cbc38552011-12-01 14:01:49 -0800416
Dianne Hackbornc652de82013-02-15 16:32:56 -0800417 // The current size of the screen; really; extends into the overscan area of
418 // the screen and doesn't account for any system elements like the status bar.
419 int mOverscanScreenLeft, mOverscanScreenTop;
420 int mOverscanScreenWidth, mOverscanScreenHeight;
421 // The current visible size of the screen; really; (ir)regardless of whether the status
422 // bar can be hidden but not extending into the overscan area.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800423 int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
424 int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
Dianne Hackborn313440842013-02-19 19:22:59 -0800425 // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
426 int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
427 int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
Dianne Hackborn82de1ae2010-10-28 11:28:39 -0700428 // The current size of the screen; these may be different than (0,0)-(dw,dh)
429 // if the status bar can't be hidden; in that case it effectively carves out
430 // that area of the display from all other windows.
Joe Onorato29fc2c92010-11-24 10:26:50 -0800431 int mRestrictedScreenLeft, mRestrictedScreenTop;
432 int mRestrictedScreenWidth, mRestrictedScreenHeight;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700433 // During layout, the current screen borders accounting for any currently
434 // visible system UI elements.
435 int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700436 // For applications requesting stable content insets, these are them.
437 int mStableLeft, mStableTop, mStableRight, mStableBottom;
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -0700438 // For applications requesting stable content insets but have also set the
439 // fullscreen window flag, these are the stable dimensions without the status bar.
440 int mStableFullscreenLeft, mStableFullscreenTop;
441 int mStableFullscreenRight, mStableFullscreenBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800442 // During layout, the current screen borders with all outer decoration
443 // (status bar, input method dock) accounted for.
444 int mCurLeft, mCurTop, mCurRight, mCurBottom;
445 // During layout, the frame in which content should be displayed
446 // to the user, accounting for all screen decoration except for any
447 // space they deem as available for other content. This is usually
448 // the same as mCur*, but may be larger if the screen decor has supplied
449 // content insets.
450 int mContentLeft, mContentTop, mContentRight, mContentBottom;
Dianne Hackborne30e02f2014-05-27 18:24:45 -0700451 // During layout, the frame in which voice content should be displayed
452 // to the user, accounting for all screen decoration except for any
453 // space they deem as available for other content.
454 int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
Dianne Hackborn8e11ef02010-11-18 19:47:42 -0800455 // During layout, the current screen borders along which input method
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800456 // windows are placed.
457 int mDockLeft, mDockTop, mDockRight, mDockBottom;
458 // During layout, the layer at which the doc window is placed.
459 int mDockLayer;
Dianne Hackborn5c58de32012-04-28 19:52:37 -0700460 // During layout, this is the layer of the status bar.
461 int mStatusBarLayer;
Dianne Hackborne26ab702011-10-16 13:21:33 -0700462 int mLastSystemUiFlags;
463 // Bits that we are in the process of clearing, so we want to prevent
464 // them from being set by applications until everything has been updated
465 // to have them clear.
466 int mResettingSystemUiFlags = 0;
467 // Bits that we are currently always keeping cleared.
468 int mForceClearedSystemUiFlags = 0;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -0800469 // What we last reported to system UI about whether the compatibility
470 // menu needs to be displayed.
471 boolean mLastFocusNeedsMenu = false;
Adrian Roosddc8b272015-05-21 16:28:27 -0700472 // If nonzero, a panic gesture was performed at that time in uptime millis and is still pending.
473 private long mPendingPanicGestureUptime;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700474
Selim Cinekf83e8242015-05-19 18:08:14 -0700475 InputConsumer mInputConsumer = null;
Dianne Hackborndf89e652011-10-06 22:35:11 -0700476
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800477 static final Rect mTmpParentFrame = new Rect();
478 static final Rect mTmpDisplayFrame = new Rect();
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800479 static final Rect mTmpOverscanFrame = new Rect();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800480 static final Rect mTmpContentFrame = new Rect();
481 static final Rect mTmpVisibleFrame = new Rect();
John Spurlock46646232013-09-30 22:32:42 -0400482 static final Rect mTmpDecorFrame = new Rect();
Adrian Roosfa104232014-06-20 16:10:14 -0700483 static final Rect mTmpStableFrame = new Rect();
Dianne Hackborn1f903c32011-09-13 19:18:06 -0700484 static final Rect mTmpNavigationFrame = new Rect();
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700485 static final Rect mTmpOutsetFrame = new Rect();
Craig Mautner967212c2013-04-13 21:10:58 -0700486
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800487 WindowState mTopFullscreenOpaqueWindowState;
Adrian Rooscd3884d2015-02-18 17:25:23 +0100488 WindowState mTopFullscreenOpaqueOrDimmingWindowState;
Craig Mautner2bc789b2014-03-19 19:48:38 -0700489 HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
Jorim Jaggic13fcac2014-09-11 17:36:57 +0200490 HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
Joe Onorato93056472010-09-10 10:30:46 -0400491 boolean mTopIsFullscreen;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800492 boolean mForceStatusBar;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -0700493 boolean mForceStatusBarFromKeyguard;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -0700494 private boolean mForceStatusBarTransparent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700495 boolean mHideLockScreen;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -0800496 boolean mForcingShowNavBar;
497 int mForcingShowNavBarLayer;
Craig Mautnerad09bcc2012-10-08 13:33:11 -0700498
499 // States of keyguard dismiss.
500 private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
501 private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
502 private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
503 int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
504
505 /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
506 * be done once per window. */
507 private WindowState mWinDismissingKeyguard;
508
tingna_sunge785ffa2015-05-12 13:23:15 +0800509 /** When window is currently dismissing the keyguard, dismissing the keyguard must handle
510 * the keygaurd secure state change instantly case, e.g. the use case of inserting a PIN
511 * lock SIM card. This variable is used to record the previous keyguard secure state for
512 * monitoring secure state change on window dismissing keyguard. */
513 private boolean mSecureDismissingKeyguard;
514
Craig Mautnerc9457fa2014-06-06 14:27:48 -0700515 /** The window that is currently showing "over" the keyguard. If there is an app window
516 * belonging to another app on top of this the keyguard shows. If there is a fullscreen
517 * app window under this, still dismiss the keyguard but don't show the app underneath. Show
518 * the wallpaper. */
519 private WindowState mWinShowWhenLocked;
520
Dianne Hackborn7ad44382012-10-18 17:46:00 -0700521 boolean mShowingLockscreen;
522 boolean mShowingDream;
523 boolean mDreamingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -0700524 boolean mDreamingSleepTokenNeeded;
525 SleepToken mDreamingSleepToken;
Jeff Brown48d1b142015-06-10 16:36:03 -0700526 SleepToken mScreenOffSleepToken;
Jim Millerab954542014-10-10 18:21:49 -0700527 boolean mKeyguardSecure;
528 boolean mKeyguardSecureIncludingHidden;
529 volatile boolean mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800530 boolean mHomePressed;
Jeff Browncaca8812013-05-09 13:34:33 -0700531 boolean mHomeConsumed;
532 boolean mHomeDoubleTapPending;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800533 Intent mHomeIntent;
Dianne Hackborn39c2d712009-09-22 11:41:31 -0700534 Intent mCarDockIntent;
535 Intent mDeskDockIntent;
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700536 boolean mSearchKeyShortcutPending;
537 boolean mConsumeSearchKeyUp;
Jeff Brownde7a8ea2012-06-13 18:28:57 -0700538 boolean mAssistKeyLongPressed;
Michael Wright6a62e552014-06-03 19:19:48 -0700539 boolean mPendingMetaAction;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800540
Mike Lockwood28569302010-01-28 11:54:40 -0500541 // support for activating the lock screen while the screen is on
542 boolean mAllowLockscreenWhenOn;
543 int mLockScreenTimeout;
544 boolean mLockScreenTimerActive;
545
David Brownbaf8d092010-03-08 21:52:59 -0800546 // Behavior of ENDCALL Button. (See Settings.System.END_BUTTON_BEHAVIOR.)
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800547 int mEndcallBehavior;
David Brownbaf8d092010-03-08 21:52:59 -0800548
549 // Behavior of POWER button while in-call and screen on.
550 // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
551 int mIncallPowerBehavior;
552
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700553 Display mDisplay;
554
Filip Gruszczynski2987f612015-06-30 15:03:30 -0700555 private int mDisplayRotation;
556
Dianne Hackborn9d132642011-04-21 17:26:39 -0700557 int mLandscapeRotation = 0; // default landscape rotation
558 int mSeascapeRotation = 0; // "other" landscape rotation, 180 degrees from mLandscapeRotation
559 int mPortraitRotation = 0; // default portrait rotation
560 int mUpsideDownRotation = 0; // "other" portrait rotation
Mitsuru Oshima831d0d92009-06-16 18:27:18 -0700561
Dianne Hackbornc652de82013-02-15 16:32:56 -0800562 int mOverscanLeft = 0;
563 int mOverscanTop = 0;
564 int mOverscanRight = 0;
565 int mOverscanBottom = 0;
566
Joe Onorato46b0d682010-11-22 17:37:27 -0800567 // What we do when the user long presses on home
Jeff Browncaca8812013-05-09 13:34:33 -0700568 private int mLongPressOnHomeBehavior;
569
570 // What we do when the user double-taps on home
571 private int mDoubleTapOnHomeBehavior;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800572
Bryce Lee584a4452014-10-21 15:55:55 -0700573 // Allowed theater mode wake actions
574 private boolean mAllowTheaterModeWakeFromKey;
575 private boolean mAllowTheaterModeWakeFromPowerKey;
576 private boolean mAllowTheaterModeWakeFromMotion;
Bryce Lee812d7022014-11-10 13:33:28 -0800577 private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
Bryce Lee584a4452014-10-21 15:55:55 -0700578 private boolean mAllowTheaterModeWakeFromCameraLens;
579 private boolean mAllowTheaterModeWakeFromLidSwitch;
580 private boolean mAllowTheaterModeWakeFromWakeGesture;
581
Bryce Leed3b28402015-03-09 15:49:13 +0000582 // Whether to support long press from power button in non-interactive mode
583 private boolean mSupportLongPressPowerWhenNonInteractive;
584
Bryce Lee55e846d2014-11-04 12:43:44 -0800585 // Whether to go to sleep entering theater mode from power button
586 private boolean mGoToSleepOnButtonPressTheaterMode;
587
Winson Chung9112ec32011-06-27 13:15:32 -0700588 // Screenshot trigger states
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700589 // Time to volume and power must be pressed within this interval of each other.
590 private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
Winson Chung1cea2f32012-10-08 20:42:01 -0700591 // Increase the chord delay when taking a screenshot from the keyguard
592 private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
Christopher Tatee90585f2012-03-05 18:56:25 -0800593 private boolean mScreenshotChordEnabled;
Jeff Brown13f00f02014-10-31 14:45:50 -0700594 private boolean mScreenshotChordVolumeDownKeyTriggered;
595 private long mScreenshotChordVolumeDownKeyTime;
596 private boolean mScreenshotChordVolumeDownKeyConsumed;
597 private boolean mScreenshotChordVolumeUpKeyTriggered;
598 private boolean mScreenshotChordPowerKeyTriggered;
599 private long mScreenshotChordPowerKeyTime;
Winson Chung9112ec32011-06-27 13:15:32 -0700600
Michael Wrightb854e242013-02-05 17:54:02 -0800601 /* The number of steps between min and max brightness */
602 private static final int BRIGHTNESS_STEPS = 10;
603
Christopher Tate5e08af02012-09-21 17:17:22 -0700604 SettingsObserver mSettingsObserver;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800605 ShortcutManager mShortcutManager;
606 PowerManager.WakeLock mBroadcastWakeLock;
Jeff Brown13f00f02014-10-31 14:45:50 -0700607 PowerManager.WakeLock mPowerKeyWakeLock;
Jeff Brown40013652012-05-16 21:22:36 -0700608 boolean mHavePendingMediaKeyRepeatWithWakeLock;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800609
Craig Mautnerd625ab22013-09-06 13:40:31 -0700610 private int mCurrentUserId;
611
Justin Kohd378ad72013-04-01 12:18:26 -0700612 // Maps global key codes to the components that will handle them.
613 private GlobalKeyManager mGlobalKeyManager;
614
Jeff Brownfd23e3e2012-05-09 13:34:28 -0700615 // Fallback actions by key code.
616 private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
617 new SparseArray<KeyCharacterMap.FallbackAction>();
Jeff Brown49ed71d2010-12-06 17:13:33 -0800618
Jorim Jaggi76a16232014-08-08 17:00:47 +0200619 private final LogDecelerateInterpolator mLogDecelerateInterpolator
620 = new LogDecelerateInterpolator(100, 0);
621
Jeff Brown70825162012-03-28 17:27:48 -0700622 private static final int MSG_ENABLE_POINTER_LOCATION = 1;
623 private static final int MSG_DISABLE_POINTER_LOCATION = 2;
Jeff Brown40013652012-05-16 21:22:36 -0700624 private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
625 private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
Craig Mautner8a0da012014-05-31 15:13:37 -0700626 private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
627 private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
628 private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
Craig Mautner84984fa2014-06-19 11:19:20 -0700629 private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
Alan Viverettee34560b22014-07-10 14:50:06 -0700630 private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
Craig Mautnera631d492014-08-05 15:16:01 -0700631 private static final int MSG_HIDE_BOOT_MESSAGE = 11;
Michael Wright869a67c2014-08-26 19:33:06 -0700632 private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
Jeff Brown13f00f02014-10-31 14:45:50 -0700633 private static final int MSG_POWER_DELAYED_PRESS = 13;
634 private static final int MSG_POWER_LONG_PRESS = 14;
Jeff Brown061ea992015-04-17 19:55:47 -0700635 private static final int MSG_UPDATE_DREAMING_SLEEP_TOKEN = 15;
Jeff Brown70825162012-03-28 17:27:48 -0700636
637 private class PolicyHandler extends Handler {
638 @Override
639 public void handleMessage(Message msg) {
640 switch (msg.what) {
641 case MSG_ENABLE_POINTER_LOCATION:
642 enablePointerLocation();
643 break;
644 case MSG_DISABLE_POINTER_LOCATION:
645 disablePointerLocation();
646 break;
Jeff Brown40013652012-05-16 21:22:36 -0700647 case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
648 dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
649 break;
650 case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
651 dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
652 break;
Craig Mautner84984fa2014-06-19 11:19:20 -0700653 case MSG_DISPATCH_SHOW_RECENTS:
654 showRecentApps(false);
655 break;
Alan Viverettee34560b22014-07-10 14:50:06 -0700656 case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
657 showGlobalActionsInternal();
658 break;
Craig Mautner8a0da012014-05-31 15:13:37 -0700659 case MSG_KEYGUARD_DRAWN_COMPLETE:
660 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700661 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700662 break;
663 case MSG_KEYGUARD_DRAWN_TIMEOUT:
664 Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700665 finishKeyguardDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700666 break;
667 case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
668 if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
Jeff Brown36c4db82014-09-19 12:05:31 -0700669 finishWindowsDrawn();
Craig Mautner8a0da012014-05-31 15:13:37 -0700670 break;
Craig Mautnera631d492014-08-05 15:16:01 -0700671 case MSG_HIDE_BOOT_MESSAGE:
672 handleHideBootMessage();
673 break;
Michael Wright869a67c2014-08-26 19:33:06 -0700674 case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
675 launchVoiceAssistWithWakeLock(msg.arg1 != 0);
676 break;
Jeff Brown13f00f02014-10-31 14:45:50 -0700677 case MSG_POWER_DELAYED_PRESS:
678 powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
679 finishPowerKeyPress();
680 break;
681 case MSG_POWER_LONG_PRESS:
682 powerLongPress();
683 break;
Jeff Brown061ea992015-04-17 19:55:47 -0700684 case MSG_UPDATE_DREAMING_SLEEP_TOKEN:
685 updateDreamingSleepToken(msg.arg1 != 0);
686 break;
Jeff Brown70825162012-03-28 17:27:48 -0700687 }
688 }
689 }
690
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -0800691 private UEventObserver mHDMIObserver = new UEventObserver() {
692 @Override
693 public void onUEvent(UEventObserver.UEvent event) {
694 setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
695 }
696 };
697
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800698 class SettingsObserver extends ContentObserver {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800699 SettingsObserver(Handler handler) {
700 super(handler);
701 }
David Brownbaf8d092010-03-08 21:52:59 -0800702
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800703 void observe() {
Christopher Tate5e08af02012-09-21 17:17:22 -0700704 // Observe all users' changes
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800705 ContentResolver resolver = mContext.getContentResolver();
706 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700707 Settings.System.END_BUTTON_BEHAVIOR), false, this,
708 UserHandle.USER_ALL);
David Brownbaf8d092010-03-08 21:52:59 -0800709 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700710 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
711 UserHandle.USER_ALL);
Jeff Browna20dda42014-05-27 20:57:24 -0700712 resolver.registerContentObserver(Settings.Secure.getUriFor(
713 Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
714 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800715 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700716 Settings.System.ACCELEROMETER_ROTATION), false, this,
717 UserHandle.USER_ALL);
Mike Lockwood28569302010-01-28 11:54:40 -0500718 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700719 Settings.System.USER_ROTATION), false, this,
720 UserHandle.USER_ALL);
Daniel Sandlerb73617d2010-08-17 00:41:00 -0400721 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700722 Settings.System.SCREEN_OFF_TIMEOUT), false, this,
723 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800724 resolver.registerContentObserver(Settings.System.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700725 Settings.System.POINTER_LOCATION), false, this,
726 UserHandle.USER_ALL);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800727 resolver.registerContentObserver(Settings.Secure.getUriFor(
Christopher Tate5e08af02012-09-21 17:17:22 -0700728 Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
729 UserHandle.USER_ALL);
John Spurlockd9b70bd2014-02-06 17:02:44 -0500730 resolver.registerContentObserver(Settings.Secure.getUriFor(
John Spurlockf1a36642013-10-12 17:50:42 -0400731 Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
Christopher Tate5e08af02012-09-21 17:17:22 -0700732 UserHandle.USER_ALL);
John Spurlockc6d1c602014-01-17 15:22:06 -0500733 resolver.registerContentObserver(Settings.Global.getUriFor(
734 Settings.Global.POLICY_CONTROL), false, this,
735 UserHandle.USER_ALL);
Dianne Hackbornc777e072010-02-12 13:07:59 -0800736 updateSettings();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800737 }
738
739 @Override public void onChange(boolean selfChange) {
Dianne Hackbornc777e072010-02-12 13:07:59 -0800740 updateSettings();
Jeff Brown01a98dd2011-09-20 15:08:29 -0700741 updateRotation(false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800742 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800743 }
Craig Mautner967212c2013-04-13 21:10:58 -0700744
Jeff Browna20dda42014-05-27 20:57:24 -0700745 class MyWakeGestureListener extends WakeGestureListener {
746 MyWakeGestureListener(Context context, Handler handler) {
747 super(context, handler);
748 }
749
750 @Override
751 public void onWakeUp() {
752 synchronized (mLock) {
753 if (shouldEnableWakeGestureLp()) {
Jeff Browne07b94b2014-06-18 15:56:27 -0700754 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
Bryce Lee584a4452014-10-21 15:55:55 -0700755 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture);
Jeff Browna20dda42014-05-27 20:57:24 -0700756 }
757 }
758 }
759 }
760
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800761 class MyOrientationListener extends WindowOrientationListener {
Craig Mautnereee29c42013-01-17 14:44:34 -0800762 MyOrientationListener(Context context, Handler handler) {
763 super(context, handler);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800764 }
Craig Mautner967212c2013-04-13 21:10:58 -0700765
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800766 @Override
Jeff Brownc0347aa2011-09-23 17:26:09 -0700767 public void onProposedRotationChanged(int rotation) {
Craig Mautnereda67292013-04-28 13:50:14 -0700768 if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
Jeff Brown01a98dd2011-09-20 15:08:29 -0700769 updateRotation(false);
770 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800771 }
772 MyOrientationListener mOrientationListener;
773
Jorim Jaggi24bec7c2015-02-04 12:40:14 +0100774 private final StatusBarController mStatusBarController = new StatusBarController();
John Spurlock5b9145b2013-08-20 15:13:47 -0400775
John Spurlock27735a42013-08-14 17:57:38 -0400776 private final BarController mNavigationBarController = new BarController("NavigationBar",
John Spurlock5b9145b2013-08-20 15:13:47 -0400777 View.NAVIGATION_BAR_TRANSIENT,
778 View.NAVIGATION_BAR_UNHIDE,
John Spurlockbd957402013-10-03 11:38:39 -0400779 View.NAVIGATION_BAR_TRANSLUCENT,
780 StatusBarManager.WINDOW_NAVIGATION_BAR,
781 WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
John Spurlock5b9145b2013-08-20 15:13:47 -0400782
John Spurlockf1a36642013-10-12 17:50:42 -0400783 private ImmersiveModeConfirmation mImmersiveModeConfirmation;
John Spurlock32beb2c2013-03-11 10:16:47 -0400784
Craig Mautner037aa8d2013-06-07 10:35:44 -0700785 private SystemGesturesPointerEventListener mSystemGestures;
John Spurlock32beb2c2013-03-11 10:16:47 -0400786
Dianne Hackborn42e620c2012-06-24 13:20:51 -0700787 IStatusBarService getStatusBarService() {
788 synchronized (mServiceAquireLock) {
789 if (mStatusBarService == null) {
790 mStatusBarService = IStatusBarService.Stub.asInterface(
791 ServiceManager.getService("statusbar"));
792 }
793 return mStatusBarService;
794 }
795 }
796
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700797 /*
798 * We always let the sensor be switched on by default except when
799 * the user has explicitly disabled sensor based rotation or when the
800 * screen is switched off.
801 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700802 boolean needSensorRunningLp() {
Jeff Brownbcdfc622014-03-06 19:13:04 -0800803 if (mSupportAutoRotation) {
804 if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
805 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
806 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
807 || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
808 // If the application has explicitly requested to follow the
809 // orientation, then we need to turn the sensor on.
810 return true;
811 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800812 }
Dianne Hackborn867ab6472010-04-29 13:28:56 -0700813 if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
Jeff Brown1a693182011-11-08 14:44:16 -0800814 (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
815 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
816 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
Mike Lockwoode9867d22009-09-20 01:59:02 -0400817 // enable accelerometer if we are docked in a dock that enables accelerometer
818 // orientation management,
819 return true;
820 }
Jeff Brown207673cd2012-06-05 17:47:11 -0700821 if (mUserRotationMode == USER_ROTATION_LOCKED) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800822 // If the setting for using the sensor by default is enabled, then
823 // we will always leave it on. Note that the user could go to
824 // a window that forces an orientation that does not use the
825 // sensor and in theory we could turn it off... however, when next
826 // turning it on we won't have a good value for the current
827 // orientation for a little bit, which can cause orientation
828 // changes to lag, so we'd like to keep it always on. (It will
829 // still be turned off when the screen is off.)
Suchi Amalapurapua9e1b162009-03-24 22:24:47 -0700830 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800831 }
Jeff Brownbcdfc622014-03-06 19:13:04 -0800832 return mSupportAutoRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800833 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700834
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800835 /*
836 * Various use cases for invoking this function
837 * screen turning off, should always disable listeners if already enabled
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700838 * screen turned on and current app has sensor based orientation, enable listeners
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800839 * if not already enabled
840 * screen turned on and current app does not have sensor orientation, disable listeners if
841 * already enabled
842 * screen turning on and current app has sensor based orientation, enable listeners if needed
843 * screen turning on and current app has nosensor based orientation, do nothing
844 */
The Android Open Source Project0727d222009-03-11 12:11:58 -0700845 void updateOrientationListenerLp() {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800846 if (!mOrientationListener.canDetectOrientation()) {
847 // If sensor is turned off or nonexistent for some reason
848 return;
849 }
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000850 // Could have been invoked due to screen turning on or off or
851 // change of the currently visible window's orientation.
Jeff Brown3ee549c2014-09-22 20:14:39 -0700852 if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
853 + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000854 + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled
855 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
856 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800857 boolean disable = true;
Stefan Kuhne9326dc12015-06-12 09:25:32 -1000858 // Note: We postpone the rotating of the screen until the keyguard as well as the
859 // window manager have reported a draw complete.
860 if (mScreenOnEarly && mAwake &&
861 mKeyguardDrawComplete && mWindowManagerDrawComplete) {
The Android Open Source Project0727d222009-03-11 12:11:58 -0700862 if (needSensorRunningLp()) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800863 disable = false;
864 //enable listener if not already enabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700865 if (!mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800866 mOrientationListener.enable();
Craig Mautnereda67292013-04-28 13:50:14 -0700867 if(localLOGV) Slog.v(TAG, "Enabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800868 mOrientationSensorEnabled = true;
869 }
Craig Mautner46ac6fa2013-08-01 10:06:34 -0700870 }
871 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800872 //check if sensors need to be disabled
The Android Open Source Project0727d222009-03-11 12:11:58 -0700873 if (disable && mOrientationSensorEnabled) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800874 mOrientationListener.disable();
Craig Mautnereda67292013-04-28 13:50:14 -0700875 if(localLOGV) Slog.v(TAG, "Disabling listeners");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -0800876 mOrientationSensorEnabled = false;
877 }
878 }
879
Jeff Brown13f00f02014-10-31 14:45:50 -0700880 private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
881 // Hold a wake lock until the power key is released.
882 if (!mPowerKeyWakeLock.isHeld()) {
883 mPowerKeyWakeLock.acquire();
884 }
885
886 // Cancel multi-press detection timeout.
887 if (mPowerKeyPressCounter != 0) {
888 mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
889 }
890
891 // Detect user pressing the power button in panic when an application has
892 // taken over the whole screen.
893 boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
Craig Mautner0124980e92014-11-30 21:15:34 -0800894 SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
Jeff Brown13f00f02014-10-31 14:45:50 -0700895 if (panic) {
Adrian Roosddc8b272015-05-21 16:28:27 -0700896 mHandler.post(mHiddenNavPanic);
Jeff Brown13f00f02014-10-31 14:45:50 -0700897 }
898
899 // Latch power key state to detect screenshot chord.
900 if (interactive && !mScreenshotChordPowerKeyTriggered
901 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
902 mScreenshotChordPowerKeyTriggered = true;
903 mScreenshotChordPowerKeyTime = event.getDownTime();
904 interceptScreenshotChord();
905 }
906
907 // Stop ringing or end call if configured to do so when power is pressed.
908 TelecomManager telecomManager = getTelecommService();
909 boolean hungUp = false;
910 if (telecomManager != null) {
911 if (telecomManager.isRinging()) {
912 // Pressing Power while there's a ringing incoming
913 // call should silence the ringer.
914 telecomManager.silenceRinger();
915 } else if ((mIncallPowerBehavior
916 & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
917 && telecomManager.isInCall() && interactive) {
918 // Otherwise, if "Power button ends call" is enabled,
919 // the Power button will hang up any current active call.
920 hungUp = telecomManager.endCall();
921 }
922 }
923
924 // If the power key has still not yet been handled, then detect short
925 // press, long press, or multi press and decide what to do.
926 mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
927 || mScreenshotChordVolumeUpKeyTriggered;
928 if (!mPowerKeyHandled) {
929 if (interactive) {
930 // When interactive, we're already awake.
931 // Wait for a long press or for the button to be released to decide what to do.
932 if (hasLongPressOnPowerBehavior()) {
933 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
934 msg.setAsynchronous(true);
935 mHandler.sendMessageDelayed(msg,
936 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
937 }
938 } else {
Bryce Leed9268e32014-11-17 17:40:59 -0800939 wakeUpFromPowerKey(event.getDownTime());
Bryce Leed9268e32014-11-17 17:40:59 -0800940
Bryce Leed3b28402015-03-09 15:49:13 +0000941 if (mSupportLongPressPowerWhenNonInteractive && hasLongPressOnPowerBehavior()) {
942 Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
943 msg.setAsynchronous(true);
944 mHandler.sendMessageDelayed(msg,
945 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Bryce Leed9268e32014-11-17 17:40:59 -0800946 mBeganFromNonInteractive = true;
Bryce Leed3b28402015-03-09 15:49:13 +0000947 } else {
948 final int maxCount = getMaxMultiPressPowerCount();
949
950 if (maxCount <= 1) {
951 mPowerKeyHandled = true;
952 } else {
953 mBeganFromNonInteractive = true;
954 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700955 }
956 }
Jeff Brown4d396052010-10-29 21:50:21 -0700957 }
958 }
959
Jeff Brown13f00f02014-10-31 14:45:50 -0700960 private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
961 final boolean handled = canceled || mPowerKeyHandled;
962 mScreenshotChordPowerKeyTriggered = false;
963 cancelPendingScreenshotChordAction();
964 cancelPendingPowerKeyAction();
965
966 if (!handled) {
967 // Figure out how to handle the key now that it has been released.
968 mPowerKeyPressCounter += 1;
969
970 final int maxCount = getMaxMultiPressPowerCount();
971 final long eventTime = event.getDownTime();
972 if (mPowerKeyPressCounter < maxCount) {
973 // This could be a multi-press. Wait a little bit longer to confirm.
974 // Continue holding the wake lock.
975 Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
976 interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
977 msg.setAsynchronous(true);
978 mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
979 return;
980 }
981
982 // No other actions. Handle it immediately.
983 powerPress(eventTime, interactive, mPowerKeyPressCounter);
Jeff Brown4d396052010-10-29 21:50:21 -0700984 }
Jeff Brown13f00f02014-10-31 14:45:50 -0700985
986 // Done. Reset our state.
987 finishPowerKeyPress();
988 }
989
990 private void finishPowerKeyPress() {
Bryce Leed9268e32014-11-17 17:40:59 -0800991 mBeganFromNonInteractive = false;
Jeff Brown13f00f02014-10-31 14:45:50 -0700992 mPowerKeyPressCounter = 0;
993 if (mPowerKeyWakeLock.isHeld()) {
994 mPowerKeyWakeLock.release();
995 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -0700996 }
997
998 private void cancelPendingPowerKeyAction() {
999 if (!mPowerKeyHandled) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001000 mPowerKeyHandled = true;
1001 mHandler.removeMessages(MSG_POWER_LONG_PRESS);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001002 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001003 }
1004
1005 private void powerPress(long eventTime, boolean interactive, int count) {
1006 if (mScreenOnEarly && !mScreenOnFully) {
1007 Slog.i(TAG, "Suppressed redundant power key press while "
1008 + "already in the process of turning the screen on.");
1009 return;
Jeff Brownff204712011-10-25 21:27:54 -07001010 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001011
1012 if (count == 2) {
1013 powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
1014 } else if (count == 3) {
1015 powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
Bryce Leed9268e32014-11-17 17:40:59 -08001016 } else if (interactive && !mBeganFromNonInteractive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001017 switch (mShortPressOnPowerBehavior) {
1018 case SHORT_PRESS_POWER_NOTHING:
1019 break;
1020 case SHORT_PRESS_POWER_GO_TO_SLEEP:
1021 mPowerManager.goToSleep(eventTime,
1022 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1023 break;
1024 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
1025 mPowerManager.goToSleep(eventTime,
1026 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1027 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1028 break;
1029 case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
1030 mPowerManager.goToSleep(eventTime,
1031 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
1032 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
1033 launchHomeFromHotKey();
1034 break;
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001035 case SHORT_PRESS_POWER_GO_HOME:
Bryce Lee662ed802015-04-10 20:11:39 +00001036 launchHomeFromHotKey(true /* awakenFromDreams */, false /*respectKeyguard*/);
Bryce Lee01b0c5f2015-02-05 18:24:04 -08001037 break;
Jeff Brown13f00f02014-10-31 14:45:50 -07001038 }
1039 }
1040 }
1041
1042 private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
1043 switch (behavior) {
1044 case MULTI_PRESS_POWER_NOTHING:
1045 break;
1046 case MULTI_PRESS_POWER_THEATER_MODE:
Bryce Lee3ae447e2015-06-30 12:31:41 -07001047 if (!isUserSetupComplete()) {
1048 Slog.i(TAG, "Ignoring toggling theater mode - device not setup.");
1049 break;
1050 }
1051
Jeff Brown13f00f02014-10-31 14:45:50 -07001052 if (isTheaterModeEnabled()) {
1053 Slog.i(TAG, "Toggling theater mode off.");
1054 Settings.Global.putInt(mContext.getContentResolver(),
1055 Settings.Global.THEATER_MODE_ON, 0);
1056 if (!interactive) {
1057 wakeUpFromPowerKey(eventTime);
1058 }
1059 } else {
1060 Slog.i(TAG, "Toggling theater mode on.");
1061 Settings.Global.putInt(mContext.getContentResolver(),
1062 Settings.Global.THEATER_MODE_ON, 1);
Bryce Lee55e846d2014-11-04 12:43:44 -08001063
1064 if (mGoToSleepOnButtonPressTheaterMode && interactive) {
Jeff Brown13f00f02014-10-31 14:45:50 -07001065 mPowerManager.goToSleep(eventTime,
1066 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1067 }
1068 }
1069 break;
1070 case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
Jeff Brown7b5be5e2014-11-12 18:45:31 -08001071 Slog.i(TAG, "Starting brightness boost.");
1072 if (!interactive) {
1073 wakeUpFromPowerKey(eventTime);
1074 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001075 mPowerManager.boostScreenBrightness(eventTime);
1076 break;
1077 }
1078 }
1079
1080 private int getMaxMultiPressPowerCount() {
1081 if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1082 return 3;
1083 }
1084 if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1085 return 2;
1086 }
1087 return 1;
1088 }
1089
1090 private void powerLongPress() {
1091 final int behavior = getResolvedLongPressOnPowerBehavior();
1092 switch (behavior) {
1093 case LONG_PRESS_POWER_NOTHING:
1094 break;
1095 case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1096 mPowerKeyHandled = true;
1097 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1098 performAuditoryFeedbackForAccessibilityIfNeed();
1099 }
1100 showGlobalActionsInternal();
1101 break;
1102 case LONG_PRESS_POWER_SHUT_OFF:
1103 case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1104 mPowerKeyHandled = true;
1105 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1106 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1107 mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1108 break;
1109 }
1110 }
1111
Nick Vaccarob593a812015-05-15 11:23:05 -07001112 private void sleepPress(long eventTime) {
1113 if (mShortPressOnSleepBehavior == SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME) {
1114 launchHomeFromHotKey(false /* awakenDreams */, true /*respectKeyguard*/);
1115 }
1116 }
1117
1118 private void sleepRelease(long eventTime) {
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001119 switch (mShortPressOnSleepBehavior) {
1120 case SHORT_PRESS_SLEEP_GO_TO_SLEEP:
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001121 case SHORT_PRESS_SLEEP_GO_TO_SLEEP_AND_GO_HOME:
Nick Vaccarob593a812015-05-15 11:23:05 -07001122 Slog.i(TAG, "sleepRelease() calling goToSleep(GO_TO_SLEEP_REASON_SLEEP_BUTTON)");
1123 mPowerManager.goToSleep(eventTime,
1124 PowerManager.GO_TO_SLEEP_REASON_SLEEP_BUTTON, 0);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001125 break;
1126 }
1127 }
1128
Jeff Brown13f00f02014-10-31 14:45:50 -07001129 private int getResolvedLongPressOnPowerBehavior() {
1130 if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1131 return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1132 }
1133 return mLongPressOnPowerBehavior;
1134 }
1135
1136 private boolean hasLongPressOnPowerBehavior() {
1137 return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001138 }
1139
1140 private void interceptScreenshotChord() {
Christopher Tatee90585f2012-03-05 18:56:25 -08001141 if (mScreenshotChordEnabled
Jeff Brown13f00f02014-10-31 14:45:50 -07001142 && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1143 && !mScreenshotChordVolumeUpKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001144 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07001145 if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1146 && now <= mScreenshotChordPowerKeyTime
1147 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1148 mScreenshotChordVolumeDownKeyConsumed = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001149 cancelPendingPowerKeyAction();
1150
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001151 mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001152 }
1153 }
1154 }
1155
Winson Chung1cea2f32012-10-08 20:42:01 -07001156 private long getScreenshotChordLongPressDelay() {
Jim Miller5ecd8112013-01-09 18:50:26 -08001157 if (mKeyguardDelegate.isShowing()) {
Winson Chung1cea2f32012-10-08 20:42:01 -07001158 // Double the time it takes to take a screenshot from the keyguard
1159 return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
Justin Kohfeabd2c2014-05-02 10:02:44 -07001160 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
Winson Chung1cea2f32012-10-08 20:42:01 -07001161 }
Justin Kohfeabd2c2014-05-02 10:02:44 -07001162 return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
Winson Chung1cea2f32012-10-08 20:42:01 -07001163 }
1164
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001165 private void cancelPendingScreenshotChordAction() {
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001166 mHandler.removeCallbacks(mScreenshotRunnable);
Jeff Brown4d396052010-10-29 21:50:21 -07001167 }
1168
Jeff Brown13f00f02014-10-31 14:45:50 -07001169 private final Runnable mEndCallLongPress = new Runnable() {
Craig Mautnerf1b67412012-09-19 13:18:29 -07001170 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001171 public void run() {
Jeff Brown13f00f02014-10-31 14:45:50 -07001172 mEndCallKeyHandled = true;
1173 if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1174 performAuditoryFeedbackForAccessibilityIfNeed();
Joe Onoratod208e702010-10-08 16:22:43 -04001175 }
Jeff Brown13f00f02014-10-31 14:45:50 -07001176 showGlobalActionsInternal();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001177 }
1178 };
1179
Jeff Sharkey2991fa32012-12-05 18:06:43 -08001180 private final Runnable mScreenshotRunnable = new Runnable() {
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001181 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07001182 public void run() {
1183 takeScreenshot();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001184 }
1185 };
1186
Alan Viverettee34560b22014-07-10 14:50:06 -07001187 @Override
1188 public void showGlobalActions() {
1189 mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1190 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1191 }
1192
1193 void showGlobalActionsInternal() {
1194 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001195 if (mGlobalActions == null) {
Jeff Brown7304c342012-05-11 18:42:42 -07001196 mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001197 }
Jim Millerab954542014-10-10 18:21:49 -07001198 final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001199 mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1200 if (keyguardShowing) {
1201 // since it took two seconds of long press to bring this up,
1202 // poke the wake lock so they have some time to see the dialog.
Jim Miller25190572013-02-28 17:36:24 -08001203 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001204 }
1205 }
1206
1207 boolean isDeviceProvisioned() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -07001208 return Settings.Global.getInt(
1209 mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001210 }
1211
Maurice Lam99c6e072014-04-28 18:24:28 -07001212 boolean isUserSetupComplete() {
1213 return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1214 Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1215 }
1216
Jeff Brown13f00f02014-10-31 14:45:50 -07001217 private void handleShortPressOnHome() {
Jinsuk Kime601b712015-07-07 08:01:02 +09001218 // Turn on the connected TV and switch HDMI input if we're a HDMI playback device.
1219 getHdmiControl().turnOnTv();
1220
Jeff Brown13f00f02014-10-31 14:45:50 -07001221 // If there's a dream running then use home to escape the dream
1222 // but don't actually go home.
1223 if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1224 mDreamManagerInternal.stopDream(false /*immediate*/);
1225 return;
1226 }
1227
1228 // Go home!
1229 launchHomeFromHotKey();
1230 }
1231
Jinsuk Kime601b712015-07-07 08:01:02 +09001232 /**
1233 * Creates an accessor to HDMI control service that performs the operation of
1234 * turning on TV (optional) and switching input to us. If HDMI control service
1235 * is not available or we're not a HDMI playback device, the operation is no-op.
1236 */
1237 private HdmiControl getHdmiControl() {
1238 if (null == mHdmiControl) {
1239 HdmiControlManager manager = (HdmiControlManager) mContext.getSystemService(
1240 Context.HDMI_CONTROL_SERVICE);
1241 HdmiPlaybackClient client = null;
1242 if (manager != null) {
1243 client = manager.getPlaybackClient();
1244 }
1245 mHdmiControl = new HdmiControl(client);
1246 }
1247 return mHdmiControl;
1248 }
1249
1250 private static class HdmiControl {
1251 private final HdmiPlaybackClient mClient;
1252
1253 private HdmiControl(HdmiPlaybackClient client) {
1254 mClient = client;
1255 }
1256
1257 public void turnOnTv() {
1258 if (mClient == null) {
1259 return;
1260 }
1261 mClient.oneTouchPlay(new OneTouchPlayCallback() {
1262 @Override
1263 public void onComplete(int result) {
1264 if (result != HdmiControlManager.RESULT_SUCCESS) {
1265 Log.w(TAG, "One touch play failed: " + result);
1266 }
1267 }
1268 });
1269 }
1270 }
1271
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001272 private void handleLongPressOnHome(int deviceId) {
Joe Onorato46b0d682010-11-22 17:37:27 -08001273 if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
Jeff Browncaca8812013-05-09 13:34:33 -07001274 mHomeConsumed = true;
Joe Onorato46b0d682010-11-22 17:37:27 -08001275 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
Patrick Dubroyece94522011-02-23 18:35:01 -08001276
Jeff Browncaca8812013-05-09 13:34:33 -07001277 if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1278 toggleRecentApps();
1279 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07001280 launchAssistAction(null, deviceId);
Jim Millere6ad1a82010-08-20 19:25:39 -07001281 }
1282 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001283 }
Patrick Dubroyece94522011-02-23 18:35:01 -08001284
Jeff Browncaca8812013-05-09 13:34:33 -07001285 private void handleDoubleTapOnHome() {
1286 if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1287 mHomeConsumed = true;
1288 toggleRecentApps();
1289 }
1290 }
1291
1292 private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1293 @Override
1294 public void run() {
1295 if (mHomeDoubleTapPending) {
1296 mHomeDoubleTapPending = false;
Jeff Brown13f00f02014-10-31 14:45:50 -07001297 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07001298 }
1299 }
1300 };
1301
Mark Renoufc1256912015-03-11 14:38:23 -04001302 private boolean isRoundWindow() {
Adam Powell01f280d2015-05-18 16:07:42 -07001303 return mContext.getResources().getConfiguration().isScreenRound();
Mark Renoufc1256912015-03-11 14:38:23 -04001304 }
1305
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001306 /** {@inheritDoc} */
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001307 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001308 public void init(Context context, IWindowManager windowManager,
Jeff Brown96307042012-07-27 15:51:34 -07001309 WindowManagerFuncs windowManagerFuncs) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001310 mContext = context;
1311 mWindowManager = windowManager;
Dianne Hackborndf89e652011-10-06 22:35:11 -07001312 mWindowManagerFuncs = windowManagerFuncs;
Craig Mautner8a0da012014-05-31 15:13:37 -07001313 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
Jeff Brown061ea992015-04-17 19:55:47 -07001314 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Jose Lima9546b202014-07-02 17:21:51 -07001315 mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
Billy Laucbe540f2015-06-25 01:51:44 +01001316 mAppOpsManager = (AppOpsManager) mContext.getSystemService(Context.APP_OPS_SERVICE);
Mark Renoufc1256912015-03-11 14:38:23 -04001317
1318 // Init display burn-in protection
1319 boolean burnInProtectionEnabled = context.getResources().getBoolean(
1320 com.android.internal.R.bool.config_enableBurnInProtection);
1321 // Allow a system property to override this. Used by developer settings.
1322 boolean burnInProtectionDevMode =
1323 SystemProperties.getBoolean("persist.debug.force_burn_in", false);
1324 if (burnInProtectionEnabled || burnInProtectionDevMode) {
1325 final int minHorizontal;
1326 final int maxHorizontal;
1327 final int minVertical;
1328 final int maxVertical;
1329 final int maxRadius;
1330 if (burnInProtectionDevMode) {
1331 minHorizontal = -8;
1332 maxHorizontal = 8;
1333 minVertical = -8;
1334 maxVertical = -4;
1335 maxRadius = (isRoundWindow()) ? 6 : -1;
1336 } else {
1337 Resources resources = context.getResources();
1338 minHorizontal = resources.getInteger(
1339 com.android.internal.R.integer.config_burnInProtectionMinHorizontalOffset);
1340 maxHorizontal = resources.getInteger(
1341 com.android.internal.R.integer.config_burnInProtectionMaxHorizontalOffset);
1342 minVertical = resources.getInteger(
1343 com.android.internal.R.integer.config_burnInProtectionMinVerticalOffset);
1344 maxVertical = resources.getInteger(
1345 com.android.internal.R.integer.config_burnInProtectionMaxVerticalOffset);
1346 maxRadius = resources.getInteger(
1347 com.android.internal.R.integer.config_burnInProtectionMaxRadius);
1348 }
1349 mBurnInProtectionHelper = new BurnInProtectionHelper(
1350 context, minHorizontal, maxHorizontal, minVertical, maxVertical, maxRadius);
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00001351 }
Craig Mautner8a0da012014-05-31 15:13:37 -07001352
Jeff Brown70825162012-03-28 17:27:48 -07001353 mHandler = new PolicyHandler();
Jeff Browna20dda42014-05-27 20:57:24 -07001354 mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
Craig Mautnereee29c42013-01-17 14:44:34 -08001355 mOrientationListener = new MyOrientationListener(mContext, mHandler);
Jeff Brownc0347aa2011-09-23 17:26:09 -07001356 try {
1357 mOrientationListener.setCurrentRotation(windowManager.getRotation());
1358 } catch (RemoteException ex) { }
Christopher Tate5e08af02012-09-21 17:17:22 -07001359 mSettingsObserver = new SettingsObserver(mHandler);
1360 mSettingsObserver.observe();
Svetoslav683914b2015-01-15 14:22:26 -08001361 mShortcutManager = new ShortcutManager(context);
Daniel Sandler6396c722013-04-16 20:19:09 -04001362 mUiMode = context.getResources().getInteger(
1363 com.android.internal.R.integer.config_defaultUiModeType);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001364 mHomeIntent = new Intent(Intent.ACTION_MAIN, null);
1365 mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1366 mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1367 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07001368 mCarDockIntent = new Intent(Intent.ACTION_MAIN, null);
1369 mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1370 mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1371 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1372 mDeskDockIntent = new Intent(Intent.ACTION_MAIN, null);
1373 mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1374 mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1375 | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
Jim Millere6ad1a82010-08-20 19:25:39 -07001376
Jeff Brown96307042012-07-27 15:51:34 -07001377 mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1378 mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001379 "PhoneWindowManager.mBroadcastWakeLock");
Jeff Brown13f00f02014-10-31 14:45:50 -07001380 mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1381 "PhoneWindowManager.mPowerKeyWakeLock");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001382 mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
Jeff Brownbcdfc622014-03-06 19:13:04 -08001383 mSupportAutoRotation = mContext.getResources().getBoolean(
1384 com.android.internal.R.bool.config_supportAutoRotation);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001385 mLidOpenRotation = readRotation(
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001386 com.android.internal.R.integer.config_lidOpenRotation);
1387 mCarDockRotation = readRotation(
1388 com.android.internal.R.integer.config_carDockRotation);
1389 mDeskDockRotation = readRotation(
1390 com.android.internal.R.integer.config_deskDockRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001391 mUndockedHdmiRotation = readRotation(
1392 com.android.internal.R.integer.config_undockedHdmiRotation);
Mike Lockwoode9867d22009-09-20 01:59:02 -04001393 mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1394 com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1395 mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1396 com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001397 mLidKeyboardAccessibility = mContext.getResources().getInteger(
1398 com.android.internal.R.integer.config_lidKeyboardAccessibility);
1399 mLidNavigationAccessibility = mContext.getResources().getInteger(
1400 com.android.internal.R.integer.config_lidNavigationAccessibility);
Jeff Brownc458ce92012-04-30 14:58:40 -07001401 mLidControlsSleep = mContext.getResources().getBoolean(
1402 com.android.internal.R.bool.config_lidControlsSleep);
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04001403 mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1404 com.android.internal.R.bool.config_enableTranslucentDecor);
Bryce Lee584a4452014-10-21 15:55:55 -07001405
1406 mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1407 com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1408 mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1409 || mContext.getResources().getBoolean(
1410 com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1411 mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1412 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
Bryce Lee812d7022014-11-10 13:33:28 -08001413 mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1414 com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
Bryce Lee584a4452014-10-21 15:55:55 -07001415 mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1416 com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1417 mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1418 com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1419 mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1420 com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1421
Bryce Lee55e846d2014-11-04 12:43:44 -08001422 mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1423 com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1424
Bryce Leed3b28402015-03-09 15:49:13 +00001425 mSupportLongPressPowerWhenNonInteractive = mContext.getResources().getBoolean(
1426 com.android.internal.R.bool.config_supportLongPressPowerWhenNonInteractive);
1427
Jeff Brown13f00f02014-10-31 14:45:50 -07001428 mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1429 com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1430 mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1431 com.android.internal.R.integer.config_longPressOnPowerBehavior);
1432 mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1433 com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1434 mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1435 com.android.internal.R.integer.config_triplePressOnPowerBehavior);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00001436 mShortPressOnSleepBehavior = mContext.getResources().getInteger(
1437 com.android.internal.R.integer.config_shortPressOnSleepBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07001438
John Spurlock61560172015-02-06 19:46:04 -05001439 mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
RoboErik001c59c2015-01-26 15:53:51 -08001440
Jeff Brownf71343d2013-05-31 17:59:11 -07001441 readConfigurationDependentBehaviors();
Jeff Browncaca8812013-05-09 13:34:33 -07001442
Svetoslav8e3feb12014-02-24 13:46:47 -08001443 mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1444 Context.ACCESSIBILITY_SERVICE);
1445
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001446 // register for dock events
Dianne Hackborn78968392010-03-04 20:47:56 -08001447 IntentFilter filter = new IntentFilter();
1448 filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1449 filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1450 filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1451 filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07001452 filter.addAction(Intent.ACTION_DOCK_EVENT);
1453 Intent intent = context.registerReceiver(mDockReceiver, filter);
1454 if (intent != null) {
1455 // Retrieve current sticky dock event broadcast.
1456 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1457 Intent.EXTRA_DOCK_STATE_UNDOCKED);
1458 }
Daniel Sandler7e37df52011-11-16 22:08:23 -08001459
Jeff Brown6aaf2952012-10-05 16:01:08 -07001460 // register for dream-related broadcasts
1461 filter = new IntentFilter();
1462 filter.addAction(Intent.ACTION_DREAMING_STARTED);
1463 filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1464 context.registerReceiver(mDreamReceiver, filter);
1465
Christopher Tate5e08af02012-09-21 17:17:22 -07001466 // register for multiuser-relevant broadcasts
1467 filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1468 context.registerReceiver(mMultiuserReceiver, filter);
1469
John Spurlock57306e62013-04-22 09:48:49 -04001470 // monitor for system gestures
Craig Mautner037aa8d2013-06-07 10:35:44 -07001471 mSystemGestures = new SystemGesturesPointerEventListener(context,
1472 new SystemGesturesPointerEventListener.Callbacks() {
John Spurlock57306e62013-04-22 09:48:49 -04001473 @Override
1474 public void onSwipeFromTop() {
John Spurlock04db1762013-05-13 12:46:41 -04001475 if (mStatusBar != null) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001476 requestTransientBars(mStatusBar);
John Spurlock04db1762013-05-13 12:46:41 -04001477 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001478 }
1479 @Override
1480 public void onSwipeFromBottom() {
John Spurlock04db1762013-05-13 12:46:41 -04001481 if (mNavigationBar != null && mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001482 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001483 }
1484 }
1485 @Override
1486 public void onSwipeFromRight() {
John Spurlock04db1762013-05-13 12:46:41 -04001487 if (mNavigationBar != null && !mNavigationBarOnBottom) {
John Spurlocke1f366f2013-08-05 12:22:40 -04001488 requestTransientBars(mNavigationBar);
John Spurlockad3e6cb2013-04-30 08:47:43 -04001489 }
1490 }
1491 @Override
1492 public void onDebug() {
John Spurlockd67ec252013-09-05 11:31:54 -04001493 // no-op
John Spurlockad3e6cb2013-04-30 08:47:43 -04001494 }
Adrian Roos3595be42015-03-05 16:31:15 +01001495 @Override
1496 public void onDown() {
1497 mOrientationListener.onTouchStart();
1498 }
1499 @Override
1500 public void onUpOrCancel() {
1501 mOrientationListener.onTouchEnd();
1502 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04001503 });
John Spurlockf1a36642013-10-12 17:50:42 -04001504 mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
Craig Mautner037aa8d2013-06-07 10:35:44 -07001505 mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
John Spurlock32beb2c2013-03-11 10:16:47 -04001506
Jeff Brownc2346132012-04-13 01:55:38 -07001507 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001508 mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1509 com.android.internal.R.array.config_longPressVibePattern);
1510 mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1511 com.android.internal.R.array.config_virtualKeyVibePattern);
Amith Yamasanic33cb712010-02-10 15:21:49 -08001512 mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1513 com.android.internal.R.array.config_keyboardTapVibePattern);
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07001514 mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1515 com.android.internal.R.array.config_clockTickVibePattern);
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07001516 mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1517 com.android.internal.R.array.config_calendarDateVibePattern);
Dianne Hackbornb1a79802009-09-29 15:18:31 -07001518 mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1519 com.android.internal.R.array.config_safeModeDisabledVibePattern);
1520 mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1521 com.android.internal.R.array.config_safeModeEnabledVibePattern);
Mady Mellore8608912015-06-05 09:02:55 -07001522 mContextClickVibePattern = getLongIntArray(mContext.getResources(),
1523 com.android.internal.R.array.config_contextClickVibePattern);
Daniel Sandler40427442010-07-16 11:44:52 -04001524
Christopher Tatee90585f2012-03-05 18:56:25 -08001525 mScreenshotChordEnabled = mContext.getResources().getBoolean(
1526 com.android.internal.R.bool.config_enableScreenshotChord);
1527
Justin Kohd378ad72013-04-01 12:18:26 -07001528 mGlobalKeyManager = new GlobalKeyManager(mContext);
1529
Joe Onoratoea495d42011-04-06 11:41:11 -07001530 // Controls rotation and the like.
1531 initializeHdmiState();
Dianne Hackborn40011092011-09-22 13:37:48 -07001532
1533 // Match current screen state.
Craig Mautnera631d492014-08-05 15:16:01 -07001534 if (!mPowerManager.isInteractive()) {
Jeff Brown416c49c2015-05-26 19:50:18 -07001535 startedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1536 finishedGoingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
Dianne Hackborn40011092011-09-22 13:37:48 -07001537 }
Jorim Jaggi24bec7c2015-02-04 12:40:14 +01001538
1539 mWindowManagerInternal.registerAppTransitionListener(
1540 mStatusBarController.getAppTransitionListener());
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001541 }
1542
Jeff Brownf71343d2013-05-31 17:59:11 -07001543 /**
1544 * Read values from config.xml that may be overridden depending on
1545 * the configuration of the device.
1546 * eg. Disable long press on home goes to recents on sw600dp.
1547 */
1548 private void readConfigurationDependentBehaviors() {
1549 mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1550 com.android.internal.R.integer.config_longPressOnHomeBehavior);
1551 if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1552 mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1553 mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1554 }
1555
1556 mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1557 com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1558 if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1559 mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1560 mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1561 }
1562 }
1563
Craig Mautner0bf6ec92012-12-18 08:33:27 -08001564 @Override
Dianne Hackborndde331c2012-08-03 14:01:57 -07001565 public void setInitialDisplaySize(Display display, int width, int height, int density) {
Jeff Brownef981a42013-08-07 14:13:37 -07001566 // This method might be called before the policy has been fully initialized
1567 // or for other displays we don't care about.
1568 if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1569 return;
Dianne Hackbornc652de82013-02-15 16:32:56 -08001570 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001571 mDisplay = display;
1572
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001573 final Resources res = mContext.getResources();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001574 int shortSize, longSize;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001575 if (width > height) {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001576 shortSize = height;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001577 longSize = width;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001578 mLandscapeRotation = Surface.ROTATION_0;
1579 mSeascapeRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001580 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001581 mPortraitRotation = Surface.ROTATION_90;
1582 mUpsideDownRotation = Surface.ROTATION_270;
1583 } else {
1584 mPortraitRotation = Surface.ROTATION_270;
1585 mUpsideDownRotation = Surface.ROTATION_90;
1586 }
1587 } else {
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001588 shortSize = width;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001589 longSize = height;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001590 mPortraitRotation = Surface.ROTATION_0;
1591 mUpsideDownRotation = Surface.ROTATION_180;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001592 if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
Dianne Hackborn9d132642011-04-21 17:26:39 -07001593 mLandscapeRotation = Surface.ROTATION_270;
1594 mSeascapeRotation = Surface.ROTATION_90;
1595 } else {
1596 mLandscapeRotation = Surface.ROTATION_90;
1597 mSeascapeRotation = Surface.ROTATION_270;
1598 }
1599 }
Dianne Hackborn81e56d52011-05-26 00:55:58 -07001600
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001601 mStatusBarHeight =
1602 res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001603
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001604 // Height of the navigation bar when presented horizontally at bottom
1605 mNavigationBarHeightForRotation[mPortraitRotation] =
1606 mNavigationBarHeightForRotation[mUpsideDownRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001607 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001608 mNavigationBarHeightForRotation[mLandscapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001609 mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1610 com.android.internal.R.dimen.navigation_bar_height_landscape);
Daniel Sandler9f65c4c2012-04-26 01:35:35 -04001611
1612 // Width of the navigation bar when presented vertically along one side
1613 mNavigationBarWidthForRotation[mPortraitRotation] =
1614 mNavigationBarWidthForRotation[mUpsideDownRotation] =
1615 mNavigationBarWidthForRotation[mLandscapeRotation] =
1616 mNavigationBarWidthForRotation[mSeascapeRotation] =
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001617 res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
Daniel Sandler4a066c52012-04-20 14:49:13 -04001618
1619 // SystemUI (status bar) layout policy
Dianne Hackborndde331c2012-08-03 14:01:57 -07001620 int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001621 int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
Daniel Sandler4a066c52012-04-20 14:49:13 -04001622
Devin Kimd7b12b42014-05-05 14:34:58 -07001623 // Allow the navigation bar to move on non-square small devices (phones).
1624 mNavigationBarCanMove = width != height && shortSizeDp < 600;
Daniel Sandler36412a72011-08-04 09:35:13 -04001625
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001626 mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
John Spurlock80f00c12013-06-13 11:10:51 -04001627 // Allow a system property to override this. Used by the emulator.
1628 // See also hasNavigationBar().
1629 String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1630 if ("1".equals(navBarOverride)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07001631 mHasNavigationBar = false;
John Spurlock80f00c12013-06-13 11:10:51 -04001632 } else if ("0".equals(navBarOverride)) {
1633 mHasNavigationBar = true;
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04001634 }
1635
Jeff Brown27f1d672012-10-17 18:32:34 -07001636 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1637 // By default, HDMI locks rotation to landscape.
Erik Gilling9a41ef82011-09-26 19:21:03 -07001638 if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001639 mDemoHdmiRotation = mPortraitRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001640 } else {
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001641 mDemoHdmiRotation = mLandscapeRotation;
Erik Gilling9a41ef82011-09-26 19:21:03 -07001642 }
Jeff Brownc82c89ed2013-04-17 17:18:15 -07001643 mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001644
Chong Zhangae6119ff2014-11-11 18:54:39 -08001645 // For demo purposes, allow the rotation of the remote display to be controlled.
1646 // By default, remote display locks rotation to landscape.
1647 if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1648 mDemoRotation = mPortraitRotation;
1649 } else {
1650 mDemoRotation = mLandscapeRotation;
1651 }
1652 mDemoRotationLock = SystemProperties.getBoolean(
1653 "persist.demo.rotationlock", false);
1654
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001655 // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1656 // http://developer.android.com/guide/practices/screens_support.html#range
1657 mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1658 res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1659 // For debug purposes the next line turns this feature off with:
1660 // $ adb shell setprop config.override_forced_orient true
1661 // $ adb shell wm size reset
1662 !"true".equals(SystemProperties.get("config.override_forced_orient"));
1663 }
1664
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001665 /**
1666 * @return whether the navigation bar can be hidden, e.g. the device has a
1667 * navigation bar and touch exploration is not enabled
1668 */
1669 private boolean canHideNavigationBar() {
Svetoslav8e3feb12014-02-24 13:46:47 -08001670 return mHasNavigationBar
1671 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07001672 }
1673
Craig Mautner46ac6fa2013-08-01 10:06:34 -07001674 @Override
1675 public boolean isDefaultOrientationForced() {
1676 return mForceDefaultOrientation;
Dianne Hackborn9d132642011-04-21 17:26:39 -07001677 }
1678
Dianne Hackbornc652de82013-02-15 16:32:56 -08001679 @Override
1680 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1681 if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1682 mOverscanLeft = left;
1683 mOverscanTop = top;
1684 mOverscanRight = right;
1685 mOverscanBottom = bottom;
1686 }
1687 }
1688
Dianne Hackbornc777e072010-02-12 13:07:59 -08001689 public void updateSettings() {
1690 ContentResolver resolver = mContext.getContentResolver();
1691 boolean updateRotation = false;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001692 synchronized (mLock) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001693 mEndcallBehavior = Settings.System.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001694 Settings.System.END_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001695 Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1696 UserHandle.USER_CURRENT);
1697 mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
David Brownbaf8d092010-03-08 21:52:59 -08001698 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
Christopher Tate5e08af02012-09-21 17:17:22 -07001699 Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1700 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001701
Jeff Browna20dda42014-05-27 20:57:24 -07001702 // Configure wake gesture.
1703 boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1704 Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1705 UserHandle.USER_CURRENT) != 0;
1706 if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1707 mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1708 updateWakeGestureListenerLp();
1709 }
1710
Jeff Brown207673cd2012-06-05 17:47:11 -07001711 // Configure rotation lock.
Christopher Tate5e08af02012-09-21 17:17:22 -07001712 int userRotation = Settings.System.getIntForUser(resolver,
1713 Settings.System.USER_ROTATION, Surface.ROTATION_0,
1714 UserHandle.USER_CURRENT);
Jeff Brown207673cd2012-06-05 17:47:11 -07001715 if (mUserRotation != userRotation) {
1716 mUserRotation = userRotation;
1717 updateRotation = true;
1718 }
Christopher Tate5e08af02012-09-21 17:17:22 -07001719 int userRotationMode = Settings.System.getIntForUser(resolver,
1720 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
Jeff Brown207673cd2012-06-05 17:47:11 -07001721 WindowManagerPolicy.USER_ROTATION_FREE :
1722 WindowManagerPolicy.USER_ROTATION_LOCKED;
1723 if (mUserRotationMode != userRotationMode) {
1724 mUserRotationMode = userRotationMode;
1725 updateRotation = true;
Dianne Hackbornc777e072010-02-12 13:07:59 -08001726 updateOrientationListenerLp();
1727 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04001728
Dianne Hackbornc777e072010-02-12 13:07:59 -08001729 if (mSystemReady) {
Christopher Tate5e08af02012-09-21 17:17:22 -07001730 int pointerLocation = Settings.System.getIntForUser(resolver,
1731 Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001732 if (mPointerLocationMode != pointerLocation) {
1733 mPointerLocationMode = pointerLocation;
Jeff Brown70825162012-03-28 17:27:48 -07001734 mHandler.sendEmptyMessage(pointerLocation != 0 ?
1735 MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001736 }
1737 }
1738 // use screen off timeout setting as the timeout for the lockscreen
Christopher Tate5e08af02012-09-21 17:17:22 -07001739 mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1740 Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1741 String imId = Settings.Secure.getStringForUser(resolver,
1742 Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001743 boolean hasSoftInput = imId != null && imId.length() > 0;
1744 if (mHasSoftInput != hasSoftInput) {
1745 mHasSoftInput = hasSoftInput;
1746 updateRotation = true;
1747 }
John Spurlockf1a36642013-10-12 17:50:42 -04001748 if (mImmersiveModeConfirmation != null) {
John Spurlock4355a532014-02-19 09:49:25 -05001749 mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
John Spurlockd67ec252013-09-05 11:31:54 -04001750 }
tiger_huangcc6366d2015-06-29 17:17:30 +08001751 }
1752 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05001753 PolicyControl.reloadFromSetting(mContext);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001754 }
1755 if (updateRotation) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07001756 updateRotation(true);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001757 }
Jeff Brown70825162012-03-28 17:27:48 -07001758 }
1759
Jeff Browna20dda42014-05-27 20:57:24 -07001760 private void updateWakeGestureListenerLp() {
1761 if (shouldEnableWakeGestureLp()) {
1762 mWakeGestureListener.requestWakeUpTrigger();
1763 } else {
1764 mWakeGestureListener.cancelWakeUpTrigger();
1765 }
1766 }
1767
1768 private boolean shouldEnableWakeGestureLp() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07001769 return mWakeGestureEnabledSetting && !mAwake
Jeff Browna20dda42014-05-27 20:57:24 -07001770 && (!mLidControlsSleep || mLidState != LID_CLOSED)
1771 && mWakeGestureListener.isSupported();
1772 }
1773
Jeff Brown70825162012-03-28 17:27:48 -07001774 private void enablePointerLocation() {
1775 if (mPointerLocationView == null) {
1776 mPointerLocationView = new PointerLocationView(mContext);
1777 mPointerLocationView.setPrintCoords(false);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001778 WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1779 WindowManager.LayoutParams.MATCH_PARENT,
1780 WindowManager.LayoutParams.MATCH_PARENT);
Jeff Brown3b2b3542010-10-15 00:54:27 -07001781 lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001782 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1783 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1784 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1785 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
Jeff Brown90fc9052012-10-01 14:44:24 -07001786 if (ActivityManager.isHighEndGfx()) {
1787 lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1788 lp.privateFlags |=
1789 WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1790 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001791 lp.format = PixelFormat.TRANSLUCENT;
1792 lp.setTitle("PointerLocation");
Dianne Hackborn5fd21692011-06-07 14:09:47 -07001793 WindowManager wm = (WindowManager)
Dianne Hackbornc777e072010-02-12 13:07:59 -08001794 mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Browncc4f7db2011-08-30 20:34:48 -07001795 lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
Jeff Brown70825162012-03-28 17:27:48 -07001796 wm.addView(mPointerLocationView, lp);
Michael Wrightc9c487e2013-11-07 18:55:09 -08001797 mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
Dianne Hackbornc777e072010-02-12 13:07:59 -08001798 }
Dianne Hackbornc777e072010-02-12 13:07:59 -08001799 }
Jeff Brown70825162012-03-28 17:27:48 -07001800
1801 private void disablePointerLocation() {
Jeff Brown70825162012-03-28 17:27:48 -07001802 if (mPointerLocationView != null) {
Michael Wrightc9c487e2013-11-07 18:55:09 -08001803 mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1804 WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
Jeff Brown70825162012-03-28 17:27:48 -07001805 wm.removeView(mPointerLocationView);
1806 mPointerLocationView = null;
1807 }
1808 }
1809
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001810 private int readRotation(int resID) {
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001811 try {
1812 int rotation = mContext.getResources().getInteger(resID);
1813 switch (rotation) {
1814 case 0:
1815 return Surface.ROTATION_0;
1816 case 90:
1817 return Surface.ROTATION_90;
1818 case 180:
1819 return Surface.ROTATION_180;
1820 case 270:
1821 return Surface.ROTATION_270;
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001822 }
1823 } catch (Resources.NotFoundException e) {
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001824 // fall through
Mike Lockwood1753f7f2009-08-24 14:49:07 -07001825 }
Mike Lockwood2d1efbd2009-09-16 12:15:53 -04001826 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001827 }
1828
1829 /** {@inheritDoc} */
Craig Mautner88400d32012-09-30 12:35:45 -07001830 @Override
Dianne Hackbornc2293022013-02-06 23:14:49 -08001831 public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001832 int type = attrs.type;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001833
1834 outAppOp[0] = AppOpsManager.OP_NONE;
1835
Wale Ogunwale74bf0652015-01-12 10:24:36 -08001836 if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1837 || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1838 || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1839 return WindowManagerGlobal.ADD_INVALID_TYPE;
1840 }
1841
1842 if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1843 // Window manager will make sure these are okay.
Jeff Brown98365d72012-08-19 20:30:52 -07001844 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001845 }
1846 String permission = null;
1847 switch (type) {
1848 case TYPE_TOAST:
1849 // XXX right now the app process has complete control over
1850 // this... should introduce a token to let the system
1851 // monitor/control what they are doing.
Jason Monk1c7c3192014-06-26 12:52:18 -04001852 outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001853 break;
Daniel Sandler7d276c32012-01-30 14:33:52 -05001854 case TYPE_DREAM:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001855 case TYPE_INPUT_METHOD:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001856 case TYPE_WALLPAPER:
keunyounga446bf02013-06-21 19:07:57 -07001857 case TYPE_PRIVATE_PRESENTATION:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07001858 case TYPE_VOICE_INTERACTION:
Svetoslav3a5c7212014-10-14 09:54:26 -07001859 case TYPE_ACCESSIBILITY_OVERLAY:
Dianne Hackbornb7cd8b92009-08-08 20:53:03 -07001860 // The window manager will check these.
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001861 break;
1862 case TYPE_PHONE:
1863 case TYPE_PRIORITY_PHONE:
1864 case TYPE_SYSTEM_ALERT:
1865 case TYPE_SYSTEM_ERROR:
1866 case TYPE_SYSTEM_OVERLAY:
1867 permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
Dianne Hackbornc2293022013-02-06 23:14:49 -08001868 outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001869 break;
1870 default:
1871 permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1872 }
1873 if (permission != null) {
Billy Laucbe540f2015-06-25 01:51:44 +01001874 if (permission == android.Manifest.permission.SYSTEM_ALERT_WINDOW) {
1875 final int callingUid = Binder.getCallingUid();
1876 // check if this is a system uid first before bothering with
1877 // obtaining package name
1878 if (callingUid == Process.SYSTEM_UID) {
1879 return WindowManagerGlobal.ADD_OKAY;
1880 }
1881
1882 final int mode = mAppOpsManager.checkOp(outAppOp[0], callingUid,
1883 attrs.packageName);
1884 if (mode == AppOpsManager.MODE_DEFAULT) {
1885 if (mContext.checkCallingPermission(permission) !=
1886 PackageManager.PERMISSION_GRANTED) {
1887 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1888 }
1889 }
1890 return WindowManagerGlobal.ADD_OKAY;
1891 }
1892
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001893 if (mContext.checkCallingOrSelfPermission(permission)
1894 != PackageManager.PERMISSION_GRANTED) {
Jeff Brown98365d72012-08-19 20:30:52 -07001895 return WindowManagerGlobal.ADD_PERMISSION_DENIED;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001896 }
1897 }
Jeff Brown98365d72012-08-19 20:30:52 -07001898 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001899 }
Craig Mautner88400d32012-09-30 12:35:45 -07001900
1901 @Override
1902 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1903
1904 // If this switch statement is modified, modify the comment in the declarations of
1905 // the type in {@link WindowManager.LayoutParams} as well.
1906 switch (attrs.type) {
1907 default:
1908 // These are the windows that by default are shown only to the user that created
1909 // them. If this needs to be overridden, set
1910 // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1911 // {@link WindowManager.LayoutParams}. Note that permission
1912 // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1913 if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1914 return true;
1915 }
1916 break;
1917
1918 // These are the windows that by default are shown to all users. However, to
1919 // protect against spoofing, check permissions below.
1920 case TYPE_APPLICATION_STARTING:
1921 case TYPE_BOOT_PROGRESS:
1922 case TYPE_DISPLAY_OVERLAY:
Selim Cinekf83e8242015-05-19 18:08:14 -07001923 case TYPE_INPUT_CONSUMER:
Jim Miller5ecd8112013-01-09 18:50:26 -08001924 case TYPE_KEYGUARD_SCRIM:
Craig Mautner88400d32012-09-30 12:35:45 -07001925 case TYPE_KEYGUARD_DIALOG:
1926 case TYPE_MAGNIFICATION_OVERLAY:
1927 case TYPE_NAVIGATION_BAR:
1928 case TYPE_NAVIGATION_BAR_PANEL:
1929 case TYPE_PHONE:
1930 case TYPE_POINTER:
1931 case TYPE_PRIORITY_PHONE:
Craig Mautner88400d32012-09-30 12:35:45 -07001932 case TYPE_SEARCH_BAR:
1933 case TYPE_STATUS_BAR:
1934 case TYPE_STATUS_BAR_PANEL:
1935 case TYPE_STATUS_BAR_SUB_PANEL:
1936 case TYPE_SYSTEM_DIALOG:
Craig Mautner88400d32012-09-30 12:35:45 -07001937 case TYPE_VOLUME_OVERLAY:
keunyounga446bf02013-06-21 19:07:57 -07001938 case TYPE_PRIVATE_PRESENTATION:
Craig Mautner88400d32012-09-30 12:35:45 -07001939 break;
1940 }
1941
1942 // Check if third party app has set window to system window type.
1943 return mContext.checkCallingOrSelfPermission(
1944 android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1945 != PackageManager.PERMISSION_GRANTED;
1946 }
1947
Craig Mautner967212c2013-04-13 21:10:58 -07001948 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001949 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1950 switch (attrs.type) {
1951 case TYPE_SYSTEM_OVERLAY:
Jeff Brown3b2b3542010-10-15 00:54:27 -07001952 case TYPE_SECURE_SYSTEM_OVERLAY:
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001953 // These types of windows can't receive input events.
1954 attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1955 | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
Jeff Brownbfcb60a2011-09-08 18:51:14 -07001956 attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001957 break;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01001958 case TYPE_STATUS_BAR:
1959
1960 // If the Keyguard is in a hidden state (occluded by another window), we force to
1961 // remove the wallpaper and keyguard flag so that any change in-flight after setting
1962 // the keyguard as occluded wouldn't set these flags again.
1963 // See {@link #processKeyguardSetHiddenResultLw}.
1964 if (mKeyguardHidden) {
1965 attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1966 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1967 }
1968 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001969 }
Adrian Roos38502112014-04-09 21:04:11 +02001970
1971 if (attrs.type != TYPE_STATUS_BAR) {
1972 // The status bar is the only window allowed to exhibit keyguard behavior.
1973 attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1974 }
Adrian Roosea562512014-05-05 13:33:03 +02001975
1976 if (ActivityManager.isHighEndGfx()
1977 && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
Adrian Roosf5e9b5c2014-09-10 15:27:41 +02001978 attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
Adrian Roosea562512014-05-05 13:33:03 +02001979 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1980 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001981 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001982
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001983 void readLidState() {
Jeff Brown2e7760e2012-04-11 15:14:55 -07001984 mLidState = mWindowManagerFuncs.getLidState();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08001985 }
RoboErik8a2cfc32014-05-16 11:19:38 -07001986
Michael Wright3818c922014-09-02 13:59:07 -07001987 private void readCameraLensCoverState() {
1988 mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
1989 }
1990
Jeff Browndaa37532012-05-01 15:54:03 -07001991 private boolean isHidden(int accessibilityMode) {
1992 switch (accessibilityMode) {
1993 case 1:
1994 return mLidState == LID_CLOSED;
1995 case 2:
1996 return mLidState == LID_OPEN;
1997 default:
1998 return false;
Dianne Hackborn2862fff2009-09-15 22:56:29 -07001999 }
Dianne Hackborn2862fff2009-09-15 22:56:29 -07002000 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002001
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002002 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002003 @Override
Jeff Browndaa37532012-05-01 15:54:03 -07002004 public void adjustConfigurationLw(Configuration config, int keyboardPresence,
2005 int navigationPresence) {
2006 mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
2007
Jeff Brownf71343d2013-05-31 17:59:11 -07002008 readConfigurationDependentBehaviors();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002009 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07002010 applyLidSwitchState();
Jeff Brownd04a88c2011-01-16 14:05:47 -08002011
Jeff Browndaa37532012-05-01 15:54:03 -07002012 if (config.keyboard == Configuration.KEYBOARD_NOKEYS
2013 || (keyboardPresence == PRESENCE_INTERNAL
2014 && isHidden(mLidKeyboardAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002015 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
Jeff Browndaa37532012-05-01 15:54:03 -07002016 if (!mHasSoftInput) {
2017 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
2018 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002019 }
2020
Jeff Browndaa37532012-05-01 15:54:03 -07002021 if (config.navigation == Configuration.NAVIGATION_NONAV
2022 || (navigationPresence == PRESENCE_INTERNAL
2023 && isHidden(mLidNavigationAccessibility))) {
Jeff Brownd04a88c2011-01-16 14:05:47 -08002024 config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
Jeff Brownd04a88c2011-01-16 14:05:47 -08002025 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002026 }
Jeff Brownd04a88c2011-01-16 14:05:47 -08002027
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002028 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07002029 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002030 public int windowTypeToLayerLw(int type) {
2031 if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002032 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002033 }
2034 switch (type) {
keunyounga446bf02013-06-21 19:07:57 -07002035 case TYPE_PRIVATE_PRESENTATION:
2036 return 2;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002037 case TYPE_WALLPAPER:
2038 // wallpaper is at the bottom, though the window manager may move it.
2039 return 2;
2040 case TYPE_PHONE:
2041 return 3;
2042 case TYPE_SEARCH_BAR:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002043 case TYPE_VOICE_INTERACTION_STARTING:
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002044 return 4;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002045 case TYPE_VOICE_INTERACTION:
2046 // voice interaction layer is almost immediately above apps.
2047 return 5;
Selim Cinekf83e8242015-05-19 18:08:14 -07002048 case TYPE_INPUT_CONSUMER:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002049 return 6;
Selim Cinekf83e8242015-05-19 18:08:14 -07002050 case TYPE_SYSTEM_DIALOG:
2051 return 7;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002052 case TYPE_TOAST:
2053 // toasts and the plugged-in battery thing
Selim Cinekf83e8242015-05-19 18:08:14 -07002054 return 8;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002055 case TYPE_PRIORITY_PHONE:
2056 // SIM errors and unlock. Not sure if this really should be in a high layer.
Selim Cinekf83e8242015-05-19 18:08:14 -07002057 return 9;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002058 case TYPE_DREAM:
2059 // used for Dreams (screensavers with TYPE_DREAM windows)
Selim Cinekf83e8242015-05-19 18:08:14 -07002060 return 10;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002061 case TYPE_SYSTEM_ALERT:
2062 // like the ANR / app crashed dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002063 return 11;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002064 case TYPE_INPUT_METHOD:
2065 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002066 return 12;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002067 case TYPE_INPUT_METHOD_DIALOG:
2068 // on-screen keyboards and other such input method user interfaces go here.
Selim Cinekf83e8242015-05-19 18:08:14 -07002069 return 13;
Jim Miller5ecd8112013-01-09 18:50:26 -08002070 case TYPE_KEYGUARD_SCRIM:
2071 // the safety window that shows behind keyguard while keyguard is starting
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002072 return 14;
Selim Cinekf83e8242015-05-19 18:08:14 -07002073 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002074 return 15;
Selim Cinekf83e8242015-05-19 18:08:14 -07002075 case TYPE_STATUS_BAR:
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002076 return 16;
Selim Cinekf83e8242015-05-19 18:08:14 -07002077 case TYPE_STATUS_BAR_PANEL:
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002078 return 17;
Selim Cinekf83e8242015-05-19 18:08:14 -07002079 case TYPE_KEYGUARD_DIALOG:
2080 return 18;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002081 case TYPE_VOLUME_OVERLAY:
2082 // the on-screen volume indicator and controller shown when the user
2083 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002084 return 19;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002085 case TYPE_SYSTEM_OVERLAY:
2086 // the on-screen volume indicator and controller shown when the user
2087 // changes the device volume
Selim Cinekf83e8242015-05-19 18:08:14 -07002088 return 20;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002089 case TYPE_NAVIGATION_BAR:
2090 // the navigation bar, if available, shows atop most things
Selim Cinekf83e8242015-05-19 18:08:14 -07002091 return 21;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002092 case TYPE_NAVIGATION_BAR_PANEL:
2093 // some panels (e.g. search) need to show on top of the navigation bar
Selim Cinekf83e8242015-05-19 18:08:14 -07002094 return 22;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002095 case TYPE_SYSTEM_ERROR:
2096 // system-level error dialogs
Selim Cinekf83e8242015-05-19 18:08:14 -07002097 return 23;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002098 case TYPE_MAGNIFICATION_OVERLAY:
2099 // used to highlight the magnified portion of a display
Selim Cinekf83e8242015-05-19 18:08:14 -07002100 return 24;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002101 case TYPE_DISPLAY_OVERLAY:
2102 // used to simulate secondary display devices
Selim Cinekf83e8242015-05-19 18:08:14 -07002103 return 25;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002104 case TYPE_DRAG:
2105 // the drag layer: input for drag-and-drop is associated with this window,
2106 // which sits above all other focusable windows
Selim Cinekf83e8242015-05-19 18:08:14 -07002107 return 26;
Svetoslav3a5c7212014-10-14 09:54:26 -07002108 case TYPE_ACCESSIBILITY_OVERLAY:
2109 // overlay put by accessibility services to intercept user interaction
Dianne Hackborne30e02f2014-05-27 18:24:45 -07002110 return 27;
Selim Cinekf83e8242015-05-19 18:08:14 -07002111 case TYPE_SECURE_SYSTEM_OVERLAY:
Svetoslav3a5c7212014-10-14 09:54:26 -07002112 return 28;
Selim Cinekf83e8242015-05-19 18:08:14 -07002113 case TYPE_BOOT_PROGRESS:
2114 return 29;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002115 case TYPE_POINTER:
2116 // the (mouse) pointer layer
Svetoslav3a5c7212014-10-14 09:54:26 -07002117 return 30;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002118 }
2119 Log.e(TAG, "Unknown window type: " + type);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002120 return 2;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002121 }
2122
2123 /** {@inheritDoc} */
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002124 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002125 public int subWindowTypeToLayerLw(int type) {
2126 switch (type) {
2127 case TYPE_APPLICATION_PANEL:
2128 case TYPE_APPLICATION_ATTACHED_DIALOG:
2129 return APPLICATION_PANEL_SUBLAYER;
2130 case TYPE_APPLICATION_MEDIA:
2131 return APPLICATION_MEDIA_SUBLAYER;
Dianne Hackborn5cb8d792009-05-21 17:34:15 -07002132 case TYPE_APPLICATION_MEDIA_OVERLAY:
2133 return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002134 case TYPE_APPLICATION_SUB_PANEL:
2135 return APPLICATION_SUB_PANEL_SUBLAYER;
Wale Ogunwale0a4dc222015-04-14 12:58:42 -07002136 case TYPE_APPLICATION_ABOVE_SUB_PANEL:
2137 return APPLICATION_ABOVE_SUB_PANEL_SUBLAYER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002138 }
2139 Log.e(TAG, "Unknown sub-window type: " + type);
2140 return 0;
2141 }
2142
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002143 @Override
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002144 public int getMaxWallpaperLayer() {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002145 return windowTypeToLayerLw(TYPE_STATUS_BAR);
Dianne Hackbornabe0da02009-09-18 01:55:39 -07002146 }
2147
Craig Mautner46ac6fa2013-08-01 10:06:34 -07002148 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002149 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002150 if (mHasNavigationBar) {
2151 // For a basic navigation bar, when we are in landscape mode we place
2152 // the navigation bar to the side.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002153 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2154 return fullWidth - mNavigationBarWidthForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002155 }
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002156 }
2157 return fullWidth;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002158 }
2159
Jose Lima9546b202014-07-02 17:21:51 -07002160 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002161 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
Dianne Hackborn077ee852012-04-09 16:27:07 -07002162 if (mHasNavigationBar) {
2163 // For a basic navigation bar, when we are in portrait mode we place
2164 // the navigation bar to the bottom.
Daniel Sandler4a066c52012-04-20 14:49:13 -04002165 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2166 return fullHeight - mNavigationBarHeightForRotation[rotation];
Dianne Hackborn077ee852012-04-09 16:27:07 -07002167 }
2168 }
2169 return fullHeight;
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002170 }
2171
Jose Lima9546b202014-07-02 17:21:51 -07002172 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002173 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
2174 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
Dianne Hackborn69cb8752011-05-19 18:13:32 -07002175 }
2176
Jose Lima9546b202014-07-02 17:21:51 -07002177 @Override
Dianne Hackborn1f903c32011-09-13 19:18:06 -07002178 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
John Spurlock80f00c12013-06-13 11:10:51 -04002179 // There is a separate status bar at the top of the display. We don't count that as part
2180 // of the fixed decor, since it can hide; however, for purposes of configurations,
Dianne Hackborn077ee852012-04-09 16:27:07 -07002181 // we do want to exclude it since applications can't generally use that part
2182 // of the screen.
John Spurlock80f00c12013-06-13 11:10:51 -04002183 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04002184 }
2185
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002186 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07002187 public boolean isForceHiding(WindowManager.LayoutParams attrs) {
2188 return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
Jim Millerab954542014-10-10 18:21:49 -07002189 (isKeyguardHostWindow(attrs) &&
2190 (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
Adrian Roos69e510d2014-07-13 14:57:59 +02002191 (attrs.type == TYPE_KEYGUARD_SCRIM);
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002192 }
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002193
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002194 @Override
Jorim Jaggi0d674622014-05-21 01:34:15 +02002195 public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
2196 return attrs.type == TYPE_STATUS_BAR;
2197 }
2198
2199 @Override
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002200 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002201 switch (attrs.type) {
2202 case TYPE_STATUS_BAR:
2203 case TYPE_NAVIGATION_BAR:
2204 case TYPE_WALLPAPER:
2205 case TYPE_DREAM:
Jim Miller5ecd8112013-01-09 18:50:26 -08002206 case TYPE_KEYGUARD_SCRIM:
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002207 return false;
2208 default:
Adrian Roos461829d2015-06-03 14:41:18 -07002209 // Hide only windows below the keyguard host window.
2210 return windowTypeToLayerLw(win.getBaseType())
2211 < windowTypeToLayerLw(TYPE_STATUS_BAR);
Craig Mautnera3f4bf52012-10-10 20:37:48 -07002212 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002213 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002214
Craig Mautner7d7808f2014-09-11 18:02:38 -07002215 @Override
2216 public WindowState getWinShowWhenLockedLw() {
2217 return mWinShowWhenLocked;
2218 }
2219
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002220 /** {@inheritDoc} */
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002221 @Override
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002222 public View addStartingWindow(IBinder appToken, String packageName, int theme,
2223 CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002224 int icon, int logo, int windowFlags) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002225 if (!SHOW_STARTING_ANIMATIONS) {
2226 return null;
2227 }
2228 if (packageName == null) {
2229 return null;
2230 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002231
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002232 WindowManager wm = null;
2233 View view = null;
2234
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002235 try {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002236 Context context = mContext;
Craig Mautner6fbda632012-07-03 09:26:39 -07002237 if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2238 + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2239 + Integer.toHexString(theme));
Dianne Hackborn247fe742011-01-08 17:25:57 -08002240 if (theme != context.getThemeResId() || labelRes != 0) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002241 try {
2242 context = context.createPackageContext(packageName, 0);
Dianne Hackborn247fe742011-01-08 17:25:57 -08002243 context.setTheme(theme);
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002244 } catch (PackageManager.NameNotFoundException e) {
2245 // Ignore
2246 }
2247 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002248
Jorim Jaggia16cc152015-06-01 16:55:05 -07002249 PhoneWindow win = new PhoneWindow(context);
2250 win.setIsStartingWindow(true);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002251 final TypedArray ta = win.getWindowStyle();
2252 if (ta.getBoolean(
2253 com.android.internal.R.styleable.Window_windowDisablePreview, false)
2254 || ta.getBoolean(
2255 com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002256 return null;
2257 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002258
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002259 Resources r = context.getResources();
2260 win.setTitle(r.getText(labelRes, nonLocalizedLabel));
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002261
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002262 win.setType(
2263 WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
Adrian Roos602c68e2015-04-24 16:03:47 -07002264
2265 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
2266 // Assumes it's safe to show starting windows of launched apps while
2267 // the keyguard is being hidden. This is okay because starting windows never show
2268 // secret information.
2269 if (mKeyguardHidden) {
2270 windowFlags |= FLAG_SHOW_WHEN_LOCKED;
2271 }
2272 }
2273
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002274 // Force the window flags: this is a fake window, so it is not really
2275 // touchable or focusable by the user. We also add in the ALT_FOCUSABLE_IM
2276 // flag because we do know that the next window will take input
2277 // focus, so we want to get the IME window up on top of us right away.
2278 win.setFlags(
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002279 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002280 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2281 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2282 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002283 windowFlags|
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002284 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2285 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2286 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002287
Adam Powell04fe6eb2013-05-31 14:39:48 -07002288 win.setDefaultIcon(icon);
2289 win.setDefaultLogo(logo);
2290
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002291 win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002292 WindowManager.LayoutParams.MATCH_PARENT);
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002293
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002294 final WindowManager.LayoutParams params = win.getAttributes();
2295 params.token = appToken;
2296 params.packageName = packageName;
2297 params.windowAnimations = win.getWindowStyle().getResourceId(
2298 com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
John Reck61375a82014-09-18 19:27:48 +00002299 params.privateFlags |=
2300 WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
Craig Mautner88400d32012-09-30 12:35:45 -07002301 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
Adam Lesinski95c42972013-10-02 10:13:27 -07002302
2303 if (!compatInfo.supportsScreen()) {
2304 params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2305 }
2306
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002307 params.setTitle("Starting " + packageName);
2308
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002309 wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2310 view = win.getDecorView();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002311
2312 if (win.isFloating()) {
2313 // Whoops, there is no way to display an animation/preview
2314 // of such a thing! After all that work... let's skip it.
2315 // (Note that we must do this here because it is in
2316 // getDecorView() where the theme is evaluated... maybe
2317 // we should peek the floating attribute from the theme
2318 // earlier.)
2319 return null;
2320 }
Craig Mautner8e4df6c2012-05-23 16:57:23 -07002321
Craig Mautner6fbda632012-07-03 09:26:39 -07002322 if (DEBUG_STARTING_WINDOW) Slog.d(
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002323 TAG, "Adding starting window for " + packageName
2324 + " / " + appToken + ": "
2325 + (view.getParent() != null ? view : null));
2326
2327 wm.addView(view, params);
2328
2329 // Only return the view if it was successfully added to the
2330 // window manager... which we can tell by it having a parent.
2331 return view.getParent() != null ? view : null;
Jeff Brown98365d72012-08-19 20:30:52 -07002332 } catch (WindowManager.BadTokenException e) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002333 // ignore
Craig Mautner42bf39e2014-02-21 16:46:22 -08002334 Log.w(TAG, appToken + " already running, starting window not displayed. " +
2335 e.getMessage());
Dianne Hackborn867ab6472010-04-29 13:28:56 -07002336 } catch (RuntimeException e) {
2337 // don't crash if something else bad happens, for example a
2338 // failure loading resources because we are loading from an app
2339 // on external storage that has been unmounted.
2340 Log.w(TAG, appToken + " failed creating starting window", e);
Mathias Jeppssond1443e92012-08-24 15:25:32 +02002341 } finally {
2342 if (view != null && view.getParent() == null) {
2343 Log.w(TAG, "view not successfully added to wm, removing view");
2344 wm.removeViewImmediate(view);
2345 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002346 }
2347
2348 return null;
2349 }
2350
2351 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002352 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002353 public void removeStartingWindow(IBinder appToken, View window) {
Craig Mautner276a6eb2014-11-04 15:32:57 -08002354 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2355 + window + " Callers=" + Debug.getCallers(4));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002356
2357 if (window != null) {
Dianne Hackborn5fd21692011-06-07 14:09:47 -07002358 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002359 wm.removeView(window);
2360 }
2361 }
2362
2363 /**
2364 * Preflight adding a window to the system.
RoboErik8a2cfc32014-05-16 11:19:38 -07002365 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002366 * Currently enforces that three window types are singletons:
2367 * <ul>
2368 * <li>STATUS_BAR_TYPE</li>
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002369 * <li>KEYGUARD_TYPE</li>
2370 * </ul>
RoboErik8a2cfc32014-05-16 11:19:38 -07002371 *
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002372 * @param win The window to be added
2373 * @param attrs Information about the window to be added
RoboErik8a2cfc32014-05-16 11:19:38 -07002374 *
Jeff Brown98365d72012-08-19 20:30:52 -07002375 * @return If ok, WindowManagerImpl.ADD_OKAY. If too many singletons,
2376 * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002377 */
Jose Lima9546b202014-07-02 17:21:51 -07002378 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002379 public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2380 switch (attrs.type) {
2381 case TYPE_STATUS_BAR:
Joe Onorato8bc6c512010-06-04 16:21:12 -04002382 mContext.enforceCallingOrSelfPermission(
2383 android.Manifest.permission.STATUS_BAR_SERVICE,
2384 "PhoneWindowManager");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002385 if (mStatusBar != null) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002386 if (mStatusBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002387 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002388 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002389 }
2390 mStatusBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002391 mStatusBarController.setWindow(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002392 break;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002393 case TYPE_NAVIGATION_BAR:
2394 mContext.enforceCallingOrSelfPermission(
2395 android.Manifest.permission.STATUS_BAR_SERVICE,
2396 "PhoneWindowManager");
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002397 if (mNavigationBar != null) {
2398 if (mNavigationBar.isAlive()) {
Jeff Brown98365d72012-08-19 20:30:52 -07002399 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002400 }
2401 }
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002402 mNavigationBar = win;
John Spurlock27735a42013-08-14 17:57:38 -04002403 mNavigationBarController.setWindow(win);
Craig Mautnereda67292013-04-28 13:50:14 -07002404 if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002405 break;
Jim Millere898ac52012-04-06 17:10:57 -07002406 case TYPE_NAVIGATION_BAR_PANEL:
Dianne Hackborn08743722009-12-21 12:16:51 -08002407 case TYPE_STATUS_BAR_PANEL:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002408 case TYPE_STATUS_BAR_SUB_PANEL:
Jorim Jaggi225d3b52015-04-01 11:18:57 -07002409 case TYPE_VOICE_INTERACTION_STARTING:
Joe Onorato29fc2c92010-11-24 10:26:50 -08002410 mContext.enforceCallingOrSelfPermission(
2411 android.Manifest.permission.STATUS_BAR_SERVICE,
2412 "PhoneWindowManager");
Joe Onorato29fc2c92010-11-24 10:26:50 -08002413 break;
Jim Miller5ecd8112013-01-09 18:50:26 -08002414 case TYPE_KEYGUARD_SCRIM:
Jim Miller25190572013-02-28 17:36:24 -08002415 if (mKeyguardScrim != null) {
2416 return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2417 }
Jim Miller5ecd8112013-01-09 18:50:26 -08002418 mKeyguardScrim = win;
2419 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002420 }
Jeff Brown98365d72012-08-19 20:30:52 -07002421 return WindowManagerGlobal.ADD_OKAY;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002422 }
2423
2424 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07002425 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002426 public void removeWindowLw(WindowState win) {
2427 if (mStatusBar == win) {
2428 mStatusBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002429 mStatusBarController.setWindow(null);
Jim Millerc0b676d2013-03-22 16:11:08 -07002430 mKeyguardDelegate.showScrim();
Jim Miller5ecd8112013-01-09 18:50:26 -08002431 } else if (mKeyguardScrim == win) {
2432 Log.v(TAG, "Removing keyguard scrim");
2433 mKeyguardScrim = null;
2434 } if (mNavigationBar == win) {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04002435 mNavigationBar = null;
John Spurlock27735a42013-08-14 17:57:38 -04002436 mNavigationBarController.setWindow(null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002437 }
2438 }
2439
2440 static final boolean PRINT_ANIM = false;
RoboErik8a2cfc32014-05-16 11:19:38 -07002441
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002442 /** {@inheritDoc} */
Craig Mautner4b71aa12012-12-27 17:20:01 -08002443 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002444 public int selectAnimationLw(WindowState win, int transit) {
2445 if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2446 + ": transit=" + transit);
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002447 if (win == mStatusBar) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002448 boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002449 if (transit == TRANSIT_EXIT
2450 || transit == TRANSIT_HIDE) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002451 return isKeyguard ? -1 : R.anim.dock_top_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002452 } else if (transit == TRANSIT_ENTER
2453 || transit == TRANSIT_SHOW) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002454 return isKeyguard ? -1 : R.anim.dock_top_enter;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002455 }
2456 } else if (win == mNavigationBar) {
2457 // This can be on either the bottom or the right.
2458 if (mNavigationBarOnBottom) {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002459 if (transit == TRANSIT_EXIT
2460 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002461 return R.anim.dock_bottom_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002462 } else if (transit == TRANSIT_ENTER
2463 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002464 return R.anim.dock_bottom_enter;
2465 }
2466 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08002467 if (transit == TRANSIT_EXIT
2468 || transit == TRANSIT_HIDE) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002469 return R.anim.dock_right_exit;
Craig Mautner4b71aa12012-12-27 17:20:01 -08002470 } else if (transit == TRANSIT_ENTER
2471 || transit == TRANSIT_SHOW) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07002472 return R.anim.dock_right_enter;
2473 }
2474 }
Craig Mautner4b71aa12012-12-27 17:20:01 -08002475 }
2476
2477 if (transit == TRANSIT_PREVIEW_DONE) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002478 if (win.hasAppShownWindows()) {
2479 if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2480 return com.android.internal.R.anim.app_starting_exit;
2481 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07002482 } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07002483 && transit == TRANSIT_ENTER) {
2484 // Special case: we are animating in a dream, while the keyguard
2485 // is shown. We don't want an animation on the dream, because
2486 // we need it shown immediately with the keyguard animating away
2487 // to reveal it.
2488 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002489 }
2490
2491 return 0;
2492 }
2493
Craig Mautner3c174372013-02-21 17:54:37 -08002494 @Override
2495 public void selectRotationAnimationLw(int anim[]) {
2496 if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2497 + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2498 + (mTopFullscreenOpaqueWindowState == null ?
2499 "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2500 if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2501 switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2502 case ROTATION_ANIMATION_CROSSFADE:
2503 anim[0] = R.anim.rotation_animation_xfade_exit;
2504 anim[1] = R.anim.rotation_animation_enter;
2505 break;
2506 case ROTATION_ANIMATION_JUMPCUT:
2507 anim[0] = R.anim.rotation_animation_jump_exit;
2508 anim[1] = R.anim.rotation_animation_enter;
2509 break;
2510 case ROTATION_ANIMATION_ROTATE:
2511 default:
2512 anim[0] = anim[1] = 0;
2513 break;
2514 }
2515 } else {
2516 anim[0] = anim[1] = 0;
2517 }
2518 }
2519
2520 @Override
2521 public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2522 boolean forceDefault) {
2523 switch (exitAnimId) {
2524 case R.anim.rotation_animation_xfade_exit:
2525 case R.anim.rotation_animation_jump_exit:
2526 // These are the only cases that matter.
2527 if (forceDefault) {
2528 return false;
2529 }
2530 int anim[] = new int[2];
2531 selectRotationAnimationLw(anim);
2532 return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2533 default:
2534 return true;
2535 }
2536 }
2537
2538 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002539 public Animation createForceHideEnterAnimation(boolean onWallpaper,
2540 boolean goingToNotificationShade) {
2541 if (goingToNotificationShade) {
2542 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
Craig Mautnerb8340802014-11-04 15:32:57 -08002543 }
Craig Mautner276a6eb2014-11-04 15:32:57 -08002544
2545 AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2546 R.anim.lock_screen_behind_enter_wallpaper :
2547 R.anim.lock_screen_behind_enter);
2548
2549 // TODO: Use XML interpolators when we have log interpolators available in XML.
2550 final List<Animation> animations = set.getAnimations();
2551 for (int i = animations.size() - 1; i >= 0; --i) {
2552 animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2553 }
2554
2555 return set;
Jorim Jaggi76a16232014-08-08 17:00:47 +02002556 }
2557
2558
2559 @Override
Jorim Jaggi84a3e7a2014-08-13 17:58:58 +02002560 public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2561 if (goingToNotificationShade) {
2562 return null;
2563 } else {
2564 return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2565 }
Dianne Hackborn01ad2f42009-09-24 19:24:56 -07002566 }
John Spurlockc8b46ca2013-04-08 12:59:26 -04002567
2568 private static void awakenDreams() {
2569 IDreamManager dreamManager = getDreamManager();
2570 if (dreamManager != null) {
2571 try {
2572 dreamManager.awaken();
2573 } catch (RemoteException e) {
2574 // fine, stay asleep then
2575 }
2576 }
2577 }
2578
2579 static IDreamManager getDreamManager() {
2580 return IDreamManager.Stub.asInterface(
2581 ServiceManager.checkService(DreamService.DREAM_SERVICE));
2582 }
2583
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002584 TelecomManager getTelecommService() {
2585 return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002586 }
2587
Jeff Brown4d396052010-10-29 21:50:21 -07002588 static IAudioService getAudioService() {
2589 IAudioService audioService = IAudioService.Stub.asInterface(
2590 ServiceManager.checkService(Context.AUDIO_SERVICE));
2591 if (audioService == null) {
2592 Log.w(TAG, "Unable to find IAudioService interface.");
2593 }
2594 return audioService;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002595 }
2596
2597 boolean keyguardOn() {
Jim Millerab954542014-10-10 18:21:49 -07002598 return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002599 }
2600
2601 private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2602 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2603 WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2604 };
2605
2606 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002607 @Override
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002608 public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002609 final boolean keyguardOn = keyguardOn();
Jeff Brown1f245102010-11-18 20:53:46 -08002610 final int keyCode = event.getKeyCode();
2611 final int repeatCount = event.getRepeatCount();
2612 final int metaState = event.getMetaState();
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002613 final int flags = event.getFlags();
Jeff Brown1f245102010-11-18 20:53:46 -08002614 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2615 final boolean canceled = event.isCanceled();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002616
Jeff Brown40013652012-05-16 21:22:36 -07002617 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002618 Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002619 + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2620 + " canceled=" + canceled);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002621 }
2622
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002623 // If we think we might have a volume down & power key chord on the way
2624 // but we're not sure, then tell the dispatcher to wait a little while and
2625 // try again later before dispatching.
Christopher Tatee90585f2012-03-05 18:56:25 -08002626 if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002627 if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002628 final long now = SystemClock.uptimeMillis();
Jeff Brown13f00f02014-10-31 14:45:50 -07002629 final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2630 + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002631 if (now < timeoutTime) {
2632 return timeoutTime - now;
2633 }
2634 }
2635 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
Jeff Brown13f00f02014-10-31 14:45:50 -07002636 && mScreenshotChordVolumeDownKeyConsumed) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002637 if (!down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07002638 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002639 }
2640 return -1;
2641 }
2642 }
2643
Michael Wright6a62e552014-06-03 19:19:48 -07002644 // Cancel any pending meta actions if we see any other keys being pressed between the down
2645 // of the meta key and its corresponding up.
Michael Wright251e35d2014-08-22 15:40:27 -07002646 if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002647 mPendingMetaAction = false;
2648 }
2649
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002650 // First we always handle the home key here, so applications
2651 // can never break it, although if keyguard is on, we do let
2652 // it handle it, because that gives us the correct 5 second
2653 // timeout.
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002654 if (keyCode == KeyEvent.KEYCODE_HOME) {
Michael Jurka7f2668c2012-03-27 07:49:52 -07002655
Jeff Brown49ed71d2010-12-06 17:13:33 -08002656 // If we have released the home key, and didn't do anything else
2657 // while it was pressed, then it is time to go home!
Michael Jurka7f2668c2012-03-27 07:49:52 -07002658 if (!down) {
Jeff Browncaca8812013-05-09 13:34:33 -07002659 cancelPreloadRecentApps();
2660
Jeff Brown49ed71d2010-12-06 17:13:33 -08002661 mHomePressed = false;
Jeff Browncaca8812013-05-09 13:34:33 -07002662 if (mHomeConsumed) {
2663 mHomeConsumed = false;
Michael Jurka7f2668c2012-03-27 07:49:52 -07002664 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002665 }
Jeff Browncaca8812013-05-09 13:34:33 -07002666
2667 if (canceled) {
2668 Log.i(TAG, "Ignoring HOME; event canceled.");
2669 return -1;
2670 }
2671
Yorke Lee4f803242014-12-15 23:22:06 +00002672 // If an incoming call is ringing, HOME is totally disabled.
2673 // (The user is already on the InCallUI at this point,
2674 // and his ONLY options are to answer or reject the call.)
2675 TelecomManager telecomManager = getTelecommService();
2676 if (telecomManager != null && telecomManager.isRinging()) {
2677 Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2678 return -1;
2679 }
2680
Jeff Browncaca8812013-05-09 13:34:33 -07002681 // Delay handling home if a double-tap is possible.
2682 if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2683 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2684 mHomeDoubleTapPending = true;
2685 mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2686 ViewConfiguration.getDoubleTapTimeout());
2687 return -1;
2688 }
2689
Jeff Brown13f00f02014-10-31 14:45:50 -07002690 handleShortPressOnHome();
Jeff Browncaca8812013-05-09 13:34:33 -07002691 return -1;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002692 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002693
2694 // If a system window has focus, then it doesn't make sense
2695 // right now to interact with applications.
2696 WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2697 if (attrs != null) {
2698 final int type = attrs.type;
Jorim Jaggi380ecb82014-03-14 17:25:20 +01002699 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2700 || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2701 || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002702 // the "app" is keyguard, so give it the key
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002703 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002704 }
2705 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2706 for (int i=0; i<typeCount; i++) {
2707 if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2708 // don't do anything, but also don't pass it to the app
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002709 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002710 }
2711 }
2712 }
Jeff Browncaca8812013-05-09 13:34:33 -07002713
2714 // Remember that home is pressed and handle special actions.
2715 if (repeatCount == 0) {
2716 mHomePressed = true;
2717 if (mHomeDoubleTapPending) {
2718 mHomeDoubleTapPending = false;
2719 mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2720 handleDoubleTapOnHome();
2721 } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2722 || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2723 preloadRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -07002724 }
Jeff Browncaca8812013-05-09 13:34:33 -07002725 } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2726 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002727 handleLongPressOnHome(event.getDeviceId());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002728 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002729 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002730 return -1;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002731 } else if (keyCode == KeyEvent.KEYCODE_MENU) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002732 // Hijack modified menu keys for debugging features
2733 final int chordBug = KeyEvent.META_SHIFT_ON;
2734
2735 if (down && repeatCount == 0) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002736 if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002737 Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07002738 mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2739 null, null, null, 0, null, null);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002740 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002741 } else if (SHOW_PROCESSES_ON_ALT_MENU &&
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002742 (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002743 Intent service = new Intent();
2744 service.setClassName(mContext, "com.android.server.LoadAverageService");
2745 ContentResolver res = mContext.getContentResolver();
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002746 boolean shown = Settings.Global.getInt(
2747 res, Settings.Global.SHOW_PROCESSES, 0) != 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002748 if (!shown) {
2749 mContext.startService(service);
2750 } else {
2751 mContext.stopService(service);
2752 }
Jeff Sharkey8d9a1f62012-10-18 15:38:14 -07002753 Settings.Global.putInt(
2754 res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002755 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002756 }
2757 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07002758 } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002759 if (down) {
2760 if (repeatCount == 0) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002761 mSearchKeyShortcutPending = true;
2762 mConsumeSearchKeyUp = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002763 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002764 } else {
2765 mSearchKeyShortcutPending = false;
2766 if (mConsumeSearchKeyUp) {
2767 mConsumeSearchKeyUp = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002768 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002769 }
2770 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002771 return 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08002772 } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
Michael Wrightc9ebea72013-01-16 19:25:02 -08002773 if (!keyguardOn) {
Jeff Browncaca8812013-05-09 13:34:33 -07002774 if (down && repeatCount == 0) {
2775 preloadRecentApps();
2776 } else if (!down) {
2777 toggleRecentApps();
Michael Wrightc9ebea72013-01-16 19:25:02 -08002778 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08002779 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002780 return -1;
Jun Mukaid21b3c82015-04-23 14:09:34 -07002781 } else if (keyCode == KeyEvent.KEYCODE_N && event.isMetaPressed()) {
2782 if (down) {
2783 IStatusBarService service = getStatusBarService();
2784 if (service != null) {
2785 try {
2786 service.expandNotificationsPanel();
2787 } catch (RemoteException e) {
2788 // do nothing.
2789 }
2790 }
2791 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002792 } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2793 if (down) {
2794 if (repeatCount == 0) {
2795 mAssistKeyLongPressed = false;
2796 } else if (repeatCount == 1) {
2797 mAssistKeyLongPressed = true;
2798 if (!keyguardOn) {
2799 launchAssistLongPressAction();
2800 }
2801 }
2802 } else {
2803 if (mAssistKeyLongPressed) {
2804 mAssistKeyLongPressed = false;
2805 } else {
2806 if (!keyguardOn) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002807 launchAssistAction(null, event.getDeviceId());
Jeff Brownde7a8ea2012-06-13 18:28:57 -07002808 }
2809 }
2810 }
2811 return -1;
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002812 } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2813 if (!down) {
2814 Intent voiceIntent;
Michael Wright869a67c2014-08-26 19:33:06 -07002815 if (!keyguardOn) {
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002816 voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2817 } else {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07002818 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
2819 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
2820 if (dic != null) {
2821 try {
2822 dic.exitIdle("voice-search");
2823 } catch (RemoteException e) {
2824 }
2825 }
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002826 voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
Michael Wright869a67c2014-08-26 19:33:06 -07002827 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002828 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00002829 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wrightdc63f7b2014-08-21 19:05:21 -07002830 }
Jeff Sharkey2991fa32012-12-05 18:06:43 -08002831 } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2832 if (down && repeatCount == 0) {
2833 mHandler.post(mScreenshotRunnable);
2834 }
2835 return -1;
Michael Wrightb854e242013-02-05 17:54:02 -08002836 } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2837 || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2838 if (down) {
2839 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2840
2841 // Disable autobrightness if it's on
2842 int auto = Settings.System.getIntForUser(
2843 mContext.getContentResolver(),
2844 Settings.System.SCREEN_BRIGHTNESS_MODE,
2845 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2846 UserHandle.USER_CURRENT_OR_SELF);
2847 if (auto != 0) {
2848 Settings.System.putIntForUser(mContext.getContentResolver(),
2849 Settings.System.SCREEN_BRIGHTNESS_MODE,
2850 Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2851 UserHandle.USER_CURRENT_OR_SELF);
2852 }
2853
2854 int min = mPowerManager.getMinimumScreenBrightnessSetting();
2855 int max = mPowerManager.getMaximumScreenBrightnessSetting();
2856 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2857 int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2858 Settings.System.SCREEN_BRIGHTNESS,
2859 mPowerManager.getDefaultScreenBrightnessSetting(),
2860 UserHandle.USER_CURRENT_OR_SELF);
2861 brightness += step;
2862 // Make sure we don't go beyond the limits.
2863 brightness = Math.min(max, brightness);
2864 brightness = Math.max(min, brightness);
2865
2866 Settings.System.putIntForUser(mContext.getContentResolver(),
2867 Settings.System.SCREEN_BRIGHTNESS, brightness,
2868 UserHandle.USER_CURRENT_OR_SELF);
Bart Sears8b1c27c2015-03-18 23:51:02 +00002869 startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
Alan Viverette5a399492014-07-14 16:19:38 -07002870 UserHandle.CURRENT_OR_SELF);
Michael Wrightb854e242013-02-05 17:54:02 -08002871 }
2872 return -1;
Michael Wrightce0c13a2014-07-30 10:49:21 -07002873 } else if (KeyEvent.isMetaKey(keyCode)) {
Michael Wright6a62e552014-06-03 19:19:48 -07002874 if (down) {
2875 mPendingMetaAction = true;
2876 } else if (mPendingMetaAction) {
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07002877 launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD, event.getDeviceId());
Michael Wright6a62e552014-06-03 19:19:48 -07002878 }
2879 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002880 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002881
Jeff Brownc1fb48d2010-12-08 16:52:09 -08002882 // Shortcuts are invoked through Search+key, so intercept those here
Jeff Browncaab4d02010-12-09 22:13:41 -08002883 // Any printing key that is chorded with Search should be consumed
2884 // even if no shortcut was invoked. This prevents text from being
2885 // inadvertently inserted when using a keyboard that has built-in macro
2886 // shortcut keys (that emit Search+x) and some of them are not registered.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002887 if (mSearchKeyShortcutPending) {
Jeff Browncaab4d02010-12-09 22:13:41 -08002888 final KeyCharacterMap kcm = event.getKeyCharacterMap();
2889 if (kcm.isPrintingKey(keyCode)) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002890 mConsumeSearchKeyUp = true;
2891 mSearchKeyShortcutPending = false;
Jeff Browncaab4d02010-12-09 22:13:41 -08002892 if (down && repeatCount == 0 && !keyguardOn) {
2893 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2894 if (shortcutIntent != null) {
2895 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002896 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002897 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002898 } catch (ActivityNotFoundException ex) {
2899 Slog.w(TAG, "Dropping shortcut key combination because "
2900 + "the activity to which it is registered was not found: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002901 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
Jeff Brownf0a3cc52011-01-26 18:42:46 -08002902 }
Jeff Browncaab4d02010-12-09 22:13:41 -08002903 } else {
2904 Slog.i(TAG, "Dropping unregistered shortcut key combination: "
Jeff Brownfd23e3e2012-05-09 13:34:28 -07002905 + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
Jeff Brown49ed71d2010-12-06 17:13:33 -08002906 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002907 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002908 return -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002909 }
2910 }
2911
Jeff Brown68b909d2011-12-07 16:36:01 -08002912 // Invoke shortcuts using Meta.
Jeff Brown602ab322012-05-16 13:33:47 -07002913 if (down && repeatCount == 0 && !keyguardOn
Jeff Brown68b909d2011-12-07 16:36:01 -08002914 && (metaState & KeyEvent.META_META_ON) != 0) {
2915 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brown602ab322012-05-16 13:33:47 -07002916 if (kcm.isPrintingKey(keyCode)) {
2917 Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2918 metaState & ~(KeyEvent.META_META_ON
2919 | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2920 if (shortcutIntent != null) {
2921 shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2922 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002923 startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
Jeff Brown602ab322012-05-16 13:33:47 -07002924 } catch (ActivityNotFoundException ex) {
2925 Slog.w(TAG, "Dropping shortcut key combination because "
2926 + "the activity to which it is registered was not found: "
2927 + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2928 }
2929 return -1;
Jeff Brown68b909d2011-12-07 16:36:01 -08002930 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002931 }
2932 }
2933
Jeff Brown6651a632011-11-28 12:59:11 -08002934 // Handle application launch keys.
Jeff Brown602ab322012-05-16 13:33:47 -07002935 if (down && repeatCount == 0 && !keyguardOn) {
Jeff Brown6651a632011-11-28 12:59:11 -08002936 String category = sApplicationLaunchKeyCategories.get(keyCode);
2937 if (category != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -08002938 Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
Jeff Brown6651a632011-11-28 12:59:11 -08002939 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2940 try {
Bart Sears8b1c27c2015-03-18 23:51:02 +00002941 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brown6651a632011-11-28 12:59:11 -08002942 } catch (ActivityNotFoundException ex) {
2943 Slog.w(TAG, "Dropping application launch key because "
2944 + "the activity to which it is registered was not found: "
2945 + "keyCode=" + keyCode + ", category=" + category, ex);
2946 }
Jeff Brown68b909d2011-12-07 16:36:01 -08002947 return -1;
Jeff Brown6651a632011-11-28 12:59:11 -08002948 }
2949 }
2950
Michael Wright61c46752014-08-21 16:57:33 -07002951 // Display task switcher for ALT-TAB.
Jeff Brown68b909d2011-12-07 16:36:01 -08002952 if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002953 if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
Jeff Brown68b909d2011-12-07 16:36:01 -08002954 final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
Michael Wright61c46752014-08-21 16:57:33 -07002955 if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07002956 mRecentAppsHeldModifiers = shiftlessModifiers;
2957 showRecentApps(true);
Jeff Brown68b909d2011-12-07 16:36:01 -08002958 return -1;
2959 }
2960 }
Winson Chung1e8d71b2014-05-16 17:05:22 -07002961 } else if (!down && mRecentAppsHeldModifiers != 0
2962 && (metaState & mRecentAppsHeldModifiers) == 0) {
2963 mRecentAppsHeldModifiers = 0;
Winson Chungcdcd4872014-08-05 18:00:13 -07002964 hideRecentApps(true, false);
Jeff Brown68b909d2011-12-07 16:36:01 -08002965 }
2966
Jeff Browncf39bdf2012-05-18 14:41:19 -07002967 // Handle keyboard language switching.
2968 if (down && repeatCount == 0
2969 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2970 || (keyCode == KeyEvent.KEYCODE_SPACE
2971 && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2972 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2973 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2974 return -1;
2975 }
2976 if (mLanguageSwitchKeyPressed && !down
2977 && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2978 || keyCode == KeyEvent.KEYCODE_SPACE)) {
2979 mLanguageSwitchKeyPressed = false;
2980 return -1;
2981 }
2982
Jeff Brown13f00f02014-10-31 14:45:50 -07002983 if (isValidGlobalKey(keyCode)
2984 && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
Justin Kohd378ad72013-04-01 12:18:26 -07002985 return -1;
2986 }
2987
Michael Wright6a62e552014-06-03 19:19:48 -07002988 // Reserve all the META modifier combos for system behavior
Michael Wrightce0c13a2014-07-30 10:49:21 -07002989 if ((metaState & KeyEvent.META_META_ON) != 0) {
Michael Wright6a62e552014-06-03 19:19:48 -07002990 return -1;
2991 }
2992
Jeff Brown68b909d2011-12-07 16:36:01 -08002993 // Let the application handle the key.
Jeff Brownd5bb82d2011-10-12 13:57:59 -07002994 return 0;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08002995 }
2996
Jeff Brown3915bb82010-11-05 15:02:16 -07002997 /** {@inheritDoc} */
2998 @Override
Jeff Brown49ed71d2010-12-06 17:13:33 -08002999 public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
Jeff Brown54875002011-04-06 15:33:01 -07003000 // Note: This method is only called if the initial down was unhandled.
Jeff Brown40013652012-05-16 21:22:36 -07003001 if (DEBUG_INPUT) {
Jeff Brown1f245102010-11-18 20:53:46 -08003002 Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
3003 + ", flags=" + event.getFlags()
3004 + ", keyCode=" + event.getKeyCode()
3005 + ", scanCode=" + event.getScanCode()
3006 + ", metaState=" + event.getMetaState()
3007 + ", repeatCount=" + event.getRepeatCount()
3008 + ", policyFlags=" + policyFlags);
Jeff Brown3915bb82010-11-05 15:02:16 -07003009 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003010
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003011 KeyEvent fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003012 if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
3013 final KeyCharacterMap kcm = event.getKeyCharacterMap();
Jeff Brownc1fb48d2010-12-08 16:52:09 -08003014 final int keyCode = event.getKeyCode();
3015 final int metaState = event.getMetaState();
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003016 final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
3017 && event.getRepeatCount() == 0;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003018
Jeff Brown54875002011-04-06 15:33:01 -07003019 // Check for fallback actions specified by the key character map.
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003020 final FallbackAction fallbackAction;
3021 if (initialDown) {
3022 fallbackAction = kcm.getFallbackAction(keyCode, metaState);
3023 } else {
3024 fallbackAction = mFallbackActions.get(keyCode);
3025 }
3026
3027 if (fallbackAction != null) {
Jeff Brown40013652012-05-16 21:22:36 -07003028 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003029 Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
3030 + " metaState=" + Integer.toHexString(fallbackAction.metaState));
Jeff Brown49ed71d2010-12-06 17:13:33 -08003031 }
3032
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003033 final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
3034 fallbackEvent = KeyEvent.obtain(
Jeff Brown49ed71d2010-12-06 17:13:33 -08003035 event.getDownTime(), event.getEventTime(),
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003036 event.getAction(), fallbackAction.keyCode,
3037 event.getRepeatCount(), fallbackAction.metaState,
Jeff Brown49ed71d2010-12-06 17:13:33 -08003038 event.getDeviceId(), event.getScanCode(),
3039 flags, event.getSource(), null);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003040
3041 if (!interceptFallback(win, fallbackEvent, policyFlags)) {
3042 fallbackEvent.recycle();
3043 fallbackEvent = null;
Jeff Brown49ed71d2010-12-06 17:13:33 -08003044 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003045
3046 if (initialDown) {
3047 mFallbackActions.put(keyCode, fallbackAction);
3048 } else if (event.getAction() == KeyEvent.ACTION_UP) {
3049 mFallbackActions.remove(keyCode);
3050 fallbackAction.recycle();
3051 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003052 }
3053 }
3054
Jeff Brown40013652012-05-16 21:22:36 -07003055 if (DEBUG_INPUT) {
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003056 if (fallbackEvent == null) {
3057 Slog.d(TAG, "No fallback.");
3058 } else {
3059 Slog.d(TAG, "Performing fallback: " + fallbackEvent);
3060 }
Jeff Brown49ed71d2010-12-06 17:13:33 -08003061 }
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003062 return fallbackEvent;
Jeff Brown3915bb82010-11-05 15:02:16 -07003063 }
3064
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003065 private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
Jeff Brown037c33e2014-04-09 00:31:55 -07003066 int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
Jeff Brownfd23e3e2012-05-09 13:34:28 -07003067 if ((actions & ACTION_PASS_TO_USER) != 0) {
3068 long delayMillis = interceptKeyBeforeDispatching(
3069 win, fallbackEvent, policyFlags);
3070 if (delayMillis == 0) {
3071 return true;
3072 }
3073 }
3074 return false;
Jeff Brown6f2fba42011-02-19 01:08:02 -08003075 }
3076
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003077 private void launchAssistLongPressAction() {
3078 performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
3079 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
3080
3081 // launch the search activity
3082 Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
3083 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3084 try {
RoboErik8a2cfc32014-05-16 11:19:38 -07003085 // TODO: This only stops the factory-installed search manager.
Jim Miller45308b12012-06-18 19:23:39 -07003086 // Need to formalize an API to handle others
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003087 SearchManager searchManager = getSearchManager();
3088 if (searchManager != null) {
3089 searchManager.stopSearch();
3090 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00003091 startActivityAsUser(intent, UserHandle.CURRENT);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003092 } catch (ActivityNotFoundException e) {
3093 Slog.w(TAG, "No activity to handle assist long press action.", e);
3094 }
3095 }
3096
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003097 private void launchAssistAction(String hint, int deviceId) {
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003098 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
Tim Kilbourn0e5f1102015-06-05 16:18:09 -07003099 Bundle args = null;
3100 if (deviceId > Integer.MIN_VALUE) {
3101 args = new Bundle();
3102 args.putInt(Intent.EXTRA_ASSIST_INPUT_DEVICE_ID, deviceId);
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003103 }
Jorim Jaggi165ce062015-07-06 16:18:11 -07003104 if ((mContext.getResources().getConfiguration().uiMode
3105 & Configuration.UI_MODE_TYPE_MASK) == Configuration.UI_MODE_TYPE_TELEVISION) {
3106 // On TV, use legacy handling until assistants are implemented in the proper way.
3107 ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
3108 .launchLegacyAssist(hint, UserHandle.myUserId(), args);
3109 } else {
3110 try {
3111 if (hint != null) {
3112 if (args == null) {
3113 args = new Bundle();
3114 }
3115 args.putBoolean(hint, true);
3116 }
3117 IStatusBarService statusbar = getStatusBarService();
3118 if (statusbar != null) {
3119 statusbar.startAssist(args);
3120 }
3121 } catch (RemoteException e) {
3122 Slog.e(TAG, "RemoteException when starting assist", e);
3123 // re-acquire status bar service next time it is needed.
3124 mStatusBarService = null;
3125 }
3126 }
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003127 }
3128
Bart Sears8b1c27c2015-03-18 23:51:02 +00003129 private void startActivityAsUser(Intent intent, UserHandle handle) {
3130 if (isUserSetupComplete()) {
3131 mContext.startActivityAsUser(intent, handle);
3132 } else {
3133 Slog.i(TAG, "Not starting activity because user setup is in progress: " + intent);
3134 }
3135 }
3136
Jeff Brownde7a8ea2012-06-13 18:28:57 -07003137 private SearchManager getSearchManager() {
3138 if (mSearchManager == null) {
3139 mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
3140 }
3141 return mSearchManager;
3142 }
3143
Jeff Browncaca8812013-05-09 13:34:33 -07003144 private void preloadRecentApps() {
3145 mPreloadedRecentApps = true;
3146 try {
3147 IStatusBarService statusbar = getStatusBarService();
3148 if (statusbar != null) {
3149 statusbar.preloadRecentApps();
3150 }
3151 } catch (RemoteException e) {
3152 Slog.e(TAG, "RemoteException when preloading recent apps", e);
3153 // re-acquire status bar service next time it is needed.
3154 mStatusBarService = null;
3155 }
3156 }
3157
3158 private void cancelPreloadRecentApps() {
3159 if (mPreloadedRecentApps) {
3160 mPreloadedRecentApps = false;
3161 try {
3162 IStatusBarService statusbar = getStatusBarService();
3163 if (statusbar != null) {
3164 statusbar.cancelPreloadRecentApps();
3165 }
3166 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003167 Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
Jeff Browncaca8812013-05-09 13:34:33 -07003168 // re-acquire status bar service next time it is needed.
3169 mStatusBarService = null;
3170 }
3171 }
3172 }
3173
3174 private void toggleRecentApps() {
3175 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
Jeff Browncaca8812013-05-09 13:34:33 -07003176 try {
3177 IStatusBarService statusbar = getStatusBarService();
3178 if (statusbar != null) {
3179 statusbar.toggleRecentApps();
3180 }
3181 } catch (RemoteException e) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003182 Slog.e(TAG, "RemoteException when toggling recent apps", e);
3183 // re-acquire status bar service next time it is needed.
3184 mStatusBarService = null;
3185 }
3186 }
3187
Craig Mautner84984fa2014-06-19 11:19:20 -07003188 @Override
3189 public void showRecentApps() {
3190 mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
3191 mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
3192 }
3193
Winson Chung1e8d71b2014-05-16 17:05:22 -07003194 private void showRecentApps(boolean triggeredFromAltTab) {
3195 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3196 try {
3197 IStatusBarService statusbar = getStatusBarService();
3198 if (statusbar != null) {
3199 statusbar.showRecentApps(triggeredFromAltTab);
3200 }
3201 } catch (RemoteException e) {
Jeff Browncaca8812013-05-09 13:34:33 -07003202 Slog.e(TAG, "RemoteException when showing recent apps", e);
3203 // re-acquire status bar service next time it is needed.
3204 mStatusBarService = null;
3205 }
3206 }
3207
Winson Chungcdcd4872014-08-05 18:00:13 -07003208 private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
Winson Chung1e8d71b2014-05-16 17:05:22 -07003209 mPreloadedRecentApps = false; // preloading no longer needs to be canceled
3210 try {
3211 IStatusBarService statusbar = getStatusBarService();
3212 if (statusbar != null) {
Winson Chungcdcd4872014-08-05 18:00:13 -07003213 statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
Winson Chung1e8d71b2014-05-16 17:05:22 -07003214 }
3215 } catch (RemoteException e) {
3216 Slog.e(TAG, "RemoteException when closing recent apps", e);
3217 // re-acquire status bar service next time it is needed.
3218 mStatusBarService = null;
3219 }
3220 }
3221
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003222 void launchHomeFromHotKey() {
Bryce Lee662ed802015-04-10 20:11:39 +00003223 launchHomeFromHotKey(true /* awakenFromDreams */, true /*respectKeyguard*/);
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00003224 }
3225
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003226 /**
3227 * A home key -> launch home action was detected. Take the appropriate action
3228 * given the situation with the keyguard.
3229 */
Bryce Lee662ed802015-04-10 20:11:39 +00003230 void launchHomeFromHotKey(final boolean awakenFromDreams, final boolean respectKeyguard) {
3231 if (respectKeyguard) {
3232 if (isKeyguardShowingAndNotOccluded()) {
3233 // don't launch home if keyguard showing
3234 return;
3235 }
3236
3237 if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
3238 // when in keyguard restricted mode, must first verify unlock
3239 // before launching home
3240 mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
3241 @Override
3242 public void onKeyguardExitResult(boolean success) {
3243 if (success) {
3244 try {
3245 ActivityManagerNative.getDefault().stopAppSwitches();
3246 } catch (RemoteException e) {
3247 }
3248 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3249 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07003250 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003251 }
Bryce Lee662ed802015-04-10 20:11:39 +00003252 });
3253 return;
3254 }
3255 }
3256
3257 // no keyguard stuff to worry about, just launch home!
3258 try {
3259 ActivityManagerNative.getDefault().stopAppSwitches();
3260 } catch (RemoteException e) {
3261 }
3262 if (mRecentsVisible) {
3263 // Hide Recents and notify it to launch Home
3264 if (awakenFromDreams) {
3265 awakenDreams();
3266 }
3267 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3268 hideRecentApps(false, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003269 } else {
Bryce Lee662ed802015-04-10 20:11:39 +00003270 // Otherwise, just launch Home
3271 sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3272 startDockOrHome(true /*fromHomeKey*/, awakenFromDreams);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003273 }
3274 }
3275
John Spurlock04db1762013-05-13 12:46:41 -04003276 private final Runnable mClearHideNavigationFlag = new Runnable() {
3277 @Override
3278 public void run() {
3279 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3280 // Clear flags.
3281 mForceClearedSystemUiFlags &=
3282 ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3283 }
3284 mWindowManagerFuncs.reevaluateStatusBarVisibility();
Dianne Hackborne26ab702011-10-16 13:21:33 -07003285 }
3286 };
3287
3288 /**
3289 * Input handler used while nav bar is hidden. Captures any touch on the screen,
3290 * to determine when the nav bar should be shown and prevent applications from
3291 * receiving those touches.
3292 */
Jeff Brown32cbc38552011-12-01 14:01:49 -08003293 final class HideNavInputEventReceiver extends InputEventReceiver {
3294 public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3295 super(inputChannel, looper);
3296 }
3297
Dianne Hackborndf89e652011-10-06 22:35:11 -07003298 @Override
Jeff Brown32cbc38552011-12-01 14:01:49 -08003299 public void onInputEvent(InputEvent event) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003300 boolean handled = false;
3301 try {
Jeff Brown4952dfd2011-11-30 19:23:22 -08003302 if (event instanceof MotionEvent
3303 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3304 final MotionEvent motionEvent = (MotionEvent)event;
3305 if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07003306 // When the user taps down, we re-show the nav bar.
3307 boolean changed = false;
John Spurlock04db1762013-05-13 12:46:41 -04003308 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003309 // Any user activity always causes us to show the
3310 // navigation controls, if they had been hidden.
3311 // We also clear the low profile and only content
3312 // flags so that tapping on the screen will atomically
3313 // restore all currently hidden screen decorations.
3314 int newVal = mResettingSystemUiFlags |
3315 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3316 View.SYSTEM_UI_FLAG_LOW_PROFILE |
3317 View.SYSTEM_UI_FLAG_FULLSCREEN;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003318 if (mResettingSystemUiFlags != newVal) {
3319 mResettingSystemUiFlags = newVal;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003320 changed = true;
3321 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003322 // We don't allow the system's nav bar to be hidden
3323 // again for 1 second, to prevent applications from
3324 // spamming us and keeping it from being shown.
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003325 newVal = mForceClearedSystemUiFlags |
3326 View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
Dianne Hackborne26ab702011-10-16 13:21:33 -07003327 if (mForceClearedSystemUiFlags != newVal) {
3328 mForceClearedSystemUiFlags = newVal;
3329 changed = true;
John Spurlock04db1762013-05-13 12:46:41 -04003330 mHandler.postDelayed(mClearHideNavigationFlag, 1000);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003331 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003332 }
3333 if (changed) {
3334 mWindowManagerFuncs.reevaluateStatusBarVisibility();
3335 }
3336 }
3337 }
3338 } finally {
Jeff Brown32cbc38552011-12-01 14:01:49 -08003339 finishInputEvent(event, handled);
Dianne Hackborndf89e652011-10-06 22:35:11 -07003340 }
3341 }
Jeff Brown32cbc38552011-12-01 14:01:49 -08003342 }
3343 final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3344 new InputEventReceiver.Factory() {
3345 @Override
3346 public InputEventReceiver createInputEventReceiver(
3347 InputChannel inputChannel, Looper looper) {
3348 return new HideNavInputEventReceiver(inputChannel, looper);
3349 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07003350 };
3351
3352 @Override
3353 public int adjustSystemUiVisibilityLw(int visibility) {
John Spurlock5b9145b2013-08-20 15:13:47 -04003354 mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3355 mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
Winson Chungd42a6cf2014-06-03 16:24:04 -07003356 mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
John Spurlock27735a42013-08-14 17:57:38 -04003357
Dianne Hackborndf89e652011-10-06 22:35:11 -07003358 // Reset any bits in mForceClearingStatusBarVisibility that
3359 // are now clear.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003360 mResettingSystemUiFlags &= visibility;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003361 // Clear any bits in the new visibility that are currently being
3362 // force cleared, before reporting it.
Dianne Hackborne26ab702011-10-16 13:21:33 -07003363 return visibility & ~mResettingSystemUiFlags
3364 & ~mForceClearedSystemUiFlags;
Dianne Hackborndf89e652011-10-06 22:35:11 -07003365 }
3366
Craig Mautner69b08182012-09-05 13:07:13 -07003367 @Override
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003368 public void getInsetHintLw(WindowManager.LayoutParams attrs, int displayRotation,
3369 Rect outContentInsets, Rect outStableInsets, Rect outOutsets) {
John Spurlockc6d1c602014-01-17 15:22:06 -05003370 final int fl = PolicyControl.getWindowFlags(null, attrs);
John Spurlock1db8b682014-02-18 11:18:59 -05003371 final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3372 final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003373
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003374 final boolean useOutsets = outOutsets != null && shouldUseOutsets(attrs, fl);
3375 if (useOutsets) {
3376 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
3377 if (outset > 0) {
3378 if (displayRotation == Surface.ROTATION_0) {
3379 outOutsets.bottom += outset;
3380 } else if (displayRotation == Surface.ROTATION_90) {
3381 outOutsets.right += outset;
3382 } else if (displayRotation == Surface.ROTATION_180) {
3383 outOutsets.top += outset;
3384 } else if (displayRotation == Surface.ROTATION_270) {
3385 outOutsets.left += outset;
3386 }
3387 }
3388 }
3389
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003390 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003391 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003392 int availRight, availBottom;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003393 if (canHideNavigationBar() &&
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003394 (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003395 availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3396 availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3397 } else {
3398 availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3399 availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3400 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003401 if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3402 if ((fl & FLAG_FULLSCREEN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003403 outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003404 availRight - mStableFullscreenRight,
3405 availBottom - mStableFullscreenBottom);
3406 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003407 outContentInsets.set(mStableLeft, mStableTop,
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003408 availRight - mStableRight, availBottom - mStableBottom);
3409 }
Dianne Hackbornc652de82013-02-15 16:32:56 -08003410 } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003411 outContentInsets.setEmpty();
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003412 } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003413 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
Adrian Roos37d7a682014-11-06 18:15:16 +01003414 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003415 availRight - mCurRight, availBottom - mCurBottom);
3416 } else {
Adrian Roos37d7a682014-11-06 18:15:16 +01003417 outContentInsets.set(mCurLeft, mCurTop,
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003418 availRight - mCurRight, availBottom - mCurBottom);
3419 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003420
3421 outStableInsets.set(mStableLeft, mStableTop,
3422 availRight - mStableRight, availBottom - mStableBottom);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003423 return;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003424 }
Adrian Roos37d7a682014-11-06 18:15:16 +01003425 outContentInsets.setEmpty();
3426 outStableInsets.setEmpty();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003427 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003428
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003429 private boolean shouldUseOutsets(WindowManager.LayoutParams attrs, int fl) {
3430 return attrs.type == TYPE_WALLPAPER || (fl & (WindowManager.LayoutParams.FLAG_FULLSCREEN
3431 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN)) != 0;
3432 }
3433
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003434 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003435 @Override
3436 public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3437 int displayRotation) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07003438 mDisplayRotation = displayRotation;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003439 final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3440 if (isDefaultDisplay) {
3441 switch (displayRotation) {
3442 case Surface.ROTATION_90:
3443 overscanLeft = mOverscanTop;
3444 overscanTop = mOverscanRight;
3445 overscanRight = mOverscanBottom;
3446 overscanBottom = mOverscanLeft;
3447 break;
3448 case Surface.ROTATION_180:
3449 overscanLeft = mOverscanRight;
3450 overscanTop = mOverscanBottom;
3451 overscanRight = mOverscanLeft;
3452 overscanBottom = mOverscanTop;
3453 break;
3454 case Surface.ROTATION_270:
3455 overscanLeft = mOverscanBottom;
3456 overscanTop = mOverscanLeft;
3457 overscanRight = mOverscanTop;
3458 overscanBottom = mOverscanRight;
3459 break;
3460 default:
3461 overscanLeft = mOverscanLeft;
3462 overscanTop = mOverscanTop;
3463 overscanRight = mOverscanRight;
3464 overscanBottom = mOverscanBottom;
3465 break;
3466 }
3467 } else {
3468 overscanLeft = 0;
3469 overscanTop = 0;
3470 overscanRight = 0;
3471 overscanBottom = 0;
3472 }
Dianne Hackborn313440842013-02-19 19:22:59 -08003473 mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3474 mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3475 mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3476 mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
Dianne Hackbornc652de82013-02-15 16:32:56 -08003477 mSystemLeft = 0;
3478 mSystemTop = 0;
3479 mSystemRight = displayWidth;
3480 mSystemBottom = displayHeight;
3481 mUnrestrictedScreenLeft = overscanLeft;
3482 mUnrestrictedScreenTop = overscanTop;
3483 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3484 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3485 mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3486 mRestrictedScreenTop = mUnrestrictedScreenTop;
John Spurlockad3e6cb2013-04-30 08:47:43 -04003487 mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3488 mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003489 mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
Dianne Hackbornc652de82013-02-15 16:32:56 -08003490 = mCurLeft = mUnrestrictedScreenLeft;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003491 mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
Dianne Hackbornc652de82013-02-15 16:32:56 -08003492 = mCurTop = mUnrestrictedScreenTop;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003493 mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
Dianne Hackbornc652de82013-02-15 16:32:56 -08003494 = mCurRight = displayWidth - overscanRight;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003495 mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003496 = mCurBottom = displayHeight - overscanBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003497 mDockLayer = 0x10000000;
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003498 mStatusBarLayer = -1;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003499
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003500 // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3501 final Rect pf = mTmpParentFrame;
3502 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003503 final Rect of = mTmpOverscanFrame;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003504 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003505 final Rect dcf = mTmpDecorFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003506 final Rect osf = mTmpOutsetFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003507 pf.left = df.left = of.left = vf.left = mDockLeft;
3508 pf.top = df.top = of.top = vf.top = mDockTop;
3509 pf.right = df.right = of.right = vf.right = mDockRight;
3510 pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
John Spurlock46646232013-09-30 22:32:42 -04003511 dcf.setEmpty(); // Decor frame N/A for system bars.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003512
Craig Mautner69b08182012-09-05 13:07:13 -07003513 if (isDefaultDisplay) {
3514 // For purposes of putting out fake window up to steal focus, we will
3515 // drive nav being hidden only by whether it is requested.
John Spurlocke1f366f2013-08-05 12:22:40 -04003516 final int sysui = mLastSystemUiFlags;
3517 boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
Adrian Roosea562512014-05-05 13:33:03 +02003518 boolean navTranslucent = (sysui
3519 & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04003520 boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3521 boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3522 boolean navAllowedHidden = immersive || immersiveSticky;
3523 navTranslucent &= !immersiveSticky; // transient trumps translucent
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003524 boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3525 if (!isKeyguardShowing) {
3526 navTranslucent &= areTranslucentBarsAllowed();
3527 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003528
Craig Mautner69b08182012-09-05 13:07:13 -07003529 // When the navigation bar isn't visible, we put up a fake
3530 // input window to catch all touch events. This way we can
3531 // detect when the user presses anywhere to bring back the nav
3532 // bar and ensure the application doesn't see the event.
John Spurlockf1a36642013-10-12 17:50:42 -04003533 if (navVisible || navAllowedHidden) {
Selim Cinekf83e8242015-05-19 18:08:14 -07003534 if (mInputConsumer != null) {
3535 mInputConsumer.dismiss();
3536 mInputConsumer = null;
Craig Mautner69b08182012-09-05 13:07:13 -07003537 }
Selim Cinekf83e8242015-05-19 18:08:14 -07003538 } else if (mInputConsumer == null) {
3539 mInputConsumer = mWindowManagerFuncs.addInputConsumer(mHandler.getLooper(),
3540 mHideNavInputEventReceiverFactory);
Dianne Hackborne26ab702011-10-16 13:21:33 -07003541 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07003542
Craig Mautner69b08182012-09-05 13:07:13 -07003543 // For purposes of positioning and showing the nav bar, if we have
3544 // decided that it can't be hidden (because of the screen aspect ratio),
3545 // then take that into account.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003546 navVisible |= !canHideNavigationBar();
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003547
John Spurlockad3e6cb2013-04-30 08:47:43 -04003548 boolean updateSysUiVisibility = false;
Craig Mautner69b08182012-09-05 13:07:13 -07003549 if (mNavigationBar != null) {
John Spurlock27735a42013-08-14 17:57:38 -04003550 boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
Craig Mautner69b08182012-09-05 13:07:13 -07003551 // Force the navigation bar to its appropriate place and
3552 // size. We need to do this directly, instead of relying on
3553 // it to bubble up from the nav bar, because this needs to
3554 // change atomically with screen rotations.
3555 mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3556 if (mNavigationBarOnBottom) {
3557 // It's a system nav bar or a portrait screen; nav bar goes on bottom.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003558 int top = displayHeight - overscanBottom
3559 - mNavigationBarHeightForRotation[displayRotation];
3560 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
Craig Mautner69b08182012-09-05 13:07:13 -07003561 mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
John Spurlockf95b89a2013-10-10 22:10:42 -04003562 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003563 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003564 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003565 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003566 mDockBottom = mTmpNavigationFrame.top;
Dianne Hackborn313440842013-02-19 19:22:59 -08003567 mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3568 mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003569 } else {
3570 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003571 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003572 }
John Spurlockc6d1c602014-01-17 15:22:06 -05003573 if (navVisible && !navTranslucent && !navAllowedHidden
3574 && !mNavigationBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003575 && !mNavigationBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003576 // If the opaque nav bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003577 // and not in the process of animating on or off, then
3578 // we can tell the app that it is covered by it.
3579 mSystemBottom = mTmpNavigationFrame.top;
3580 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003581 } else {
Craig Mautner69b08182012-09-05 13:07:13 -07003582 // Landscape screen; nav bar goes to the right.
Dianne Hackbornc652de82013-02-15 16:32:56 -08003583 int left = displayWidth - overscanRight
3584 - mNavigationBarWidthForRotation[displayRotation];
3585 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
Craig Mautner69b08182012-09-05 13:07:13 -07003586 mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
John Spurlockf95b89a2013-10-10 22:10:42 -04003587 if (transientNavBarShowing) {
John Spurlock27735a42013-08-14 17:57:38 -04003588 mNavigationBarController.setBarShowingLw(true);
John Spurlockad3e6cb2013-04-30 08:47:43 -04003589 } else if (navVisible) {
John Spurlock27735a42013-08-14 17:57:38 -04003590 mNavigationBarController.setBarShowingLw(true);
Craig Mautner69b08182012-09-05 13:07:13 -07003591 mDockRight = mTmpNavigationFrame.left;
Dianne Hackborn313440842013-02-19 19:22:59 -08003592 mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3593 mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
Craig Mautner69b08182012-09-05 13:07:13 -07003594 } else {
3595 // We currently want to hide the navigation UI.
John Spurlock27735a42013-08-14 17:57:38 -04003596 mNavigationBarController.setBarShowingLw(false);
Craig Mautner69b08182012-09-05 13:07:13 -07003597 }
John Spurlockbd957402013-10-03 11:38:39 -04003598 if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3599 && !mNavigationBarController.wasRecentlyTranslucent()) {
Craig Mautner69b08182012-09-05 13:07:13 -07003600 // If the nav bar is currently requested to be visible,
3601 // and not in the process of animating on or off, then
3602 // we can tell the app that it is covered by it.
3603 mSystemRight = mTmpNavigationFrame.left;
3604 }
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003605 }
Craig Mautner69b08182012-09-05 13:07:13 -07003606 // Make sure the content and current rectangles are updated to
3607 // account for the restrictions from the navigation bar.
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003608 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3609 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3610 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3611 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003612 mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3613 // And compute the final frame.
3614 mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
Adrian Roosfa104232014-06-20 16:10:14 -07003615 mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003616 mTmpNavigationFrame, mTmpNavigationFrame);
Craig Mautnereda67292013-04-28 13:50:14 -07003617 if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
John Spurlock27735a42013-08-14 17:57:38 -04003618 if (mNavigationBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003619 updateSysUiVisibility = true;
3620 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003621 }
Craig Mautnereda67292013-04-28 13:50:14 -07003622 if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
Craig Mautner69b08182012-09-05 13:07:13 -07003623 mDockLeft, mDockTop, mDockRight, mDockBottom));
3624
3625 // decide where the status bar goes ahead of time
3626 if (mStatusBar != null) {
3627 // apply any navigation bar insets
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003628 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3629 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3630 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3631 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3632 + mUnrestrictedScreenTop;
Craig Mautner69b08182012-09-05 13:07:13 -07003633 vf.left = mStableLeft;
3634 vf.top = mStableTop;
3635 vf.right = mStableRight;
3636 vf.bottom = mStableBottom;
3637
3638 mStatusBarLayer = mStatusBar.getSurfaceLayer();
3639
3640 // Let the status bar determine its size.
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003641 mStatusBar.computeFrameLw(pf /* parentFrame */, df /* displayFrame */,
3642 vf /* overlayFrame */, vf /* contentFrame */, vf /* visibleFrame */,
3643 dcf /* decorFrame */, vf /* stableFrame */, vf /* outsetFrame */);
Craig Mautner69b08182012-09-05 13:07:13 -07003644
3645 // For layout, the status bar is always at the top with our fixed height.
3646 mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3647
John Spurlocke1f366f2013-08-05 12:22:40 -04003648 boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
Adrian Roosea562512014-05-05 13:33:03 +02003649 boolean statusBarTranslucent = (sysui
3650 & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
Adrian Roos4fb3ee32014-08-22 19:29:09 +02003651 if (!isKeyguardShowing) {
3652 statusBarTranslucent &= areTranslucentBarsAllowed();
3653 }
John Spurlock32beb2c2013-03-11 10:16:47 -04003654
Craig Mautner69b08182012-09-05 13:07:13 -07003655 // If the status bar is hidden, we don't want to cause
3656 // windows behind it to scroll.
John Spurlockeda1f692013-09-16 11:38:44 -04003657 if (mStatusBar.isVisibleLw() && !statusBarTransient) {
Craig Mautner69b08182012-09-05 13:07:13 -07003658 // Status bar may go away, so the screen area it occupies
3659 // is available to apps but just covering them when the
3660 // status bar is visible.
3661 mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3662
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003663 mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3664 mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3665 mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3666 mContentRight = mVoiceContentRight = mCurRight = mDockRight;
Craig Mautner69b08182012-09-05 13:07:13 -07003667
Craig Mautnereda67292013-04-28 13:50:14 -07003668 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
Craig Mautner69b08182012-09-05 13:07:13 -07003669 String.format(
3670 "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3671 mDockLeft, mDockTop, mDockRight, mDockBottom,
3672 mContentLeft, mContentTop, mContentRight, mContentBottom,
3673 mCurLeft, mCurTop, mCurRight, mCurBottom));
3674 }
John Spurlocke1f366f2013-08-05 12:22:40 -04003675 if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
John Spurlockbd957402013-10-03 11:38:39 -04003676 && !statusBarTransient && !statusBarTranslucent
3677 && !mStatusBarController.wasRecentlyTranslucent()) {
John Spurlocke1f366f2013-08-05 12:22:40 -04003678 // If the opaque status bar is currently requested to be visible,
Craig Mautner69b08182012-09-05 13:07:13 -07003679 // and not in the process of animating on or off, then
3680 // we can tell the app that it is covered by it.
3681 mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3682 }
John Spurlock27735a42013-08-14 17:57:38 -04003683 if (mStatusBarController.checkHiddenLw()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04003684 updateSysUiVisibility = true;
John Spurlock32beb2c2013-03-11 10:16:47 -04003685 }
Dianne Hackborn5c58de32012-04-28 19:52:37 -07003686 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04003687 if (updateSysUiVisibility) {
3688 updateSystemUiVisibilityLw();
3689 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003690 }
3691 }
3692
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003693 /** {@inheritDoc} */
Craig Mautner967212c2013-04-13 21:10:58 -07003694 @Override
John Spurlock46646232013-09-30 22:32:42 -04003695 public int getSystemDecorLayerLw() {
Bryce Lee2ed3e5f2015-04-01 22:09:19 +00003696 if (mStatusBar != null && mStatusBar.isVisibleLw()) {
3697 return mStatusBar.getSurfaceLayer();
3698 }
3699
3700 if (mNavigationBar != null && mNavigationBar.isVisibleLw()) {
3701 return mNavigationBar.getSurfaceLayer();
3702 }
3703
Dianne Hackborn85afd1b2012-05-13 13:31:06 -07003704 return 0;
3705 }
3706
Craig Mautner967212c2013-04-13 21:10:58 -07003707 @Override
3708 public void getContentRectLw(Rect r) {
3709 r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3710 }
3711
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003712 void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3713 boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003714 if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3715 // Here's a special case: if this attached window is a panel that is
3716 // above the dock window, and the window it is attached to is below
3717 // the dock window, then the frames we computed for the window it is
3718 // attached to can not be used because the dock is effectively part
3719 // of the underlying window and the attached window is floating on top
3720 // of the whole thing. So, we ignore the attached window and explicitly
3721 // compute the frames that would be appropriate without the dock.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003722 df.left = of.left = cf.left = vf.left = mDockLeft;
3723 df.top = of.top = cf.top = vf.top = mDockTop;
3724 df.right = of.right = cf.right = vf.right = mDockRight;
3725 df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003726 } else {
3727 // The effective display frame of the attached window depends on
3728 // whether it is taking care of insetting its content. If not,
3729 // we need to use the parent's content frame so that the entire
3730 // window is positioned within that content. Otherwise we can use
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003731 // the overscan frame and let the attached window take care of
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003732 // positioning its content appropriately.
Dianne Hackborndea3ef72010-10-28 14:24:22 -07003733 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Wale Ogunwale393b1c12014-10-18 16:22:01 -07003734 // Set the content frame of the attached window to the parent's decor frame
3735 // (same as content frame when IME isn't present) if specifically requested by
3736 // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3737 // Otherwise, use the overscan frame.
3738 cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3739 ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003740 } else {
3741 // If the window is resizing, then we want to base the content
3742 // frame on our attached content frame to resize... however,
3743 // things can be tricky if the attached window is NOT in resize
3744 // mode, in which case its content frame will be larger.
3745 // Ungh. So to deal with that, make sure the content frame
3746 // we end up using is not covering the IM dock.
3747 cf.set(attached.getContentFrameLw());
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003748 if (attached.isVoiceInteraction()) {
3749 if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3750 if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3751 if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3752 if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3753 } else if (attached.getSurfaceLayer() < mDockLayer) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003754 if (cf.left < mContentLeft) cf.left = mContentLeft;
3755 if (cf.top < mContentTop) cf.top = mContentTop;
3756 if (cf.right > mContentRight) cf.right = mContentRight;
3757 if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3758 }
3759 }
3760 df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003761 of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003762 vf.set(attached.getVisibleFrameLw());
3763 }
3764 // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3765 // window should be positioned relative to its parent or the entire
3766 // screen.
3767 pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3768 ? attached.getFrameLw() : df);
3769 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07003770
3771 private void applyStableConstraints(int sysui, int fl, Rect r) {
3772 if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3773 // If app is requesting a stable layout, don't let the
3774 // content insets go below the stable values.
3775 if ((fl & FLAG_FULLSCREEN) != 0) {
3776 if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3777 if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3778 if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3779 if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3780 } else {
3781 if (r.left < mStableLeft) r.left = mStableLeft;
3782 if (r.top < mStableTop) r.top = mStableTop;
3783 if (r.right > mStableRight) r.right = mStableRight;
3784 if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3785 }
3786 }
3787 }
3788
Jorim Jaggiaa806142015-05-20 18:04:16 -07003789 private boolean canReceiveInput(WindowState win) {
3790 boolean notFocusable =
3791 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0;
3792 boolean altFocusableIm =
3793 (win.getAttrs().flags & WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM) != 0;
3794 boolean notFocusableForIm = notFocusable ^ altFocusableIm;
3795 return !notFocusableForIm;
3796 }
3797
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003798 /** {@inheritDoc} */
Craig Mautner69b08182012-09-05 13:07:13 -07003799 @Override
Craig Mautnerc9457fa2014-06-06 14:27:48 -07003800 public void layoutWindowLw(WindowState win, WindowState attached) {
Jorim Jaggiaa806142015-05-20 18:04:16 -07003801 // We've already done the navigation bar and status bar. If the status bar can receive
3802 // input, we need to layout it again to accomodate for the IME window.
3803 if ((win == mStatusBar && !canReceiveInput(win)) || win == mNavigationBar) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003804 return;
3805 }
Jorim Jaggiaa806142015-05-20 18:04:16 -07003806 final WindowManager.LayoutParams attrs = win.getAttrs();
Craig Mautner69b08182012-09-05 13:07:13 -07003807 final boolean isDefaultDisplay = win.isDefaultDisplay();
3808 final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
satok1bc0a492012-04-25 22:47:12 +09003809 (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3810 if (needsToOffsetInputMethodTarget) {
Craig Mautnereda67292013-04-28 13:50:14 -07003811 if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
satok1bc0a492012-04-25 22:47:12 +09003812 offsetInputMethodWindowLw(mLastInputMethodWindow);
3813 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003814
John Spurlockc6d1c602014-01-17 15:22:06 -05003815 final int fl = PolicyControl.getWindowFlags(win, attrs);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003816 final int sim = attrs.softInputMode;
John Spurlock1db8b682014-02-18 11:18:59 -05003817 final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003818
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003819 final Rect pf = mTmpParentFrame;
3820 final Rect df = mTmpDisplayFrame;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003821 final Rect of = mTmpOverscanFrame;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003822 final Rect cf = mTmpContentFrame;
3823 final Rect vf = mTmpVisibleFrame;
John Spurlock46646232013-09-30 22:32:42 -04003824 final Rect dcf = mTmpDecorFrame;
Adrian Roosfa104232014-06-20 16:10:14 -07003825 final Rect sf = mTmpStableFrame;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07003826 Rect osf = null;
John Spurlock46646232013-09-30 22:32:42 -04003827 dcf.setEmpty();
Craig Mautner69b08182012-09-05 13:07:13 -07003828
3829 final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
Daniel Sandler36412a72011-08-04 09:35:13 -04003830 && mNavigationBar != null && mNavigationBar.isVisibleLw());
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003831
Craig Mautnerf683b562012-10-02 11:10:57 -07003832 final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3833
Adrian Roosfa104232014-06-20 16:10:14 -07003834 if (isDefaultDisplay) {
3835 sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3836 } else {
3837 sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3838 }
3839
Craig Mautner69b08182012-09-05 13:07:13 -07003840 if (!isDefaultDisplay) {
3841 if (attached != null) {
3842 // If this window is attached to another, our display
3843 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003844 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
Craig Mautner69b08182012-09-05 13:07:13 -07003845 } else {
3846 // Give the window full screen.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003847 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3848 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3849 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08003850 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003851 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08003852 = mOverscanScreenTop + mOverscanScreenHeight;
Craig Mautner69b08182012-09-05 13:07:13 -07003853 }
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003854 } else if (attrs.type == TYPE_INPUT_METHOD) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003855 pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3856 pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3857 pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
John Spurlockc68d5772013-10-08 11:47:58 -04003858 // IM dock windows layout below the nav bar...
John Spurlock57beb3b2013-10-10 10:27:44 -04003859 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlockc68d5772013-10-08 11:47:58 -04003860 // ...with content insets above the nav bar
3861 cf.bottom = vf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003862 // IM dock windows always go to the bottom of the screen.
3863 attrs.gravity = Gravity.BOTTOM;
3864 mDockLayer = win.getSurfaceLayer();
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003865 } else if (attrs.type == TYPE_VOICE_INTERACTION) {
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003866 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003867 pf.top = df.top = of.top = mUnrestrictedScreenTop;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003868 pf.right = df.right = of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3869 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003870 cf.bottom = vf.bottom = mStableBottom;
Stefan Kuhne2f280d062015-06-18 07:20:33 -10003871 // Note: In Phone landscape mode, the button bar should also be excluded.
3872 cf.right = vf.right = mStableRight;
3873 cf.left = vf.left = mStableLeft;
Jorim Jaggi225d3b52015-04-01 11:18:57 -07003874 cf.top = vf.top = mStableTop;
Jorim Jaggiaa806142015-05-20 18:04:16 -07003875 } else if (win == mStatusBar) {
Jorim Jaggie0700182014-08-21 01:12:37 +02003876 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3877 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3878 pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3879 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3880 cf.left = vf.left = mStableLeft;
3881 cf.top = vf.top = mStableTop;
3882 cf.right = vf.right = mStableRight;
3883 vf.bottom = mStableBottom;
3884 cf.bottom = mContentBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003885 } else {
John Spurlock46646232013-09-30 22:32:42 -04003886
3887 // Default policy decor for the default display
3888 dcf.left = mSystemLeft;
3889 dcf.top = mSystemTop;
3890 dcf.right = mSystemRight;
3891 dcf.bottom = mSystemBottom;
John Spurlockbd957402013-10-03 11:38:39 -04003892 final boolean inheritTranslucentDecor = (attrs.privateFlags
3893 & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
John Spurlock65567d42013-10-08 10:08:32 -04003894 final boolean isAppWindow =
3895 attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3896 attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3897 final boolean topAtRest =
3898 win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3899 if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
John Spurlockbd957402013-10-03 11:38:39 -04003900 if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3901 && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003902 && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3903 && (fl & WindowManager.LayoutParams.
3904 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003905 // Ensure policy decor includes status bar
3906 dcf.top = mStableTop;
3907 }
John Spurlockbd957402013-10-03 11:38:39 -04003908 if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
Adrian Roosea562512014-05-05 13:33:03 +02003909 && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3910 && (fl & WindowManager.LayoutParams.
3911 FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
John Spurlock46646232013-09-30 22:32:42 -04003912 // Ensure policy decor includes navigation bar
3913 dcf.bottom = mStableBottom;
3914 dcf.right = mStableRight;
3915 }
3916 }
3917
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003918 if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3919 == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
RoboErik8a2cfc32014-05-16 11:19:38 -07003920 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003921 + "): IN_SCREEN, INSET_DECOR");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003922 // This is the case for a normal activity window: we want it
3923 // to cover all of the screen space, and it can take care of
3924 // moving its contents to account for screen decorations that
3925 // intrude into that space.
3926 if (attached != null) {
3927 // If this window is attached to another, our display
3928 // frame is the same as the one we are attached to.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003929 setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08003930 } else {
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003931 if (attrs.type == TYPE_STATUS_BAR_PANEL
3932 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
Joe Onorato29fc2c92010-11-24 10:26:50 -08003933 // Status bar panels are the only windows who can go on top of
3934 // the status bar. They are protected by the STATUS_BAR_SERVICE
3935 // permission, so they have the same privileges as the status
3936 // bar itself.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003937 //
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003938 // However, they should still dodge the navigation bar if it exists.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003939
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003940 pf.left = df.left = of.left = hasNavBar
3941 ? mDockLeft : mUnrestrictedScreenLeft;
3942 pf.top = df.top = of.top = mUnrestrictedScreenTop;
3943 pf.right = df.right = of.right = hasNavBar
3944 ? mRestrictedScreenLeft+mRestrictedScreenWidth
3945 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3946 pf.bottom = df.bottom = of.bottom = hasNavBar
3947 ? mRestrictedScreenTop+mRestrictedScreenHeight
3948 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Daniel Sandler8956dbb2011-04-22 07:55:02 -04003949
Craig Mautnereda67292013-04-28 13:50:14 -07003950 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04003951 "Laying out status bar window: (%d,%d - %d,%d)",
3952 pf.left, pf.top, pf.right, pf.bottom));
John Spurlock46646232013-09-30 22:32:42 -04003953 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08003954 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3955 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3956 // Asking to layout into the overscan region, so give it that pure
3957 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003958 pf.left = df.left = of.left = mOverscanScreenLeft;
3959 pf.top = df.top = of.top = mOverscanScreenTop;
3960 pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3961 pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3962 + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07003963 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07003964 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Jorim Jaggi380ecb82014-03-14 17:25:20 +01003965 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3966 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003967 // Asking for layout as if the nav bar is hidden, lets the
Dianne Hackbornc652de82013-02-15 16:32:56 -08003968 // application extend into the unrestricted overscan screen area. We
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07003969 // only do this for application windows to ensure no window that
3970 // can be above the nav bar can do this.
Dianne Hackborn313440842013-02-19 19:22:59 -08003971 pf.left = df.left = mOverscanScreenLeft;
3972 pf.top = df.top = mOverscanScreenTop;
3973 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3974 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003975 // We need to tell the app about where the frame inside the overscan
3976 // is, so it can inset its content by that amount -- it didn't ask
3977 // to actually extend itself into the overscan region.
3978 of.left = mUnrestrictedScreenLeft;
3979 of.top = mUnrestrictedScreenTop;
3980 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3981 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003982 } else {
Dianne Hackborn313440842013-02-19 19:22:59 -08003983 pf.left = df.left = mRestrictedOverscanScreenLeft;
3984 pf.top = df.top = mRestrictedOverscanScreenTop;
3985 pf.right = df.right = mRestrictedOverscanScreenLeft
3986 + mRestrictedOverscanScreenWidth;
3987 pf.bottom = df.bottom = mRestrictedOverscanScreenTop
3988 + mRestrictedOverscanScreenHeight;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08003989 // We need to tell the app about where the frame inside the overscan
3990 // is, so it can inset its content by that amount -- it didn't ask
3991 // to actually extend itself into the overscan region.
3992 of.left = mUnrestrictedScreenLeft;
3993 of.top = mUnrestrictedScreenTop;
3994 of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3995 of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08003996 }
Craig Mautner69b08182012-09-05 13:07:13 -07003997
John Spurlock46646232013-09-30 22:32:42 -04003998 if ((fl & FLAG_FULLSCREEN) == 0) {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07003999 if (win.isVoiceInteraction()) {
4000 cf.left = mVoiceContentLeft;
4001 cf.top = mVoiceContentTop;
4002 cf.right = mVoiceContentRight;
4003 cf.bottom = mVoiceContentBottom;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004004 } else {
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004005 if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
4006 cf.left = mDockLeft;
4007 cf.top = mDockTop;
4008 cf.right = mDockRight;
4009 cf.bottom = mDockBottom;
4010 } else {
4011 cf.left = mContentLeft;
4012 cf.top = mContentTop;
4013 cf.right = mContentRight;
4014 cf.bottom = mContentBottom;
4015 }
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004016 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004017 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004018 // Full screen windows are always given a layout that is as if the
4019 // status bar and other transient decors are gone. This is to avoid
4020 // bad states when moving from a window that is not hding the
4021 // status bar to one that is.
4022 cf.left = mRestrictedScreenLeft;
4023 cf.top = mRestrictedScreenTop;
4024 cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
4025 cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004026 }
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004027 applyStableConstraints(sysUiFl, fl, cf);
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004028 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4029 vf.left = mCurLeft;
4030 vf.top = mCurTop;
4031 vf.right = mCurRight;
4032 vf.bottom = mCurBottom;
4033 } else {
4034 vf.set(cf);
4035 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004036 }
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004037 } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
4038 & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
4039 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
Craig Mautnereda67292013-04-28 13:50:14 -07004040 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4041 "): IN_SCREEN");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004042 // A window that has requested to fill the entire screen just
4043 // gets everything, period.
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004044 if (attrs.type == TYPE_STATUS_BAR_PANEL
John Spurlock67a0f852015-06-15 15:35:47 -04004045 || attrs.type == TYPE_STATUS_BAR_SUB_PANEL
4046 || attrs.type == TYPE_VOLUME_OVERLAY) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004047 pf.left = df.left = of.left = cf.left = hasNavBar
4048 ? mDockLeft : mUnrestrictedScreenLeft;
4049 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4050 pf.right = df.right = of.right = cf.right = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004051 ? mRestrictedScreenLeft+mRestrictedScreenWidth
Dianne Hackbornc652de82013-02-15 16:32:56 -08004052 : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004053 pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004054 ? mRestrictedScreenTop+mRestrictedScreenHeight
Dianne Hackbornc652de82013-02-15 16:32:56 -08004055 : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004056 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler36412a72011-08-04 09:35:13 -04004057 "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
4058 pf.left, pf.top, pf.right, pf.bottom));
Jim Millere898ac52012-04-06 17:10:57 -07004059 } else if (attrs.type == TYPE_NAVIGATION_BAR
4060 || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004061 // The navigation bar has Real Ultimate Power.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004062 pf.left = df.left = of.left = mUnrestrictedScreenLeft;
4063 pf.top = df.top = of.top = mUnrestrictedScreenTop;
4064 pf.right = df.right = of.right = mUnrestrictedScreenLeft
4065 + mUnrestrictedScreenWidth;
4066 pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
4067 + mUnrestrictedScreenHeight;
Craig Mautnereda67292013-04-28 13:50:14 -07004068 if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
Daniel Sandler8e8b4152011-07-21 01:16:43 -04004069 "Laying out navigation bar window: (%d,%d - %d,%d)",
4070 pf.left, pf.top, pf.right, pf.bottom));
Dianne Hackborn01011c32012-02-21 13:54:21 -08004071 } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
4072 || attrs.type == TYPE_BOOT_PROGRESS)
Jeff Brownbfcb60a2011-09-08 18:51:14 -07004073 && ((fl & FLAG_FULLSCREEN) != 0)) {
4074 // Fullscreen secure system overlays get what they ask for.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004075 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4076 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4077 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4078 + mOverscanScreenWidth;
4079 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4080 + mOverscanScreenHeight;
Craig Mautner165be0c2015-01-27 15:16:58 -08004081 } else if (attrs.type == TYPE_BOOT_PROGRESS) {
Dianne Hackborn01011c32012-02-21 13:54:21 -08004082 // Boot progress screen always covers entire display.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004083 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4084 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4085 pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
4086 + mOverscanScreenWidth;
4087 pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
4088 + mOverscanScreenHeight;
John Spurlockef4adae2013-08-26 17:58:58 -04004089 } else if (attrs.type == TYPE_WALLPAPER) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004090 // The wallpaper also has Real Ultimate Power, but we want to tell
4091 // it about the overscan area.
4092 pf.left = df.left = mOverscanScreenLeft;
4093 pf.top = df.top = mOverscanScreenTop;
4094 pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
4095 pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
4096 of.left = cf.left = mUnrestrictedScreenLeft;
4097 of.top = cf.top = mUnrestrictedScreenTop;
4098 of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
4099 of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
John Spurlock46646232013-09-30 22:32:42 -04004100 } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
Dianne Hackbornc652de82013-02-15 16:32:56 -08004101 && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4102 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
4103 // Asking to layout into the overscan region, so give it that pure
4104 // unrestricted area.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004105 pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
4106 pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
4107 pf.right = df.right = of.right = cf.right
Dianne Hackbornc652de82013-02-15 16:32:56 -08004108 = mOverscanScreenLeft + mOverscanScreenWidth;
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004109 pf.bottom = df.bottom = of.bottom = cf.bottom
Dianne Hackbornc652de82013-02-15 16:32:56 -08004110 = mOverscanScreenTop + mOverscanScreenHeight;
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07004111 } else if (canHideNavigationBar()
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004112 && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
Craig Mautnerbeac1062014-06-03 14:38:57 -07004113 && (attrs.type == TYPE_STATUS_BAR
4114 || attrs.type == TYPE_TOAST
Jorim Jaggi2fdeeab2015-04-01 15:13:03 -07004115 || attrs.type == TYPE_VOICE_INTERACTION_STARTING
John Spurlock34e13d92013-08-10 06:52:28 -04004116 || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
4117 && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004118 // Asking for layout as if the nav bar is hidden, lets the
4119 // application extend into the unrestricted screen area. We
John Spurlock34e13d92013-08-10 06:52:28 -04004120 // only do this for application windows (or toasts) to ensure no window that
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004121 // can be above the nav bar can do this.
4122 // XXX This assumes that an app asking for this will also
4123 // ask for layout in only content. We can't currently figure out
4124 // what the screen would be if only laying out to hide the nav bar.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004125 pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
4126 pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
4127 pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
4128 + mUnrestrictedScreenWidth;
4129 pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
4130 + mUnrestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004131 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004132 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4133 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4134 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4135 + mRestrictedScreenWidth;
4136 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4137 + mRestrictedScreenHeight;
Joe Onorato29fc2c92010-11-24 10:26:50 -08004138 }
Craig Mautner69b08182012-09-05 13:07:13 -07004139
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07004140 applyStableConstraints(sysUiFl, fl, cf);
Craig Mautner69b08182012-09-05 13:07:13 -07004141
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004142 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4143 vf.left = mCurLeft;
4144 vf.top = mCurTop;
4145 vf.right = mCurRight;
4146 vf.bottom = mCurBottom;
4147 } else {
4148 vf.set(cf);
4149 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004150 } else if (attached != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004151 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4152 "): attached to " + attached);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004153 // A child window should be placed inside of the same visible
4154 // frame that its parent had.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004155 setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004156 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004157 if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
4158 "): normal window");
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004159 // Otherwise, a normal window must be placed inside the content
4160 // of all screen decorations.
John Spurlock67a0f852015-06-15 15:35:47 -04004161 if (attrs.type == TYPE_STATUS_BAR_PANEL || attrs.type == TYPE_VOLUME_OVERLAY) {
4162 // Status bar panels and the volume dialog are the only windows who can go on
4163 // top of the status bar. They are protected by the STATUS_BAR_SERVICE
Dianne Hackborna239c842011-06-01 12:28:20 -07004164 // permission, so they have the same privileges as the status
4165 // bar itself.
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004166 pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
4167 pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
4168 pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
4169 + mRestrictedScreenWidth;
4170 pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
4171 + mRestrictedScreenHeight;
John Spurlock67a0f852015-06-15 15:35:47 -04004172 } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT) {
John Spurlock414c1f02013-12-04 13:47:36 -05004173 // These dialogs are stable to interim decor changes.
John Spurlockbd957402013-10-03 11:38:39 -04004174 pf.left = df.left = of.left = cf.left = mStableLeft;
4175 pf.top = df.top = of.top = cf.top = mStableTop;
4176 pf.right = df.right = of.right = cf.right = mStableRight;
4177 pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004178 } else {
Dianne Hackborna239c842011-06-01 12:28:20 -07004179 pf.left = mContentLeft;
4180 pf.top = mContentTop;
4181 pf.right = mContentRight;
4182 pf.bottom = mContentBottom;
Dianne Hackborn20d94742014-05-29 18:35:45 -07004183 if (win.isVoiceInteraction()) {
4184 df.left = of.left = cf.left = mVoiceContentLeft;
4185 df.top = of.top = cf.top = mVoiceContentTop;
4186 df.right = of.right = cf.right = mVoiceContentRight;
4187 df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
4188 } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004189 df.left = of.left = cf.left = mDockLeft;
4190 df.top = of.top = cf.top = mDockTop;
4191 df.right = of.right = cf.right = mDockRight;
4192 df.bottom = of.bottom = cf.bottom = mDockBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004193 } else {
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004194 df.left = of.left = cf.left = mContentLeft;
4195 df.top = of.top = cf.top = mContentTop;
4196 df.right = of.right = cf.right = mContentRight;
4197 df.bottom = of.bottom = cf.bottom = mContentBottom;
Dianne Hackborna239c842011-06-01 12:28:20 -07004198 }
4199 if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
4200 vf.left = mCurLeft;
4201 vf.top = mCurTop;
4202 vf.right = mCurRight;
4203 vf.bottom = mCurBottom;
4204 } else {
4205 vf.set(cf);
4206 }
Dianne Hackborndea3ef72010-10-28 14:24:22 -07004207 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004208 }
4209 }
Craig Mautner69b08182012-09-05 13:07:13 -07004210
Craig Mautnerb816bed2013-07-23 10:26:17 -07004211 // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
4212 if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
Dianne Hackborn067e5f62014-09-07 23:14:30 -07004213 df.left = df.top = -10000;
4214 df.right = df.bottom = 10000;
4215 if (attrs.type != TYPE_WALLPAPER) {
4216 of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
4217 of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
4218 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004219 }
4220
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004221 // If the device has a chin (e.g. some watches), a dead area at the bottom of the screen we
4222 // need to provide information to the clients that want to pretend that you can draw there.
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004223 // We only want to apply outsets to certain types of windows. For example, we never want to
4224 // apply the outsets to floating dialogs, because they wouldn't make sense there.
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004225 final boolean useOutsets = shouldUseOutsets(attrs, fl);
Filip Gruszczynskib0c673b2015-06-05 09:43:06 -07004226 if (isDefaultDisplay && useOutsets) {
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004227 osf = mTmpOutsetFrame;
4228 osf.set(cf.left, cf.top, cf.right, cf.bottom);
4229 int outset = ScreenShapeHelper.getWindowOutsetBottomPx(mContext.getResources());
4230 if (outset > 0) {
Filip Gruszczynski2987f612015-06-30 15:03:30 -07004231 int rotation = mDisplayRotation;
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004232 if (rotation == Surface.ROTATION_0) {
4233 osf.bottom += outset;
4234 } else if (rotation == Surface.ROTATION_90) {
4235 osf.right += outset;
4236 } else if (rotation == Surface.ROTATION_180) {
4237 osf.top -= outset;
4238 } else if (rotation == Surface.ROTATION_270) {
4239 osf.left -= outset;
4240 }
4241 if (DEBUG_LAYOUT) Slog.v(TAG, "applying bottom outset of " + outset
4242 + " with rotation " + rotation + ", result: " + osf);
4243 }
4244 }
4245
Craig Mautnereda67292013-04-28 13:50:14 -07004246 if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
The Android Open Source Project11267662009-03-18 17:39:47 -07004247 + ": sim=#" + Integer.toHexString(sim)
RoboErik8a2cfc32014-05-16 11:19:38 -07004248 + " attach=" + attached + " type=" + attrs.type
Daniel Sandler8956dbb2011-04-22 07:55:02 -04004249 + String.format(" flags=0x%08x", fl)
The Android Open Source Project11267662009-03-18 17:39:47 -07004250 + " pf=" + pf.toShortString() + " df=" + df.toShortString()
Dianne Hackbornc4aad012013-02-22 15:05:25 -08004251 + " of=" + of.toShortString()
John Spurlock46646232013-09-30 22:32:42 -04004252 + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
Adrian Roosfa104232014-06-20 16:10:14 -07004253 + " dcf=" + dcf.toShortString()
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004254 + " sf=" + sf.toShortString()
4255 + " osf=" + (osf == null ? "null" : osf.toShortString()));
Craig Mautner69b08182012-09-05 13:07:13 -07004256
Filip Gruszczynski2217f612015-05-26 11:32:08 -07004257 win.computeFrameLw(pf, df, of, cf, vf, dcf, sf, osf);
Craig Mautner69b08182012-09-05 13:07:13 -07004258
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004259 // Dock windows carve out the bottom of the screen, so normal windows
4260 // can't appear underneath them.
Craig Mautner8bd206b2012-10-03 10:32:02 -07004261 if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
4262 && !win.getGivenInsetsPendingLw()) {
satok1bc0a492012-04-25 22:47:12 +09004263 setLastInputMethodWindowLw(null, null);
4264 offsetInputMethodWindowLw(win);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004265 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004266 if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
4267 && !win.getGivenInsetsPendingLw()) {
4268 offsetVoiceInputWindowLw(win);
4269 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004270 }
4271
satok1bc0a492012-04-25 22:47:12 +09004272 private void offsetInputMethodWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004273 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
satok1bc0a492012-04-25 22:47:12 +09004274 top += win.getGivenContentInsetsLw().top;
4275 if (mContentBottom > top) {
4276 mContentBottom = top;
4277 }
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004278 if (mVoiceContentBottom > top) {
4279 mVoiceContentBottom = top;
4280 }
satok1bc0a492012-04-25 22:47:12 +09004281 top = win.getVisibleFrameLw().top;
4282 top += win.getGivenVisibleInsetsLw().top;
4283 if (mCurBottom > top) {
4284 mCurBottom = top;
4285 }
Craig Mautnereda67292013-04-28 13:50:14 -07004286 if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
satok1bc0a492012-04-25 22:47:12 +09004287 + mDockBottom + " mContentBottom="
4288 + mContentBottom + " mCurBottom=" + mCurBottom);
4289 }
4290
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004291 private void offsetVoiceInputWindowLw(WindowState win) {
Craig Mautner4774f6a2015-03-23 11:42:55 -07004292 int top = Math.max(win.getDisplayFrameLw().top, win.getContentFrameLw().top);
Dianne Hackbornae6688b2015-02-11 17:02:41 -08004293 top += win.getGivenContentInsetsLw().top;
4294 if (mVoiceContentBottom > top) {
4295 mVoiceContentBottom = top;
Dianne Hackborne30e02f2014-05-27 18:24:45 -07004296 }
4297 }
4298
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004299 /** {@inheritDoc} */
Craig Mautner61ac6bb2012-02-02 17:29:33 -08004300 @Override
4301 public void finishLayoutLw() {
4302 return;
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004303 }
4304
4305 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004306 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004307 public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004308 mTopFullscreenOpaqueWindowState = null;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004309 mTopFullscreenOpaqueOrDimmingWindowState = null;
Craig Mautner2bc789b2014-03-19 19:48:38 -07004310 mAppsToBeHidden.clear();
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004311 mAppsThatDismissKeyguard.clear();
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004312 mForceStatusBar = false;
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004313 mForceStatusBarFromKeyguard = false;
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004314 mForceStatusBarTransparent = false;
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004315 mForcingShowNavBar = false;
4316 mForcingShowNavBarLayer = -1;
RoboErik8a2cfc32014-05-16 11:19:38 -07004317
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004318 mHideLockScreen = false;
4319 mAllowLockscreenWhenOn = false;
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004320 mDismissKeyguard = DISMISS_KEYGUARD_NONE;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004321 mShowingLockscreen = false;
4322 mShowingDream = false;
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004323 mWinShowWhenLocked = null;
Jim Millerab954542014-10-10 18:21:49 -07004324 mKeyguardSecure = isKeyguardSecure();
4325 mKeyguardSecureIncludingHidden = mKeyguardSecure
4326 && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004327 }
4328
4329 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004330 @Override
Yohei Yukawad1a09222015-06-30 16:22:05 -07004331 public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs,
4332 WindowState attached) {
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004333 if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
4334 + win.isVisibleOrBehindKeyguardLw());
John Spurlockc6d1c602014-01-17 15:22:06 -05004335 final int fl = PolicyControl.getWindowFlags(win, attrs);
John Spurlock414c1f02013-12-04 13:47:36 -05004336 if (mTopFullscreenOpaqueWindowState == null
4337 && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4338 mForcingShowNavBar = true;
4339 mForcingShowNavBarLayer = win.getSurfaceLayer();
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08004340 }
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004341 if (attrs.type == TYPE_STATUS_BAR) {
4342 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4343 mForceStatusBarFromKeyguard = true;
4344 }
4345 if ((attrs.privateFlags & PRIVATE_FLAG_FORCE_STATUS_BAR_VISIBLE_TRANSPARENT) != 0) {
4346 mForceStatusBarTransparent = true;
4347 }
Jorim Jaggiafd4a552014-04-08 15:13:05 +02004348 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004349
4350 boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4351 && attrs.type < FIRST_SYSTEM_WINDOW;
4352 final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4353 final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4354
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004355 if (mTopFullscreenOpaqueWindowState == null &&
Dianne Hackborn01b02a72012-01-12 14:05:03 -08004356 win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004357 if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004358 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004359 mForceStatusBarFromKeyguard = true;
4360 } else {
4361 mForceStatusBar = true;
4362 }
4363 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004364 if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004365 mShowingLockscreen = true;
Dianne Hackbornbc1aa7b2011-09-20 11:20:31 -07004366 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004367 if (attrs.type == TYPE_DREAM) {
Jeff Brownc8018eb2012-10-29 21:33:27 -07004368 // If the lockscreen was showing when the dream started then wait
4369 // for the dream to draw before hiding the lockscreen.
4370 if (!mDreamingLockscreen
4371 || (win.isVisibleLw() && win.hasDrawnLw())) {
4372 mShowingDream = true;
Craig Mautnerab55e522014-03-03 13:26:03 -08004373 appWindow = true;
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004374 }
4375 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004376
Yohei Yukawad1a09222015-06-30 16:22:05 -07004377 final IApplicationToken appToken = win.getAppToken();
4378
4379 // For app windows that are not attached, we decide if all windows in the app they
4380 // represent should be hidden or if we should hide the lockscreen. For attached app
4381 // windows we defer the decision to the window it is attached to.
4382 if (appWindow && attached == null) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004383 if (showWhenLocked) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004384 // Remove any previous windows with the same appToken.
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004385 mAppsToBeHidden.remove(appToken);
4386 mAppsThatDismissKeyguard.remove(appToken);
Craig Mautnerca0a1242014-12-02 12:25:14 -08004387 if (mAppsToBeHidden.isEmpty()) {
Craig Mautner192d6042014-12-02 23:24:48 -08004388 if (dismissKeyguard && !mKeyguardSecure) {
4389 mAppsThatDismissKeyguard.add(appToken);
4390 } else {
Craig Mautnerca0a1242014-12-02 12:25:14 -08004391 mWinShowWhenLocked = win;
4392 mHideLockScreen = true;
4393 mForceStatusBarFromKeyguard = false;
Craig Mautnerca0a1242014-12-02 12:25:14 -08004394 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004395 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004396 } else if (dismissKeyguard) {
Jim Millerab954542014-10-10 18:21:49 -07004397 if (mKeyguardSecure) {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004398 mAppsToBeHidden.add(appToken);
4399 } else {
4400 mAppsToBeHidden.remove(appToken);
4401 }
4402 mAppsThatDismissKeyguard.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004403 } else {
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004404 mAppsToBeHidden.add(appToken);
Craig Mautner2bc789b2014-03-19 19:48:38 -07004405 }
Craig Mautnerab55e522014-03-03 13:26:03 -08004406 if (attrs.x == 0 && attrs.y == 0
4407 && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4408 && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4409 if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4410 mTopFullscreenOpaqueWindowState = win;
Adrian Rooscd3884d2015-02-18 17:25:23 +01004411 if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4412 mTopFullscreenOpaqueOrDimmingWindowState = win;
4413 }
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004414 if (!mAppsThatDismissKeyguard.isEmpty() &&
4415 mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4416 if (DEBUG_LAYOUT) Slog.v(TAG,
4417 "Setting mDismissKeyguard true by win " + win);
tingna_sunge785ffa2015-05-12 13:23:15 +08004418 mDismissKeyguard = (mWinDismissingKeyguard == win
4419 && mSecureDismissingKeyguard == mKeyguardSecure)
4420 ? DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004421 mWinDismissingKeyguard = win;
tingna_sunge785ffa2015-05-12 13:23:15 +08004422 mSecureDismissingKeyguard = mKeyguardSecure;
Jim Millerab954542014-10-10 18:21:49 -07004423 mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
Jorim Jaggic13fcac2014-09-11 17:36:57 +02004424 } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4425 if (DEBUG_LAYOUT) Slog.v(TAG,
4426 "Setting mHideLockScreen to true by win " + win);
4427 mHideLockScreen = true;
4428 mForceStatusBarFromKeyguard = false;
Craig Mautnerab55e522014-03-03 13:26:03 -08004429 }
Craig Mautner00156ec2014-03-06 22:29:02 -08004430 if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
Craig Mautnerab55e522014-03-03 13:26:03 -08004431 mAllowLockscreenWhenOn = true;
4432 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004433 }
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004434
4435 if (mWinShowWhenLocked != null &&
Adrian Roos602c68e2015-04-24 16:03:47 -07004436 mWinShowWhenLocked.getAppToken() != win.getAppToken() &&
4437 (attrs.flags & FLAG_SHOW_WHEN_LOCKED) == 0) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004438 win.hideLw(false);
4439 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004440 }
Adrian Roos602c68e2015-04-24 16:03:47 -07004441 } else if (mTopFullscreenOpaqueWindowState == null && mWinShowWhenLocked == null) {
4442 // No TopFullscreenOpaqueWindow is showing, but we found a SHOW_WHEN_LOCKED window
4443 // that is being hidden in an animation - keep the
4444 // keyguard hidden until the new window shows up and
4445 // we know whether to show the keyguard or not.
Adrian Roosb85e1ec2015-05-29 15:23:18 -07004446 if (win.isAnimatingLw() && appWindow && showWhenLocked && mKeyguardHidden) {
Adrian Roos602c68e2015-04-24 16:03:47 -07004447 mHideLockScreen = true;
4448 mWinShowWhenLocked = win;
4449 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004450 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01004451 if (mTopFullscreenOpaqueOrDimmingWindowState == null
4452 && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4453 && win.isDimming()) {
4454 mTopFullscreenOpaqueOrDimmingWindowState = win;
4455 }
Dianne Hackborn5f3063e2010-03-10 16:01:58 -08004456 }
4457
4458 /** {@inheritDoc} */
Craig Mautnerad09bcc2012-10-08 13:33:11 -07004459 @Override
Craig Mautner39834192012-09-02 07:47:24 -07004460 public int finishPostLayoutPolicyLw() {
Craig Mautnerc5e73bf2015-04-21 15:41:26 +00004461 if (mWinShowWhenLocked != null && mTopFullscreenOpaqueWindowState != null &&
4462 mWinShowWhenLocked.getAppToken() != mTopFullscreenOpaqueWindowState.getAppToken()
4463 && isKeyguardLocked()) {
Craig Mautnerc9457fa2014-06-06 14:27:48 -07004464 // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4465 // fullscreen window.
4466 // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4467 mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4468 mTopFullscreenOpaqueWindowState.hideLw(false);
4469 mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4470 }
4471
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004472 int changes = 0;
Joe Onorato93056472010-09-10 10:30:46 -04004473 boolean topIsFullscreen = false;
Daniel Sandlere02d8082010-10-08 15:13:22 -04004474
4475 final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4476 ? mTopFullscreenOpaqueWindowState.getAttrs()
4477 : null;
4478
Jeff Brownc8018eb2012-10-29 21:33:27 -07004479 // If we are not currently showing a dream then remember the current
4480 // lockscreen state. We will use this to determine whether the dream
4481 // started while the lockscreen was showing and remember this state
4482 // while the dream is showing.
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004483 if (!mShowingDream) {
4484 mDreamingLockscreen = mShowingLockscreen;
Jeff Brown061ea992015-04-17 19:55:47 -07004485 if (mDreamingSleepTokenNeeded) {
4486 mDreamingSleepTokenNeeded = false;
4487 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 0, 1).sendToTarget();
4488 }
4489 } else {
4490 if (!mDreamingSleepTokenNeeded) {
4491 mDreamingSleepTokenNeeded = true;
4492 mHandler.obtainMessage(MSG_UPDATE_DREAMING_SLEEP_TOKEN, 1, 1).sendToTarget();
4493 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07004494 }
4495
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004496 if (mStatusBar != null) {
Craig Mautnereda67292013-04-28 13:50:14 -07004497 if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07004498 + " forcefkg=" + mForceStatusBarFromKeyguard
Dianne Hackbornd70bc2f2009-10-06 23:25:51 -07004499 + " top=" + mTopFullscreenOpaqueWindowState);
Selim Cinek4a4a2bddc2015-05-07 12:50:19 -07004500 boolean shouldBeTransparent = mForceStatusBarTransparent
4501 && !mForceStatusBar
4502 && !mForceStatusBarFromKeyguard;
4503 if (!shouldBeTransparent) {
4504 mStatusBarController.setShowTransparent(false /* transparent */);
4505 } else if (!mStatusBar.isVisibleLw()) {
4506 mStatusBarController.setShowTransparent(true /* transparent */);
4507 }
4508 if (mForceStatusBar || mForceStatusBarFromKeyguard || mForceStatusBarTransparent) {
Craig Mautnereda67292013-04-28 13:50:14 -07004509 if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
John Spurlock27735a42013-08-14 17:57:38 -04004510 if (mStatusBarController.setBarShowingLw(true)) {
4511 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4512 }
Craig Mautner81defc72013-10-29 11:10:42 -07004513 // Maintain fullscreen layout until incoming animation is complete.
4514 topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
John Spurlockf92b6162013-11-11 15:01:16 -05004515 // Transient status bar on the lockscreen is not allowed
4516 if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4517 mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4518 mLastSystemUiFlags, mLastSystemUiFlags);
4519 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004520 } else if (mTopFullscreenOpaqueWindowState != null) {
John Spurlockc6d1c602014-01-17 15:22:06 -05004521 final int fl = PolicyControl.getWindowFlags(null, lp);
Joe Onorato93056472010-09-10 10:30:46 -04004522 if (localLOGV) {
Craig Mautnereda67292013-04-28 13:50:14 -07004523 Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
Joe Onorato93056472010-09-10 10:30:46 -04004524 + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
Craig Mautnereda67292013-04-28 13:50:14 -07004525 Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
John Spurlockc6d1c602014-01-17 15:22:06 -05004526 + " lp.flags=0x" + Integer.toHexString(fl));
Joe Onorato93056472010-09-10 10:30:46 -04004527 }
John Spurlockc6d1c602014-01-17 15:22:06 -05004528 topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004529 || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
Joe Onorato93056472010-09-10 10:30:46 -04004530 // The subtle difference between the window for mTopFullscreenOpaqueWindowState
Mark Dolinerd0646dc2014-08-27 16:04:02 -07004531 // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
Joe Onorato93056472010-09-10 10:30:46 -04004532 // has the FLAG_FULLSCREEN set. Not sure if there is another way that to be the
4533 // case though.
John Spurlock27735a42013-08-14 17:57:38 -04004534 if (mStatusBarController.isTransientShowing()) {
4535 if (mStatusBarController.setBarShowingLw(true)) {
John Spurlock32beb2c2013-03-11 10:16:47 -04004536 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4537 }
4538 } else if (topIsFullscreen) {
Craig Mautnereda67292013-04-28 13:50:14 -07004539 if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
John Spurlock27735a42013-08-14 17:57:38 -04004540 if (mStatusBarController.setBarShowingLw(false)) {
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004541 changes |= FINISH_LAYOUT_REDO_LAYOUT;
Craig Mautnereda67292013-04-28 13:50:14 -07004542 } else {
Craig Mautnerc5a6e442013-06-05 17:22:35 -07004543 if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
Daniel Sandler40427442010-07-16 11:44:52 -04004544 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004545 } else {
Craig Mautnereda67292013-04-28 13:50:14 -07004546 if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
John Spurlock27735a42013-08-14 17:57:38 -04004547 if (mStatusBarController.setBarShowingLw(true)) {
4548 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4549 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004550 }
4551 }
4552 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004553
Craig Mautner81defc72013-10-29 11:10:42 -07004554 if (mTopIsFullscreen != topIsFullscreen) {
4555 if (!topIsFullscreen) {
4556 // Force another layout when status bar becomes fully shown.
4557 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4558 }
4559 mTopIsFullscreen = topIsFullscreen;
4560 }
Daniel Sandlere02d8082010-10-08 15:13:22 -04004561
Craig Mautner39834192012-09-02 07:47:24 -07004562 // Hide the key guard if a visible window explicitly specifies that it wants to be
4563 // displayed when the screen is locked.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004564 if (mKeyguardDelegate != null && mStatusBar != null) {
4565 if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4566 + mHideLockScreen);
Jim Millerab954542014-10-10 18:21:49 -07004567 if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004568 mKeyguardHidden = true;
Jim Millerab954542014-10-10 18:21:49 -07004569 if (setKeyguardOccludedLw(true)) {
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004570 changes |= FINISH_LAYOUT_REDO_LAYOUT
4571 | FINISH_LAYOUT_REDO_CONFIG
4572 | FINISH_LAYOUT_REDO_WALLPAPER;
4573 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004574 if (mKeyguardDelegate.isShowing()) {
4575 mHandler.post(new Runnable() {
4576 @Override
4577 public void run() {
4578 mKeyguardDelegate.keyguardDone(false, false);
4579 }
4580 });
4581 }
4582 } else if (mHideLockScreen) {
4583 mKeyguardHidden = true;
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004584 mWinDismissingKeyguard = null;
Jim Millerab954542014-10-10 18:21:49 -07004585 if (setKeyguardOccludedLw(true)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004586 changes |= FINISH_LAYOUT_REDO_LAYOUT
4587 | FINISH_LAYOUT_REDO_CONFIG
4588 | FINISH_LAYOUT_REDO_WALLPAPER;
4589 }
4590 } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
Jorim Jaggi7d85ea92015-05-20 17:20:40 -07004591 mKeyguardHidden = false;
4592 if (setKeyguardOccludedLw(false)) {
4593 changes |= FINISH_LAYOUT_REDO_LAYOUT
4594 | FINISH_LAYOUT_REDO_CONFIG
4595 | FINISH_LAYOUT_REDO_WALLPAPER;
4596 }
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004597 if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4598 // Only launch the next keyguard unlock window once per window.
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004599 mHandler.post(new Runnable() {
4600 @Override
4601 public void run() {
4602 mKeyguardDelegate.dismiss();
4603 }
4604 });
4605 }
4606 } else {
4607 mWinDismissingKeyguard = null;
tingna_sunge785ffa2015-05-12 13:23:15 +08004608 mSecureDismissingKeyguard = false;
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004609 mKeyguardHidden = false;
Jim Millerab954542014-10-10 18:21:49 -07004610 if (setKeyguardOccludedLw(false)) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01004611 changes |= FINISH_LAYOUT_REDO_LAYOUT
4612 | FINISH_LAYOUT_REDO_CONFIG
4613 | FINISH_LAYOUT_REDO_WALLPAPER;
4614 }
Suchi Amalapurapu9cdc9032009-05-14 18:01:07 -07004615 }
4616 }
Joe Onorato664644d2011-01-23 17:53:23 -08004617
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004618 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004619 // If the navigation bar has been hidden or shown, we need to do another
4620 // layout pass to update that window.
4621 changes |= FINISH_LAYOUT_REDO_LAYOUT;
4622 }
Joe Onorato664644d2011-01-23 17:53:23 -08004623
Mike Lockwood28569302010-01-28 11:54:40 -05004624 // update since mAllowLockscreenWhenOn might have changed
4625 updateLockScreenTimeout();
Dianne Hackborn39c2d712009-09-22 11:41:31 -07004626 return changes;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004627 }
4628
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004629 /**
Jim Millerab954542014-10-10 18:21:49 -07004630 * Updates the occluded state of the Keyguard.
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004631 *
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004632 * @return Whether the flags have changed and we have to redo the layout.
4633 */
Jim Millerab954542014-10-10 18:21:49 -07004634 private boolean setKeyguardOccludedLw(boolean isOccluded) {
4635 boolean wasOccluded = mKeyguardOccluded;
4636 boolean showing = mKeyguardDelegate.isShowing();
4637 if (wasOccluded && !isOccluded && showing) {
4638 mKeyguardOccluded = false;
4639 mKeyguardDelegate.setOccluded(false);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004640 mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4641 mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4642 return true;
Jim Millerab954542014-10-10 18:21:49 -07004643 } else if (!wasOccluded && isOccluded && showing) {
4644 mKeyguardOccluded = true;
4645 mKeyguardDelegate.setOccluded(true);
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004646 mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4647 mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4648 return true;
4649 } else {
4650 return false;
4651 }
4652 }
4653
4654 private boolean isStatusBarKeyguard() {
4655 return mStatusBar != null
4656 && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4657 }
4658
Jose Lima9546b202014-07-02 17:21:51 -07004659 @Override
Dianne Hackborn08743722009-12-21 12:16:51 -08004660 public boolean allowAppAnimationsLw() {
Jorim Jaggi380ecb82014-03-14 17:25:20 +01004661 if (isStatusBarKeyguard() || mShowingDream) {
Craig Mautner28816302013-10-10 20:31:00 -07004662 // If keyguard or dreams is currently visible, no reason to animate behind it.
Dianne Hackborn08743722009-12-21 12:16:51 -08004663 return false;
4664 }
Dianne Hackborn08743722009-12-21 12:16:51 -08004665 return true;
4666 }
4667
Jose Lima9546b202014-07-02 17:21:51 -07004668 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07004669 public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
Joe Onorato664644d2011-01-23 17:53:23 -08004670 mFocusedWindow = newFocus;
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07004671 if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07004672 // If the navigation bar has been hidden or shown, we need to do another
4673 // layout pass to update that window.
4674 return FINISH_LAYOUT_REDO_LAYOUT;
4675 }
4676 return 0;
Joe Onorato664644d2011-01-23 17:53:23 -08004677 }
4678
Dianne Hackborn0ecadf72009-03-31 18:00:37 -07004679 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07004680 @Override
Jeff Brown46b9ac02010-04-22 18:58:52 -07004681 public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4682 // lid changed state
Jeff Brownc458ce92012-04-30 14:58:40 -07004683 final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4684 if (newLidState == mLidState) {
4685 return;
4686 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07004687
Jeff Brownc458ce92012-04-30 14:58:40 -07004688 mLidState = newLidState;
4689 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07004690 updateRotation(true);
Jeff Brownc458ce92012-04-30 14:58:40 -07004691
4692 if (lidOpen) {
Bryce Lee584a4452014-10-21 15:55:55 -07004693 wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch);
Jeff Brownc458ce92012-04-30 14:58:40 -07004694 } else if (!mLidControlsSleep) {
Jeff Brown96307042012-07-27 15:51:34 -07004695 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
Jeff Brown46b9ac02010-04-22 18:58:52 -07004696 }
4697 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004698
Michael Wright3818c922014-09-02 13:59:07 -07004699 @Override
4700 public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4701 int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4702 if (mCameraLensCoverState == lensCoverState) {
4703 return;
4704 }
4705 if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4706 lensCoverState == CAMERA_LENS_UNCOVERED) {
4707 Intent intent;
4708 final boolean keyguardActive = mKeyguardDelegate == null ? false :
4709 mKeyguardDelegate.isShowing();
4710 if (keyguardActive) {
4711 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4712 } else {
4713 intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4714 }
Bryce Lee584a4452014-10-21 15:55:55 -07004715 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens);
Bart Sears8b1c27c2015-03-18 23:51:02 +00004716 startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
Michael Wright3818c922014-09-02 13:59:07 -07004717 }
4718 mCameraLensCoverState = lensCoverState;
4719 }
4720
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004721 void setHdmiPlugged(boolean plugged) {
4722 if (mHdmiPlugged != plugged) {
4723 mHdmiPlugged = plugged;
Dianne Hackbornf87d1962012-04-04 12:48:24 -07004724 updateRotation(true, true);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004725 Intent intent = new Intent(ACTION_HDMI_PLUGGED);
Joe Onoratodc100302011-01-11 17:07:41 -08004726 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004727 intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07004728 mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
Dianne Hackbornad7fa7f2011-01-07 14:06:50 -08004729 }
4730 }
4731
Joe Onoratoea495d42011-04-06 11:41:11 -07004732 void initializeHdmiState() {
Joe Onorato7ba631f2011-05-04 15:28:00 -07004733 boolean plugged = false;
Joe Onoratoea495d42011-04-06 11:41:11 -07004734 // watch for HDMI plug messages if the hdmi switch exists
4735 if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4736 mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4737
Joe Onoratoea495d42011-04-06 11:41:11 -07004738 final String filename = "/sys/class/switch/hdmi/state";
4739 FileReader reader = null;
4740 try {
4741 reader = new FileReader(filename);
4742 char[] buf = new char[15];
4743 int n = reader.read(buf);
4744 if (n > 1) {
4745 plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4746 }
4747 } catch (IOException ex) {
4748 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4749 } catch (NumberFormatException ex) {
4750 Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4751 } finally {
4752 if (reader != null) {
4753 try {
4754 reader.close();
4755 } catch (IOException ex) {
4756 }
Joe Onoratodc100302011-01-11 17:07:41 -08004757 }
4758 }
4759 }
Joe Onorato7ba631f2011-05-04 15:28:00 -07004760 // This dance forces the code in setHdmiPlugged to run.
4761 // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4762 mHdmiPlugged = !plugged;
4763 setHdmiPlugged(!mHdmiPlugged);
Joe Onoratodc100302011-01-11 17:07:41 -08004764 }
4765
Dianne Hackbornc0e3f242011-08-19 14:19:10 -07004766 final Object mScreenshotLock = new Object();
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004767 ServiceConnection mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004768
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004769 final Runnable mScreenshotTimeout = new Runnable() {
4770 @Override public void run() {
4771 synchronized (mScreenshotLock) {
4772 if (mScreenshotConnection != null) {
4773 mContext.unbindService(mScreenshotConnection);
4774 mScreenshotConnection = null;
Dianne Hackbornfc8fa632011-08-17 16:20:47 -07004775 }
Winson Chung9112ec32011-06-27 13:15:32 -07004776 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004777 }
4778 };
4779
4780 // Assume this is called from the Handler thread.
4781 private void takeScreenshot() {
4782 synchronized (mScreenshotLock) {
4783 if (mScreenshotConnection != null) {
4784 return;
4785 }
4786 ComponentName cn = new ComponentName("com.android.systemui",
4787 "com.android.systemui.screenshot.TakeScreenshotService");
4788 Intent intent = new Intent();
4789 intent.setComponent(cn);
4790 ServiceConnection conn = new ServiceConnection() {
4791 @Override
4792 public void onServiceConnected(ComponentName name, IBinder service) {
4793 synchronized (mScreenshotLock) {
4794 if (mScreenshotConnection != this) {
4795 return;
4796 }
4797 Messenger messenger = new Messenger(service);
4798 Message msg = Message.obtain(null, 1);
4799 final ServiceConnection myConn = this;
4800 Handler h = new Handler(mHandler.getLooper()) {
4801 @Override
4802 public void handleMessage(Message msg) {
4803 synchronized (mScreenshotLock) {
4804 if (mScreenshotConnection == myConn) {
4805 mContext.unbindService(mScreenshotConnection);
4806 mScreenshotConnection = null;
4807 mHandler.removeCallbacks(mScreenshotTimeout);
4808 }
4809 }
4810 }
4811 };
4812 msg.replyTo = new Messenger(h);
Winson Chunga63bb842011-10-17 10:26:28 -07004813 msg.arg1 = msg.arg2 = 0;
4814 if (mStatusBar != null && mStatusBar.isVisibleLw())
4815 msg.arg1 = 1;
4816 if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4817 msg.arg2 = 1;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004818 try {
4819 messenger.send(msg);
4820 } catch (RemoteException e) {
4821 }
4822 }
4823 }
4824 @Override
4825 public void onServiceDisconnected(ComponentName name) {}
4826 };
Amith Yamasani27b89e62013-01-16 12:30:11 -08004827 if (mContext.bindServiceAsUser(
4828 intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004829 mScreenshotConnection = conn;
4830 mHandler.postDelayed(mScreenshotTimeout, 10000);
4831 }
4832 }
Winson Chung9112ec32011-06-27 13:15:32 -07004833 }
4834
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004835 /** {@inheritDoc} */
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004836 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07004837 public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
Jeff Brown96307042012-07-27 15:51:34 -07004838 if (!mSystemBooted) {
4839 // If we have not yet booted, don't let key events do anything.
4840 return 0;
4841 }
4842
Jeff Brown037c33e2014-04-09 00:31:55 -07004843 final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
Jeff Brown1f245102010-11-18 20:53:46 -08004844 final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4845 final boolean canceled = event.isCanceled();
4846 final int keyCode = event.getKeyCode();
Jeff Browne20c9e02010-10-11 14:20:19 -07004847
Jeff Brown3122e442010-10-11 23:32:49 -07004848 final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
Jeff Brown3122e442010-10-11 23:32:49 -07004849
Mike Lockwoodc72b15f2009-11-28 20:58:22 -05004850 // If screen is off then we treat the case where the keyguard is open but hidden
4851 // the same as if it were open and in front.
4852 // This will prevent any keys other than the power button from waking the screen
4853 // when the keyguard is hidden by another activity.
Jim Miller5ecd8112013-01-09 18:50:26 -08004854 final boolean keyguardActive = (mKeyguardDelegate == null ? false :
Jeff Brown037c33e2014-04-09 00:31:55 -07004855 (interactive ?
Jim Millerab954542014-10-10 18:21:49 -07004856 isKeyguardShowingAndNotOccluded() :
Jim Miller5ecd8112013-01-09 18:50:26 -08004857 mKeyguardDelegate.isShowing()));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004858
Jeff Brown40013652012-05-16 21:22:36 -07004859 if (DEBUG_INPUT) {
Jeff Brown00fa7bd2010-07-02 15:37:36 -07004860 Log.d(TAG, "interceptKeyTq keycode=" + keyCode
Jeff Brown037c33e2014-04-09 00:31:55 -07004861 + " interactive=" + interactive + " keyguardActive=" + keyguardActive
Jeff Brown26875502014-01-30 21:47:47 -08004862 + " policyFlags=" + Integer.toHexString(policyFlags));
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004863 }
4864
Jeff Brown037c33e2014-04-09 00:31:55 -07004865 // Basic policy based on interactive state.
Jeff Brown4d396052010-10-29 21:50:21 -07004866 int result;
Michael Wright337d9d22014-04-22 15:03:48 -07004867 boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4868 || event.isWakeKey();
Michael Wrightfc01f042014-09-08 14:12:24 -07004869 if (interactive || (isInjected && !isWakeKey)) {
RoboErikde9ba392014-09-26 12:51:01 -07004870 // When the device is interactive or the key is injected pass the
4871 // key to the application.
Jeff Brown4d396052010-10-29 21:50:21 -07004872 result = ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07004873 isWakeKey = false;
Michael Wrightfc01f042014-09-08 14:12:24 -07004874 } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4875 // If we're currently dozing with the screen on and the keyguard showing, pass the key
4876 // to the application but preserve its wake key status to make sure we still move
4877 // from dozing to fully interactive if we would normally go from off to fully
4878 // interactive.
4879 result = ACTION_PASS_TO_USER;
Jeff Brown4d396052010-10-29 21:50:21 -07004880 } else {
4881 // When the screen is off and the key is not injected, determine whether
4882 // to wake the device but don't pass the key to the application.
4883 result = 0;
Jeff Brown26875502014-01-30 21:47:47 -08004884 if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4885 isWakeKey = false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004886 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08004887 }
4888
Justin Kohd378ad72013-04-01 12:18:26 -07004889 // If the key would be handled globally, just return the result, don't worry about special
4890 // key processing.
Jeff Brown13f00f02014-10-31 14:45:50 -07004891 if (isValidGlobalKey(keyCode)
4892 && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
Michael Wright85b1af62014-06-04 14:51:58 -07004893 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004894 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Michael Wright85b1af62014-06-04 14:51:58 -07004895 }
Justin Kohd378ad72013-04-01 12:18:26 -07004896 return result;
4897 }
4898
Jeff Brownbae8e772014-06-12 19:59:45 -07004899 boolean useHapticFeedback = down
4900 && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4901 && event.getRepeatCount() == 0;
4902
Jeff Brown4d396052010-10-29 21:50:21 -07004903 // Handle special keys.
4904 switch (keyCode) {
4905 case KeyEvent.KEYCODE_VOLUME_DOWN:
Jeff Brownb0418da2010-11-01 15:24:01 -07004906 case KeyEvent.KEYCODE_VOLUME_UP:
4907 case KeyEvent.KEYCODE_VOLUME_MUTE: {
RoboErik001c59c2015-01-26 15:53:51 -08004908 if (mUseTvRouting) {
4909 // On TVs volume keys never go to the foreground app
4910 result &= ~ACTION_PASS_TO_USER;
4911 }
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004912 if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4913 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004914 if (interactive && !mScreenshotChordVolumeDownKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004915 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004916 mScreenshotChordVolumeDownKeyTriggered = true;
4917 mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4918 mScreenshotChordVolumeDownKeyConsumed = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004919 cancelPendingPowerKeyAction();
4920 interceptScreenshotChord();
4921 }
4922 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004923 mScreenshotChordVolumeDownKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004924 cancelPendingScreenshotChordAction();
4925 }
4926 } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4927 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004928 if (interactive && !mScreenshotChordVolumeUpKeyTriggered
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004929 && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
Jeff Brown13f00f02014-10-31 14:45:50 -07004930 mScreenshotChordVolumeUpKeyTriggered = true;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004931 cancelPendingPowerKeyAction();
4932 cancelPendingScreenshotChordAction();
4933 }
4934 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07004935 mScreenshotChordVolumeUpKeyTriggered = false;
Jeff Brownd5bb82d2011-10-12 13:57:59 -07004936 cancelPendingScreenshotChordAction();
4937 }
4938 }
Jeff Brown4d396052010-10-29 21:50:21 -07004939 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004940 TelecomManager telecomManager = getTelecommService();
4941 if (telecomManager != null) {
4942 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07004943 // If an incoming call is ringing, either VOLUME key means
4944 // "silence ringer". We handle these keys here, rather than
4945 // in the InCallScreen, to make sure we'll respond to them
4946 // even if the InCallScreen hasn't come to the foreground yet.
4947 // Look for the DOWN event here, to agree with the "fallback"
4948 // behavior in the InCallScreen.
4949 Log.i(TAG, "interceptKeyBeforeQueueing:"
4950 + " VOLUME key-down while ringing: Silence ringer!");
Jeff Brown4d396052010-10-29 21:50:21 -07004951
Santos Cordon6848f722014-05-21 15:22:12 -07004952 // Silence the ringer. (It's safe to call this
4953 // even if the ringer has already been silenced.)
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004954 telecomManager.silenceRinger();
Jeff Brown4d396052010-10-29 21:50:21 -07004955
Santos Cordon6848f722014-05-21 15:22:12 -07004956 // And *don't* pass this key thru to the current activity
4957 // (which is probably the InCallScreen.)
4958 result &= ~ACTION_PASS_TO_USER;
4959 break;
4960 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004961 if (telecomManager.isInCall()
Santos Cordon6848f722014-05-21 15:22:12 -07004962 && (result & ACTION_PASS_TO_USER) == 0) {
4963 // If we are in call but we decided not to pass the key to
RoboErik430fc482014-06-12 15:49:20 -07004964 // the application, just pass it to the session service.
4965
4966 MediaSessionLegacyHelper.getHelper(mContext)
RoboErik3c45c292014-07-08 16:47:31 -07004967 .sendVolumeKeyEvent(event, false);
Santos Cordon6848f722014-05-21 15:22:12 -07004968 break;
Jeff Brown4d396052010-10-29 21:50:21 -07004969 }
4970 }
4971
RoboErik430fc482014-06-12 15:49:20 -07004972 if ((result & ACTION_PASS_TO_USER) == 0) {
RoboErik001c59c2015-01-26 15:53:51 -08004973 if (mUseTvRouting) {
4974 dispatchDirectAudioEvent(event);
4975 } else {
4976 // If we aren't passing to the user and no one else
4977 // handled it send it to the session manager to
4978 // figure out.
4979 MediaSessionLegacyHelper.getHelper(mContext)
4980 .sendVolumeKeyEvent(event, true);
4981 }
Jeff Brown4d396052010-10-29 21:50:21 -07004982 break;
4983 }
4984 }
4985 break;
4986 }
4987
4988 case KeyEvent.KEYCODE_ENDCALL: {
4989 result &= ~ACTION_PASS_TO_USER;
4990 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004991 TelecomManager telecomManager = getTelecommService();
Jeff Brown4d396052010-10-29 21:50:21 -07004992 boolean hungUp = false;
Tyler Gunnef9f6f92014-09-12 22:16:17 -07004993 if (telecomManager != null) {
4994 hungUp = telecomManager.endCall();
Jeff Brown4d396052010-10-29 21:50:21 -07004995 }
Jeff Brown13f00f02014-10-31 14:45:50 -07004996 if (interactive && !hungUp) {
4997 mEndCallKeyHandled = false;
4998 mHandler.postDelayed(mEndCallLongPress,
4999 ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
5000 } else {
5001 mEndCallKeyHandled = true;
5002 }
Jeff Brown4d396052010-10-29 21:50:21 -07005003 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005004 if (!mEndCallKeyHandled) {
5005 mHandler.removeCallbacks(mEndCallLongPress);
5006 if (!canceled) {
5007 if ((mEndcallBehavior
5008 & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
5009 if (goHome()) {
5010 break;
5011 }
Dianne Hackborn0041e972009-07-24 17:14:43 -07005012 }
Jeff Brown13f00f02014-10-31 14:45:50 -07005013 if ((mEndcallBehavior
5014 & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
5015 mPowerManager.goToSleep(event.getEventTime(),
5016 PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
5017 isWakeKey = false;
5018 }
Jeff Brown4d396052010-10-29 21:50:21 -07005019 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005020 }
Jeff Brown4d396052010-10-29 21:50:21 -07005021 }
5022 break;
5023 }
5024
5025 case KeyEvent.KEYCODE_POWER: {
5026 result &= ~ACTION_PASS_TO_USER;
Jeff Brown13f00f02014-10-31 14:45:50 -07005027 isWakeKey = false; // wake-up will be handled separately
Jeff Brown4d396052010-10-29 21:50:21 -07005028 if (down) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005029 interceptPowerKeyDown(event, interactive);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005030 } else {
Jeff Brown13f00f02014-10-31 14:45:50 -07005031 interceptPowerKeyUp(event, interactive, canceled);
Jeff Brown4d396052010-10-29 21:50:21 -07005032 }
5033 break;
5034 }
5035
Jeff Brown6212a492014-03-07 13:58:47 -08005036 case KeyEvent.KEYCODE_SLEEP: {
5037 result &= ~ACTION_PASS_TO_USER;
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00005038 isWakeKey = false;
Jeff Brownbae8e772014-06-12 19:59:45 -07005039 if (!mPowerManager.isInteractive()) {
5040 useHapticFeedback = false; // suppress feedback if already non-interactive
5041 }
Nick Vaccarob593a812015-05-15 11:23:05 -07005042 if (down) {
5043 sleepPress(event.getEventTime());
5044 } else {
5045 sleepRelease(event.getEventTime());
5046 }
Jeff Brown6212a492014-03-07 13:58:47 -08005047 break;
5048 }
5049
5050 case KeyEvent.KEYCODE_WAKEUP: {
5051 result &= ~ACTION_PASS_TO_USER;
Jose Lima9546b202014-07-02 17:21:51 -07005052 isWakeKey = true;
Jeff Brown6212a492014-03-07 13:58:47 -08005053 break;
5054 }
5055
Jeff Brown4d396052010-10-29 21:50:21 -07005056 case KeyEvent.KEYCODE_MEDIA_PLAY:
5057 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5058 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
Jeff Brown4d396052010-10-29 21:50:21 -07005059 case KeyEvent.KEYCODE_HEADSETHOOK:
5060 case KeyEvent.KEYCODE_MUTE:
5061 case KeyEvent.KEYCODE_MEDIA_STOP:
5062 case KeyEvent.KEYCODE_MEDIA_NEXT:
5063 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5064 case KeyEvent.KEYCODE_MEDIA_REWIND:
5065 case KeyEvent.KEYCODE_MEDIA_RECORD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005066 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
5067 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
RoboErikde9ba392014-09-26 12:51:01 -07005068 if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
5069 // If the global session is active pass all media keys to it
5070 // instead of the active window.
5071 result &= ~ACTION_PASS_TO_USER;
5072 }
Jeff Brown4d396052010-10-29 21:50:21 -07005073 if ((result & ACTION_PASS_TO_USER) == 0) {
5074 // Only do this if we would otherwise not pass it to the user. In that
5075 // case, the PhoneWindow class will do the same thing, except it will
5076 // only do it if the showing app doesn't process the key on its own.
Jeff Brown40013652012-05-16 21:22:36 -07005077 // Note that we need to make a copy of the key event here because the
5078 // original key event will be recycled when we return.
Jeff Brown4d396052010-10-29 21:50:21 -07005079 mBroadcastWakeLock.acquire();
Jeff Brown40013652012-05-16 21:22:36 -07005080 Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
5081 new KeyEvent(event));
5082 msg.setAsynchronous(true);
5083 msg.sendToTarget();
Jeff Brown4d396052010-10-29 21:50:21 -07005084 }
5085 break;
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005086 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005087
Jeff Brown4d396052010-10-29 21:50:21 -07005088 case KeyEvent.KEYCODE_CALL: {
5089 if (down) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005090 TelecomManager telecomManager = getTelecommService();
5091 if (telecomManager != null) {
5092 if (telecomManager.isRinging()) {
Santos Cordon6848f722014-05-21 15:22:12 -07005093 Log.i(TAG, "interceptKeyBeforeQueueing:"
5094 + " CALL key-down while ringing: Answer the call!");
Tyler Gunnef9f6f92014-09-12 22:16:17 -07005095 telecomManager.acceptRingingCall();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005096
Santos Cordon6848f722014-05-21 15:22:12 -07005097 // And *don't* pass this key thru to the current activity
5098 // (which is presumably the InCallScreen.)
5099 result &= ~ACTION_PASS_TO_USER;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005100 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005101 }
Jeff Brown00fa7bd2010-07-02 15:37:36 -07005102 }
Jeff Brown4d396052010-10-29 21:50:21 -07005103 break;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005104 }
Michael Wright869a67c2014-08-26 19:33:06 -07005105 case KeyEvent.KEYCODE_VOICE_ASSIST: {
5106 // Only do this if we would otherwise not pass it to the user. In that case,
5107 // interceptKeyBeforeDispatching would apply a similar but different policy in
5108 // order to invoke voice assist actions. Note that we need to make a copy of the
5109 // key event here because the original key event will be recycled when we return.
5110 if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
5111 mBroadcastWakeLock.acquire();
5112 Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
5113 keyguardActive ? 1 : 0, 0);
5114 msg.setAsynchronous(true);
5115 msg.sendToTarget();
5116 }
5117 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005118 }
Jeff Brown26875502014-01-30 21:47:47 -08005119
Jeff Brownbae8e772014-06-12 19:59:45 -07005120 if (useHapticFeedback) {
5121 performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
5122 }
5123
Jeff Brown26875502014-01-30 21:47:47 -08005124 if (isWakeKey) {
Jeff Brown13f00f02014-10-31 14:45:50 -07005125 wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
Jeff Brown26875502014-01-30 21:47:47 -08005126 }
Bryce Lee584a4452014-10-21 15:55:55 -07005127
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005128 return result;
5129 }
5130
Jeff Brown1c2e4942012-11-06 16:32:01 -08005131 /**
Jeff Brown13f00f02014-10-31 14:45:50 -07005132 * Returns true if the key can have global actions attached to it.
5133 * We reserve all power management keys for the system since they require
5134 * very careful handling.
5135 */
5136 private static boolean isValidGlobalKey(int keyCode) {
5137 switch (keyCode) {
5138 case KeyEvent.KEYCODE_POWER:
5139 case KeyEvent.KEYCODE_WAKEUP:
5140 case KeyEvent.KEYCODE_SLEEP:
5141 return false;
5142 default:
5143 return true;
5144 }
5145 }
5146
5147 /**
Jeff Brown1c2e4942012-11-06 16:32:01 -08005148 * When the screen is off we ignore some keys that might otherwise typically
5149 * be considered wake keys. We filter them out here.
5150 *
5151 * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
5152 * is always considered a wake key.
5153 */
5154 private boolean isWakeKeyWhenScreenOff(int keyCode) {
5155 switch (keyCode) {
5156 // ignore volume keys unless docked
5157 case KeyEvent.KEYCODE_VOLUME_UP:
5158 case KeyEvent.KEYCODE_VOLUME_DOWN:
5159 case KeyEvent.KEYCODE_VOLUME_MUTE:
5160 return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
5161
5162 // ignore media and camera keys
5163 case KeyEvent.KEYCODE_MUTE:
5164 case KeyEvent.KEYCODE_HEADSETHOOK:
5165 case KeyEvent.KEYCODE_MEDIA_PLAY:
5166 case KeyEvent.KEYCODE_MEDIA_PAUSE:
5167 case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
5168 case KeyEvent.KEYCODE_MEDIA_STOP:
5169 case KeyEvent.KEYCODE_MEDIA_NEXT:
5170 case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
5171 case KeyEvent.KEYCODE_MEDIA_REWIND:
5172 case KeyEvent.KEYCODE_MEDIA_RECORD:
5173 case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
Jaekyun Seokbfdad8e2013-07-08 13:53:21 +09005174 case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
Jeff Brown1c2e4942012-11-06 16:32:01 -08005175 case KeyEvent.KEYCODE_CAMERA:
5176 return false;
5177 }
5178 return true;
5179 }
5180
5181
Jeff Brown56194eb2011-03-02 19:23:13 -08005182 /** {@inheritDoc} */
5183 @Override
Michael Wright70af00a2014-09-03 19:30:20 -07005184 public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
5185 if ((policyFlags & FLAG_WAKE) != 0) {
Bryce Lee5c138322014-11-03 08:26:09 -08005186 if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion)) {
5187 return 0;
5188 }
Michael Wright70af00a2014-09-03 19:30:20 -07005189 }
Bryce Lee5c138322014-11-03 08:26:09 -08005190
Michael Wright70af00a2014-09-03 19:30:20 -07005191 if (shouldDispatchInputWhenNonInteractive()) {
5192 return ACTION_PASS_TO_USER;
5193 }
Bryce Lee5c138322014-11-03 08:26:09 -08005194
Bryce Lee812d7022014-11-10 13:33:28 -08005195 // If we have not passed the action up and we are in theater mode without dreaming,
5196 // there will be no dream to intercept the touch and wake into ambient. The device should
5197 // wake up in this case.
5198 if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
5199 wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming);
5200 }
5201
Jeff Brown037c33e2014-04-09 00:31:55 -07005202 return 0;
Jeff Brown56194eb2011-03-02 19:23:13 -08005203 }
5204
Michael Wright70af00a2014-09-03 19:30:20 -07005205 private boolean shouldDispatchInputWhenNonInteractive() {
Bryce Lee5c138322014-11-03 08:26:09 -08005206 // Send events to keyguard while the screen is on.
Jim Millerab954542014-10-10 18:21:49 -07005207 if (isKeyguardShowingAndNotOccluded() && mDisplay != null
5208 && mDisplay.getState() != Display.STATE_OFF) {
Bryce Lee5c138322014-11-03 08:26:09 -08005209 return true;
5210 }
5211
5212 // Send events to a dozing dream even if the screen is off since the dream
5213 // is in control of the state of the screen.
5214 IDreamManager dreamManager = getDreamManager();
5215
5216 try {
5217 if (dreamManager != null && dreamManager.isDreaming()) {
5218 return true;
5219 }
5220 } catch (RemoteException e) {
5221 Slog.e(TAG, "RemoteException when checking if dreaming", e);
5222 }
5223
5224 // Otherwise, consume events since the user can't see what is being
5225 // interacted with.
5226 return false;
Michael Wright70af00a2014-09-03 19:30:20 -07005227 }
5228
RoboErik001c59c2015-01-26 15:53:51 -08005229 private void dispatchDirectAudioEvent(KeyEvent event) {
5230 if (event.getAction() != KeyEvent.ACTION_DOWN) {
5231 return;
5232 }
5233 int keyCode = event.getKeyCode();
John Spurlockb94f2d62015-03-17 14:11:57 -04005234 int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND
5235 | AudioManager.FLAG_FROM_KEY;
RoboErik001c59c2015-01-26 15:53:51 -08005236 String pkgName = mContext.getOpPackageName();
5237 switch (keyCode) {
5238 case KeyEvent.KEYCODE_VOLUME_UP:
5239 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005240 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
John Spurlock90874332015-03-10 16:00:54 -04005241 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005242 } catch (RemoteException e) {
5243 Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
5244 }
5245 break;
5246 case KeyEvent.KEYCODE_VOLUME_DOWN:
5247 try {
John Spurlockee5ad722015-03-03 16:17:21 -05005248 getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
John Spurlock90874332015-03-10 16:00:54 -04005249 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005250 } catch (RemoteException e) {
5251 Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
5252 }
5253 break;
5254 case KeyEvent.KEYCODE_VOLUME_MUTE:
5255 try {
5256 if (event.getRepeatCount() == 0) {
John Spurlockee5ad722015-03-03 16:17:21 -05005257 getAudioService().adjustSuggestedStreamVolume(
5258 AudioManager.ADJUST_TOGGLE_MUTE,
John Spurlock90874332015-03-10 16:00:54 -04005259 AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName, TAG);
RoboErik001c59c2015-01-26 15:53:51 -08005260 }
5261 } catch (RemoteException e) {
5262 Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
5263 }
5264 break;
5265 }
5266 }
5267
Jeff Brown40013652012-05-16 21:22:36 -07005268 void dispatchMediaKeyWithWakeLock(KeyEvent event) {
5269 if (DEBUG_INPUT) {
5270 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005271 }
5272
Jeff Brown40013652012-05-16 21:22:36 -07005273 if (mHavePendingMediaKeyRepeatWithWakeLock) {
5274 if (DEBUG_INPUT) {
5275 Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
5276 }
5277
5278 mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
5279 mHavePendingMediaKeyRepeatWithWakeLock = false;
5280 mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
5281 }
5282
5283 dispatchMediaKeyWithWakeLockToAudioService(event);
5284
5285 if (event.getAction() == KeyEvent.ACTION_DOWN
5286 && event.getRepeatCount() == 0) {
5287 mHavePendingMediaKeyRepeatWithWakeLock = true;
5288
5289 Message msg = mHandler.obtainMessage(
5290 MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
5291 msg.setAsynchronous(true);
5292 mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
5293 } else {
5294 mBroadcastWakeLock.release();
5295 }
5296 }
5297
5298 void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
5299 mHavePendingMediaKeyRepeatWithWakeLock = false;
5300
5301 KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
5302 SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
5303 if (DEBUG_INPUT) {
5304 Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
5305 }
5306
5307 dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
5308 mBroadcastWakeLock.release();
5309 }
5310
5311 void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
5312 if (ActivityManagerNative.isSystemReady()) {
RoboErik430fc482014-06-12 15:49:20 -07005313 MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005314 }
5315 }
5316
Michael Wright869a67c2014-08-26 19:33:06 -07005317 void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
Dianne Hackbornb6683c42015-06-18 17:40:33 -07005318 IDeviceIdleController dic = IDeviceIdleController.Stub.asInterface(
5319 ServiceManager.getService(Context.DEVICE_IDLE_CONTROLLER));
5320 if (dic != null) {
5321 try {
5322 dic.exitIdle("voice-search");
5323 } catch (RemoteException e) {
5324 }
5325 }
Michael Wright869a67c2014-08-26 19:33:06 -07005326 Intent voiceIntent =
5327 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
5328 voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
Bart Sears8b1c27c2015-03-18 23:51:02 +00005329 startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
Michael Wright869a67c2014-08-26 19:33:06 -07005330 mBroadcastWakeLock.release();
5331 }
5332
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005333 BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
Craig Mautnereee29c42013-01-17 14:44:34 -08005334 @Override
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005335 public void onReceive(Context context, Intent intent) {
Dianne Hackborn867ab6472010-04-29 13:28:56 -07005336 if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
5337 mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
5338 Intent.EXTRA_DOCK_STATE_UNDOCKED);
Daniel Sandler6396c722013-04-16 20:19:09 -04005339 } else {
5340 try {
5341 IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
5342 ServiceManager.getService(Context.UI_MODE_SERVICE));
5343 mUiMode = uiModeService.getCurrentModeType();
5344 } catch (RemoteException e) {
5345 }
Dianne Hackborn80fa1662009-10-07 14:02:10 -07005346 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005347 updateRotation(true);
Craig Mautnereee29c42013-01-17 14:44:34 -08005348 synchronized (mLock) {
5349 updateOrientationListenerLp();
5350 }
Mike Lockwood1753f7f2009-08-24 14:49:07 -07005351 }
5352 };
5353
Jeff Brown6aaf2952012-10-05 16:01:08 -07005354 BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
5355 @Override
5356 public void onReceive(Context context, Intent intent) {
5357 if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005358 if (mKeyguardDelegate != null) {
5359 mKeyguardDelegate.onDreamingStarted();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005360 }
5361 } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005362 if (mKeyguardDelegate != null) {
5363 mKeyguardDelegate.onDreamingStopped();
Jeff Brown6aaf2952012-10-05 16:01:08 -07005364 }
5365 }
5366 }
5367 };
5368
Christopher Tate5e08af02012-09-21 17:17:22 -07005369 BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
5370 @Override
5371 public void onReceive(Context context, Intent intent) {
5372 if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
5373 // tickle the settings observer: this first ensures that we're
5374 // observing the relevant settings for the newly-active user,
5375 // and then updates our own bookkeeping based on the now-
5376 // current user.
5377 mSettingsObserver.onChange(false);
John Spurlockce479d82012-11-29 09:52:21 -05005378
5379 // force a re-application of focused window sysui visibility.
5380 // the window may never have been shown for this user
5381 // e.g. the keyguard when going through the new-user setup flow
John Spurlock04db1762013-05-13 12:46:41 -04005382 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
John Spurlockce479d82012-11-29 09:52:21 -05005383 mLastSystemUiFlags = 0;
5384 updateSystemUiVisibilityLw();
5385 }
Christopher Tate5e08af02012-09-21 17:17:22 -07005386 }
5387 }
5388 };
5389
Adrian Roosddc8b272015-05-21 16:28:27 -07005390 private final Runnable mHiddenNavPanic = new Runnable() {
John Spurlockd9b70bd2014-02-06 17:02:44 -05005391 @Override
5392 public void run() {
Adrian Roosddc8b272015-05-21 16:28:27 -07005393 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5394 if (!isUserSetupComplete()) {
5395 // Swipe-up for navigation bar is disabled during setup
5396 return;
5397 }
5398 mPendingPanicGestureUptime = SystemClock.uptimeMillis();
5399 mNavigationBarController.showTransient();
5400 }
John Spurlockd9b70bd2014-02-06 17:02:44 -05005401 }
5402 };
5403
John Spurlocke1f366f2013-08-05 12:22:40 -04005404 private void requestTransientBars(WindowState swipeTarget) {
John Spurlock04db1762013-05-13 12:46:41 -04005405 synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
Maurice Lam99c6e072014-04-28 18:24:28 -07005406 if (!isUserSetupComplete()) {
5407 // Swipe-up for navigation bar is disabled during setup
5408 return;
5409 }
John Spurlock27735a42013-08-14 17:57:38 -04005410 boolean sb = mStatusBarController.checkShowTransientBarLw();
5411 boolean nb = mNavigationBarController.checkShowTransientBarLw();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005412 if (sb || nb) {
Adrian Roos62b65e42015-02-25 18:05:34 +01005413 // Don't show status bar when swiping on already visible navigation bar
5414 if (!nb && swipeTarget == mNavigationBar) {
John Spurlocke1f366f2013-08-05 12:22:40 -04005415 if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
John Spurlockad3e6cb2013-04-30 08:47:43 -04005416 return;
5417 }
John Spurlock27735a42013-08-14 17:57:38 -04005418 if (sb) mStatusBarController.showTransient();
5419 if (nb) mNavigationBarController.showTransient();
John Spurlockf1a36642013-10-12 17:50:42 -04005420 mImmersiveModeConfirmation.confirmCurrentPrompt();
John Spurlockad3e6cb2013-04-30 08:47:43 -04005421 updateSystemUiVisibilityLw();
John Spurlock32beb2c2013-03-11 10:16:47 -04005422 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04005423 }
5424 }
5425
Jeff Brown3ee549c2014-09-22 20:14:39 -07005426 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005427 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005428 public void startedGoingToSleep(int why) {
5429 if (DEBUG_WAKEUP) Slog.i(TAG, "Started going to sleep... (why=" + why + ")");
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005430 if (mKeyguardDelegate != null) {
5431 mKeyguardDelegate.onStartedGoingToSleep(why);
5432 }
Jeff Brown416c49c2015-05-26 19:50:18 -07005433 }
5434
5435 // Called on the PowerManager's Notifier thread.
5436 @Override
5437 public void finishedGoingToSleep(int why) {
Dianne Hackborn74489012009-03-24 20:50:09 -07005438 EventLog.writeEvent(70000, 0);
Jeff Brown416c49c2015-05-26 19:50:18 -07005439 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished going to sleep... (why=" + why + ")");
Chris Wren9bb290b2015-06-29 12:02:13 -04005440 MetricsLogger.histogram(mContext, "screen_timeout", mLockScreenTimeout / 1000);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005441
5442 // We must get this work done here because the power manager will drop
5443 // the wake lock and let the system suspend once this function returns.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005444 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005445 mAwake = false;
5446 mKeyguardDrawComplete = false;
Jeff Browna20dda42014-05-27 20:57:24 -07005447 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005448 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005449 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005450 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005451 if (mKeyguardDelegate != null) {
Jorim Jaggid175b6c2015-05-27 15:39:09 -07005452 mKeyguardDelegate.onFinishedGoingToSleep(why);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005453 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005454 }
5455
Jeff Brown3ee549c2014-09-22 20:14:39 -07005456 // Called on the PowerManager's Notifier thread.
Jeff Brownc38c9be2012-10-04 13:16:19 -07005457 @Override
Jeff Brown416c49c2015-05-26 19:50:18 -07005458 public void startedWakingUp() {
Dianne Hackborn74489012009-03-24 20:50:09 -07005459 EventLog.writeEvent(70000, 1);
Jeff Brown416c49c2015-05-26 19:50:18 -07005460 if (DEBUG_WAKEUP) Slog.i(TAG, "Started waking up...");
Craig Mautner8a0da012014-05-31 15:13:37 -07005461
Jeff Brown3ee549c2014-09-22 20:14:39 -07005462 // Since goToSleep performs these functions synchronously, we must
5463 // do the same here. We cannot post this work to a handler because
5464 // that might cause it to become reordered with respect to what
5465 // may happen in a future call to goToSleep.
The Android Open Source Project0727d222009-03-11 12:11:58 -07005466 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005467 mAwake = true;
5468 mKeyguardDrawComplete = false;
5469 if (mKeyguardDelegate != null) {
5470 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5471 mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
5472 }
5473
Jeff Browna20dda42014-05-27 20:57:24 -07005474 updateWakeGestureListenerLp();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005475 updateOrientationListenerLp();
Mike Lockwood28569302010-01-28 11:54:40 -05005476 updateLockScreenTimeout();
The Android Open Source Project0727d222009-03-11 12:11:58 -07005477 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005478
Jim Miller5ecd8112013-01-09 18:50:26 -08005479 if (mKeyguardDelegate != null) {
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005480 mKeyguardDelegate.onStartedWakingUp();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005481 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005482 }
5483
Jeff Brown416c49c2015-05-26 19:50:18 -07005484 // Called on the PowerManager's Notifier thread.
5485 @Override
5486 public void finishedWakingUp() {
5487 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished waking up...");
5488 }
5489
5490 private void wakeUpFromPowerKey(long eventTime) {
5491 wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey);
5492 }
5493
5494 private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode) {
Bryce Leed3896842015-06-23 17:06:51 -07005495 final boolean theaterModeEnabled = isTheaterModeEnabled();
5496 if (!wakeInTheaterMode && theaterModeEnabled) {
Jeff Brown416c49c2015-05-26 19:50:18 -07005497 return false;
5498 }
5499
Bryce Leed3896842015-06-23 17:06:51 -07005500 if (theaterModeEnabled) {
5501 Settings.Global.putInt(mContext.getContentResolver(),
5502 Settings.Global.THEATER_MODE_ON, 0);
5503 }
5504
Jeff Brown416c49c2015-05-26 19:50:18 -07005505 mPowerManager.wakeUp(wakeTime);
5506 return true;
5507 }
5508
Jeff Brown36c4db82014-09-19 12:05:31 -07005509 private void finishKeyguardDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005510 synchronized (mLock) {
5511 if (!mAwake || mKeyguardDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005512 return; // We are not awake yet or we have already informed of this event.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005513 }
5514
Jeff Brown36c4db82014-09-19 12:05:31 -07005515 mKeyguardDrawComplete = true;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005516 if (mKeyguardDelegate != null) {
5517 mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5518 }
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005519 mWindowManagerDrawComplete = false;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005520 }
5521
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005522 // ... eventually calls finishWindowsDrawn which will finalize our screen turn on
5523 // as well as enabling the orientation change logic/sensor.
5524 mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5525 WAITING_FOR_DRAWN_TIMEOUT);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005526 }
5527
5528 // Called on the DisplayManager's DisplayPowerController thread.
5529 @Override
5530 public void screenTurnedOff() {
5531 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5532
Jeff Brown48d1b142015-06-10 16:36:03 -07005533 updateScreenOffSleepToken(true);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005534 synchronized (mLock) {
5535 mScreenOnEarly = false;
5536 mScreenOnFully = false;
5537 mWindowManagerDrawComplete = false;
5538 mScreenOnListener = null;
5539 updateOrientationListenerLp();
Jeff Brown36c4db82014-09-19 12:05:31 -07005540 }
5541 }
5542
Jeff Brown3ee549c2014-09-22 20:14:39 -07005543 // Called on the DisplayManager's DisplayPowerController thread.
Jeff Brown36c4db82014-09-19 12:05:31 -07005544 @Override
5545 public void screenTurningOn(final ScreenOnListener screenOnListener) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005546 if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
Jeff Brown36c4db82014-09-19 12:05:31 -07005547
Jeff Brown48d1b142015-06-10 16:36:03 -07005548 updateScreenOffSleepToken(false);
Jeff Brown3ee549c2014-09-22 20:14:39 -07005549 synchronized (mLock) {
5550 mScreenOnEarly = true;
5551 mScreenOnFully = false;
5552 mWindowManagerDrawComplete = false;
5553 mScreenOnListener = screenOnListener;
Jeff Brown36c4db82014-09-19 12:05:31 -07005554
Jorim Jaggi4cfdcf52015-07-09 12:13:59 -07005555 if (mKeyguardDelegate != null) {
5556 mKeyguardDelegate.onScreenTurningOn(mKeyguardDrawnCallback);
5557 } else {
5558 if (DEBUG_WAKEUP) Slog.d(TAG,
5559 "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5560 finishKeyguardDrawn();
5561 }
5562 }
Jeff Brown36c4db82014-09-19 12:05:31 -07005563 }
5564
Jeff Brown36c4db82014-09-19 12:05:31 -07005565 private void finishWindowsDrawn() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005566 synchronized (mLock) {
5567 if (!mScreenOnEarly || mWindowManagerDrawComplete) {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005568 return; // Screen is not turned on or we did already handle this case earlier.
Jeff Brown3ee549c2014-09-22 20:14:39 -07005569 }
5570
Jeff Brown36c4db82014-09-19 12:05:31 -07005571 mWindowManagerDrawComplete = true;
Jeff Brown36c4db82014-09-19 12:05:31 -07005572 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005573
5574 finishScreenTurningOn();
Jeff Brownc38c9be2012-10-04 13:16:19 -07005575 }
5576
Craig Mautner8a0da012014-05-31 15:13:37 -07005577 private void finishScreenTurningOn() {
Stefan Kuhne9326dc12015-06-12 09:25:32 -10005578 synchronized (mLock) {
5579 // We have just finished drawing screen content. Since the orientation listener
5580 // gets only installed when all windows are drawn, we try to install it again.
5581 updateOrientationListenerLp();
5582 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005583 final ScreenOnListener listener;
5584 final boolean enableScreen;
Jeff Brown36c4db82014-09-19 12:05:31 -07005585 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005586 if (DEBUG_WAKEUP) Slog.d(TAG,
5587 "finishScreenTurningOn: mAwake=" + mAwake
5588 + ", mScreenOnEarly=" + mScreenOnEarly
5589 + ", mScreenOnFully=" + mScreenOnFully
5590 + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5591 + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5592
5593 if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5594 || (mAwake && !mKeyguardDrawComplete)) {
5595 return; // spurious or not ready yet
Jeff Brown36c4db82014-09-19 12:05:31 -07005596 }
5597
Jeff Brown3ee549c2014-09-22 20:14:39 -07005598 if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5599 listener = mScreenOnListener;
Craig Mautner13f6ea72014-06-23 14:57:02 -07005600 mScreenOnListener = null;
Jeff Brown3ee549c2014-09-22 20:14:39 -07005601 mScreenOnFully = true;
5602
5603 // Remember the first time we draw the keyguard so we know when we're done with
5604 // the main part of booting and can enable the screen and hide boot messages.
5605 if (!mKeyguardDrawnOnce && mAwake) {
5606 mKeyguardDrawnOnce = true;
5607 enableScreen = true;
5608 if (mBootMessageNeedsHiding) {
5609 mBootMessageNeedsHiding = false;
5610 hideBootMessages();
5611 }
5612 } else {
5613 enableScreen = false;
5614 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005615 }
5616
Jeff Brown3ee549c2014-09-22 20:14:39 -07005617 if (listener != null) {
5618 listener.onScreenOn();
5619 }
Jeff Brown4fc45272012-10-10 18:28:14 -07005620
Jeff Brown3ee549c2014-09-22 20:14:39 -07005621 if (enableScreen) {
5622 try {
5623 mWindowManager.enableScreenIfNeeded();
5624 } catch (RemoteException unhandled) {
Jeff Brown36c4db82014-09-19 12:05:31 -07005625 }
Craig Mautnera631d492014-08-05 15:16:01 -07005626 }
5627 }
5628
5629 private void handleHideBootMessage() {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005630 synchronized (mLock) {
5631 if (!mKeyguardDrawnOnce) {
5632 mBootMessageNeedsHiding = true;
5633 return; // keyguard hasn't drawn the first time yet, not done booting
5634 }
Craig Mautnera631d492014-08-05 15:16:01 -07005635 }
Jeff Brown3ee549c2014-09-22 20:14:39 -07005636
5637 if (mBootMsgDialog != null) {
5638 if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5639 mBootMsgDialog.dismiss();
5640 mBootMsgDialog = null;
Craig Mautnera631d492014-08-05 15:16:01 -07005641 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005642 }
5643
5644 @Override
Jeff Brown3ee549c2014-09-22 20:14:39 -07005645 public boolean isScreenOn() {
5646 return mScreenOnFully;
Dianne Hackborn08743722009-12-21 12:16:51 -08005647 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07005648
Dianne Hackborn08743722009-12-21 12:16:51 -08005649 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005650 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005651 public void enableKeyguard(boolean enabled) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005652 if (mKeyguardDelegate != null) {
5653 mKeyguardDelegate.setKeyguardEnabled(enabled);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005654 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005655 }
5656
5657 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005658 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005659 public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
Jim Miller5ecd8112013-01-09 18:50:26 -08005660 if (mKeyguardDelegate != null) {
5661 mKeyguardDelegate.verifyUnlock(callback);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07005662 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005663 }
5664
Jim Millerab954542014-10-10 18:21:49 -07005665 private boolean isKeyguardShowingAndNotOccluded() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005666 if (mKeyguardDelegate == null) return false;
Jim Millerab954542014-10-10 18:21:49 -07005667 return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005668 }
5669
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005670 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005671 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005672 public boolean isKeyguardLocked() {
5673 return keyguardOn();
5674 }
5675
5676 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005677 @Override
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005678 public boolean isKeyguardSecure() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005679 if (mKeyguardDelegate == null) return false;
5680 return mKeyguardDelegate.isSecure();
Mike Lockwood520d8bc2011-02-18 13:23:13 -05005681 }
5682
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005683 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07005684 @Override
Adrian Roos461829d2015-06-03 14:41:18 -07005685 public boolean isKeyguardShowingOrOccluded() {
5686 return mKeyguardDelegate == null ? false : mKeyguardDelegate.isShowing();
5687 }
5688
5689 /** {@inheritDoc} */
5690 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005691 public boolean inKeyguardRestrictedKeyInputMode() {
Jim Miller5ecd8112013-01-09 18:50:26 -08005692 if (mKeyguardDelegate == null) return false;
5693 return mKeyguardDelegate.isInputRestricted();
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005694 }
5695
Jose Lima9546b202014-07-02 17:21:51 -07005696 @Override
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005697 public void dismissKeyguardLw() {
RoboErik8a2cfc32014-05-16 11:19:38 -07005698 if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005699 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
Daniel Sandler1ce804392012-11-07 15:07:12 -05005700 mHandler.post(new Runnable() {
Jose Lima9546b202014-07-02 17:21:51 -07005701 @Override
Daniel Sandler1ce804392012-11-07 15:07:12 -05005702 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02005703 // ask the keyguard to prompt the user to authenticate if necessary
5704 mKeyguardDelegate.dismiss();
5705 }
5706 });
5707 }
5708 }
5709
5710 public void notifyActivityDrawnForKeyguardLw() {
5711 if (mKeyguardDelegate != null) {
5712 mHandler.post(new Runnable() {
5713 @Override
5714 public void run() {
5715 mKeyguardDelegate.onActivityDrawn();
Daniel Sandler1ce804392012-11-07 15:07:12 -05005716 }
5717 });
Dianne Hackborn90c52de2011-09-23 12:57:44 -07005718 }
5719 }
5720
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005721 @Override
5722 public boolean isKeyguardDrawnLw() {
5723 synchronized (mLock) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07005724 return mKeyguardDrawnOnce;
Jorim Jaggicff0acb2014-03-31 16:35:15 +02005725 }
5726 }
5727
Jorim Jaggi0d674622014-05-21 01:34:15 +02005728 @Override
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005729 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
Jorim Jaggi0d674622014-05-21 01:34:15 +02005730 if (mKeyguardDelegate != null) {
Craig Mautnerc0d2d0a2014-10-31 16:25:15 -07005731 if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
Jorim Jaggie29b2db2014-05-30 23:17:03 +02005732 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
Jorim Jaggi0d674622014-05-21 01:34:15 +02005733 }
5734 }
5735
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005736 void sendCloseSystemWindows() {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005737 PhoneWindow.sendCloseSystemWindows(mContext, null);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005738 }
5739
5740 void sendCloseSystemWindows(String reason) {
Jorim Jaggib10e33f2015-02-04 21:57:40 +01005741 PhoneWindow.sendCloseSystemWindows(mContext, reason);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005742 }
Mitsuru Oshima831d0d92009-06-16 18:27:18 -07005743
Jeff Brown01a98dd2011-09-20 15:08:29 -07005744 @Override
5745 public int rotationForOrientationLw(int orientation, int lastRotation) {
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005746 if (false) {
5747 Slog.v(TAG, "rotationForOrientationLw(orient="
5748 + orientation + ", last=" + lastRotation
5749 + "); user=" + mUserRotation + " "
5750 + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5751 ? "USER_ROTATION_LOCKED" : "")
5752 );
5753 }
5754
Craig Mautner46ac6fa2013-08-01 10:06:34 -07005755 if (mForceDefaultOrientation) {
5756 return Surface.ROTATION_0;
5757 }
5758
The Android Open Source Project0727d222009-03-11 12:11:58 -07005759 synchronized (mLock) {
Jeff Brownc0347aa2011-09-23 17:26:09 -07005760 int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5761 if (sensorRotation < 0) {
Jeff Brown0f862b42012-09-27 21:11:01 -07005762 sensorRotation = lastRotation;
Jeff Brownc0347aa2011-09-23 17:26:09 -07005763 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005764
Jeff Browndec6cf42011-11-15 14:08:20 -08005765 final int preferredRotation;
Jeff Brown2e7760e2012-04-11 15:14:55 -07005766 if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005767 // Ignore sensor when lid switch is open and rotation is forced.
5768 preferredRotation = mLidOpenRotation;
5769 } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
Jeff Brownc0347aa2011-09-23 17:26:09 -07005770 && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005771 // Ignore sensor when in car dock unless explicitly enabled.
5772 // This case can override the behavior of NOSENSOR, and can also
5773 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005774 preferredRotation = mCarDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005775 ? sensorRotation : mCarDockRotation;
Jeff Brown1a693182011-11-08 14:44:16 -08005776 } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5777 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5778 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
Jeff Brownc0347aa2011-09-23 17:26:09 -07005779 && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005780 // Ignore sensor when in desk dock unless explicitly enabled.
5781 // This case can override the behavior of NOSENSOR, and can also
5782 // enable 180 degree rotation while docked.
Jeff Brownc0347aa2011-09-23 17:26:09 -07005783 preferredRotation = mDeskDockEnablesAccelerometer
Jeff Brown01a98dd2011-09-20 15:08:29 -07005784 ? sensorRotation : mDeskDockRotation;
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005785 } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5786 // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
Jeff Browneb3e4b92011-12-06 19:54:24 -08005787 // Note that the dock orientation overrides the HDMI orientation.
Jeff Brownc82c89ed2013-04-17 17:18:15 -07005788 preferredRotation = mDemoHdmiRotation;
5789 } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5790 && mUndockedHdmiRotation >= 0) {
5791 // Ignore sensor when plugged into HDMI and an undocked orientation has
5792 // been specified in the configuration (only for legacy devices without
5793 // full multi-display support).
5794 // Note that the dock orientation overrides the HDMI orientation.
5795 preferredRotation = mUndockedHdmiRotation;
Chong Zhangae6119ff2014-11-11 18:54:39 -08005796 } else if (mDemoRotationLock) {
5797 // Ignore sensor when demo rotation lock is enabled.
5798 // Note that the dock orientation and HDMI rotation lock override this.
5799 preferredRotation = mDemoRotation;
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005800 } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5801 // Application just wants to remain locked in the last rotation.
5802 preferredRotation = lastRotation;
Jeff Brownbcdfc622014-03-06 19:13:04 -08005803 } else if (!mSupportAutoRotation) {
5804 // If we don't support auto-rotation then bail out here and ignore
5805 // the sensor and any rotation lock settings.
5806 preferredRotation = -1;
Jeff Brown207673cd2012-06-05 17:47:11 -07005807 } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
Jeff Brown01a98dd2011-09-20 15:08:29 -07005808 && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005809 || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5810 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5811 || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5812 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
Jeff Brown01a98dd2011-09-20 15:08:29 -07005813 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5814 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5815 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5816 || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5817 // Otherwise, use sensor only if requested by the application or enabled
5818 // by default for USER or UNSPECIFIED modes. Does not apply to NOSENSOR.
Jeff Brownd3187e32011-09-21 19:26:44 -07005819 if (mAllowAllRotations < 0) {
5820 // Can't read this during init() because the context doesn't
5821 // have display metrics at that time so we cannot determine
5822 // tablet vs. phone then.
5823 mAllowAllRotations = mContext.getResources().getBoolean(
5824 com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5825 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005826 if (sensorRotation != Surface.ROTATION_180
Jeff Brownd3187e32011-09-21 19:26:44 -07005827 || mAllowAllRotations == 1
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005828 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5829 || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
Jeff Brown01a98dd2011-09-20 15:08:29 -07005830 preferredRotation = sensorRotation;
5831 } else {
5832 preferredRotation = lastRotation;
5833 }
Jeff Brown207673cd2012-06-05 17:47:11 -07005834 } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5835 && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5836 // Apply rotation lock. Does not apply to NOSENSOR.
5837 // The idea is that the user rotation expresses a weak preference for the direction
5838 // of gravity and as NOSENSOR is never affected by gravity, then neither should
5839 // NOSENSOR be affected by rotation lock (although it will be affected by docks).
Jeff Brown4dfce202011-10-05 12:00:10 -07005840 preferredRotation = mUserRotation;
Jeff Browndec6cf42011-11-15 14:08:20 -08005841 } else {
5842 // No overriding preference.
5843 // We will do exactly what the application asked us to do.
5844 preferredRotation = -1;
Jeff Brown01a98dd2011-09-20 15:08:29 -07005845 }
5846
Dianne Hackborne5439f22010-10-02 16:53:50 -07005847 switch (orientation) {
5848 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005849 // Return portrait unless overridden.
5850 if (isAnyPortrait(preferredRotation)) {
5851 return preferredRotation;
5852 }
Dianne Hackborne5439f22010-10-02 16:53:50 -07005853 return mPortraitRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005854
Jeff Brown01a98dd2011-09-20 15:08:29 -07005855 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005856 // Return landscape unless overridden.
5857 if (isLandscapeOrSeascape(preferredRotation)) {
5858 return preferredRotation;
5859 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005860 return mLandscapeRotation;
5861
5862 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
Jeff Browndec6cf42011-11-15 14:08:20 -08005863 // Return reverse portrait unless overridden.
5864 if (isAnyPortrait(preferredRotation)) {
5865 return preferredRotation;
5866 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005867 return mUpsideDownRotation;
5868
5869 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
Jeff Browndec6cf42011-11-15 14:08:20 -08005870 // Return seascape unless overridden.
5871 if (isLandscapeOrSeascape(preferredRotation)) {
5872 return preferredRotation;
5873 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005874 return mSeascapeRotation;
5875
5876 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005877 case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005878 // Return either landscape rotation.
5879 if (isLandscapeOrSeascape(preferredRotation)) {
5880 return preferredRotation;
5881 }
5882 if (isLandscapeOrSeascape(lastRotation)) {
Jeff Brown4519f072011-01-23 13:16:01 -08005883 return lastRotation;
5884 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07005885 return mLandscapeRotation;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005886
Jeff Brown01a98dd2011-09-20 15:08:29 -07005887 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
Dianne Hackbornb9ec1ac2013-04-10 17:34:25 -07005888 case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
Jeff Brown01a98dd2011-09-20 15:08:29 -07005889 // Return either portrait rotation.
5890 if (isAnyPortrait(preferredRotation)) {
5891 return preferredRotation;
5892 }
5893 if (isAnyPortrait(lastRotation)) {
5894 return lastRotation;
5895 }
5896 return mPortraitRotation;
5897
5898 default:
Jeff Brown4dfce202011-10-05 12:00:10 -07005899 // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5900 // just return the preferred orientation we already calculated.
Jeff Brown01a98dd2011-09-20 15:08:29 -07005901 if (preferredRotation >= 0) {
5902 return preferredRotation;
5903 }
Dianne Hackborndacea8c2011-04-21 17:26:39 -07005904 return Surface.ROTATION_0;
Daniel Sandlere7e5ac22011-02-22 16:10:21 -05005905 }
5906 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005907 }
5908
Jeff Brown01a98dd2011-09-20 15:08:29 -07005909 @Override
5910 public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5911 switch (orientation) {
5912 case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5913 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5914 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5915 return isAnyPortrait(rotation);
5916
5917 case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5918 case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5919 case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5920 return isLandscapeOrSeascape(rotation);
5921
5922 default:
5923 return true;
5924 }
Steve Howarda7bfe6a2010-09-23 16:47:49 -07005925 }
5926
Jeff Brownc0347aa2011-09-23 17:26:09 -07005927 @Override
5928 public void setRotationLw(int rotation) {
5929 mOrientationListener.setCurrentRotation(rotation);
5930 }
5931
Jeff Brown01a98dd2011-09-20 15:08:29 -07005932 private boolean isLandscapeOrSeascape(int rotation) {
5933 return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005934 }
5935
Jeff Brown01a98dd2011-09-20 15:08:29 -07005936 private boolean isAnyPortrait(int rotation) {
5937 return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
Dianne Hackborne5439f22010-10-02 16:53:50 -07005938 }
5939
Jose Lima9546b202014-07-02 17:21:51 -07005940 @Override
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005941 public int getUserRotationMode() {
5942 return Settings.System.getIntForUser(mContext.getContentResolver(),
Brett Chabot7e55c402013-05-16 19:38:08 -07005943 Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5944 WindowManagerPolicy.USER_ROTATION_FREE :
5945 WindowManagerPolicy.USER_ROTATION_LOCKED;
Svetoslav Ganov80943d82013-01-02 10:25:37 -08005946 }
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005947
5948 // User rotation: to be used when all else fails in assigning an orientation to the device
Jose Lima9546b202014-07-02 17:21:51 -07005949 @Override
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005950 public void setUserRotationMode(int mode, int rot) {
5951 ContentResolver res = mContext.getContentResolver();
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005952
5953 // mUserRotationMode and mUserRotation will be assigned by the content observer
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005954 if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
Christopher Tate5e08af02012-09-21 17:17:22 -07005955 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005956 Settings.System.USER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005957 rot,
5958 UserHandle.USER_CURRENT);
5959 Settings.System.putIntForUser(res,
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05005960 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005961 0,
5962 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005963 } else {
Christopher Tate5e08af02012-09-21 17:17:22 -07005964 Settings.System.putIntForUser(res,
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005965 Settings.System.ACCELEROMETER_ROTATION,
Christopher Tate5e08af02012-09-21 17:17:22 -07005966 1,
5967 UserHandle.USER_CURRENT);
Daniel Sandlerb73617d2010-08-17 00:41:00 -04005968 }
5969 }
5970
Jose Lima9546b202014-07-02 17:21:51 -07005971 @Override
Jeff Brownac143512012-04-05 18:57:33 -07005972 public void setSafeMode(boolean safeMode) {
5973 mSafeMode = safeMode;
5974 performHapticFeedbackLw(null, safeMode
5975 ? HapticFeedbackConstants.SAFE_MODE_ENABLED
5976 : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005977 }
Craig Mautnereda67292013-04-28 13:50:14 -07005978
Dianne Hackborn181ceb52009-08-27 22:16:40 -07005979 static long[] getLongIntArray(Resources r, int resid) {
5980 int[] ar = r.getIntArray(resid);
5981 if (ar == null) {
5982 return null;
5983 }
5984 long[] out = new long[ar.length];
5985 for (int i=0; i<ar.length; i++) {
5986 out[i] = ar[i];
5987 }
5988 return out;
5989 }
Craig Mautnereda67292013-04-28 13:50:14 -07005990
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005991 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07005992 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08005993 public void systemReady() {
Jim Millerab954542014-10-10 18:21:49 -07005994 mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
Mike Lockwooded8902d2013-11-15 11:01:47 -08005995 mKeyguardDelegate.onSystemReady();
5996
Michael Wright3818c922014-09-02 13:59:07 -07005997 readCameraLensCoverState();
Jeff Brown4f5fa282014-06-12 19:19:15 -07005998 updateUiMode();
Dianne Hackbornb1a79802009-09-29 15:18:31 -07005999 synchronized (mLock) {
6000 updateOrientationListenerLp();
Dianne Hackbornc777e072010-02-12 13:07:59 -08006001 mSystemReady = true;
6002 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006003 @Override
Dianne Hackbornc777e072010-02-12 13:07:59 -08006004 public void run() {
6005 updateSettings();
6006 }
6007 });
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006008 }
6009 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006010
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006011 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006012 @Override
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006013 public void systemBooted() {
Jim Millere5f910a2013-10-16 18:15:46 -07006014 if (mKeyguardDelegate != null) {
Jason Monk5eeebf52014-09-26 12:36:51 -04006015 mKeyguardDelegate.bindService(mContext);
Jim Millere5f910a2013-10-16 18:15:46 -07006016 mKeyguardDelegate.onBootCompleted();
6017 }
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006018 synchronized (mLock) {
6019 mSystemBooted = true;
6020 }
Jeff Brown416c49c2015-05-26 19:50:18 -07006021 startedWakingUp();
Jeff Brown36c4db82014-09-19 12:05:31 -07006022 screenTurningOn(null);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006023 }
6024
Dianne Hackborn661cd522011-08-22 00:26:20 -07006025 ProgressDialog mBootMsgDialog = null;
6026
6027 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006028 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006029 public void showBootMessage(final CharSequence msg, final boolean always) {
6030 mHandler.post(new Runnable() {
6031 @Override public void run() {
6032 if (mBootMsgDialog == null) {
Craig Stout4c0cb8a2014-04-04 13:03:10 -07006033 int theme;
6034 if (mContext.getPackageManager().hasSystemFeature(
6035 PackageManager.FEATURE_WATCH)) {
6036 theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
6037 } else if (mContext.getPackageManager().hasSystemFeature(
6038 PackageManager.FEATURE_TELEVISION)) {
6039 theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
6040 } else {
6041 theme = 0;
6042 }
Vinod Krishnanfa8fc412014-04-18 14:35:53 -07006043
6044 mBootMsgDialog = new ProgressDialog(mContext, theme) {
Dianne Hackborn295e3c22011-08-25 13:19:08 -07006045 // This dialog will consume all events coming in to
6046 // it, to avoid it trying to do things too early in boot.
6047 @Override public boolean dispatchKeyEvent(KeyEvent event) {
6048 return true;
6049 }
6050 @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
6051 return true;
6052 }
6053 @Override public boolean dispatchTouchEvent(MotionEvent ev) {
6054 return true;
6055 }
6056 @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
6057 return true;
6058 }
6059 @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
6060 return true;
6061 }
6062 @Override public boolean dispatchPopulateAccessibilityEvent(
6063 AccessibilityEvent event) {
6064 return true;
6065 }
6066 };
Jeff Hao9f60c082014-10-28 18:51:07 -07006067 if (mContext.getPackageManager().isUpgrade()) {
6068 mBootMsgDialog.setTitle(R.string.android_upgrading_title);
6069 } else {
6070 mBootMsgDialog.setTitle(R.string.android_start_title);
6071 }
Dianne Hackborn661cd522011-08-22 00:26:20 -07006072 mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
6073 mBootMsgDialog.setIndeterminate(true);
6074 mBootMsgDialog.getWindow().setType(
Dianne Hackborn29aae6f2011-08-18 18:30:09 -07006075 WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006076 mBootMsgDialog.getWindow().addFlags(
6077 WindowManager.LayoutParams.FLAG_DIM_BEHIND
6078 | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
6079 mBootMsgDialog.getWindow().setDimAmount(1);
Dianne Hackbornd9efb952011-12-07 14:56:51 -08006080 WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
6081 lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
6082 mBootMsgDialog.getWindow().setAttributes(lp);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006083 mBootMsgDialog.setCancelable(false);
6084 mBootMsgDialog.show();
6085 }
6086 mBootMsgDialog.setMessage(msg);
6087 }
6088 });
6089 }
6090
6091 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006092 @Override
Dianne Hackborn661cd522011-08-22 00:26:20 -07006093 public void hideBootMessages() {
Craig Mautnera631d492014-08-05 15:16:01 -07006094 mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
Dianne Hackborn661cd522011-08-22 00:26:20 -07006095 }
6096
Mike Lockwood28569302010-01-28 11:54:40 -05006097 /** {@inheritDoc} */
Jose Lima9546b202014-07-02 17:21:51 -07006098 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006099 public void userActivity() {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006100 // ***************************************
6101 // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
6102 // ***************************************
6103 // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
6104 // WITH ITS LOCKS HELD.
6105 //
6106 // This code must be VERY careful about the locks
6107 // it acquires.
6108 // In fact, the current code acquires way too many,
6109 // and probably has lurking deadlocks.
6110
Mike Lockwood28569302010-01-28 11:54:40 -05006111 synchronized (mScreenLockTimeout) {
6112 if (mLockScreenTimerActive) {
6113 // reset the timer
6114 mHandler.removeCallbacks(mScreenLockTimeout);
6115 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6116 }
6117 }
Daniel Sandler0601eb72011-04-13 01:01:32 -04006118 }
6119
Adam Cohenf7522022012-10-03 20:03:18 -07006120 class ScreenLockTimeout implements Runnable {
6121 Bundle options;
6122
6123 @Override
Mike Lockwood28569302010-01-28 11:54:40 -05006124 public void run() {
6125 synchronized (this) {
6126 if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
Jim Miller5ecd8112013-01-09 18:50:26 -08006127 if (mKeyguardDelegate != null) {
6128 mKeyguardDelegate.doKeyguardTimeout(options);
Mike Lockwood3a74bd32011-08-12 13:55:22 -07006129 }
Mike Lockwood28569302010-01-28 11:54:40 -05006130 mLockScreenTimerActive = false;
Adam Cohenf7522022012-10-03 20:03:18 -07006131 options = null;
Mike Lockwood28569302010-01-28 11:54:40 -05006132 }
6133 }
Mike Lockwood28569302010-01-28 11:54:40 -05006134
Adam Cohenf7522022012-10-03 20:03:18 -07006135 public void setLockOptions(Bundle options) {
6136 this.options = options;
6137 }
6138 }
6139
6140 ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
6141
Jose Lima9546b202014-07-02 17:21:51 -07006142 @Override
Adam Cohenf7522022012-10-03 20:03:18 -07006143 public void lockNow(Bundle options) {
Jim Miller93c518e2012-01-17 15:55:31 -08006144 mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
6145 mHandler.removeCallbacks(mScreenLockTimeout);
Adam Cohenf7522022012-10-03 20:03:18 -07006146 if (options != null) {
6147 // In case multiple calls are made to lockNow, we don't wipe out the options
6148 // until the runnable actually executes.
6149 mScreenLockTimeout.setLockOptions(options);
6150 }
Jim Miller93c518e2012-01-17 15:55:31 -08006151 mHandler.post(mScreenLockTimeout);
6152 }
6153
Mike Lockwood28569302010-01-28 11:54:40 -05006154 private void updateLockScreenTimeout() {
6155 synchronized (mScreenLockTimeout) {
Jeff Brown3ee549c2014-09-22 20:14:39 -07006156 boolean enable = (mAllowLockscreenWhenOn && mAwake &&
Jim Miller5ecd8112013-01-09 18:50:26 -08006157 mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
Mike Lockwood28569302010-01-28 11:54:40 -05006158 if (mLockScreenTimerActive != enable) {
6159 if (enable) {
6160 if (localLOGV) Log.v(TAG, "setting lockscreen timer");
6161 mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
6162 } else {
6163 if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
6164 mHandler.removeCallbacks(mScreenLockTimeout);
6165 }
6166 mLockScreenTimerActive = enable;
6167 }
6168 }
6169 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006170
Jeff Brown061ea992015-04-17 19:55:47 -07006171 private void updateDreamingSleepToken(boolean acquire) {
6172 if (acquire) {
6173 if (mDreamingSleepToken == null) {
6174 mDreamingSleepToken = mActivityManagerInternal.acquireSleepToken("Dream");
6175 }
6176 } else {
6177 if (mDreamingSleepToken != null) {
6178 mDreamingSleepToken.release();
Jeff Brown48d1b142015-06-10 16:36:03 -07006179 mDreamingSleepToken = null;
6180 }
6181 }
6182 }
6183
6184 private void updateScreenOffSleepToken(boolean acquire) {
6185 if (acquire) {
6186 if (mScreenOffSleepToken == null) {
6187 mScreenOffSleepToken = mActivityManagerInternal.acquireSleepToken("ScreenOff");
6188 }
6189 } else {
6190 if (mScreenOffSleepToken != null) {
6191 mScreenOffSleepToken.release();
6192 mScreenOffSleepToken = null;
Jeff Brown061ea992015-04-17 19:55:47 -07006193 }
6194 }
6195 }
6196
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006197 /** {@inheritDoc} */
Craig Mautnereda67292013-04-28 13:50:14 -07006198 @Override
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006199 public void enableScreenAfterBoot() {
6200 readLidState();
Jeff Brownc458ce92012-04-30 14:58:40 -07006201 applyLidSwitchState();
Jeff Brown01a98dd2011-09-20 15:08:29 -07006202 updateRotation(true);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006203 }
Dianne Hackbornf54c8f92009-09-19 14:03:57 -07006204
Jeff Brownc458ce92012-04-30 14:58:40 -07006205 private void applyLidSwitchState() {
Jeff Brownc458ce92012-04-30 14:58:40 -07006206 if (mLidState == LID_CLOSED && mLidControlsSleep) {
Jeff Brown6d8fd272014-05-20 21:24:38 -07006207 mPowerManager.goToSleep(SystemClock.uptimeMillis(),
Jeff Brownc12035c2014-08-13 18:52:25 -07006208 PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
Jeff Brown6d8fd272014-05-20 21:24:38 -07006209 PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
Jeff Brownc458ce92012-04-30 14:58:40 -07006210 }
Jeff Browna20dda42014-05-27 20:57:24 -07006211
6212 synchronized (mLock) {
6213 updateWakeGestureListenerLp();
6214 }
Jeff Brown01a98dd2011-09-20 15:08:29 -07006215 }
6216
Jeff Brown4f5fa282014-06-12 19:19:15 -07006217 void updateUiMode() {
6218 if (mUiModeManager == null) {
6219 mUiModeManager = IUiModeManager.Stub.asInterface(
6220 ServiceManager.getService(Context.UI_MODE_SERVICE));
6221 }
6222 try {
6223 mUiMode = mUiModeManager.getCurrentModeType();
6224 } catch (RemoteException e) {
6225 }
6226 }
6227
Jeff Brown01a98dd2011-09-20 15:08:29 -07006228 void updateRotation(boolean alwaysSendConfiguration) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006229 try {
6230 //set orientation on WindowManager
Dianne Hackbornf87d1962012-04-04 12:48:24 -07006231 mWindowManager.updateRotation(alwaysSendConfiguration, false);
6232 } catch (RemoteException e) {
6233 // Ignore
6234 }
6235 }
6236
6237 void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
6238 try {
6239 //set orientation on WindowManager
6240 mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006241 } catch (RemoteException e) {
6242 // Ignore
6243 }
6244 }
6245
Daniel Sandler6396c722013-04-16 20:19:09 -04006246 /**
6247 * Return an Intent to launch the currently active dock app as home. Returns
6248 * null if the standard home should be launched, which is the case if any of the following is
6249 * true:
6250 * <ul>
6251 * <li>The device is not in either car mode or desk mode
6252 * <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
6253 * <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
6254 * <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
6255 * <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
6256 * </ul>
Craig Mautnereda67292013-04-28 13:50:14 -07006257 * @return A dock intent.
Daniel Sandler6396c722013-04-16 20:19:09 -04006258 */
6259 Intent createHomeDockIntent() {
6260 Intent intent = null;
6261
6262 // What home does is based on the mode, not the dock state. That
6263 // is, when in car mode you should be taken to car home regardless
6264 // of whether we are actually in a car dock.
6265 if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
6266 if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
6267 intent = mCarDockIntent;
6268 }
6269 } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
6270 if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
6271 intent = mDeskDockIntent;
6272 }
Jeff Brown4f5fa282014-06-12 19:19:15 -07006273 } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
6274 && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
6275 || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
6276 || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
6277 // Always launch dock home from home when watch is docked, if it exists.
6278 intent = mDeskDockIntent;
Daniel Sandler6396c722013-04-16 20:19:09 -04006279 }
6280
6281 if (intent == null) {
6282 return null;
6283 }
6284
6285 ActivityInfo ai = null;
6286 ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
6287 intent,
John Spurlockf56bef12013-07-09 09:51:46 -04006288 PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
Craig Mautnerd625ab22013-09-06 13:40:31 -07006289 mCurrentUserId);
Daniel Sandler6396c722013-04-16 20:19:09 -04006290 if (info != null) {
6291 ai = info.activityInfo;
6292 }
6293 if (ai != null
6294 && ai.metaData != null
6295 && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
6296 intent = new Intent(intent);
6297 intent.setClassName(ai.packageName, ai.name);
6298 return intent;
6299 }
6300
6301 return null;
6302 }
6303
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006304 void startDockOrHome(boolean fromHomeKey, boolean awakenFromDreams) {
6305 if (awakenFromDreams) {
6306 awakenDreams();
6307 }
Daniel Sandler6396c722013-04-16 20:19:09 -04006308
6309 Intent dock = createHomeDockIntent();
6310 if (dock != null) {
6311 try {
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006312 if (fromHomeKey) {
6313 dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6314 }
Bart Sears8b1c27c2015-03-18 23:51:02 +00006315 startActivityAsUser(dock, UserHandle.CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006316 return;
6317 } catch (ActivityNotFoundException e) {
6318 }
6319 }
6320
Bryce Lee01b0c5f2015-02-05 18:24:04 -08006321 Intent intent;
6322
6323 if (fromHomeKey) {
6324 intent = new Intent(mHomeIntent);
6325 intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
6326 } else {
6327 intent = mHomeIntent;
6328 }
6329
Bryce Lee9fc0b6f2015-03-19 21:37:45 +00006330 startActivityAsUser(intent, UserHandle.CURRENT);
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006331 }
Craig Mautnereda67292013-04-28 13:50:14 -07006332
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006333 /**
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006334 * goes to the home screen
6335 * @return whether it did anything
6336 */
6337 boolean goHome() {
Bart Sears8b1c27c2015-03-18 23:51:02 +00006338 if (!isUserSetupComplete()) {
6339 Slog.i(TAG, "Not going home because user setup is in progress.");
6340 return false;
6341 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006342 if (false) {
6343 // This code always brings home to the front.
Dianne Hackborn256dd3b2009-05-19 18:51:21 -07006344 try {
6345 ActivityManagerNative.getDefault().stopAppSwitches();
6346 } catch (RemoteException e) {
6347 }
Dianne Hackborn94a679d2009-07-28 17:51:07 -07006348 sendCloseSystemWindows();
Filip Gruszczynskia483a1d2015-03-17 19:06:58 +00006349 startDockOrHome(false /*fromHomeKey*/, true /* awakenFromDreams */);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006350 } else {
6351 // This code brings home to the front or, if it is already
6352 // at the front, puts the device to sleep.
6353 try {
Wink Savilled2e6a332010-02-12 12:12:06 -08006354 if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
6355 /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
6356 Log.d(TAG, "UTS-TEST-MODE");
6357 } else {
6358 ActivityManagerNative.getDefault().stopAppSwitches();
6359 sendCloseSystemWindows();
Daniel Sandler6396c722013-04-16 20:19:09 -04006360 Intent dock = createHomeDockIntent();
6361 if (dock != null) {
6362 int result = ActivityManagerNative.getDefault()
6363 .startActivityAsUser(null, null, dock,
6364 dock.resolveTypeIfNeeded(mContext.getContentResolver()),
6365 null, null, 0,
6366 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006367 null, null, UserHandle.USER_CURRENT);
Daniel Sandler6396c722013-04-16 20:19:09 -04006368 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
6369 return false;
6370 }
6371 }
Dianne Hackborn39c2d712009-09-22 11:41:31 -07006372 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006373 int result = ActivityManagerNative.getDefault()
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006374 .startActivityAsUser(null, null, mHomeIntent,
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006375 mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
Dianne Hackborna4972e92012-03-14 10:38:05 -07006376 null, null, 0,
6377 ActivityManager.START_FLAG_ONLY_IF_NEEDED,
Jeff Hao1b012d32014-08-20 10:35:34 -07006378 null, null, UserHandle.USER_CURRENT);
Dianne Hackborna4972e92012-03-14 10:38:05 -07006379 if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006380 return false;
6381 }
6382 } catch (RemoteException ex) {
6383 // bummer, the activity manager, which is in this process, is dead
6384 }
6385 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006386 return true;
6387 }
Craig Mautnereda67292013-04-28 13:50:14 -07006388
6389 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006390 public void setCurrentOrientationLw(int newOrientation) {
6391 synchronized (mLock) {
6392 if (newOrientation != mCurrentAppOrientation) {
6393 mCurrentAppOrientation = newOrientation;
6394 updateOrientationListenerLp();
6395 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006396 }
6397 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006398
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006399 private void performAuditoryFeedbackForAccessibilityIfNeed() {
6400 if (!isGlobalAccessibilityGestureEnabled()) {
6401 return;
6402 }
6403 AudioManager audioManager = (AudioManager) mContext.getSystemService(
6404 Context.AUDIO_SERVICE);
6405 if (audioManager.isSilentMode()) {
6406 return;
6407 }
6408 Ringtone ringTone = RingtoneManager.getRingtone(mContext,
6409 Settings.System.DEFAULT_NOTIFICATION_URI);
6410 ringTone.setStreamType(AudioManager.STREAM_MUSIC);
6411 ringTone.play();
6412 }
Craig Mautnereda67292013-04-28 13:50:14 -07006413
Bryce Lee584a4452014-10-21 15:55:55 -07006414 private boolean isTheaterModeEnabled() {
6415 return Settings.Global.getInt(mContext.getContentResolver(),
6416 Settings.Global.THEATER_MODE_ON, 0) == 1;
6417 }
6418
Svetoslav Ganov7befb7d2012-09-27 16:49:23 -07006419 private boolean isGlobalAccessibilityGestureEnabled() {
6420 return Settings.Global.getInt(mContext.getContentResolver(),
6421 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
6422 }
6423
Craig Mautnereda67292013-04-28 13:50:14 -07006424 @Override
The Android Open Source Project0727d222009-03-11 12:11:58 -07006425 public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
Svetoslav Ganov96179212012-10-10 14:17:45 -07006426 if (!mVibrator.hasVibrator()) {
6427 return false;
6428 }
Christopher Tate5e08af02012-09-21 17:17:22 -07006429 final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
6430 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
Jeff Brown82379ba2014-07-25 19:03:28 -07006431 if (hapticsDisabled && !always) {
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006432 return false;
6433 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006434 long[] pattern = null;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006435 switch (effectId) {
6436 case HapticFeedbackConstants.LONG_PRESS:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006437 pattern = mLongPressVibePattern;
6438 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006439 case HapticFeedbackConstants.VIRTUAL_KEY:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006440 pattern = mVirtualKeyVibePattern;
6441 break;
6442 case HapticFeedbackConstants.KEYBOARD_TAP:
6443 pattern = mKeyboardTapVibePattern;
6444 break;
Fabrice Di Meglioeeff63a2013-08-05 12:07:24 -07006445 case HapticFeedbackConstants.CLOCK_TICK:
6446 pattern = mClockTickVibePattern;
6447 break;
Fabrice Di Megliobd9152f2013-10-01 11:21:31 -07006448 case HapticFeedbackConstants.CALENDAR_DATE:
6449 pattern = mCalendarDateVibePattern;
6450 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006451 case HapticFeedbackConstants.SAFE_MODE_DISABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006452 pattern = mSafeModeDisabledVibePattern;
6453 break;
Dianne Hackbornb1a79802009-09-29 15:18:31 -07006454 case HapticFeedbackConstants.SAFE_MODE_ENABLED:
Amith Yamasanic33cb712010-02-10 15:21:49 -08006455 pattern = mSafeModeEnabledVibePattern;
6456 break;
Mady Mellore8608912015-06-05 09:02:55 -07006457 case HapticFeedbackConstants.CONTEXT_CLICK:
6458 pattern = mContextClickVibePattern;
Mady Mellore82067b2015-04-30 09:58:35 -07006459 break;
Amith Yamasanic33cb712010-02-10 15:21:49 -08006460 default:
6461 return false;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006462 }
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006463 int owningUid;
6464 String owningPackage;
6465 if (win != null) {
6466 owningUid = win.getOwningUid();
6467 owningPackage = win.getOwningPackage();
6468 } else {
6469 owningUid = android.os.Process.myUid();
Dianne Hackborn95d78532013-09-11 09:51:14 -07006470 owningPackage = mContext.getOpPackageName();
Dianne Hackbornf265ea92013-01-31 15:00:51 -08006471 }
Amith Yamasanic33cb712010-02-10 15:21:49 -08006472 if (pattern.length == 1) {
6473 // One-shot vibration
John Spurlock7b414672014-07-18 13:02:39 -04006474 mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006475 } else {
6476 // Pattern vibration
John Spurlock7b414672014-07-18 13:02:39 -04006477 mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
Amith Yamasanic33cb712010-02-10 15:21:49 -08006478 }
6479 return true;
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006480 }
Jeff Brownc38c9be2012-10-04 13:16:19 -07006481
6482 @Override
6483 public void keepScreenOnStartedLw() {
Daniel Sandler0601eb72011-04-13 01:01:32 -04006484 }
6485
Jeff Brownc38c9be2012-10-04 13:16:19 -07006486 @Override
6487 public void keepScreenOnStoppedLw() {
Jim Millerab954542014-10-10 18:21:49 -07006488 if (isKeyguardShowingAndNotOccluded()) {
Jim Miller25190572013-02-28 17:36:24 -08006489 mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006490 }
6491 }
Mike Lockwoodfcb39242009-10-21 23:01:07 -04006492
Dianne Hackborndf89e652011-10-06 22:35:11 -07006493 private int updateSystemUiVisibilityLw() {
Joe Onorato664644d2011-01-23 17:53:23 -08006494 // If there is no window focused, there will be nobody to handle the events
6495 // anyway, so just hang on in whatever state we're in until things settle down.
Adrian Roos53f28ec2014-10-29 17:26:12 +01006496 final WindowState win = mFocusedWindow != null ? mFocusedWindow
6497 : mTopFullscreenOpaqueWindowState;
John Spurlock79da8332013-09-20 12:04:47 -04006498 if (win == null) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006499 return 0;
6500 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006501 if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006502 // We are updating at a point where the keyguard has gotten
6503 // focus, but we were last in a state where the top window is
6504 // hiding it. This is probably because the keyguard as been
6505 // shown while the top window was displayed, so we want to ignore
6506 // it here because this is just a very transient change and it
6507 // will quickly lose focus once it correctly gets hidden.
6508 return 0;
6509 }
John Spurlock32beb2c2013-03-11 10:16:47 -04006510
John Spurlock1db8b682014-02-18 11:18:59 -05006511 int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
Dianne Hackborne26ab702011-10-16 13:21:33 -07006512 & ~mResettingSystemUiFlags
6513 & ~mForceClearedSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006514 if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
John Spurlockc6d1c602014-01-17 15:22:06 -05006515 tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006516 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006517 tmpVisibility = updateLightStatusBarLw(tmpVisibility);
John Spurlock79da8332013-09-20 12:04:47 -04006518 final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006519 final int diff = visibility ^ mLastSystemUiFlags;
John Spurlock79da8332013-09-20 12:04:47 -04006520 final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
Dianne Hackborne0f085d2011-11-30 18:41:15 -08006521 if (diff == 0 && mLastFocusNeedsMenu == needsMenu
John Spurlock79da8332013-09-20 12:04:47 -04006522 && mFocusedApp == win.getAppToken()) {
Dianne Hackborndf89e652011-10-06 22:35:11 -07006523 return 0;
6524 }
Dianne Hackborne26ab702011-10-16 13:21:33 -07006525 mLastSystemUiFlags = visibility;
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006526 mLastFocusNeedsMenu = needsMenu;
John Spurlock79da8332013-09-20 12:04:47 -04006527 mFocusedApp = win.getAppToken();
Dianne Hackborndf89e652011-10-06 22:35:11 -07006528 mHandler.post(new Runnable() {
Craig Mautnereda67292013-04-28 13:50:14 -07006529 @Override
Dianne Hackborndf89e652011-10-06 22:35:11 -07006530 public void run() {
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006531 try {
6532 IStatusBarService statusbar = getStatusBarService();
6533 if (statusbar != null) {
Adrian Roos53f28ec2014-10-29 17:26:12 +01006534 statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006535 statusbar.topAppWindowChanged(needsMenu);
Joe Onorato664644d2011-01-23 17:53:23 -08006536 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07006537 } catch (RemoteException e) {
6538 // re-acquire status bar service next time it is needed.
6539 mStatusBarService = null;
Joe Onorato664644d2011-01-23 17:53:23 -08006540 }
Dianne Hackborndf89e652011-10-06 22:35:11 -07006541 }
6542 });
6543 return diff;
Joe Onorato664644d2011-01-23 17:53:23 -08006544 }
6545
Adrian Rooscd3884d2015-02-18 17:25:23 +01006546 private int updateLightStatusBarLw(int vis) {
6547 WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6548 ? mStatusBar
6549 : mTopFullscreenOpaqueOrDimmingWindowState;
6550
6551 if (statusColorWin != null) {
6552 if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6553 // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6554 // its light flag.
6555 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6556 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6557 & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6558 } else if (statusColorWin != null && statusColorWin.isDimming()) {
6559 // Otherwise if it's dimming, clear the light flag.
6560 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6561 }
6562 }
6563 return vis;
6564 }
6565
John Spurlock79da8332013-09-20 12:04:47 -04006566 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
John Spurlockbd957402013-10-03 11:38:39 -04006567 // apply translucent bar vis flags
Jorim Jaggi380ecb82014-03-14 17:25:20 +01006568 WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6569 ? mStatusBar
John Spurlockbd957402013-10-03 11:38:39 -04006570 : mTopFullscreenOpaqueWindowState;
6571 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6572 vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6573
John Spurlock27735a42013-08-14 17:57:38 -04006574 // prevent status bar interaction from clearing certain flags
Selim Cinekf83e8242015-05-19 18:08:14 -07006575 int type = win.getAttrs().type;
6576 boolean statusBarHasFocus = type == TYPE_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006577 if (statusBarHasFocus && !isStatusBarKeyguard()) {
John Spurlockad3e6cb2013-04-30 08:47:43 -04006578 int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6579 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
John Spurlockcfc359a2013-09-05 10:42:03 -04006580 | View.SYSTEM_UI_FLAG_IMMERSIVE
Jorim Jaggi73fef8d2015-02-16 17:32:28 +01006581 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6582 | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
John Spurlock08ffcf52014-07-11 10:13:46 -04006583 if (mHideLockScreen) {
Jorim Jaggi5cf17872014-03-26 18:31:48 +01006584 flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6585 }
John Spurlockbd957402013-10-03 11:38:39 -04006586 vis = (vis & ~flags) | (oldVis & flags);
John Spurlockad3e6cb2013-04-30 08:47:43 -04006587 }
John Spurlockad3e6cb2013-04-30 08:47:43 -04006588
Adrian Roos4fb3ee32014-08-22 19:29:09 +02006589 if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
Adrian Roosea562512014-05-05 13:33:03 +02006590 vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6591 | View.SYSTEM_UI_TRANSPARENT);
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006592 }
6593
John Spurlock27735a42013-08-14 17:57:38 -04006594 // update status bar
John Spurlockf1a36642013-10-12 17:50:42 -04006595 boolean immersiveSticky =
6596 (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
John Spurlock27735a42013-08-14 17:57:38 -04006597 boolean hideStatusBarWM =
John Spurlockbd957402013-10-03 11:38:39 -04006598 mTopFullscreenOpaqueWindowState != null &&
John Spurlockc6d1c602014-01-17 15:22:06 -05006599 (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
John Spurlock27735a42013-08-14 17:57:38 -04006600 & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6601 boolean hideStatusBarSysui =
6602 (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
John Spurlockf1a36642013-10-12 17:50:42 -04006603 boolean hideNavBarSysui =
6604 (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006605
John Spurlock27735a42013-08-14 17:57:38 -04006606 boolean transientStatusBarAllowed =
6607 mStatusBar != null && (
6608 hideStatusBarWM
John Spurlockf1a36642013-10-12 17:50:42 -04006609 || (hideStatusBarSysui && immersiveSticky)
John Spurlock27735a42013-08-14 17:57:38 -04006610 || statusBarHasFocus);
6611
John Spurlockf1a36642013-10-12 17:50:42 -04006612 boolean transientNavBarAllowed =
6613 mNavigationBar != null &&
6614 hideNavBarSysui && immersiveSticky;
6615
Adrian Roosddc8b272015-05-21 16:28:27 -07006616 final long now = SystemClock.uptimeMillis();
6617 final boolean pendingPanic = mPendingPanicGestureUptime != 0
6618 && now - mPendingPanicGestureUptime <= PANIC_GESTURE_EXPIRATION;
6619 if (pendingPanic && hideNavBarSysui && !isStatusBarKeyguard() && mKeyguardDrawComplete) {
6620 // The user performed the panic gesture recently, we're about to hide the bars,
6621 // we're no longer on the Keyguard and the screen is ready. We can now request the bars.
6622 mPendingPanicGestureUptime = 0;
6623 mStatusBarController.showTransient();
6624 mNavigationBarController.showTransient();
6625 }
6626
John Spurlockf25706f2013-11-07 18:02:43 -05006627 boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006628 && !transientStatusBarAllowed && hideStatusBarSysui;
John Spurlockf25706f2013-11-07 18:02:43 -05006629 boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
John Spurlockf1a36642013-10-12 17:50:42 -04006630 && !transientNavBarAllowed;
6631 if (denyTransientStatus || denyTransientNav) {
John Spurlock27735a42013-08-14 17:57:38 -04006632 // clear the clearable flags instead
John Spurlockf1a36642013-10-12 17:50:42 -04006633 clearClearableFlagsLw();
tiger_huangc58d7562014-10-23 20:24:19 +08006634 vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006635 }
John Spurlock27735a42013-08-14 17:57:38 -04006636
Selim Cinekf98702e2015-05-20 22:48:40 -07006637 final boolean immersive = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
6638 immersiveSticky = (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6639 final boolean navAllowedHidden = immersive || immersiveSticky;
6640
Selim Cinekd6623612015-05-22 18:56:22 -07006641 if (hideNavBarSysui && !navAllowedHidden && windowTypeToLayerLw(win.getBaseType())
6642 > windowTypeToLayerLw(TYPE_INPUT_CONSUMER)) {
Selim Cinekf98702e2015-05-20 22:48:40 -07006643 // We can't hide the navbar from this window otherwise the input consumer would not get
6644 // the input events.
6645 vis = (vis & ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
6646 }
6647
John Spurlock27735a42013-08-14 17:57:38 -04006648 vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6649
6650 // update navigation bar
John Spurlockf1a36642013-10-12 17:50:42 -04006651 boolean oldImmersiveMode = isImmersiveMode(oldVis);
6652 boolean newImmersiveMode = isImmersiveMode(vis);
6653 if (win != null && oldImmersiveMode != newImmersiveMode) {
John Spurlock79da8332013-09-20 12:04:47 -04006654 final String pkg = win.getOwningPackage();
Maurice Lam99c6e072014-04-28 18:24:28 -07006655 mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6656 isUserSetupComplete());
John Spurlock34e13d92013-08-10 06:52:28 -04006657 }
John Spurlock27735a42013-08-14 17:57:38 -04006658
John Spurlockf1a36642013-10-12 17:50:42 -04006659 vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6660
John Spurlocke1f366f2013-08-05 12:22:40 -04006661 return vis;
John Spurlockad3e6cb2013-04-30 08:47:43 -04006662 }
6663
John Spurlockf1a36642013-10-12 17:50:42 -04006664 private void clearClearableFlagsLw() {
6665 int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6666 if (newVal != mResettingSystemUiFlags) {
6667 mResettingSystemUiFlags = newVal;
6668 mWindowManagerFuncs.reevaluateStatusBarVisibility();
6669 }
6670 }
6671
6672 private boolean isImmersiveMode(int vis) {
6673 final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
John Spurlock34e13d92013-08-10 06:52:28 -04006674 return mNavigationBar != null
6675 && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
Daniel Sandler900ece52013-10-18 15:53:27 -04006676 && (vis & flags) != 0
6677 && canHideNavigationBar();
John Spurlock34e13d92013-08-10 06:52:28 -04006678 }
6679
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006680 /**
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006681 * @return whether the navigation or status bar can be made translucent
6682 *
6683 * This should return true unless touch exploration is not enabled or
6684 * R.boolean.config_enableTranslucentDecor is false.
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006685 */
Daniel Sandlerdd73ee42013-10-11 22:19:59 -04006686 private boolean areTranslucentBarsAllowed() {
Svetoslav8e3feb12014-02-24 13:46:47 -08006687 return mTranslucentDecorEnabled
6688 && !mAccessibilityManager.isTouchExplorationEnabled();
Alan Viverette5a0f4ec2013-10-07 15:10:29 -07006689 }
6690
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006691 // Use this instead of checking config_showNavigationBar so that it can be consistently
6692 // overridden by qemu.hw.mainkeys in the emulator.
Craig Mautnereda67292013-04-28 13:50:14 -07006693 @Override
Daniel Sandler0c4ccff2011-10-19 16:39:14 -04006694 public boolean hasNavigationBar() {
6695 return mHasNavigationBar;
6696 }
6697
satok1bc0a492012-04-25 22:47:12 +09006698 @Override
6699 public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6700 mLastInputMethodWindow = ime;
6701 mLastInputMethodTargetWindow = target;
6702 }
6703
Craig Mautnerf1b67412012-09-19 13:18:29 -07006704 @Override
Satoshi Kataoka658c7b82013-10-10 17:03:51 +09006705 public int getInputMethodWindowVisibleHeightLw() {
6706 return mDockBottom - mCurBottom;
6707 }
6708
6709 @Override
Craig Mautnerf1b67412012-09-19 13:18:29 -07006710 public void setCurrentUserLw(int newUserId) {
Craig Mautnerd625ab22013-09-06 13:40:31 -07006711 mCurrentUserId = newUserId;
Jim Miller5ecd8112013-01-09 18:50:26 -08006712 if (mKeyguardDelegate != null) {
6713 mKeyguardDelegate.setCurrentUser(newUserId);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006714 }
John Spurlock13451a22012-09-28 14:40:41 -04006715 if (mStatusBarService != null) {
6716 try {
6717 mStatusBarService.setCurrentUser(newUserId);
6718 } catch (RemoteException e) {
6719 // oh well
6720 }
6721 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006722 setLastInputMethodWindowLw(null, null);
Craig Mautnerf1b67412012-09-19 13:18:29 -07006723 }
6724
6725 @Override
Svetoslav Ganov545252f2012-12-10 18:29:24 -08006726 public boolean canMagnifyWindow(int windowType) {
6727 switch (windowType) {
6728 case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6729 case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6730 case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6731 case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6732 return false;
6733 }
6734 }
6735 return true;
6736 }
6737
6738 @Override
6739 public boolean isTopLevelWindow(int windowType) {
6740 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6741 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6742 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6743 }
6744 return true;
6745 }
6746
Jim Miller4eeb4f62012-11-08 00:04:29 -08006747 @Override
Jeff Brownd7a04de2012-06-17 14:17:52 -07006748 public void dump(String prefix, PrintWriter pw, String[] args) {
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006749 pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
Dianne Hackbornba24e4d2011-09-01 11:17:06 -07006750 pw.print(" mSystemReady="); pw.print(mSystemReady);
6751 pw.print(" mSystemBooted="); pw.println(mSystemBooted);
Jeff Brown2e7760e2012-04-11 15:14:55 -07006752 pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006753 pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
Michael Wright3818c922014-09-02 13:59:07 -07006754 pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006755 pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
Dianne Hackborne26ab702011-10-16 13:21:33 -07006756 if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6757 || mForceClearedSystemUiFlags != 0) {
6758 pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6759 pw.print(Integer.toHexString(mLastSystemUiFlags));
6760 pw.print(" mResettingSystemUiFlags=0x");
6761 pw.print(Integer.toHexString(mResettingSystemUiFlags));
6762 pw.print(" mForceClearedSystemUiFlags=0x");
6763 pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
Dianne Hackborndf89e652011-10-06 22:35:11 -07006764 }
Dianne Hackborn4eff8d32011-11-10 19:38:40 -08006765 if (mLastFocusNeedsMenu) {
6766 pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6767 pw.println(mLastFocusNeedsMenu);
6768 }
Jeff Browna20dda42014-05-27 20:57:24 -07006769 pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6770 pw.println(mWakeGestureEnabledSetting);
6771
Jeff Brownbcdfc622014-03-06 19:13:04 -08006772 pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
Daniel Sandler6396c722013-04-16 20:19:09 -04006773 pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6774 pw.print(" mDockMode="); pw.print(mDockMode);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006775 pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6776 pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6777 pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6778 pw.print(" mUserRotation="); pw.print(mUserRotation);
Daniel Sandler2ed6ad62011-02-22 14:54:17 -05006779 pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006780 pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006781 pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6782 pw.print(mCarDockEnablesAccelerometer);
6783 pw.print(" mDeskDockEnablesAccelerometer=");
6784 pw.println(mDeskDockEnablesAccelerometer);
6785 pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6786 pw.print(mLidKeyboardAccessibility);
6787 pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
Dianne Hackborn6e2281d2012-06-19 17:48:32 -07006788 pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006789 pw.print(prefix);
6790 pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6791 pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
Jeff Brown13f00f02014-10-31 14:45:50 -07006792 pw.print(prefix);
6793 pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6794 pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
Jeff Brown6d8fd272014-05-20 21:24:38 -07006795 pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
Jeff Brown3ee549c2014-09-22 20:14:39 -07006796 pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6797 pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6798 pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6799 pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6800 pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6801 pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6802 pw.println(mOrientationSensorEnabled);
Dianne Hackbornc652de82013-02-15 16:32:56 -08006803 pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6804 pw.print(","); pw.print(mOverscanScreenTop);
6805 pw.print(") "); pw.print(mOverscanScreenWidth);
6806 pw.print("x"); pw.println(mOverscanScreenHeight);
6807 if (mOverscanLeft != 0 || mOverscanTop != 0
6808 || mOverscanRight != 0 || mOverscanBottom != 0) {
6809 pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6810 pw.print(" top="); pw.print(mOverscanTop);
6811 pw.print(" right="); pw.print(mOverscanRight);
6812 pw.print(" bottom="); pw.println(mOverscanBottom);
6813 }
Dianne Hackborn313440842013-02-19 19:22:59 -08006814 pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6815 pw.print(mRestrictedOverscanScreenLeft);
6816 pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6817 pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6818 pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006819 pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6820 pw.print(","); pw.print(mUnrestrictedScreenTop);
6821 pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6822 pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6823 pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6824 pw.print(","); pw.print(mRestrictedScreenTop);
6825 pw.print(") "); pw.print(mRestrictedScreenWidth);
6826 pw.print("x"); pw.println(mRestrictedScreenHeight);
Dianne Hackborn5b5cc4d2012-05-16 13:15:00 -07006827 pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6828 pw.print(","); pw.print(mStableFullscreenTop);
6829 pw.print(")-("); pw.print(mStableFullscreenRight);
6830 pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -07006831 pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6832 pw.print(","); pw.print(mStableTop);
6833 pw.print(")-("); pw.print(mStableRight);
6834 pw.print(","); pw.print(mStableBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006835 pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6836 pw.print(","); pw.print(mSystemTop);
6837 pw.print(")-("); pw.print(mSystemRight);
6838 pw.print(","); pw.print(mSystemBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006839 pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6840 pw.print(","); pw.print(mCurTop);
6841 pw.print(")-("); pw.print(mCurRight);
6842 pw.print(","); pw.print(mCurBottom); pw.println(")");
6843 pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6844 pw.print(","); pw.print(mContentTop);
6845 pw.print(")-("); pw.print(mContentRight);
6846 pw.print(","); pw.print(mContentBottom); pw.println(")");
Dianne Hackborne30e02f2014-05-27 18:24:45 -07006847 pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6848 pw.print(","); pw.print(mVoiceContentTop);
6849 pw.print(")-("); pw.print(mVoiceContentRight);
6850 pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006851 pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6852 pw.print(","); pw.print(mDockTop);
6853 pw.print(")-("); pw.print(mDockRight);
6854 pw.print(","); pw.print(mDockBottom); pw.println(")");
Dianne Hackborn5c58de32012-04-28 19:52:37 -07006855 pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6856 pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006857 pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6858 pw.print(" mShowingDream="); pw.print(mShowingDream);
Jeff Brown061ea992015-04-17 19:55:47 -07006859 pw.print(" mDreamingLockscreen="); pw.print(mDreamingLockscreen);
6860 pw.print(" mDreamingSleepToken="); pw.println(mDreamingSleepToken);
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006861 if (mLastInputMethodWindow != null) {
6862 pw.print(prefix); pw.print("mLastInputMethodWindow=");
6863 pw.println(mLastInputMethodWindow);
6864 }
6865 if (mLastInputMethodTargetWindow != null) {
6866 pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6867 pw.println(mLastInputMethodTargetWindow);
6868 }
6869 if (mStatusBar != null) {
6870 pw.print(prefix); pw.print("mStatusBar=");
Dianne Hackbornae6688b2015-02-11 17:02:41 -08006871 pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6872 pw.println(isStatusBarKeyguard());
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006873 }
6874 if (mNavigationBar != null) {
6875 pw.print(prefix); pw.print("mNavigationBar=");
6876 pw.println(mNavigationBar);
6877 }
Dianne Hackborn2ea9bae2012-11-02 18:43:48 -07006878 if (mFocusedWindow != null) {
6879 pw.print(prefix); pw.print("mFocusedWindow=");
6880 pw.println(mFocusedWindow);
6881 }
6882 if (mFocusedApp != null) {
6883 pw.print(prefix); pw.print("mFocusedApp=");
6884 pw.println(mFocusedApp);
6885 }
6886 if (mWinDismissingKeyguard != null) {
6887 pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6888 pw.println(mWinDismissingKeyguard);
6889 }
6890 if (mTopFullscreenOpaqueWindowState != null) {
6891 pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6892 pw.println(mTopFullscreenOpaqueWindowState);
6893 }
Adrian Rooscd3884d2015-02-18 17:25:23 +01006894 if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6895 pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6896 pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6897 }
Dianne Hackborn891d3fb2013-01-09 18:31:37 -08006898 if (mForcingShowNavBar) {
6899 pw.print(prefix); pw.print("mForcingShowNavBar=");
6900 pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6901 pw.println(mForcingShowNavBarLayer);
6902 }
Dianne Hackborn7ad44382012-10-18 17:46:00 -07006903 pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006904 pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
Dianne Hackborn4c1e3182012-10-05 18:37:54 -07006905 pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6906 pw.print(" mForceStatusBarFromKeyguard=");
6907 pw.println(mForceStatusBarFromKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006908 pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
Craig Mautnerad09bcc2012-10-08 13:33:11 -07006909 pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006910 pw.print(" mHomePressed="); pw.println(mHomePressed);
6911 pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6912 pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6913 pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6914 pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6915 pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6916 pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6917 pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6918 pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6919 pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6920 pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
Jeff Brownc82c89ed2013-04-17 17:18:15 -07006921 pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6922 pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6923 pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
Jeff Brown600f0032014-05-22 17:06:00 -07006924
Tim Kilbournd7c0c2e2014-05-29 16:08:10 -07006925 mGlobalKeyManager.dump(prefix, pw);
John Spurlock27735a42013-08-14 17:57:38 -04006926 mStatusBarController.dump(pw, prefix);
6927 mNavigationBarController.dump(pw, prefix);
John Spurlockc6d1c602014-01-17 15:22:06 -05006928 PolicyControl.dump(prefix, pw);
Jeff Brown600f0032014-05-22 17:06:00 -07006929
Jeff Browna20dda42014-05-27 20:57:24 -07006930 if (mWakeGestureListener != null) {
6931 mWakeGestureListener.dump(pw, prefix);
6932 }
Jeff Brown600f0032014-05-22 17:06:00 -07006933 if (mOrientationListener != null) {
6934 mOrientationListener.dump(pw, prefix);
6935 }
Filip Gruszczynskicfb31852015-02-25 21:47:12 +00006936 if (mBurnInProtectionHelper != null) {
6937 mBurnInProtectionHelper.dump(prefix, pw);
6938 }
Dianne Hackbornf99f9c52011-01-12 15:49:25 -08006939 }
The Android Open Source Project1f838aa2009-03-03 19:32:13 -08006940}